voxel-detection_tensorrt_dynamic-kitti-32x4.py 665 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 << 30),
    model_inputs=[
        dict(
            input_shapes=dict(
                voxels=dict(
                    min_shape=[2000, 32, 4],
                    opt_shape=[5000, 32, 4],
                    max_shape=[9000, 32, 4]),
                num_points=dict(
                    min_shape=[2000], opt_shape=[5000], max_shape=[9000]),
                coors=dict(
                    min_shape=[2000, 4],
                    opt_shape=[5000, 4],
                    max_shape=[9000, 4]),
            ))
    ])