• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: mlir-opt -allow-unregistered-dialect %s -split-input-file | FileCheck %s
2
3// -----
4// CHECK-LABEL: parseCalibrated
5// CHECK: !quant.calibrated<f32<-0.998:1.232100e+00>
6!qalias = type !quant.calibrated<f32<-0.998:1.2321>>
7func @parseCalibrated() -> !qalias {
8  %0 = "foo"() : () -> !qalias
9  return %0 : !qalias
10}
11