Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scaler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
exacb
examples
scaler
Commits
8737b99a
Verified
Commit
8737b99a
authored
Jul 23, 2024
by
Jayesh Badwaik
Browse files
Options
Downloads
Patches
Plain Diff
+ move things into submit script
parent
41a42bfc
No related branches found
No related tags found
No related merge requests found
Pipeline
#203042
failed
Jul 23, 2024
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
submit.sh
+44
-0
44 additions, 0 deletions
submit.sh
with
45 additions
and
1 deletion
.gitlab-ci.yml
+
1
−
1
View file @
8737b99a
...
...
@@ -21,5 +21,5 @@ jedi:
-
cmake --build build
-
cmake --install build --prefix opt
-
jutil env activate --project cjsc --budget zam
-
s
run --partition all "ulimit -l unlimited && opt/bin/scaler --size 65536"
-
s
batch submit.job
This diff is collapsed.
Click to expand it.
submit.sh
0 → 100644
+
44
−
0
View file @
8737b99a
#!/bin/bash -x
#SBATCH --job-name="scaler_execute_4"
#SBATCH --mail-user=
#SBATCH --mail-type=NONE
#SBATCH --nodes=1
#SBATCH --ntasks=4
#SBATCH --cpus-per-task=1
#SBATCH --time=00:05:00
#SBATCH --output=job.out
#SBATCH --error=job.err
#SBATCH --partition=all
#SBATCH --gres=NONE
ulimit
-l
unlimited
export
OMP_NUM_THREADS
=
"1"
module purge
&&
module load Stages/2024
&&
module load GCC OpenMPI
JUBE_ERR_CODE
=
$?
if
[
$JUBE_ERR_CODE
-ne
0
]
;
then
touch
error
exit
$JUBE_ERR_CODE
fi
srun
--cpus-per-task
=
1 opt/bin/scaler
--size
1024
JUBE_ERR_CODE
=
$?
if
[
$JUBE_ERR_CODE
-ne
0
]
;
then
touch
error
exit
$JUBE_ERR_CODE
fi
JUBE_ERR_CODE
=
$?
if
[
$JUBE_ERR_CODE
-ne
0
]
;
then
touch
error
exit
$JUBE_ERR_CODE
fi
touch
ready
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