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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
exacb
examples
scaler
Commits
d6a0d48d
Verified
Commit
d6a0d48d
authored
10 months ago
by
Jayesh Badwaik
Browse files
Options
Downloads
Patches
Plain Diff
+ add jedi CI
parent
a5d28b19
No related branches found
No related tags found
No related merge requests found
Pipeline
#203278
passed
10 months ago
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+24
-0
24 additions, 0 deletions
.gitlab-ci.yml
submit.sh
+44
-0
44 additions, 0 deletions
submit.sh
with
68 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
24
−
0
View file @
d6a0d48d
# --------------------------------------------------------------------------------------------------
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2024 Jayesh Badwaik <j.badwaik@fz-juelich.de>
# --------------------------------------------------------------------------------------------------
jedi
:
id_tokens
:
SITE_ID_TOKEN
:
aud
:
"
https://gitlab.jsc.fz-juelich.de"
variables
:
CUSTOM_CI_BUILDS_DIR
:
/p/scratch/cjsc/badwaik1.ci/exacb/examples/scaler
tags
:
-
jacamar
-
jedi
-
login
-
shell
script
:
-
module load GCC CUDA OpenMPI CMake
-
cmake -B build -S .
-
cmake --build build
-
cmake --install build --prefix opt
-
jutil env activate --project cjsc --budget zam
-
srun opt/bin/scaler --size
1024
This diff is collapsed.
Click to expand it.
submit.sh
0 → 100644
+
44
−
0
View file @
d6a0d48d
#!/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