-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lpossner
committed
Oct 1, 2023
1 parent
3f3ab60
commit f47212e
Showing
2 changed files
with
16 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
# analysis of complex systems. See also: | ||
# https://github.com/pygpc-polynomial-chaos/pygpc | ||
# | ||
# Copyright (C) 2017-2022 the original author (Konstantin Weise), | ||
# Copyright (C) 2017-2023 the original author (Konstantin Weise), | ||
# the Max-Planck-Institute for Human Cognitive Brain Sciences ("MPI CBS") | ||
# and contributors | ||
# | ||
|
@@ -41,7 +41,7 @@ | |
|
||
|
||
setup(name='pygpc', | ||
version='0.3.4', | ||
version='0.3.5', | ||
description='A sensitivity and uncertainty analysis toolbox for Python', | ||
author='Konstantin Weise', | ||
author_email='[email protected]', | ||
|
@@ -64,20 +64,4 @@ | |
"Documentation": "https://pygpc.readthedocs.io/en/latest/", | ||
"Source Code": "https://github.com/pygpc-polynomial-chaos/pygpc"}, | ||
zip_safe=False, | ||
include_package_data=True) | ||
|
||
|
||
""" | ||
Notes for Mac M1 users: | ||
1. You’ll need to install: llvm and libomp from homebrew (be sure it’s arm versions). | ||
2. You’ll need to prepend llvm path (by default it’s /opt/homebrew/opt/llvm/bin) so system clang compilers from llvm (I did it with version 16) | ||
3. You’ll need to setup LDFLAGS and CPPFLAGS flags to include BOTH llvm and libomp so: | ||
LDFLAGS = “-L/opt/homebrew/opt/llvm/lib -L/opt/homebrew/opt/libomp/lib” | ||
CPPFLAFS = “-I/opt/homebrew/opt/llvm/include -I/opt/homebrew/opt/libomp/include” | ||
(of course these are the default location… you can get the location with brew info llvm and brew info libomp) | ||
4. Finally, you just need to change openmp_link_args inside setup.py for pyGPC to “-lomp” instead of “-lgomp” | ||
""" | ||
include_package_data=True) |