上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 58 下一页
摘要: mac: https://mac.r-project.org/openmp/ brew install clang-omp clang -Xclang -fopenmp -o 1 13.c -lomp https://github.com/OpenMP/sources http://gcc.gnu. 阅读全文
posted @ 2021-07-28 14:13 zJanly 阅读(351) 评论(0) 推荐(0)
摘要: 负载均衡集群(Load Balance Cluster)、科学计算集群(High Performance Computing Cluster) https://www.zhihu.com/question/62730602 阅读全文
posted @ 2021-07-28 11:11 zJanly 阅读(72) 评论(0) 推荐(0)
摘要: https://www.zhihu.com/question/21711083 https://www.jianshu.com/p/cb377fd1a295 #include <iostream>#include "string"using namespace std;#include "math. 阅读全文
posted @ 2021-07-22 16:01 zJanly 阅读(164) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/dirichlet/p/3226484.html #include "iostream"#include "string"#include <typeinfo>using namespace std;class Base1{public: Base1( 阅读全文
posted @ 2021-07-20 17:32 zJanly 阅读(490) 评论(0) 推荐(0)
摘要: #include "sys/types.h"#include "assert.h"#include "memory.h"template <typename T>int bits(const T& a) { unsigned int l, h; switch (sizeof(T)) { case 8 阅读全文
posted @ 2021-07-19 10:11 zJanly 阅读(72) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/lykkk/p/10520070.html #include "stdint.h"#include "memory.h"static inline int bits(size_t a){ unsigned int l, h; h = a >> 32; 阅读全文
posted @ 2021-07-15 14:26 zJanly 阅读(511) 评论(0) 推荐(0)
摘要: #if defined(__GNUC__) && !defined(LUA_NOBUILTIN)#define luai_likely(x) (__builtin_expect(((x) != 0), 1))#define luai_unlikely(x) (__builtin_expect(((x 阅读全文
posted @ 2021-07-13 11:02 zJanly 阅读(234) 评论(0) 推荐(0)
摘要: https://www.runoob.com/linux/nginx-install-setup.html 阅读全文
posted @ 2021-07-12 18:59 zJanly 阅读(25) 评论(0) 推荐(0)
摘要: extern "C" void f9(int a){ } #if 0 #include <vector> using namespace std; int main(int argc, char* *argv) { vector<int> vct; vct.push_back(100); vct.p 阅读全文
posted @ 2021-07-12 16:08 zJanly 阅读(46) 评论(0) 推荐(0)
摘要: http://safecurves.cr.yp.to/ 阅读全文
posted @ 2021-07-08 19:00 zJanly 阅读(26) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 58 下一页