| // Copyright 2023 The Dawn & Tint Authors |
| // |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are met: |
| // |
| // 1. Redistributions of source code must retain the above copyright notice, this |
| // list of conditions and the following disclaimer. |
| // |
| // 2. Redistributions in binary form must reproduce the above copyright notice, |
| // this list of conditions and the following disclaimer in the documentation |
| // and/or other materials provided with the distribution. |
| // |
| // 3. Neither the name of the copyright holder nor the names of its |
| // contributors may be used to endorse or promote products derived from |
| // this software without specific prior written permission. |
| // |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| #include "src/tint/lang/spirv/writer/raise/handle_matrix_arithmetic.h" |
| |
| #include <utility> |
| |
| #include "src/tint/lang/core/ir/transform/helper_test.h" |
| #include "src/tint/lang/core/type/matrix.h" |
| |
| namespace tint::spirv::writer::raise { |
| namespace { |
| |
| using namespace tint::core::fluent_types; // NOLINT |
| using namespace tint::core::number_suffixes; // NOLINT |
| |
| using SpirvWriter_HandleMatrixArithmeticTest = core::ir::transform::TransformTest; |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Add_Mat2x3f) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat2x3<f32>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat2x3<f32>()); |
| auto* func = b.Function("foo", ty.mat2x3<f32>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Add(ty.mat2x3<f32>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat2x3<f32>, %arg2:mat2x3<f32>):mat2x3<f32> { |
| $B1: { |
| %4:mat2x3<f32> = add %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat2x3<f32>, %arg2:mat2x3<f32>):mat2x3<f32> { |
| $B1: { |
| %4:vec3<f32> = access %arg1, 0u |
| %5:vec3<f32> = access %arg2, 0u |
| %6:vec3<f32> = add %4, %5 |
| %7:vec3<f32> = access %arg1, 1u |
| %8:vec3<f32> = access %arg2, 1u |
| %9:vec3<f32> = add %7, %8 |
| %10:mat2x3<f32> = construct %6, %9 |
| ret %10 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Add_Mat4x2h) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat4x2<f16>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat4x2<f16>()); |
| auto* func = b.Function("foo", ty.mat4x2<f16>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Add(ty.mat4x2<f16>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat4x2<f16>, %arg2:mat4x2<f16>):mat4x2<f16> { |
| $B1: { |
| %4:mat4x2<f16> = add %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat4x2<f16>, %arg2:mat4x2<f16>):mat4x2<f16> { |
| $B1: { |
| %4:vec2<f16> = access %arg1, 0u |
| %5:vec2<f16> = access %arg2, 0u |
| %6:vec2<f16> = add %4, %5 |
| %7:vec2<f16> = access %arg1, 1u |
| %8:vec2<f16> = access %arg2, 1u |
| %9:vec2<f16> = add %7, %8 |
| %10:vec2<f16> = access %arg1, 2u |
| %11:vec2<f16> = access %arg2, 2u |
| %12:vec2<f16> = add %10, %11 |
| %13:vec2<f16> = access %arg1, 3u |
| %14:vec2<f16> = access %arg2, 3u |
| %15:vec2<f16> = add %13, %14 |
| %16:mat4x2<f16> = construct %6, %9, %12, %15 |
| ret %16 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Subtract_Mat3x2f) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat3x2<f32>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat3x2<f32>()); |
| auto* func = b.Function("foo", ty.mat3x2<f32>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Subtract(ty.mat3x2<f32>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat3x2<f32>, %arg2:mat3x2<f32>):mat3x2<f32> { |
| $B1: { |
| %4:mat3x2<f32> = sub %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat3x2<f32>, %arg2:mat3x2<f32>):mat3x2<f32> { |
| $B1: { |
| %4:vec2<f32> = access %arg1, 0u |
| %5:vec2<f32> = access %arg2, 0u |
| %6:vec2<f32> = sub %4, %5 |
| %7:vec2<f32> = access %arg1, 1u |
| %8:vec2<f32> = access %arg2, 1u |
| %9:vec2<f32> = sub %7, %8 |
| %10:vec2<f32> = access %arg1, 2u |
| %11:vec2<f32> = access %arg2, 2u |
| %12:vec2<f32> = sub %10, %11 |
| %13:mat3x2<f32> = construct %6, %9, %12 |
| ret %13 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Subtract_Mat2x4h) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat2x4<f16>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat2x4<f16>()); |
| auto* func = b.Function("foo", ty.mat2x4<f16>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Subtract(ty.mat2x4<f16>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat2x4<f16>, %arg2:mat2x4<f16>):mat2x4<f16> { |
| $B1: { |
| %4:mat2x4<f16> = sub %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat2x4<f16>, %arg2:mat2x4<f16>):mat2x4<f16> { |
| $B1: { |
| %4:vec4<f16> = access %arg1, 0u |
| %5:vec4<f16> = access %arg2, 0u |
| %6:vec4<f16> = sub %4, %5 |
| %7:vec4<f16> = access %arg1, 1u |
| %8:vec4<f16> = access %arg2, 1u |
| %9:vec4<f16> = sub %7, %8 |
| %10:mat2x4<f16> = construct %6, %9 |
| ret %10 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Mul_Mat2x3f_Scalar) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat2x3<f32>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.f32()); |
| auto* func = b.Function("foo", ty.mat2x3<f32>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Multiply(ty.mat2x3<f32>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat2x3<f32>, %arg2:f32):mat2x3<f32> { |
| $B1: { |
| %4:mat2x3<f32> = mul %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat2x3<f32>, %arg2:f32):mat2x3<f32> { |
| $B1: { |
| %4:mat2x3<f32> = spirv.matrix_times_scalar %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Mul_Mat3x4f_Vector) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat3x4<f32>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.vec3<f32>()); |
| auto* func = b.Function("foo", ty.vec4<f32>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Multiply(ty.vec4<f32>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat3x4<f32>, %arg2:vec3<f32>):vec4<f32> { |
| $B1: { |
| %4:vec4<f32> = mul %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat3x4<f32>, %arg2:vec3<f32>):vec4<f32> { |
| $B1: { |
| %4:vec4<f32> = spirv.matrix_times_vector %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Mul_Mat4x2f_Mat2x4) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat4x2<f32>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat2x4<f32>()); |
| auto* func = b.Function("foo", ty.mat2x2<f32>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Multiply(ty.mat2x2<f32>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat4x2<f32>, %arg2:mat2x4<f32>):mat2x2<f32> { |
| $B1: { |
| %4:mat2x2<f32> = mul %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat4x2<f32>, %arg2:mat2x4<f32>):mat2x2<f32> { |
| $B1: { |
| %4:mat2x2<f32> = spirv.matrix_times_matrix %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Mul_Scalar_Mat3x2h) { |
| auto* arg1 = b.FunctionParam("arg1", ty.f16()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat3x2<f16>()); |
| auto* func = b.Function("foo", ty.mat3x2<f16>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Multiply(ty.mat3x2<f16>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:f16, %arg2:mat3x2<f16>):mat3x2<f16> { |
| $B1: { |
| %4:mat3x2<f16> = mul %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:f16, %arg2:mat3x2<f16>):mat3x2<f16> { |
| $B1: { |
| %4:mat3x2<f16> = spirv.matrix_times_scalar %arg2, %arg1 |
| ret %4 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Mul_Vector_Mat3x4f) { |
| auto* arg1 = b.FunctionParam("arg1", ty.vec3<f16>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat4x3<f16>()); |
| auto* func = b.Function("foo", ty.vec4<f16>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Multiply(ty.vec4<f16>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:vec3<f16>, %arg2:mat4x3<f16>):vec4<f16> { |
| $B1: { |
| %4:vec4<f16> = mul %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:vec3<f16>, %arg2:mat4x3<f16>):vec4<f16> { |
| $B1: { |
| %4:vec4<f16> = spirv.vector_times_matrix %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Mul_Mat3x3f_Mat3x3) { |
| auto* arg1 = b.FunctionParam("arg1", ty.mat3x3<f16>()); |
| auto* arg2 = b.FunctionParam("arg2", ty.mat3x3<f16>()); |
| auto* func = b.Function("foo", ty.mat3x3<f16>()); |
| func->SetParams({arg1, arg2}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Multiply(ty.mat3x3<f16>(), arg1, arg2); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg1:mat3x3<f16>, %arg2:mat3x3<f16>):mat3x3<f16> { |
| $B1: { |
| %4:mat3x3<f16> = mul %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg1:mat3x3<f16>, %arg2:mat3x3<f16>):mat3x3<f16> { |
| $B1: { |
| %4:mat3x3<f16> = spirv.matrix_times_matrix %arg1, %arg2 |
| ret %4 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Convert_Mat2x3_F32_to_F16) { |
| auto* arg = b.FunctionParam("arg", ty.mat2x3<f32>()); |
| auto* func = b.Function("foo", ty.mat2x3<f16>()); |
| func->SetParams({arg}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Convert(ty.mat2x3<f16>(), arg); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg:mat2x3<f32>):mat2x3<f16> { |
| $B1: { |
| %3:mat2x3<f16> = convert %arg |
| ret %3 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg:mat2x3<f32>):mat2x3<f16> { |
| $B1: { |
| %3:vec3<f32> = access %arg, 0u |
| %4:vec3<f16> = convert %3 |
| %5:vec3<f32> = access %arg, 1u |
| %6:vec3<f16> = convert %5 |
| %7:mat2x3<f16> = construct %4, %6 |
| ret %7 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Convert_Mat4x4_F32_to_F16) { |
| auto* arg = b.FunctionParam("arg", ty.mat4x4<f32>()); |
| auto* func = b.Function("foo", ty.mat4x4<f16>()); |
| func->SetParams({arg}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Convert(ty.mat4x4<f16>(), arg); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg:mat4x4<f32>):mat4x4<f16> { |
| $B1: { |
| %3:mat4x4<f16> = convert %arg |
| ret %3 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg:mat4x4<f32>):mat4x4<f16> { |
| $B1: { |
| %3:vec4<f32> = access %arg, 0u |
| %4:vec4<f16> = convert %3 |
| %5:vec4<f32> = access %arg, 1u |
| %6:vec4<f16> = convert %5 |
| %7:vec4<f32> = access %arg, 2u |
| %8:vec4<f16> = convert %7 |
| %9:vec4<f32> = access %arg, 3u |
| %10:vec4<f16> = convert %9 |
| %11:mat4x4<f16> = construct %4, %6, %8, %10 |
| ret %11 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Convert_Mat4x3_F16_to_F32) { |
| auto* arg = b.FunctionParam("arg", ty.mat4x3<f16>()); |
| auto* func = b.Function("foo", ty.mat4x3<f32>()); |
| func->SetParams({arg}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Convert(ty.mat4x3<f32>(), arg); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg:mat4x3<f16>):mat4x3<f32> { |
| $B1: { |
| %3:mat4x3<f32> = convert %arg |
| ret %3 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg:mat4x3<f16>):mat4x3<f32> { |
| $B1: { |
| %3:vec3<f16> = access %arg, 0u |
| %4:vec3<f32> = convert %3 |
| %5:vec3<f16> = access %arg, 1u |
| %6:vec3<f32> = convert %5 |
| %7:vec3<f16> = access %arg, 2u |
| %8:vec3<f32> = convert %7 |
| %9:vec3<f16> = access %arg, 3u |
| %10:vec3<f32> = convert %9 |
| %11:mat4x3<f32> = construct %4, %6, %8, %10 |
| ret %11 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| TEST_F(SpirvWriter_HandleMatrixArithmeticTest, Convert_Mat2x2_F16_to_F32) { |
| auto* arg = b.FunctionParam("arg", ty.mat2x2<f32>()); |
| auto* func = b.Function("foo", ty.mat2x2<f16>()); |
| func->SetParams({arg}); |
| |
| b.Append(func->Block(), [&] { |
| auto* result = b.Convert(ty.mat2x2<f16>(), arg); |
| b.Return(func, result); |
| }); |
| |
| auto* src = R"( |
| %foo = func(%arg:mat2x2<f32>):mat2x2<f16> { |
| $B1: { |
| %3:mat2x2<f16> = convert %arg |
| ret %3 |
| } |
| } |
| )"; |
| EXPECT_EQ(src, str()); |
| |
| auto* expect = R"( |
| %foo = func(%arg:mat2x2<f32>):mat2x2<f16> { |
| $B1: { |
| %3:vec2<f32> = access %arg, 0u |
| %4:vec2<f16> = convert %3 |
| %5:vec2<f32> = access %arg, 1u |
| %6:vec2<f16> = convert %5 |
| %7:mat2x2<f16> = construct %4, %6 |
| ret %7 |
| } |
| } |
| )"; |
| |
| Run(HandleMatrixArithmetic); |
| |
| EXPECT_EQ(expect, str()); |
| } |
| |
| } // namespace |
| } // namespace tint::spirv::writer::raise |