-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CANN error executing while running Conv node #18807
Comments
I tried another model with a single Liner layer class X(nn.Module):
def __init__(self):
super().__init__()
self.linear = nn.Linear(2, 2)
def forward(self, x):
return self.linear(x) and it works, but if you replace the Liner layer with Conv2d class X(nn.Module):
def __init__(self):
super().__init__()
self.linear = nn.Conv2d(2, 2, 2)
def forward(self, x):
return self.linear(x) the error occurs again. So I think maybe there's an error with convolution? |
It's a bug of cann-opp installing program, I have solved it. |
I have met the same problem, how to slove it? |
I manually unzipped and copied some of the files from the opp installer, though I didn't actually solve the problem completely, it just turned into another error, so I finally gave up. |
ok, thanks a lot |
I solve it. You might open the ACL log by setting |
Describe the issue
I'm trying to run an onnx model on a Huawei cloud server that has an Ascend 310, but it reports the following error while
model.run
.Specifically, I have the following configuration:
If I change the 'enable_cann_graph' setting to True, then it reports the following error
There is no error while using
CPUExecutionProvider
.Please help me, thanks!
To reproduce
my code
and here is my model
Urgency
No response
Platform
Linux
OS Version
Ubuntu 18.04
ONNX Runtime Installation
Released Package
ONNX Runtime Version or Commit ID
1.15.1
ONNX Runtime API
Python
Architecture
X64
Execution Provider
CANN
Execution Provider Library Version
CANN 7.0.0
The text was updated successfully, but these errors were encountered: