摘要:
![](https://img2023.cnblogs.com/blog/1481923/202304/1481923-20230418165953418-1537397585.png) 阅读全文
摘要:
安培 应用兼容性 一个cuda可执行文件可能是由以下两种格式之一的代码构成: cubin 前向兼容的ptx cubin方面 对于一个指定算力的卡,生成出来的cubin版本相同,minor等同或更高的卡上跑 例如,一个针对7.0生成的cubin可以在7.5上跑,一个针对7.5上生成的cubin不能在7 阅读全文
摘要:
#include <cstdlib> #include <cstring> #include <iostream> using namespace std; size_t N = 1, IC = 3, IH = 2, IW = 2; size_t OC = 2, FH = 2, FW = 2; si 阅读全文
摘要:
#include <iostream> #include <iomanip> #include <type_traits> class A {}; enum E : int {}; template <class T> T f(T i) { static_assert(std::is_integra 阅读全文
摘要:
这里用一个lambda来作为shared ptr的删除器,lambda没有做任何操作,保证这份数据的内存管理不受这个sharedptr影响。 编译器报错:static assertion failed due to requirement ***deleter expression is well- 阅读全文
摘要:
/****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger t 阅读全文
摘要:
原文:https://vanderbei.princeton.edu/tex/myPapers/OptimalChoice.pdf 原因:作为秘书问题的一个引申,如果不只是选一个最好的,而是选一组最好的呢? 1 intro 本文关注的最优子集(excellent set)记为D。在观察完所有的候选对 阅读全文
摘要:
只是将p指针的操作改为store byte,即reinterpret之后的操作指令 阅读全文
摘要:
ref : https://github.com/wuye9036/CppTemplateTutorial#323-%E7%89%B9%E5%8C%96%E4%B8%80%E4%BA%9B%E5%85%B6%E5%AE%83%E9%97%AE%E9%A2%98 这段就是说: 这个int实参在替换第一 阅读全文
摘要:
模板中的行参类型推断会省略引用 在这两种模板中,行参的引用都会在推断过程中被省略 template<typename T> //template A void f(T ¶m); template<typename T> // template B void f(T param); 而temp 阅读全文