Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyfeeds-tests
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
pyfeeds-tests
Merge requests
!57
TEST: Test fslStartup logic
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TEST: Test fslStartup logic
test/fslstartup
into
master
Overview
0
Commits
5
Pipelines
8
Changes
1
Merged
Paul McCarthy
requested to merge
test/fslstartup
into
master
1 year ago
Overview
0
Commits
5
Pipelines
8
Changes
1
Expand
Make sure that BLAS threading is disabled, and OMP threading is enabled, by default
0
0
Merge request reports
Viewing commit
2230c5c4
Prev
Next
Show latest version
1 file
+
6
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
2230c5c4
TEST: Test FSL_SKIP_GLOBAL=0
· 2230c5c4
Paul McCarthy
authored
1 year ago
unit_tests/utils/feedsRun.fslStartup
+
6
−
1
Options
@@ -42,7 +42,12 @@ def main():
@@ -42,7 +42,12 @@ def main():
assert
run
(
'
./test_fslStartup
'
,
4
,
4
)
==
'
4 1 4
'
assert
run
(
'
./test_fslStartup
'
,
4
,
4
)
==
'
4 1 4
'
assert
run
(
'
./test_fslStartup
'
,
1
,
1
)
==
'
1 1 1
'
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
'
,
8
,
8
,
1
)
==
'
8 8 8
'
assert
run
(
'
./test_fslStartup
'
,
4
,
4
,
1
)
==
'
4 4 4
'
assert
run
(
'
./test_fslStartup
'
,
4
,
4
,
1
)
==
'
4 4 4
'
assert
run
(
'
./test_fslStartup
'
,
1
,
1
,
1
)
==
'
1 1 1
'
assert
run
(
'
./test_fslStartup
'
,
1
,
1
,
1
)
==
'
1 1 1
'
Loading