Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
athena
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
EIC
detectors
athena
Merge requests
!170
Make view12/14/15 parallel (one slice per job)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Make view12/14/15 parallel (one slice per job)
view14-parallel
into
master
Overview
1
Commits
11
Pipelines
0
Changes
1
Merged
Wouter Deconinck
requested to merge
view14-parallel
into
master
3 years ago
Overview
1
Commits
11
Pipelines
0
Changes
1
Expand
Currently it takes 38 slices, and holds up the next jobs.
Edited
3 years ago
by
Wouter Deconinck
0
0
Merge request reports
Viewing commit
f1a19237
Show latest version
1 file
+
6
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
f1a19237
Only print help on options with -[a-zA-Z]*
· f1a19237
Wouter Deconinck
authored
3 years ago
scripts/view14/generate_eps
+
6
−
2
Options
@@ -23,7 +23,7 @@
function
print_the_help
{
echo
"USAGE:
$0
-i <PRIM_FILE> "
echo
"USAGE:
$0
-i <PRIM_FILE>
<slices ...>
"
echo
" OPTIONS: "
echo
" -t,--tag filename tag (default: view1)"
exit
@@ -53,12 +53,16 @@ do
shift
# past argument
shift
# past value
;;
*
)
# unknown option
-[a-zA-Z]
*
)
# unknown option
#POSITIONAL+=("$1") # save it in an array for later
echo
"unknown option
$1
"
print_the_help
shift
# past argument
;;
*
)
# positional options
#POSITIONAL+=("$1") # save it in an array for later
shift
# past argument
;;
esac
done
set
--
"
${
POSITIONAL
[@]
}
"
# restore positional parameters
Loading