Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
maestro-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Analyze
Contributor 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
maestro
maestro-core
Commits
ff513ec7
Commit
ff513ec7
authored
5 years ago
by
Utz-Uwe Haus
Browse files
Options
Downloads
Patches
Plain Diff
include ECMWF schema by default
parent
940cc852
Branches
nvidia-arm
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
maestro/core.c
+15
-0
15 additions, 0 deletions
maestro/core.c
with
15 additions
and
0 deletions
maestro/core.c
+
15
−
0
View file @
ff513ec7
...
@@ -78,6 +78,21 @@ mstro_core_init(const char *workflow_name,
...
@@ -78,6 +78,21 @@ mstro_core_init(const char *workflow_name,
ERR
(
"Failed to parse built-in core schema
\n
"
);
ERR
(
"Failed to parse built-in core schema
\n
"
);
goto
BAILOUT
;
goto
BAILOUT
;
}
}
/* FIXME: this should not be here */
DEBUG
(
"Including ECMWF schema
\n
"
);
mstro_schema
ecmwf
;
status
=
mstro_schema_parse
(
MSTRO_SCHEMA_BUILTIN_YAML_ECMWF
,
MSTRO_SCHEMA_BUILTIN_YAML_ECMWF_LEN
,
&
ecmwf
);
if
(
status
!=
MSTRO_OK
)
{
ERR
(
"Failed to parse built-in ecmwf schema
\n
"
);
goto
BAILOUT
;
}
status
=
mstro_schema_merge
(
g_mstro_core_schema_instance
,
ecmwf
);
if
(
status
!=
MSTRO_OK
)
{
ERR
(
"Failed to merge core and ECMWF schema
\n
"
);
goto
BAILOUT
;
}
DEBUG
(
"mstro_core_init: %s/%s/% "
PRIi64
" in thread %"
PRIxPTR
" complete
\n
"
,
DEBUG
(
"mstro_core_init: %s/%s/% "
PRIi64
" in thread %"
PRIxPTR
" complete
\n
"
,
data
->
workflow_name
,
data
->
component_name
,
data
->
component_index
,
data
->
workflow_name
,
data
->
component_name
,
data
->
component_index
,
...
...
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