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

added --openacc-profiling off to the nvprof #1587

Merged
merged 1 commit into from
Sep 12, 2022
Merged
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
4 changes: 2 additions & 2 deletions docs/src/tutorials/introduction.jl
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ end
# On Unix systems, launch Julia this way:
#
# ```sh
# $ nvprof --profile-from-start off /path/to/julia
# $ nvprof --profile-from-start off -openacc-profiling off /path/to/julia
# ```
#
# replacing the `/path/to/julia` with the path to your Julia binary. Note that we don't
Expand Down Expand Up @@ -254,7 +254,7 @@ CUDA.@profile bench_gpu1!(y_d, x_d)
# (including a call to `CUDA.@profile`):
#
# ```sh
# $ nvprof --profile-from-start off --print-gpu-trace /path/to/julia /path/to/script.jl
# $ nvprof --profile-from-start off --openacc-profiling off --print-gpu-trace /path/to/julia /path/to/script.jl
# Start Duration Grid Size Block Size Regs* SSMem* DSMem* Device Context Stream Name
# 13.3134s 245.04ms (1 1 1) (1 1 1) 20 0B 0B GeForce GTX TIT 1 7 ptxcall_gpu_add1__1 [34]
# ```
Expand Down