1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// RUN: mlir-opt -split-input-file -convert-arith-to-spirv -verify-diagnostics %s
///===----------------------------------------------------------------------===//
// Binary ops
//===----------------------------------------------------------------------===//
// -----
module attributes {
spirv.target_env = #spirv.target_env<
#spirv.vce<v1.0, [Int8, Int16, Int64, Float16, Float64, Shader], []>, #spirv.resource_limits<>>
} {
func.func @unsupported_5elem_vector(%arg0: vector<5xi32>) {
// expected-error@+1 {{failed to legalize operation 'arith.subi'}}
%1 = arith.subi %arg0, %arg0: vector<5xi32>
return
}
} // end module
// -----
module attributes {
spirv.target_env = #spirv.target_env<
#spirv.vce<v1.0, [Int8, Int16, Int64, Float16, Float64, Shader], []>, #spirv.resource_limits<>>
} {
func.func @unsupported_2x2elem_vector(%arg0: vector<2x2xi32>) {
// expected-error@+1 {{failed to legalize operation 'arith.muli'}}
%2 = arith.muli %arg0, %arg0: vector<2x2xi32>
return
}
} // end module
// -----
func.func @int_vector4_invalid(%arg0: vector<2xi16>) {
// expected-error @+2 {{failed to legalize operation 'arith.divui'}}
// expected-error @+1 {{bitwidth emulation is not implemented yet on unsigned op}}
%0 = arith.divui %arg0, %arg0: vector<2xi16>
return
}
///===----------------------------------------------------------------------===//
// Constant ops
//===----------------------------------------------------------------------===//
// -----
func.func @unsupported_constant_i64_0() {
// expected-error @+1 {{failed to legalize operation 'arith.constant'}}
%0 = arith.constant 0 : i64
return
}
// -----
func.func @unsupported_constant_i64_1() {
// expected-error @+1 {{failed to legalize operation 'arith.constant'}}
%0 = arith.constant 4294967296 : i64 // 2^32
return
}
// -----
func.func @unsupported_constant_vector_2xi64_0() {
// expected-error @+1 {{failed to legalize operation 'arith.constant'}}
%1 = arith.constant dense<0> : vector<2xi64>
return
}
// -----
func.func @unsupported_constant_f64_0() {
// expected-error @+1 {{failed to legalize operation 'arith.constant'}}
%1 = arith.constant 0.0 : f64
return
}
// -----
func.func @unsupported_constant_vector_2xf64_0() {
// expected-error @+1 {{failed to legalize operation 'arith.constant'}}
%1 = arith.constant dense<0.0> : vector<2xf64>
return
}
// -----
func.func @unsupported_constant_tensor_2xf64_0() {
// expected-error @+1 {{failed to legalize operation 'arith.constant'}}
%1 = arith.constant dense<0.0> : tensor<2xf64>
return
}
///===----------------------------------------------------------------------===//
// Type emulation
//===----------------------------------------------------------------------===//
// -----
module attributes {
spirv.target_env = #spirv.target_env<
#spirv.vce<v1.0, [], []>, #spirv.resource_limits<>>
} {
// Check that we do not emualte i64 by truncating to i32.
func.func @unsupported_i64(%arg0: i64) {
// expected-error@+1 {{failed to legalize operation 'arith.addi'}}
%2 = arith.addi %arg0, %arg0: i64
return
}
} // end module
// -----
module attributes {
spirv.target_env = #spirv.target_env<
#spirv.vce<v1.0, [], []>, #spirv.resource_limits<>>
} {
// Check that we do not emualte f64 by truncating to i32.
func.func @unsupported_f64(%arg0: f64) {
// expected-error@+1 {{failed to legalize operation 'arith.addf'}}
%2 = arith.addf %arg0, %arg0: f64
return
}
} // end module
// -----
module attributes {
spirv.target_env = #spirv.target_env<
#spirv.vce<v1.0, [], []>, #spirv.resource_limits<>>
} {
// i64 is not a valid result type in this target env.
func.func @type_conversion_failure(%arg0: i32) {
// expected-error@+1 {{failed to legalize operation 'arith.extsi'}}
%2 = arith.extsi %arg0 : i32 to i64
return
}
} // end module
|