E.g.
ok
pub(crate) struct TrtxGraph<'context> {
exec: ExecutionContext<'context>,
_engine: CudaEngine<'context>,
cuda_stream: Arc<CudaStream>,
}
not ok
pub(crate) struct TrtxGraph<'context> {
_engine: CudaEngine<'context>,
exec: ExecutionContext<'context>,
cuda_stream: Arc<CudaStream>,
}
E.g.
ok
not ok