摘要:
先来看一下官方文档的api简介: TensorRT provides a C++ implementation on all supported platforms, and a Python implementation on Linux. Python is not currently supp 阅读全文
摘要:
#include<iostream> using namespace std; //相同的内存地址 union myun { struct { int x; int y; int z; }u; int k; }a; int main() { a.u.x =4; a.u.y =5; a.u.z =6; 阅读全文