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
The program is compiled as nvcc example.cpp -lcudnn -o example
It sums tensor of size 1 x 2 x 2 and tensor of size 1 x 2 x 1. I expect broadcasting, so the expected behavior is [[[1, 2], [3, 4]]] + [[[10], [20]]] = [[[11, 12], [23, 24]]]. However the program prints
13 14
23 24
so it performs something like broadcasting of the second row of the first matrix with the second matrix.
Expected behavior
I expect program to print
11 12
23 24
System Environment (please complete the following information):
To Reproduce nvcc example.cpp -lcudnn -o example && ./example
Additional context
I looked a little bit to the backend logs and do not see anything suspicious here, so probably the problem is not on the frontend side, but in the cuDNN.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. We are investigating the root cause of this issue in the cuDNN. We will update this issue once we have a timeline for the fix.
Describe the bug
I run the following code
The program is compiled as
nvcc example.cpp -lcudnn -o example
It sums tensor of size
1 x 2 x 2
and tensor of size1 x 2 x 1
. I expect broadcasting, so the expected behavior is[[[1, 2], [3, 4]]] + [[[10], [20]]] = [[[11, 12], [23, 24]]]
. However the program printsso it performs something like broadcasting of the second row of the first matrix with the second matrix.
Expected behavior
I expect program to print
System Environment (please complete the following information):
cuda_12.1.r12.1/compiler.32688072_0
API logs
fe.log
be.log
To Reproduce
nvcc example.cpp -lcudnn -o example && ./example
Additional context
I looked a little bit to the backend logs and do not see anything suspicious here, so probably the problem is not on the frontend side, but in the cuDNN.
The text was updated successfully, but these errors were encountered: