
C++
hasakidong
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C/C++指针理解
指针记住两点:指针有类型,类型定义了+1怎么操作,跨越多少单位指针有值,指针的变量的值反应了指针的实际指向位置。 +1的时候以实际指向位置为原点,跨越类型指示的单位个数 int b[2][3]; cout << b << endl; cout << &b << endl; cout << &b[0] <&...原创 2020-01-06 13:28:31 · 213 阅读 · 0 评论 -
Pytorch部署:用C++调用Pytorch生成的模型
Loading a TorchScript Model in C++ The following paragraphs will outline the path PyTorch provides to go from an existing Python model to a serialized representation that can be loaded and executed p...原创 2019-11-03 18:42:36 · 840 阅读 · 0 评论