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
1544237b
Commit
1544237b
authored
16 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Remove sbatch test for script size being no larger than 64k bytes.
The current limit is 4GB.
parent
56245834
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+3
-1
3 additions, 1 deletion
NEWS
src/sbatch/sbatch.c
+0
-3
0 additions, 3 deletions
src/sbatch/sbatch.c
with
3 additions
and
4 deletions
NEWS
+
3
−
1
View file @
1544237b
...
...
@@ -12,8 +12,10 @@ documents those changes that are of interest to users and admins.
-- Added Python module to process hostslists as used by SLURM. See
contribs/python/hostlist. Supplied by Kent Engstrom, National
Supercomputer Centre, Sweden.
-- Report
abormal
task termination
message
(restored functionality present
-- Report task termination
due to signal
(restored functionality present
in slurm v1.2).
-- Remove sbatch test for script size being no larger than 64k bytes.
The current limit is 4GB.
* Changes in SLURM 1.3.6
========================
...
...
This diff is collapsed.
Click to expand it.
src/sbatch/sbatch.c
+
0
−
3
View file @
1544237b
...
...
@@ -421,9 +421,6 @@ static void *get_script_buffer(const char *filename, int *size)
if
(
script_size
==
0
)
{
error
(
"Batch script is empty!"
);
goto
fail
;
}
else
if
(
script_size
>=
0xffff
)
{
error
(
"Job script exceeds size supported by slurm"
);
goto
fail
;
}
else
if
(
xstring_is_whitespace
(
buf
))
{
error
(
"Batch script contains only whitespace!"
);
goto
fail
;
...
...
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