1#!/usr/bin/env python3 2 3import os 4petsc_hash_pkgs=os.path.join(os.getenv('HOME'),'petsc-hash-pkgs') 5 6configure_options = [ 7 '--package-prefix-hash='+petsc_hash_pkgs, 8 '--with-mpi-dir=/software/mpich-4.3.0-flang', 9 '--with-debugging=0', 10 '--with-strict-petscerrorcode', 11] 12 13if __name__ == '__main__': 14 import sys,os 15 sys.path.insert(0,os.path.abspath('config')) 16 import configure 17 configure.petsc_configure(configure_options) 18