| 216 | } |
| 217 | |
| 218 | bool test_reshape() { |
| 219 | TestUtils::FP16TestFixture fixture("Reshape"); |
| 220 | |
| 221 | size_t input_a = fixture.create_input({2, 3}); |
| 222 | size_t reshape_result = fixture.graph().reshape(input_a, {3, 2}); |
| 223 | |
| 224 | std::vector<__fp16> data_a = {1, 2, 3, 4, 5, 6}; |
| 225 | fixture.set_input_data(input_a, data_a); |
| 226 | fixture.execute(); |
| 227 | |
| 228 | return fixture.verify_output(reshape_result, data_a); |
| 229 | } |
| 230 | |
| 231 | |
| 232 | bool test_scalar_operations() { |
no test coverage detected