Changeset 7460
- Timestamp:
- Sep 1, 2009, 6:24:16 PM (15 years ago)
- Location:
- anuga_core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/pymetis/README
r5094 r7460 13 13 The METIS_DIR= line in the makefile will need to be changed appropriately. 14 14 15 AMD64users need to run `make COPTIONS="-fPIC"'15 64 bit users need to run `make COPTIONS="-fPIC"' 16 16 17 17 Windows: -
anuga_core/source/pymetis/pymetis/setup.py
r2051 r7460 4 4 metis = Extension('metis', 5 5 sources = ['metis.c', 'metis_bridge.c'], 6 include_dirs = ['..' + os.sep + os.environ['METIS_DIR'] + os.sep + 'Lib' ],6 include_dirs = ['..' + os.sep + os.environ['METIS_DIR'] + os.sep + 'Lib' , '/usr/local/lib/python2.5/site-packages/numpy/core/include' ], 7 7 libraries = ['metis', 'm'], 8 8 library_dirs = ['..' + os.sep + os.environ['METIS_DIR']]); -
anuga_core/test_all.py
r7288 r7460 9 9 os.chdir('anuga') 10 10 11 print 'Changing to', os.getcwd() #This is now different from buildroot 11 print 'Changing to', os.getcwd() # This is now different from buildroot 12 #execfile('test_all.py') 12 13 13 execfile('test_all.py')14 14 15 os.chdir('..') 16 os.chdir('pymetis') 17 print 'Changing to', os.getcwd() 18 #execfile('test_all.py') 19 20 os.chdir('..') 21 os.chdir('anuga_parallel') 22 print 'Changing to', os.getcwd() 23 #execfile('test_all.py') 15 24 16 25 print
Note: See TracChangeset
for help on using the changeset viewer.