MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / TEST_P

Function TEST_P

tensorflow/lite/kernels/tile_test.cc:119–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117class TileTest : public ::testing::TestWithParam<TestType> {};
118
119TEST_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
128TEST_P(TileTest, Float32Matrix) {
129 Check<float>(

Callers

nothing calls this directly

Calls 1

GetParamFunction · 0.85

Tested by

no test coverage detected