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
It is suggested to write a get_methodName_oputput_shape() to compute the shape of the output so that the same method can be called during the generation of the readyGraph.
The "lean version" of a method is in the format:
pub inline fn methodName_lean (args) void {
...
... actual computation of the output
}
"lean" and "standard" are mandatory.
The lean version is called during the codegen and the standard version is used in testings.
The text was updated successfully, but these errors were encountered:
Current Problem
The "sub" mathematical operation does not respect the onnx format and it is not present any "lean" version of the function
Standard & lean format
The "standard version" of a method is in the format:
It is suggested to write a
get_methodName_oputput_shape()
to compute the shape of the output so that the same method can be called during the generation of the readyGraph.The "lean version" of a method is in the format:
"lean" and "standard" are mandatory.
The lean version is called during the codegen and the standard version is used in testings.
The text was updated successfully, but these errors were encountered: