Skip to content

Commit

Permalink
add run_juliart
Browse files Browse the repository at this point in the history
  • Loading branch information
Uwe Fechner committed Mar 15, 2024
1 parent 787607d commit 3b7df15
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions bin/run_juliart
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/bash

if [[ $(basename $(pwd)) == "bin" ]]; then
cd ..
fi

if [[ $HOSTNAME == "tuxedi" ]]; then
sudo performance.sh
fi

# instead of 8, use the number of fast CPU cores you have
GCT="--gcthreads=7,1"

julia_version=$(/home/ufechner/.juliaup/bin/julia --version | awk '{print($3)}')
julia_major=${julia_version:0:3}
branch=$(git rev-parse --abbrev-ref HEAD)

if test -f "bin/kps-image-${julia_major}-${branch}.so"; then
echo "Found system image!"
julia -J bin/kps-image-${julia_major}-${branch}.so -t 8,1 $GCT --project
else
sudo chrt -r 70 /home/ufechner/.juliaup/bin/julia --project -t 7,1 $GCT
# julia --project
fi

0 comments on commit 3b7df15

Please sign in to comment.