You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
321 B
11 lines
321 B
// RUN: mlir-opt -allow-unregistered-dialect %s -split-input-file | FileCheck %s
|
|
|
|
// -----
|
|
// CHECK-LABEL: parseCalibrated
|
|
// CHECK: !quant.calibrated<f32<-0.998:1.232100e+00>
|
|
!qalias = type !quant.calibrated<f32<-0.998:1.2321>>
|
|
func @parseCalibrated() -> !qalias {
|
|
%0 = "foo"() : () -> !qalias
|
|
return %0 : !qalias
|
|
}
|