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
c099fbc3
Commit
c099fbc3
authored
19 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Add framework for XCPU job launch.
parent
1f646fc9
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
auxdir/x_ac_bluegene.m4
+2
-1
2 additions, 1 deletion
auxdir/x_ac_bluegene.m4
auxdir/x_ac_xcpu.m4
+40
-0
40 additions, 0 deletions
auxdir/x_ac_xcpu.m4
configure.ac
+1
-0
1 addition, 0 deletions
configure.ac
with
44 additions
and
1 deletion
NEWS
+
1
−
0
View file @
c099fbc3
...
@@ -3,6 +3,7 @@ documents those changes that are of interest to users and admins.
...
@@ -3,6 +3,7 @@ documents those changes that are of interest to users and admins.
* Changes in SLURM 1.1.0-pre3
* Changes in SLURM 1.1.0-pre3
=============================
=============================
-- Added framework for XCPU job launch support.
* Changes in SLURM 1.1.0-pre2
* Changes in SLURM 1.1.0-pre2
=============================
=============================
...
...
This diff is collapsed.
Click to expand it.
auxdir/x_ac_bluegene.m4
+
2
−
1
View file @
c099fbc3
...
@@ -8,7 +8,8 @@
...
@@ -8,7 +8,8 @@
# X_AC_BG
# X_AC_BG
#
#
# DESCRIPTION:
# DESCRIPTION:
# Test for Blue Gene/L specific files. If found define HAVE_BG
# Test for Blue Gene/L specific files.
# If found define HAVE_BG and HAVE_FRONT_END.
##*****************************************************************************
##*****************************************************************************
...
...
This diff is collapsed.
Click to expand it.
auxdir/x_ac_xcpu.m4
0 → 100644
+
40
−
0
View file @
c099fbc3
##*****************************************************************************
## $Id: x_ac_xcpu.m4 7443 2006-03-08 20:23:25Z da $
##*****************************************************************************
# AUTHOR:
# Morris Jette <jette1@llnl.gov>
#
# SYNOPSIS:
# X_AC_XCPU
#
# DESCRIPTION:
# Test for XCPU specific files.
# If found define HAVE_XCPU and HAVE_FRONT_END.
# Explicitly disable with --enable-xcpu=no
##*****************************************************************************
AC_DEFUN([X_AC_XCPU],
[
AC_MSG_CHECKING([whether XCPU is enabled])
AC_ARG_ENABLE([xcpu],
AC_HELP_STRING([--enable-xcpu], [enable XCPU job launch]),
[ case "$enableval" in
yes) ac_xcpu=yes ;;
no) ac_xcpu=no ;;
*) AC_MSG_RESULT([doh!])
AC_MSG_ERROR([bad value "$enableval" for --enable-xcpu]) ;;
esac
]
)
if test "$ac_xcpu" != "no" ; then
if test -d "/mnt/xcpu" ; then
AC_DEFINE(HAVE_XCPU, 1, [Define to 1 if using XCPU for job launch])
AC_DEFINE(HAVE_FRONT_END, 1, [Define to 1 if running slurmd on front-end only])
else
ac_xcpu=no
fi
fi
AC_MSG_RESULT($ac_xcpu)
])
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
0
View file @
c099fbc3
...
@@ -105,6 +105,7 @@ CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
...
@@ -105,6 +105,7 @@ CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
LIBS="$PTHREAD_LIBS $LIBS"
LIBS="$PTHREAD_LIBS $LIBS"
X_AC_BLUEGENE
X_AC_BLUEGENE
X_AC_XCPU
X_AC_SLURM_SEMAPHORE
X_AC_SLURM_SEMAPHORE
X_AC_NCURSES
X_AC_NCURSES
...
...
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