voxel-detection_tensorrt_dynamic-nus-20x5.py 671 Bytes
Newer Older
limm's avatar
limm committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
_base_ = ['./voxel-detection_dynamic.py', '../../_base_/backends/tensorrt.py']
backend_config = dict(
    common_config=dict(max_workspace_size=1 << 32),
    model_inputs=[
        dict(
            input_shapes=dict(
                voxels=dict(
                    min_shape=[5000, 20, 5],
                    opt_shape=[20000, 20, 5],
                    max_shape=[30000, 20, 5]),
                num_points=dict(
                    min_shape=[5000], opt_shape=[20000], max_shape=[30000]),
                coors=dict(
                    min_shape=[5000, 4],
                    opt_shape=[20000, 4],
                    max_shape=[30000, 4]),
            ))
    ])