Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup after Hackaton #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Repo for the NCI-NVIDIA hackaton on June 2023.

This work was completed in part at the NCI-NVIDIA hackaton, part of the Open Hackathons program. The authors would like to acknowledge OpenACC-Standard.org for their support.

## Objective

The objective is to implement sum-factorization techniques for GPU architectures, within
Expand Down
7 changes: 5 additions & 2 deletions profile_cuda_ncu.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
#!/bin/bash
#PBS -P vp91
#PBS -P kr97
#PBS -q gpuvolta
#PBS -l walltime=01:00:00
#PBS -l ncpus=12
#PBS -l ngpus=1
#PBS -l mem=90GB
#PBS -l jobfs=10GB
#PBS -l storage=scratch/vp91
#PBS -l storage=scratch/kr97

module load cuda
module load nvidia-hpc-sdk/22.11

export LD_LIBRARY_PATH=~/bin/julia-1.8.5/lib/julia/:$LD_LIBRARY_PATH

ncu --set full -k regex:gpu_mul --target-processes all -o result_v1 julia --project=. test/GPU_v1.jl
ncu --set full -k regex:gpu_mul --target-processes all -o result_v2 julia --project=. test/GPU_v2.jl
ncu --set full -k regex:gpu_mul --target-processes all -o result_v3 julia --project=. test/GPU_v3.jl
ncu --set full -k regex:gpu_mul --target-processes all -o result_v5 julia --project=. test/GPU_v5.jl
ncu --set full -k regex:gpu_mul --target-processes all -o result_v7 julia --project=. test/GPU_v7.jl

#ncu launch --trace cuda julia --project=. -e'include("test/GPU_v0.jl")'
#ncu launch --trace cuda julia --project=. -e'include("test/GPU_v1.jl")'
Expand Down
Loading