Closed okdshin closed 5 years ago
Sorry. I don't understand what the problem this PR fixes.
Sorry, I lacked the description. TensorRT strictly distinguishes variable and parameter (parameter is constant) because batch axis is special in TensorRT. For the mul test, all inputs should be treated as variable. If it is not so, shape mismatch happens because variable and parameter have different shapes about batch axis. OP_TEST treats all inputs are variable. OP_TEST_STATIC_PARAMS treats the first input is variable and the others are parameters.
Don't mind. Thank you for reviewing!
This PR depends on #192