Replies: 2 comments 7 replies
-
Hey there!
Can you try also setting |
Beta Was this translation helpful? Give feedback.
7 replies
-
I don`t know how to config it, but I edited the source code and recompiled it to enable them. The first method is set the value of cur_debuglevel as 0xffffff8f. The second method is replace nv_printf with printk. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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