duan8/yolop/macros.h
mantuoluozk f334a1aa38
yolop TRT8 support (#1202)
* yolop TRT8 support

* yolop TRT8 support
2023-01-11 14:05:42 +08:00

12 lines
210 B
C

#ifndef __MACROS_H
#define __MACROS_H
#if NV_TENSORRT_MAJOR >= 8
#define TRT_NOEXCEPT noexcept
#define TRT_CONST_ENQUEUE const
#else
#define TRT_NOEXCEPT
#define TRT_CONST_ENQUEUE
#endif
#endif // __MACROS_H