xref: /petsc/config/examples/arch-ci-linux-cuda-double-64idx.py (revision e600fa544e2bb197ca2af9b6e65ea465976dec56)
1#!/usr/bin/python
2
3import os
4petsc_hash_pkgs=os.path.join(os.getenv('HOME'),'petsc-hash-pkgs')
5
6if __name__ == '__main__':
7  import sys
8  import os
9  sys.path.insert(0, os.path.abspath('config'))
10  import configure
11  configure_options = [
12    '--package-prefix-hash='+petsc_hash_pkgs,
13    '--with-make-test-np=2',
14    '--download-openmpi=1',
15    '--download-hypre=1',
16    'COPTFLAGS=-g -O',
17    'FOPTFLAGS=-g -O',
18    'CXXOPTFLAGS=-g -O',
19    '--with-64-bit-indices=1',
20    '--with-cuda=1',
21    '--with-precision=double',
22    '--with-clanguage=c',
23    # Note: If using nvcc with a host compiler other than the CUDA SDK default for your platform (GCC on Linux, clang
24    # on Mac OS X, MSVC on Windows), you must set -ccbin appropriately in CUDAFLAGS, as in the example for PGI below:
25    # 'CUDAFLAGS=-ccbin pgc++',
26  ]
27
28  configure.petsc_configure(configure_options)
29