forked from smdogroup/paropt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
76 lines (61 loc) · 2.16 KB
/
setup.py
File metadata and controls
76 lines (61 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import os
from subprocess import check_output
# Numpy/mpi4py must be installed prior to installing TACS
import numpy
import mpi4py
# Import distutils
from setuptools import setup
from distutils.core import Extension as Ext
from Cython.Build import cythonize
# Convert from local to absolute directories
def get_global_dir(files):
tmr_root = os.path.abspath(os.path.dirname(__file__))
new = []
for f in files:
new.append(os.path.join(tmr_root, f))
return new
def get_mpi_flags():
# Split the output from the mpicxx command
args = check_output(['mpicxx', '-show']).decode('utf-8').split()
# Determine whether the output is an include/link/lib command
inc_dirs, lib_dirs, libs = [], [], []
for flag_ in args:
try:
flag = flag_.decode('utf-8')
except:
flag = flag_
if flag[:2] == '-I':
inc_dirs.append(flag[2:])
elif flag[:2] == '-L':
lib_dirs.append(flag[2:])
elif flag[:2] == '-l':
libs.append(flag[2:])
return inc_dirs, lib_dirs, libs
inc_dirs, lib_dirs, libs = get_mpi_flags()
# Relative paths for the include/library directories
rel_inc_dirs = ['src']
rel_lib_dirs = ['lib']
libs.extend(['paropt'])
# Convert from relative to absolute directories
inc_dirs.extend(get_global_dir(rel_inc_dirs))
lib_dirs.extend(get_global_dir(rel_lib_dirs))
# Add the numpy/mpi4py directories
inc_dirs.extend([numpy.get_include(), mpi4py.get_include()])
# Add tacs-dev/lib as a runtime directory
runtime_lib_dirs = get_global_dir(['lib'])
exts = []
mod = 'ParOpt'
exts.append(Ext('paropt.ParOpt', sources=['paropt/ParOpt.pyx'],
language='c++',
include_dirs=inc_dirs, libraries=libs,
library_dirs=lib_dirs, runtime_library_dirs=runtime_lib_dirs))
for e in exts:
e.cython_directives = {'embedsignature': True,
'binding': True}
setup(name='paropt',
version=0.1,
description='Parallel interior-point optimizer',
author='Graeme J. Kennedy',
author_email='graeme.kennedy@ae.gatech.edu',
ext_modules=cythonize(exts, language='c++',
include_path=inc_dirs))