Skip to content

[mlir][tosa] Align operator descriptions with the spec #128046

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 21, 2025
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