Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
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
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
db4e5b5b
Commit
db4e5b5b
authored
22 years ago
by
tewk
Browse files
Options
Downloads
Patches
Plain Diff
shmem trick broke test case because the test case doesn't link against slurmd.o
took it out for now
parent
67e92fc8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/slurmd/task_mgr.c
+5
-3
5 additions, 3 deletions
src/slurmd/task_mgr.c
with
5 additions
and
3 deletions
src/slurmd/task_mgr.c
+
5
−
3
View file @
db4e5b5b
...
@@ -33,7 +33,7 @@ global variables
...
@@ -33,7 +33,7 @@ global variables
#define CHILD_ERR_RD 4
#define CHILD_ERR_RD 4
#define CHILD_ERR_WR 5
#define CHILD_ERR_WR 5
extern
slurmd_shmem_t
*
shmem_seg
;
//
extern slurmd_shmem_t * shmem_seg ;
/* prototypes */
/* prototypes */
void
slurm_free_task
(
void
*
_task
)
;
void
slurm_free_task
(
void
*
_task
)
;
...
@@ -78,9 +78,11 @@ int fan_out_task_launch ( launch_tasks_msg_t * launch_msg )
...
@@ -78,9 +78,11 @@ int fan_out_task_launch ( launch_tasks_msg_t * launch_msg )
{
{
int
i
;
int
i
;
int
rc
;
int
rc
;
/* shmem work - see slurmd.c shmem_seg this is probably not needed*/
/* shmem work - see slurmd.c shmem_seg this is probably not needed*/
//slurmd_shmem_t * shmem_ptr = get_shmem ( ) ;
slurmd_shmem_t
*
shmem_ptr
=
get_shmem
(
)
;
slurmd_shmem_t
*
shmem_ptr
=
shmem_seg
;
//slurmd_shmem_t * shmem_ptr = shmem_seg ;
/*alloc a job_step objec in shmem for this launch_tasks request */
/*alloc a job_step objec in shmem for this launch_tasks request */
/*launch_tasks should really be named launch_job_step*/
/*launch_tasks should really be named launch_job_step*/
job_step_t
*
curr_job_step
=
alloc_job_step
(
shmem_ptr
,
launch_msg
->
job_id
,
launch_msg
->
job_step_id
)
;
job_step_t
*
curr_job_step
=
alloc_job_step
(
shmem_ptr
,
launch_msg
->
job_id
,
launch_msg
->
job_step_id
)
;
...
...
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