Hello,
I tested the data types of TRT:
>>> type(trt.infer.DataType.INT8.input_type())
<class 'numpy.float32'>
>>> type(trt.infer.DataType.INT32.input_type())
<class 'numpy.float32'>
>>> type(trt.infer.DataType.HALF.input_type())
<class 'numpy.float16'>
>>> type(trt.infer.DataType.FLOAT.input_type())
<class 'numpy.float32'>
Why the INT8.input_type() and INT32.input_type() indicate float32?
Is this intended results?
Thanks!