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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
maestro
maestro-core
Commits
f6904655
Commit
f6904655
authored
4 years ago
by
Utz-Uwe Haus
Browse files
Options
Downloads
Plain Diff
Merge branch '122-numa-infrastructure' into devel
parents
5d0a2a55
0b9b10a3
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!7
Resolve "RETRACT dysfunctional"
Pipeline
#62689
passed
4 years ago
Stage: build-and-test
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
build-envs/README
+7
-0
7 additions, 0 deletions
build-envs/README
maestro/Makefile.am
+4
-0
4 additions, 0 deletions
maestro/Makefile.am
maestro/i_maestro_numa.h
+2
-2
2 additions, 2 deletions
maestro/i_maestro_numa.h
with
13 additions
and
2 deletions
build-envs/README
+
7
−
0
View file @
f6904655
...
...
@@ -25,6 +25,13 @@ Running things by hand
$ docker pull registry.gitlab.com/cerl/maestro/maestro-core/buildenv/debian
$ docker run --ulimit memlock=133000:133000 -i -t registry.gitlab.com/cerl/maestro/maestro-core/buildenv/debian /bin/bash
# but since you're reading this, you may be interested in debugging. In that
# case, to permit gdb to work inside the docker container you might want to
# use
# docker run --cap-add=SYS_PTRACE --ulimit memlock=133000:133000 -i -t registry.gitlab.com/cerl/maestro/maestro-core/buildenv/debian /bin/bash
# instead
# now you have a shell in the docker container that is currently used on gitlab for CI
$ mkdir /builds
$ cd /builds
...
...
This diff is collapsed.
Click to expand it.
maestro/Makefile.am
+
4
−
0
View file @
f6904655
...
...
@@ -79,6 +79,10 @@ cdo_sel_parse.c cdo_sel_parse.h: cdo_sel_parse.peg
libmaestro_core_la_LIBADD
=
$(
top_builddir
)
/deps/libcyaml/libcyaml.la
$(
top_builddir
)
/deps/mamba/libmmb.la
$(
top_builddir
)
/deps/c-timestamp/libtimestamp.la
if
NUMA_ENABLED
libmaestro_core_la_LIBADD
+=
-lnuma
endif
# Conductor implementation varies depending on configuration
if
WITH_OFI_POOL_MANAGER
libmaestro_core_la_SOURCES
+=
pool_manager_ofi.c ofi.c drc.c
...
...
This diff is collapsed.
Click to expand it.
maestro/i_maestro_numa.h
+
2
−
2
View file @
f6904655
...
...
@@ -68,8 +68,8 @@ mstro_numa__node_for_addr(void * addr)
addr
,
MPOL_F_NODE
|
MPOL_F_ADDR
);
if
(
s
<
0
)
{
LOG_WARN
(
MSTRO_LOG_MODULE_CORE
,
"Failed to obtain NUMA info for addr %p: %l (%s)
\n
"
,
addr
,
s
,
strerror
(
s
));
"Failed to obtain NUMA info for addr %p: %l
d
(%s)
\n
"
,
addr
,
s
,
strerror
(
-
s
));
return
0
;
}
else
{
return
node
;
...
...
This diff is collapsed.
Click to expand it.
Utz-Uwe Haus
@haus1
mentioned in issue
#35 (closed)
·
4 years ago
mentioned in issue
#35 (closed)
mentioned in issue #35
Toggle commit list
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