Skip to content

Commit

Permalink
fix: Use in buildworkflow
Browse files Browse the repository at this point in the history
  • Loading branch information
singularitti committed Jul 8, 2022
1 parent 49a2f1a commit eeddf0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/ConvergenceTestWorkflow/Recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Recipes

using AbInitioSoftwareBase: load
using Serialization: deserialize
using SimpleWorkflows: Job, Workflow, run!, , ,
using SimpleWorkflows: Job, Workflow, run!, , , ,

using ..ConvergenceTestWorkflow:
Scf, DownloadPotentials, LogMsg, MakeInput, RunCmd, TestConvergence, buildjob
Expand All @@ -22,7 +22,7 @@ function buildworkflow(cfgfile)
c = buildjob(RunCmd{Scf}(), cfgfile)
d = buildjob(TestConvergence{Scf}(), cfgfile)
e = Job(() -> LogMsg{Scf}()(; start = false))
a0 a b c d e
a0 a b c d e
return Workflow(a0)
end
end
Expand Down
4 changes: 2 additions & 2 deletions src/EquationOfStateWorkflow/Recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Recipes

using AbInitioSoftwareBase: load
using Serialization: deserialize
using SimpleWorkflows: Job, Workflow, run!, , ,
using SimpleWorkflows: Job, Workflow, run!, , , ,

using ..Config: ExpandConfig
using ..EquationOfStateWorkflow:
Expand Down Expand Up @@ -32,7 +32,7 @@ function buildworkflow(cfgfile)
j0 = buildjob(GetData{stage}(), cfgfile)
j = buildjob(FitEos{stage}(), cfgfile)
l = Job(() -> LogMsg{stage}()(; start = false))
a0 a b c d0 d f g h i j0 j l
a0 a b c d0 d f g h i j0 j l
return Workflow(a0)
end
end
Expand Down
4 changes: 2 additions & 2 deletions src/PhononWorkflow/Recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Recipes

using AbInitioSoftwareBase: load
using Serialization: deserialize
using SimpleWorkflows: Job, Workflow, run!, , ,
using SimpleWorkflows: Job, Workflow, run!, , , ,
using ..PhononWorkflow:
Scf,
Dfpt,
Expand Down Expand Up @@ -48,7 +48,7 @@ function buildworkflow(cfgfile)
n = buildjob(MakeInput{x}(), cfgfile)
o = buildjob(RunCmd{x}(), cfgfile)
p = Job(() -> LogMsg{x}()(; start = false))
a0 a b c d e f g h i j k l m n o p
a0 a b c d e f g h i j k l m n o p
return Workflow(a0)
end
end
Expand Down

0 comments on commit eeddf0f

Please sign in to comment.