Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coyote
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nils
coyote
Merge requests
!51
[hiopy] Subtasks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
[hiopy] Subtasks
subtasks
into
main
Overview
0
Commits
4
Pipelines
5
Changes
8
Open
Nils-Arne Dreier
requested to merge
subtasks
into
main
3 weeks ago
Overview
0
Commits
4
Pipelines
5
Changes
8
Expand
Creating subtasks for the flush operation in hiopy.
Edited
4 days ago
by
Nils-Arne Dreier
0
0
Merge request reports
Viewing commit
3546e3c0
Show latest version
8 files
+
90
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
3546e3c0
feat: add possibility to add subtsaks to taskqueue
· 3546e3c0
Nils-Arne Dreier
authored
1 month ago
python/coyote_py.cpp
+
1
−
0
Options
@@ -104,6 +104,7 @@ PYBIND11_MODULE(coyote, m) {
m
.
def
(
"get_field_metadata"
,
&
get_field_metadata
);
m
.
def
(
"run"
,
&
coyote_run
,
py
::
call_guard
<
py
::
gil_scoped_release
>
());
m
.
def
(
"init"
,
&
coyote_init
,
"group_name"
_a
,
"nthreads"
_a
=
1
);
m
.
def
(
"add_task"
,
&
coyote_add_task
,
"task"
_a
,
"prio"
_a
=
0
);
m
.
def
(
"start_datetime"
,
&
coyote_start_datetime
);
m
.
def
(
"end_datetime"
,
&
coyote_end_datetime
);
m
.
def
(
"group_comm"
,
[]()
{
return
MPI_Comm_c2f
(
coyote_group_comm
());
});
Loading