You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was asked in Gitter before, but I can't find the context. Today, I wanted to confirm gpu.itersPerThread behavior in the following code:
onhere.gpus[0] {
foreach i in1..1000 {
// will run on 1000 GPU threads
}
@gpu.itersPerThread(10)
foreach i in1..1000 {
// will run on 100 GPU threads
}
}
This is correct, but without grid size, we can't see how many threads were used for each kernel. --debugGpu is the only way to confirm that today, and --debugGpu is not supposed to be user-facing.
The text was updated successfully, but these errors were encountered:
This was asked in Gitter before, but I can't find the context. Today, I wanted to confirm
gpu.itersPerThread
behavior in the following code:using
startVerboseGpu
/stopVerboseGpu
, I getThis is correct, but without grid size, we can't see how many threads were used for each kernel.
--debugGpu
is the only way to confirm that today, and--debugGpu
is not supposed to be user-facing.The text was updated successfully, but these errors were encountered: