File tree Expand file tree Collapse file tree 4 files changed +654
-4
lines changed Expand file tree Collapse file tree 4 files changed +654
-4
lines changed Original file line number Diff line number Diff line change 2626 long ,
2727 short ,
2828 uint8 ,
29+ uint16 ,
30+ uint32 ,
31+ uint64 ,
2932)
3033from infinicore .ops .add import add
3134from infinicore .ops .attention import attention
4144 ones ,
4245 strided_empty ,
4346 strided_from_blob ,
47+ tensor ,
4448 zeros ,
4549)
4650
7478 "long" ,
7579 "short" ,
7680 "uint8" ,
81+ "uint16" ,
82+ "uint32" ,
83+ "uint64" ,
7784 # Operations.
7885 "add" ,
7986 "attention" ,
8794 "ones" ,
8895 "strided_empty" ,
8996 "strided_from_blob" ,
97+ "tensor" ,
9098 "zeros" ,
9199]
92100
Original file line number Diff line number Diff line change @@ -68,6 +68,9 @@ def __hash__(self):
6868half = float16
6969bfloat16 = dtype (_infinicore .DataType .BF16 )
7070uint8 = dtype (_infinicore .DataType .U8 )
71+ uint16 = dtype (_infinicore .DataType .U16 )
72+ uint32 = dtype (_infinicore .DataType .U32 )
73+ uint64 = dtype (_infinicore .DataType .U64 )
7174int8 = dtype (_infinicore .DataType .I8 )
7275int16 = dtype (_infinicore .DataType .I16 )
7376short = int16
You can’t perform that action at this time.
0 commit comments