示例#1
0
 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)
示例#2
0
文件: numpy.py 项目: rdrake/JSC
 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)
示例#3
0
 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)
示例#4
0
 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)