gotch/ts/layout.go
2023-07-26 21:43:21 +10:00

16 lines
317 B
Go

package ts
// include/c10/core/Layout.h
type Layout int8
const (
Strided Layout = iota // 0
Sparse // 1
SparseCsr // 2
Mkldnn // 3
SparseCsc // 4
SparseBsr // 5
SparseBsc // 6
NumOptions // 7
)