Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grk2450-fireworks-tutorial
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Ivan Kondov
grk2450-fireworks-tutorial
Commits
519f2da2
Commit
519f2da2
authored
7 years ago
by
Ivan Kondov
Browse files
Options
Downloads
Patches
Plain Diff
Delete lpad_append_wflow.py
parent
fd33b46d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/lpad_append_wflow.py
+0
-24
0 additions, 24 deletions
scripts/lpad_append_wflow.py
with
0 additions
and
24 deletions
scripts/lpad_append_wflow.py
deleted
100644 → 0
+
0
−
24
View file @
fd33b46d
from
fireworks
import
Workflow
,
LaunchPad
import
sys
fw_ids
=
None
detour
=
False
pull_spec_mods
=
True
for
arg
in
sys
.
argv
:
if
'
--help
'
in
arg
:
print
(
'
usage:
'
+
sys
.
argv
[
0
]
+
'
--fw_ids=<comma-separated list>
'
+
'
<workflow file>
'
)
if
'
--fw_ids
'
in
arg
:
fw_ids
=
arg
.
split
(
'
=
'
)[
1
].
split
(
'
,
'
)
fw_ids
=
[
int
(
fw_id
.
strip
())
for
fw_id
in
fw_ids
]
if
'
--detour
'
in
arg
:
detour
=
True
if
'
--no_pull_spec_mods
'
in
arg
:
pull_spec_mods
=
False
if
fw_ids
is
not
None
:
wflow
=
Workflow
.
from_file
(
sys
.
argv
[
-
1
])
launchpad
=
LaunchPad
()
launchpad
.
append_wf
(
wflow
,
fw_ids
,
detour
=
detour
,
pull_spec_mods
=
pull_spec_mods
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment