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
99015fb3
Commit
99015fb3
authored
14 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
minor restructuring of the working_cluster.c code to tokenize the input flags string
before searching for keywords
parent
11e18dde
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/common/working_cluster.c
+75
-52
75 additions, 52 deletions
src/common/working_cluster.c
src/common/working_cluster.h
+14
-2
14 additions, 2 deletions
src/common/working_cluster.h
with
89 additions
and
54 deletions
src/common/working_cluster.c
+
75
−
52
View file @
99015fb3
/*****************************************************************************\
* workingcluster.c - definitions dealing with the working cluster
* working
_
cluster.c - definitions dealing with the working cluster
******************************************************************************
* Copyright (C) 2010 Lawrence Livermore National Security.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
...
...
@@ -36,12 +36,15 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#include
<string.h>
#include
"src/common/slurm_strcasestr.h"
#include
"src/common/slurmdb_defs.h"
#include
"src/common/xmalloc.h"
#include
"src/common/xstring.h"
#include
"src/common/slurm_strcasestr.h"
/* This functions technically should go in the slurmdb_defs.c, but
/*
* This functions technically should go in the slurmdb_defs.c, but
* because some systems don't deal well with strong_alias and
* functions defined extern in other headers i.e. slurm.h has the
* hostlist functions in it, and they are also strong aliased in
...
...
@@ -51,19 +54,19 @@
* doesn't need to include the slurm.h in the header.
*/
extern
uint16_t
slurmdb_setup_cluster_dims
()
extern
uint16_t
slurmdb_setup_cluster_dims
(
void
)
{
return
working_cluster_rec
?
working_cluster_rec
->
dimensions
:
SYSTEM_DIMENSIONS
;
}
extern
uint32_t
slurmdb_setup_cluster_flags
()
extern
uint32_t
slurmdb_setup_cluster_flags
(
void
)
{
static
uint32_t
cluster_flags
=
NO_VAL
;
if
(
working_cluster_rec
)
if
(
working_cluster_rec
)
return
working_cluster_rec
->
flags
;
else
if
(
cluster_flags
!=
NO_VAL
)
else
if
(
cluster_flags
!=
NO_VAL
)
return
cluster_flags
;
cluster_flags
=
0
;
...
...
@@ -100,38 +103,54 @@ extern uint32_t slurmdb_setup_cluster_flags()
return
cluster_flags
;
}
extern
uint32_t
slurmdb
_str_2_cluster_flags
(
char
*
flags_in
)
static
uint32_t
_str_2_cluster_flags
(
char
*
flags_in
)
{
uint32_t
cluster_flags
=
0
;
if
(
slurm_strcasestr
(
flags_in
,
"bluegene"
))
cluster_flags
|=
CLUSTER_FLAG_BG
;
if
(
slurm_strcasestr
(
flags_in
,
"AIX"
))
return
CLUSTER_FLAG_AIX
;
if
(
slurm_strcasestr
(
flags_in
,
"
bgl
"
))
cluster_flags
|=
CLUSTER_FLAG_BGL
;
if
(
slurm_strcasestr
(
flags_in
,
"
BGL
"
))
return
CLUSTER_FLAG_BGL
;
if
(
slurm_strcasestr
(
flags_in
,
"
bgp
"
))
cluster_flags
|=
CLUSTER_FLAG_BGP
;
if
(
slurm_strcasestr
(
flags_in
,
"
BGP
"
))
return
CLUSTER_FLAG_BGP
;
if
(
slurm_strcasestr
(
flags_in
,
"
bgq
"
))
cluster_flags
|=
CLUSTER_FLAG_BGQ
;
if
(
slurm_strcasestr
(
flags_in
,
"
BGQ
"
))
return
CLUSTER_FLAG_BGQ
;
if
(
slurm_strcasestr
(
flags_in
,
"
SunConstellation
"
))
cluster_flags
|=
CLUSTER_FLAG_
SC
;
if
(
slurm_strcasestr
(
flags_in
,
"
Bluegene
"
))
return
CLUSTER_FLAG_
BG
;
if
(
slurm_strcasestr
(
flags_in
,
"
xcpu
"
))
cluster_flags
|=
CLUSTER_FLAG_
XCPU
;
if
(
slurm_strcasestr
(
flags_in
,
"
CrayXT
"
))
return
CLUSTER_FLAG_
CRAYXT
;
if
(
slurm_strcasestr
(
flags_in
,
"
aix
"
))
cluster_flags
|=
CLUSTER_FLAG_
AIX
;
if
(
slurm_strcasestr
(
flags_in
,
"
FrontEnd
"
))
return
CLUSTER_FLAG_
FE
;
if
(
slurm_strcasestr
(
flags_in
,
"MultipleSlurmd"
))
cluster_flags
|=
CLUSTER_FLAG_MULTSD
;
return
CLUSTER_FLAG_MULTSD
;
if
(
slurm_strcasestr
(
flags_in
,
"
CrayXT
"
))
cluster_flags
|=
CLUSTER_FLAG_C
RAYXT
;
if
(
slurm_strcasestr
(
flags_in
,
"
SunConstellation
"
))
return
CLUSTER_FLAG_
S
C
;
if
(
slurm_strcasestr
(
flags_in
,
"FrontEnd"
))
cluster_flags
|=
CLUSTER_FLAG_FE
;
if
(
slurm_strcasestr
(
flags_in
,
"XCPU"
))
return
CLUSTER_FLAG_XCPU
;
return
(
uint32_t
)
0
;
}
extern
uint32_t
slurmdb_str_2_cluster_flags
(
char
*
flags_in
)
{
uint32_t
cluster_flags
=
0
;
char
*
token
,
*
my_flags
,
*
last
=
NULL
;
my_flags
=
xstrdup
(
flags_in
);
token
=
strtok_r
(
my_flags
,
","
,
&
last
);
while
(
token
)
{
cluster_flags
|=
_str_2_cluster_flags
(
token
);
token
=
strtok_r
(
NULL
,
","
,
&
last
);
}
xfree
(
my_flags
);
return
cluster_flags
;
}
...
...
@@ -141,63 +160,67 @@ extern char *slurmdb_cluster_flags_2_str(uint32_t flags_in)
{
char
*
cluster_flags
=
NULL
;
if
(
flags_in
&
CLUSTER_FLAG_BG
)
if
(
flags_in
&
CLUSTER_FLAG_AIX
)
{
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"AIX"
);
}
if
(
flags_in
&
CLUSTER_FLAG_BG
)
{
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"Bluegene"
);
}
if
(
flags_in
&
CLUSTER_FLAG_BGL
)
{
if
(
cluster_flags
)
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"BGL"
);
}
if
(
flags_in
&
CLUSTER_FLAG_BGP
)
{
if
(
cluster_flags
)
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"BGP"
);
}
if
(
flags_in
&
CLUSTER_FLAG_BGQ
)
{
if
(
cluster_flags
)
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"BGQ"
);
}
if
(
flags_in
&
CLUSTER_FLAG_SC
)
{
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"SunConstellation"
);
}
if
(
flags_in
&
CLUSTER_FLAG_XCPU
)
{
if
(
cluster_flags
)
if
(
flags_in
&
CLUSTER_FLAG_CRAYXT
)
{
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"
XCPU
"
);
xstrcat
(
cluster_flags
,
"
CrayXT
"
);
}
if
(
flags_in
&
CLUSTER_FLAG_
AIX
)
{
if
(
cluster_flags
)
if
(
flags_in
&
CLUSTER_FLAG_
FE
)
{
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"
AIX
"
);
xstrcat
(
cluster_flags
,
"
FrontEnd
"
);
}
if
(
flags_in
&
CLUSTER_FLAG_MULTSD
)
{
if
(
cluster_flags
)
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"MultipleSlurmd"
);
}
if
(
flags_in
&
CLUSTER_FLAG_C
RAYXT
)
{
if
(
cluster_flags
)
if
(
flags_in
&
CLUSTER_FLAG_
S
C
)
{
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"
CrayXT
"
);
xstrcat
(
cluster_flags
,
"
SunConstellation
"
);
}
if
(
flags_in
&
CLUSTER_FLAG_
FE
)
{
if
(
cluster_flags
)
if
(
flags_in
&
CLUSTER_FLAG_
XCPU
)
{
if
(
cluster_flags
)
xstrcat
(
cluster_flags
,
","
);
xstrcat
(
cluster_flags
,
"
FrontEnd
"
);
xstrcat
(
cluster_flags
,
"
XCPU
"
);
}
if
(
!
cluster_flags
)
if
(
!
cluster_flags
)
cluster_flags
=
xstrdup
(
"None"
);
return
cluster_flags
;
...
...
This diff is collapsed.
Click to expand it.
src/common/working_cluster.h
+
14
−
2
View file @
99015fb3
...
...
@@ -38,9 +38,21 @@
#ifndef _WORKINGCLUSTER_H
#define _WORKINGCLUSTER_H
extern
uint16_t
slurmdb_setup_cluster_dims
();
extern
uint32_t
slurmdb_setup_cluster_flags
();
/* Return the number of dimensions in the current working cluster */
extern
uint16_t
slurmdb_setup_cluster_dims
(
void
);
/* Return the architecture flags in the current working cluster */
extern
uint32_t
slurmdb_setup_cluster_flags
(
void
);
/* Translate architecture flag strings to their equivalent bitmaps */
extern
uint32_t
slurmdb_str_2_cluster_flags
(
char
*
flags_in
);
/*
* Translate architecture flag bitmaps to their equivalent comma-delimited
* string
*
* NOTE: Call xfree() to release memory allocated to the return value
*/
extern
char
*
slurmdb_cluster_flags_2_str
(
uint32_t
flags_in
);
#endif
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