1df3bd252SSatish Balay#!/usr/bin/env python3 228f796eaSScott Kruger 328f796eaSScott Krugerimport os 428f796eaSScott Krugerpetsc_hash_pkgs=os.path.join(os.getenv('HOME'),'petsc-hash-pkgs') 528f796eaSScott Kruger 628f796eaSScott Krugerif __name__ == '__main__': 728f796eaSScott Kruger import sys 828f796eaSScott Kruger import os 928f796eaSScott Kruger sys.path.insert(0, os.path.abspath('config')) 1028f796eaSScott Kruger import configure 116e41817bSSatish Balay configure_options = [ 1228f796eaSScott Kruger '--package-prefix-hash='+petsc_hash_pkgs, 1333c6d68eSSatish Balay #'--with-mpi-dir=/home/users/balay/soft/instinct/gcc-10.2.0/mpich-4.1', 1433c6d68eSSatish Balay #'--with-blaslapack-dir=/home/users/balay/soft/instinct/gcc-10.2.0/fblaslapack', 156e41817bSSatish Balay '--with-make-np=24', 166e41817bSSatish Balay '--with-make-test-np=8', 176e41817bSSatish Balay '--with-hipc=/opt/rocm-5.4.3/bin/hipcc', 186e41817bSSatish Balay '--with-hip-dir=/opt/rocm-5.4.3', 1928f796eaSScott Kruger 'COPTFLAGS=-g -O', 2028f796eaSScott Kruger 'FOPTFLAGS=-g -O', 2128f796eaSScott Kruger 'CXXOPTFLAGS=-g -O', 229e287556SSatish Balay 'HIPOPTFLAGS=-g -O', 2328f796eaSScott Kruger '--with-cuda=0', 2428f796eaSScott Kruger '--with-hip=1', 2528f796eaSScott Kruger '--with-precision=double', 2628f796eaSScott Kruger '--with-clanguage=c', 27786aaf3eSSatish Balay '--download-kokkos', 28786aaf3eSSatish Balay '--download-kokkos-kernels', 29*04ba64a0SVictor A. P. Magri '--download-umpire', 3040018c87Sstefanozampini '--download-hypre', 31263f2b91SStefano Zampini '--download-magma', 3240018c87Sstefanozampini '--download-mfem', 3340018c87Sstefanozampini '--download-metis', 34689a5dfaSJacob Faibussowitsch '--with-strict-petscerrorcode', 3541baa1e4SJacob Faibussowitsch #'--with-coverage', 3628f796eaSScott Kruger ] 3728f796eaSScott Kruger 3828f796eaSScott Kruger configure.petsc_configure(configure_options) 39