File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -617,6 +617,7 @@ cdef inline __cbwr_set(branch=None):
617
617
"""
618
618
__variables = {
619
619
' input' : {
620
+ ' off' : mkl.MKL_CBWR_BRANCH_OFF,
620
621
' auto' : mkl.MKL_CBWR_AUTO,
621
622
' compatible' : mkl.MKL_CBWR_COMPATIBLE,
622
623
' sse2' : mkl.MKL_CBWR_SSE2,
@@ -655,6 +656,7 @@ cdef inline __cbwr_get(cnr_const=None):
655
656
' all' : mkl.MKL_CBWR_ALL,
656
657
},
657
658
' output' : {
659
+ mkl.MKL_CBWR_BRANCH_OFF: ' off' ,
658
660
mkl.MKL_CBWR_AUTO: ' auto' ,
659
661
mkl.MKL_CBWR_COMPATIBLE: ' compatible' ,
660
662
mkl.MKL_CBWR_SSE2: ' sse2' ,
@@ -667,7 +669,6 @@ cdef inline __cbwr_get(cnr_const=None):
667
669
mkl.MKL_CBWR_AVX512_MIC: ' avx512_mic' ,
668
670
mkl.MKL_CBWR_AVX512: ' avx512' ,
669
671
mkl.MKL_CBWR_SUCCESS: ' success' ,
670
- mkl.MKL_CBWR_BRANCH_OFF: ' branch_off' ,
671
672
mkl.MKL_CBWR_ERR_INVALID_INPUT: ' err_invalid_input' ,
672
673
},
673
674
}
Original file line number Diff line number Diff line change @@ -159,6 +159,9 @@ def test_set_memory_limit(self):
159
159
160
160
class test_conditional_numerical_reproducibility_control :
161
161
# https://software.intel.com/en-us/mkl-developer-reference-c-conditional-numerical-reproducibility-control
162
+ def test_cbwr_set_off (self ):
163
+ mkl .cbwr_set (branch = 'off' )
164
+
162
165
def test_cbwr_set_auto (self ):
163
166
mkl .cbwr_set (branch = 'auto' )
164
167
You can’t perform that action at this time.
0 commit comments