python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is it possible to change the order in which CUDA thread blocks are scheduled when compiled with `--device-debug`?
Short Version
I have a kernel that launches a lot of blocks and I know that there is are illegal memory reads happening for blockIdx.y = 312. Running it under cuda-gdb results in sequential execution ...
loonatick
Votes: 0
Answers: 1
Cuda gdb print constant
I am in cuda-gdb, I can use ((@global float *)array)[0]
but how to use constant memory in gdb ?
I try ((@parameter float *)const_array)
I declared const_array like this :
__constant__ float const_arra...
Vadim Kashtanov
Votes: 0
Answers: 2
RuntimeError: CUDA error: CUBLAS_STATUS_EXECUTION_FAILED when calling `cublasSgemm( handle, opa, opb, m, n, k, &alpha, a, lda, b, ldb, &beta, c, ldc)`
I'm trying to extract feathers from BertTopic model and I'm using jupyter notebook.
The first feature is sentiment analysis and it's done by following code:
df-DataFrame,
df["title_selftext"...
Roi Kremer
Votes: 0
Answers: 0