Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,13 @@ class Tosa_I32EnumAttr<string name, string description, string mnemonic,
// FP : Floating-Point Inference. Primarily FP16 and FP32 operations.
//
// Extension:
// INT16 : 16-bit integer operations.
// INT4 : 4-bit integer weights.
// BF16 : BFloat16 operations.
// FP8 : 8-bit floating-point operations E4M3.
// FP8 : 8-bit floating-point operations E5M2.
// FFT : Fast Fourier Transform operations.
// VARIABLE : Stateful variable operations.
// INT16 : 16-bit integer operations.
// INT4 : 4-bit integer weights.
// BF16 : BFloat16 operations.
// FP8E4M3 : 8-bit floating-point operations E4M3.
// FP8E5M2 : 8-bit floating-point operations E5M2.
// FFT : Fast Fourier Transform operations.
// VARIABLE : Stateful variable operations.
//===----------------------------------------------------------------------===//

def Tosa_PRO_INT : I32EnumAttrCase<"pro_int", 1>;
Expand Down
Loading