| 25 | #include <op_builder_test_utils.hpp> |
| 26 | |
| 27 | TEST_CASE(mean_variance_normalization_invalid_input_dim_op_builder_test) |
| 28 | { |
| 29 | migraphx::module mm; |
| 30 | mm.add_parameter("x", {migraphx::shape::float_type, {3}}); |
| 31 | |
| 32 | EXPECT(test::throws<migraphx::exception>( |
| 33 | [&] { make_op_module("mean_variance_normalization", {}, mm.get_parameters()); }, |
| 34 | "mvn op_builder: Length of axes attribute needs to be equal to input tensor rank - 1")); |
| 35 | } |
| 36 | |
| 37 | TEST_CASE(mean_variance_normalization_happy_path_op_builder_test) |
| 38 | { |
nothing calls this directly
no test coverage detected