| // RUN: mlir-opt --split-input-file %s \ |
| // RUN: --pass-pipeline='builtin.module(func.func(convert-arith-to-amdgpu{chipset=gfx950 saturate-fp8-truncf=true}))' \ |
| // RUN: | FileCheck %s |
| |
| // RUN: mlir-opt --split-input-file %s \ |
| // RUN: --pass-pipeline='builtin.module(func.func(convert-arith-to-amdgpu{chipset=gfx1200 saturate-fp8-truncf=true}))' \ |
| // RUN: | FileCheck %s |
| |
| // CHECK-LABEL: func.func @scalar_trunc |
| // CHECK-SAME: ([[V:%.+]]: f16) |
| // CHECK-DAG: [[CMin:%.+]] = arith.constant -5.734400e+04 : f16 |
| // CHECK-DAG: [[CMax:%.+]] = arith.constant 5.734400e+04 : f16 |
| // CHECK-DAG: [[CInf:%.+]] = arith.constant 0x7C00 : f16 |
| // CHECK-DAG: [[CNegInf:%.+]] = arith.constant 0xFC00 : f16 |
| // CHECK: [[ISINF:%.+]] = arith.cmpf oeq, [[V]], [[CInf]] |
| // CHECK: [[ISNEGINF:%.+]] = arith.cmpf oeq, [[V]], [[CNegInf]] |
| // CHECK: [[ISNAN:%.+]] = arith.cmpf uno, [[V]], [[V]] |
| // CHECK: [[ISNONFINITE_1:%.+]] = arith.ori [[ISINF]], [[ISNEGINF]] |
| // CHECK: [[ISNONFINITE:%.+]] = arith.ori [[ISNONFINITE_1]], [[ISNAN]] |
| // CHECK: [[CLAMPEDBELOW:%.+]] = arith.maximumf [[V]], [[CMin]] |
| // CHECK: [[CLAMPED:%.+]] = arith.minimumf [[CLAMPEDBELOW]], [[CMax]] |
| // CHECK: [[SATURATED:%.+]] = arith.select [[ISNONFINITE]], [[V]], [[CLAMPED]] |
| // CHECK: [[FLOAT:%.+]] = arith.extf [[SATURATED]] : f16 to f32 |
| // CHECK: [[TRUNCV:%.+]] = amdgpu.packed_trunc_2xfp8 [[FLOAT]], undef into undef[word 0] : f32 to vector<4xf8E5M2> |
| // CHECK: [[W:%.+]] = vector.extract [[TRUNCV]][0] : f8E5M2 from vector<4xf8E5M2> |
| // CHECK: return [[W]] : f8E5M2 |
| func.func @scalar_trunc(%v: f16) -> f8E5M2 { |
| %w = arith.truncf %v : f16 to f8E5M2 |
| return %w : f8E5M2 |
| } |
| |
| // No 0-D test because arith.truncf hasn't been extended to support it. |
| |
| // ----- |
| |
| // CHECK-LABEL: func.func @vector_trunc |
| // CHECK-SAME: ([[V:%.+]]: vector<2xf32>) -> vector<2xf8E4M3FN> { |
| // CHECK-DAG: [[CMin:%.+]] = arith.constant dense<-4.480000e+02> : vector<2xf32> |
| // CHECK-DAG: [[CMax:%.+]] = arith.constant dense<4.480000e+02> : vector<2xf32> |
| // CHECK-DAG: [[CInf:%.+]] = arith.constant dense<0x7F800000> : vector<2xf32> |
| // CHECK-DAG: [[CNegInf:%.+]] = arith.constant dense<0xFF800000> : vector<2xf32> |
| // CHECK: [[ISINF:%.+]] = arith.cmpf oeq, [[V]], [[CInf]] |
| // CHECK: [[ISNEGINF:%.+]] = arith.cmpf oeq, [[V]], [[CNegInf]] |
| // CHECK: [[ISNAN:%.+]] = arith.cmpf uno, [[V]], [[V]] |
| // CHECK: [[ISNONFINITE_1:%.+]] = arith.ori [[ISINF]], [[ISNEGINF]] |
| // CHECK: [[ISNONFINITE:%.+]] = arith.ori [[ISNONFINITE_1]], [[ISNAN]] |
| // CHECK: [[CLAMPEDBELOW:%.+]] = arith.maximumf [[V]], [[CMin]] |
| // CHECK: [[CLAMPED:%.+]] = arith.minimumf [[CLAMPEDBELOW]], [[CMax]] |
| // CHECK: [[SATURATED:%.+]] = arith.select [[ISNONFINITE]], [[V]], [[CLAMPED]] |
| // CHECK: [[F0:%.+]] = vector.extract [[SATURATED]][0] |
| // CHECK: [[F1:%.+]] = vector.extract [[SATURATED]][1] |
| // CHECK: [[W0:%.+]] = amdgpu.packed_trunc_2xfp8 [[F0]], [[F1]] into undef[word 0] : f32 to vector<4xf8E4M3FN> |
| // CHECK: [[W:%.+]] = vector.extract_strided_slice [[W0]] {offsets = [0], sizes = [2], strides = [1]} : vector<4xf8E4M3FN> to vector<2xf8E4M3FN> |
| // CHECK: return [[W]] : vector<2xf8E4M3FN> |
| func.func @vector_trunc_short(%v: vector<2xf32>) -> vector<2xf8E4M3FN> { |
| %w = arith.truncf %v : vector<2xf32> to vector<2xf8E4M3FN> |
| return %w : vector<2xf8E4M3FN> |
| } |