09 2024 档案

摘要:代码 #include <windows.h> #include <Psapi.h> #include <algorithm> #include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> #include < 阅读全文
posted @ 2024-09-20 10:36 倚剑问天 阅读(407) 评论(0) 推荐(0)
摘要:代码 // 单精度转半精度 unsigned short cpu_float2half(float f) { unsigned short ret; unsigned x = *((int*)(void*)(&f)); unsigned u = (x & 0x7fffffff), remainder 阅读全文
posted @ 2024-09-18 17:01 倚剑问天 阅读(256) 评论(0) 推荐(0)
摘要:通用工程模板 1. 输出目录:$(ProjectDir)..\output\$(ProjectName)\$(Platform)_$(Configuration)\ 2. 中间目录:$(ProjectDir)..\output\$(ProjectName)\$(Platform)_$(Configu 阅读全文
posted @ 2024-09-04 23:13 倚剑问天 阅读(104) 评论(0) 推荐(0)