[Mlir-commits] [mlir] Quantile Type and Low FP Support (PR #190321)

Javed Absar llvmlistbot at llvm.org
Sun May 31 16:31:46 PDT 2026


================
@@ -547,6 +548,111 @@ class CalibratedQuantizedType
   double getMax() const;
 };
 
+/*Syntax:
+
+    ```
+    quantile-type ::= `!quant.quantile` `<` type `:` type `,` `{` float-list `}`
+   `,` `<` int `,` int `>`? `>`
----------------
javedabsar1 wrote:

I guess the  ','  should be part of the optional otherwise it is always there even min:max is absent. something
like
quantile-type ::= !quant.quantile < type : type , { float-list }
(, < int , int >)? >

https://github.com/llvm/llvm-project/pull/190321


More information about the Mlir-commits mailing list