async-tensorrt 0.9.1

Async TensorRT for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use cpp::cpp;

cpp! {{
    #if NV_TENSORRT_MAJOR < 10
    class Dims64
    {
    public:
        static constexpr int32_t MAX_DIMS{8};
        int32_t nbDims;
        int64_t d[MAX_DIMS];
    };
    #endif
}}