C++
C++相关
Code-keys
趁着青春!
展开
-
3D_model parser
Including OBJ, 3DM…在这里插入代码片原创 2021-06-30 17:50:25 · 100 阅读 · 0 评论 -
OpenGL
opengl原创 2021-05-26 10:06:50 · 202 阅读 · 0 评论 -
《GPU高性能编程CUDA实战》
《GPU高性能编程CUDA实战》Chapter 1~3 吹眠曲Chapter 4 kernel并行编程 kernel <<< grids—DIM3,threads-DIM3 >>> ( *args )Chapter 5 线程协作分治的思想 __shared__ memery; __syncthreads();Chapter 6 常量内存 __constant__ 优化内存的 读取 性能。Chapter 7 纹理内存 - 只读原创 2021-06-29 12:18:23 · 856 阅读 · 0 评论 -
CMakeLists.txt
CMakeLists.txt -Version : common内容如下:cmake_minimum_required(VERSION 3.8 FATAL_ERROR)project(main)set(CMAKE_CXX_STANDARD 11)|----------------------- 配置路径 -----------------|set 各大root路径set_ifndef(TORCH_HOME /Volumes/CO_OS/Mac/libtorch)set{LIBRARY_OUT原创 2020-05-19 15:22:59 · 603 阅读 · 0 评论 -
VS2015 C++对象模型
vs2015 C++对象模型1. 抽象类vfptr@thisint、char、string。。@this2. 单实继承抽象类的 子类修改父vfptrbasevfptr@mix修改为自己的 重写的虚函数末尾添加 自己的新虚函数int、char、string。。@baseint、char、string。。@this3. 单虚继承抽象类的 子类修改父vfptr 添加自己的vfptrvfptr@this如果自己 new一个vbptr@thi原创 2021-04-24 19:45:27 · 138 阅读 · 0 评论