From 2b89cb3bf6cb8949b9defd3de4e53cf7c05bce8f Mon Sep 17 00:00:00 2001 From: Hyukjin Jeong Date: Tue, 5 Nov 2024 15:29:36 +0900 Subject: [PATCH] [loco] Add mx data type (#14301) This adds MXFP4 and MXINT8. ONE-DCO-1.0-Signed-off-by: Hyukjin Jeong --- compiler/loco/include/loco/IR/DataType.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/loco/include/loco/IR/DataType.h b/compiler/loco/include/loco/IR/DataType.h index bb42165f230..8a16d010f62 100644 --- a/compiler/loco/include/loco/IR/DataType.h +++ b/compiler/loco/include/loco/IR/DataType.h @@ -49,6 +49,10 @@ enum class DataType // WARNING STRING is NOT fully supported yet STRING, // String + + // Microscaling data type + MXFP4, + MXINT8, }; } // namespace loco