Closed MasterJH5574 closed 1 year ago
As tracked by #332, this PR is the O2c milestone of the high-level operator introduction plan.
This PR introduces a few creation operators:
full
full_like
ones
ones_like
zeros
zeros_like
tril
triu
The operators are all well-tested. In Relay and TOPI, tril and trilu are merged as a single op trilu. Here we want to align with DataAPI and thus keep them separately.
trilu
Depends on #334.
As tracked by #332, this PR is the O2c milestone of the high-level operator introduction plan.
This PR introduces a few creation operators:
full
,full_like
,ones
,ones_like
,zeros
,zeros_like
,tril
,triu
.The operators are all well-tested. In Relay and TOPI,
tril
andtrilu
are merged as a single optrilu
. Here we want to align with DataAPI and thus keep them separately.