Replies: 1 comment 7 replies
-
Hey there!
Can you try also setting |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am running a UVM CUDA application on a NUMA machine. I am trying to use
cudaMemAdvise_v2
to initialize the allocation to a DRAM-only NUMA node (i.e., no CPUs). Unfortunately, the call fails with the error:NV_ERR_INVALID_ARGUMENT
. Looking at the driver code, my guess is that the problem is inkernel_open/nvidia-uvm/uvm_policy:uvm_api_set_preferred_location
, but putting aprintk
inside the function does not print anything on either the console or/var/log/kern.log
(the dmesg level is set to print everything).I tried following the previous advice on figuring the backtrace, but the first call to
nvidia_ioctl
has anv_printf
call that does not print anything either. I ensuredNVreg_RmMsg
is set to print everything.Any ideas what might be the problem here?
Beta Was this translation helpful? Give feedback.
All reactions