Oneflow-Inc / oneflow

OneFlow is a deep learning framework designed to be user-friendly, scalable and efficient.
http://www.oneflow.org
Apache License 2.0
5.79k stars 658 forks source link

Aborted (core dumped) in flow.nn.functional.conv2d #10488

Open x0w3n opened 2 months ago

x0w3n commented 2 months ago

Summary

it triggers a crash when I pass a multi-dimensional tensor to flow.nn.functional.conv2d.

Code to reproduce bug

mport oneflow as flow
a = flow.ones([1,1,1,1])
b = flow.tensor(1)
print(a)
print(b)
flow.nn.functional.conv2d(a,b)

Relevant log output

image

System Information