| 117 | class TileTest : public ::testing::TestWithParam<TestType> {}; |
| 118 | |
| 119 | TEST_P(TileTest, Float32Vector) { |
| 120 | Check<float>(/*input_shape=*/{3}, |
| 121 | /*input_data=*/{1.0, 2.0, 3.0}, |
| 122 | /*multipliers_data=*/{2}, /*exp_output_shape=*/{6}, |
| 123 | /*exp_output_data=*/{1.0, 2.0, 3.0, 1.0, 2.0, 3.0}, |
| 124 | /*input_type=*/TensorType_FLOAT32, |
| 125 | /*multiply_type=*/TensorType_INT32, GetParam()); |
| 126 | } |
| 127 | |
| 128 | TEST_P(TileTest, Float32Matrix) { |
| 129 | Check<float>( |
nothing calls this directly
no test coverage detected