spcl / daceml

A Data-Centric Compiler for Machine Learning

Home Page:https://daceml.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

More ergonomic python frontend calling of onnx functions

orausch opened this issue · comments

Something like

C[:] = ONNXAdd(A, B)

instead of

ONNXAdd(A=A, B=B, C=C)

This would require renaming the current ONNX nodes to something else, maybe like ONNXAddNode. (so that we can still have to old behaviour for fallback)