Skip to content
Snippets Groups Projects
Commit 2230c5c4 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist: Committed by Matthew Webster
Browse files

TEST: Test FSL_SKIP_GLOBAL=0

parent 94a159f5
No related branches found
No related tags found
1 merge request!57TEST: Test fslStartup logic
......@@ -42,7 +42,12 @@ def main():
assert run('./test_fslStartup', 4, 4) == '4 1 4'
assert run('./test_fslStartup', 1, 1) == '1 1 1'
# With FSL_SKIP_GLOBAL, BLAS should be multi-threaded
# FSL_SKIP_GLOBAL=0 should be equivalent to default behaviour
assert run('./test_fslStartup', 8, 8, 0) == '8 1 8'
assert run('./test_fslStartup', 4, 4, 0) == '4 1 4'
assert run('./test_fslStartup', 1, 1, 0) == '1 1 1'
# With FSL_SKIP_GLOBAL=1, BLAS should be multi-threaded
assert run('./test_fslStartup', 8, 8, 1) == '8 8 8'
assert run('./test_fslStartup', 4, 4, 1) == '4 4 4'
assert run('./test_fslStartup', 1, 1, 1) == '1 1 1'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment