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
3
Merged
Paul McCarthy
requested to merge
test/fslstartup
into
master
1 year ago
Overview
0
Commits
5
Pipelines
8
Changes
2
Expand
Make sure that BLAS threading is disabled, and OMP threading is enabled, by default
0
0
Merge request reports
Compare
version 5
version 6
c26bada8
1 year ago
version 5
6f3efc87
1 year ago
version 4
92d62421
1 year ago
version 3
0cc7d457
1 year ago
version 2
34f6b6ac
1 year ago
version 1
547d484d
1 year ago
master (base)
and
version 6
latest version
3cf3083c
5 commits,
1 year ago
version 6
c26bada8
5 commits,
1 year ago
version 5
6f3efc87
4 commits,
1 year ago
version 4
92d62421
3 commits,
1 year ago
version 3
0cc7d457
2 commits,
1 year ago
version 2
34f6b6ac
2 commits,
1 year ago
version 1
547d484d
1 commit,
1 year ago
Show latest version
2 files
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
unit_tests/utils/feedsRun.fslStartup
+
1
−
1
Options
@@ -27,7 +27,7 @@ def run(cmd, ompthreads=None, blasthreads=None, fslskipglobal=None):
print
(
f
'
exit code:
{
result
.
returncode
}
'
)
print
(
f
'
stdout:
{
result
.
stdout
.
strip
()
}
'
)
return
result
.
stdout
.
strip
()
return
result
.
stdout
.
strip
()
.
split
(
'
\n
'
)[
-
1
]
def
main
():
Loading