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
W0115 10:23:44.565328 2009009 gpu_resources.cc:119] Please NOTE: device: 0, GPU Compute Capability: 9.0, Driver API Version: 12.6, Runtime API Version: 12.3
W0115 10:23:44.565850 2009009 gpu_resources.cc:164] device: 0, cuDNN Version: 9.0.
Traceback (most recent call last):
File "/home/jwnhy/gpu_fuzz/gen/poc3.py", line 6, in <module>
model(tensor)
File "/home/jwnhy/miniconda3/lib/python3.12/site-packages/paddle/nn/layer/layers.py", line 1426, in __call__
return self.forward(*inputs, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/jwnhy/miniconda3/lib/python3.12/site-packages/paddle/nn/layer/conv.py", line 883, in forward
out = F.conv2d_transpose(
^^^^^^^^^^^^^^^^^^^
File "/home/jwnhy/miniconda3/lib/python3.12/site-packages/paddle/nn/functional/conv.py", line 1262, in conv2d_transpose
pre_bias = op(
^^^
RuntimeError: (PreconditionNotMet) Tensor's dimension is out of bound.Tensor's dimension must be equal or less than the size of its memory.But received Tensor's dimension is 18446744048552321260, memory's size is 26382377216.
[Hint: Expected numel() * SizeOf(dtype()) <= memory_size(), but received numel() * SizeOf(dtype()):18446744048552321260 > memory_size():26382377216.] (at ../paddle/phi/core/dense_tensor_impl.cc:46)
bug描述 Describe the Bug
当执行下列代码时,报错 PreconditionNotMet.
错误信息如下
显然我的 Tensor 的长度并没有达到
18446744048552321260
,疑似是库中存在整数溢出 Bug我的环境如下:
其他补充信息 Additional Supplementary Information
No response
The text was updated successfully, but these errors were encountered: