-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #692 from opesci/no-mpi
devito without mpi
- Loading branch information
Showing
32 changed files
with
204 additions
and
173 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
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
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,6 @@ dependencies: | |
- sympy==1.2 | ||
- cgen | ||
- scipy | ||
- mpi4py | ||
- matplotlib | ||
- pytest | ||
- flake8>=2.1.0 | ||
|
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
mpi4py | ||
matplotlib |
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
numpy==1.14 | ||
sympy>=1.2 | ||
scipy | ||
mpi4py | ||
matplotlib | ||
pytest-runner | ||
flake8>=2.1.0 | ||
jedi | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
with open('requirements.txt') as f: | ||
required = f.read().splitlines() | ||
|
||
with open('requirements-optional.txt') as f: | ||
optionals = f.read().splitlines() | ||
|
||
reqs = [] | ||
links = [] | ||
for ir in required: | ||
|
@@ -14,6 +17,15 @@ | |
else: | ||
reqs += [ir] | ||
|
||
opt_reqs = [] | ||
opt_links = [] | ||
for ir in optionals: | ||
if ir[0:3] == 'git': | ||
opt_links += [ir + '#egg=' + ir.split('/')[-1] + '-0'] | ||
opt_reqs += [ir.split('/')[-1]] | ||
else: | ||
opt_reqs += [ir] | ||
|
||
setup(name='devito', | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
|
@@ -25,11 +37,12 @@ | |
equations defined in SymPy to create and execute highly | ||
optimised Finite Difference kernels on multiple computer | ||
platforms.""", | ||
url='http://www.opesci.org/devito', | ||
url='http://www.devitoproject.org', | ||
author="Imperial College London", | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=find_packages(exclude=['docs', 'tests', 'examples']), | ||
install_requires=reqs, | ||
extras_require={'extras': opt_reqs}, | ||
dependency_links=links, | ||
test_suite='tests') |
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
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
Oops, something went wrong.