mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-22 22:01:08 +00:00
fix Gelu CPU: remove MayInplace() declaration (#2306)
This commit is contained in:
parent
204a6872d3
commit
cba93f7c8d
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ ONNX_OPERATOR_KERNEL_EX(
|
|||
kMSDomain,
|
||||
1,
|
||||
kCpuExecutionProvider,
|
||||
KernelDefBuilder().MayInplace(0, 0).TypeConstraint("T", DataTypeImpl::GetTensorType<float>()),
|
||||
KernelDefBuilder().TypeConstraint("T", DataTypeImpl::GetTensorType<float>()),
|
||||
Gelu<float>);
|
||||
|
||||
} // namespace contrib
|
||||
|
|
|
|||
Loading…
Reference in a new issue