-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:erdc-cm/mpi4py
Conflicts: mpi.cfg
- Loading branch information
Showing
102 changed files
with
4,688 additions
and
3,193 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Author: Lisandro Dalcin | ||
# Contact: [email protected] |
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 |
---|---|---|
@@ -1,29 +1,34 @@ | ||
.PHONY: default src build test clean | ||
|
||
.PHONY: default | ||
default: build test clean | ||
|
||
PYTHON = python | ||
|
||
PYTHON_INCLUDE = ${shell ${PYTHON} -c 'from distutils import sysconfig; print( sysconfig.get_python_inc() )'} | ||
MPI4PY_INCLUDE = ${shell ${PYTHON} -c 'import mpi4py; print( mpi4py.get_include() )'} | ||
PYTHON = python | ||
PYTHON_CONFIG = ${PYTHON} ../python-config | ||
MPI4PY_INCLUDE = -I${shell ${PYTHON} -c 'import mpi4py; print( mpi4py.get_include() )'} | ||
|
||
CYTHON = cython | ||
.PHONY: src | ||
src: helloworld.c | ||
helloworld.c: helloworld.pyx | ||
${CYTHON} -I${MPI4PY_INCLUDE} $< | ||
${CYTHON} ${MPI4PY_INCLUDE} $< | ||
|
||
|
||
MPICC = mpicc -shared -fPIC | ||
CFLAGS = -shared -fPIC | ||
SO = ${shell ${PYTHON} -c 'import imp; print (imp.get_suffixes()[0][0])'} | ||
MPICC = mpicc | ||
CFLAGS = -fPIC ${shell ${PYTHON_CONFIG} --includes} | ||
LDFLAGS = -shared ${shell ${PYTHON_CONFIG} --libs} | ||
SO = ${shell ${PYTHON_CONFIG} --extension-suffix} | ||
.PHONY: build | ||
build: helloworld${SO} | ||
helloworld${SO}: helloworld.c | ||
${MPICC} ${CFLAGS} -I${PYTHON_INCLUDE} -I${MPI4PY_INCLUDE} -o $@ $< | ||
${MPICC} ${CFLAGS} -I${MPI4PY_INCLUDE} -o $@ $< ${LDFLAGS} | ||
|
||
|
||
.PHONY: test | ||
test: build | ||
${PYTHON} -c 'import helloworld' | ||
|
||
|
||
.PHONY: clean | ||
clean: | ||
${RM} helloworld.c helloworld${SO} |
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,14 @@ | ||
/* Author: Lisandro Dalcin */ | ||
/* Contact: [email protected] */ | ||
|
||
#ifndef MPI_COMPAT_H | ||
#define MPI_COMPAT_H | ||
|
||
#include <mpi.h> | ||
|
||
#if (MPI_VERSION < 3) && !defined(PyMPI_HAVE_MPI_Message) | ||
typedef void *PyMPI_MPI_Message; | ||
#define MPI_Message PyMPI_MPI_Message | ||
#endif | ||
|
||
#endif/*MPI_COMPAT_H*/ |
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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/usr/bin/env python | ||
# -*- python -*- | ||
|
||
import sys, os | ||
import getopt | ||
try: | ||
import sysconfig | ||
except ImportError: | ||
from distutils import sysconfig | ||
|
||
valid_opts = ['help', 'prefix', 'exec-prefix', 'includes', 'libs', 'cflags', | ||
'ldflags', 'extension-suffix', 'abiflags', 'configdir'] | ||
|
||
def exit_with_usage(code=1): | ||
sys.stderr.write("Usage: %s [%s]\n" % ( | ||
sys.argv[0], '|'.join('--'+opt for opt in valid_opts))) | ||
sys.exit(code) | ||
|
||
try: | ||
opts, args = getopt.getopt(sys.argv[1:], '', valid_opts) | ||
except getopt.error: | ||
exit_with_usage() | ||
|
||
if not opts: | ||
exit_with_usage() | ||
|
||
getvar = sysconfig.get_config_var | ||
pyver = getvar('VERSION') | ||
try: | ||
abiflags = sys.abiflags | ||
except AttributeError: | ||
abiflags = '' | ||
|
||
opt_flags = [flag for (flag, val) in opts] | ||
|
||
if '--help' in opt_flags: | ||
exit_with_usage(code=0) | ||
|
||
for opt in opt_flags: | ||
if opt == '--prefix': | ||
print(getvar('prefix')) | ||
|
||
elif opt == '--exec-prefix': | ||
print(getvar('exec_prefix')) | ||
|
||
elif opt in ('--includes', '--cflags'): | ||
try: | ||
include = sysconfig.get_path('include') | ||
platinclude = sysconfig.get_path('platinclude') | ||
except AttributeError: | ||
include = sysconfig.get_python_inc() | ||
platinclude = sysconfig.get_python_inc(plat_specific=True) | ||
flags = ['-I' + include] | ||
if include != platinclude: | ||
flags.append('-I' + platinclude) | ||
if opt == '--cflags': | ||
flags.extend(getvar('CFLAGS').split()) | ||
print(' '.join(flags)) | ||
|
||
elif opt in ('--libs', '--ldflags'): | ||
libs = getvar('LIBS').split() + getvar('SYSLIBS').split() | ||
libs.append('-lpython' + pyver + abiflags) | ||
if opt == '--ldflags': | ||
if not getvar('Py_ENABLE_SHARED'): | ||
libs.insert(0, '-L' + getvar('LIBPL')) | ||
if not getvar('PYTHONFRAMEWORK'): | ||
libs.extend(getvar('LINKFORSHARED').split()) | ||
print(' '.join(libs)) | ||
|
||
elif opt == '--extension-suffix': | ||
ext_suffix = getvar('EXT_SUFFIX') | ||
if ext_suffix is None: | ||
ext_suffix = getvar('SO') | ||
print(ext_suffix) | ||
|
||
elif opt == '--abiflags': | ||
print(abiflags) | ||
|
||
elif opt == '--configdir': | ||
print(getvar('LIBPL')) |
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.