def extra_options(): """Easyconfig parameters specific to numpy.""" extra_vars = ({ 'blas_test_time_limit': [20000, "Time limit (in ms) for 1000x1000 matrix dot product BLAS test", CUSTOM], 'ignore_test_result': [False, "Run numpy test suite, but ignore test result (only log)", CUSTOM], }) return FortranPythonPackage.extra_options(extra_vars=extra_vars)
def extra_options(): """Easyconfig parameters specific to numpy.""" extra_vars = ({ 'blas_test_time_limit': [500, "Time limit (in ms) for 1000x1000 matrix dot product BLAS test", CUSTOM], 'allow_no_cblas': [False, "Allow to build a numpy that don't rely on an underlying CBLAS library", CUSTOM], }) return FortranPythonPackage.extra_options(extra_vars=extra_vars)
def extra_options(): """Easyconfig parameters specific to numpy.""" extra_vars = ({ 'blas_test_time_limit': [ 500, "Time limit (in ms) for 1000x1000 matrix dot product BLAS test", CUSTOM ], }) return FortranPythonPackage.extra_options(extra_vars=extra_vars)
def extra_options(): """Easyconfig parameters specific to numpy.""" extra_vars = ({ 'blas_test_time_limit': [500, "Time limit (in ms) for 1000x1000 matrix dot product BLAS test", CUSTOM], }) return FortranPythonPackage.extra_options(extra_vars=extra_vars)