1 Star 2 Fork 0

Trisoil/Yolo_To_TR

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
cuda_utils.h 417 Bytes
一键复制 编辑 原始数据 按行查看 历史
lightonthefloor 提交于 2022-12-05 21:01 . Initial commit
#ifndef TRTX_CUDA_UTILS_H_
#define TRTX_CUDA_UTILS_H_
#include <cuda_runtime_api.h>
#ifndef CUDA_CHECK
#define CUDA_CHECK(callstr)\
{\
cudaError_t error_code = callstr;\
if (error_code != cudaSuccess) {\
std::cerr << "CUDA error " << error_code << " at " << __FILE__ << ":" << __LINE__;\
assert(0);\
}\
}
#endif // CUDA_CHECK
#endif // TRTX_CUDA_UTILS_H_
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/trisoill/Yolo_To_TR.git
git@gitee.com:trisoill/Yolo_To_TR.git
trisoill
Yolo_To_TR
Yolo_To_TR
main

搜索帮助