07 2021 档案

摘要:https://blog.csdn.net/u010765526/article/details/80085895 阅读全文
posted @ 2021-07-30 17:17 zJanly 阅读(18) 评论(0) 推荐(0) 编辑
摘要:lscpu 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 i2000:~ # lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little 阅读全文
posted @ 2021-07-30 16:51 zJanly 阅读(64) 评论(0) 推荐(0) 编辑
摘要:#!/bin/bash # parametersGUEST_NAME_BASE=$1GUEST_MEMORY_SIZE=(4096*1024*1024) #GUEST_NAME="guest=${GUEST_NAME_BASE}"GUEST_NAME="${GUEST_NAME_BASE}" if 阅读全文
posted @ 2021-07-30 16:43 zJanly 阅读(331) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qiusi0225/article/details/80447710 https://github.com/arindas/mac-on-linux-with-qemu.git 阅读全文
posted @ 2021-07-30 14:33 zJanly 阅读(15) 评论(0) 推荐(0) 编辑
摘要:package mainimport ( "log" "net/http" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp")var ( 阅读全文
posted @ 2021-07-29 17:27 zJanly 阅读(49) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/158584571 在本课中,我将向您展示一个基本的 MPI hello world 应用程序,并讨论如何运行 MPI 程序。本课将涵盖初始化 MPI 和跨多个进程运行 MPI 作业的基础知识。本课旨在安装 MPICH2(特别是 1.4)。如 阅读全文
posted @ 2021-07-28 14:32 zJanly 阅读(271) 评论(0) 推荐(0) 编辑
摘要: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 阅读(310) 评论(0) 推荐(0) 编辑
摘要:负载均衡集群(Load Balance Cluster)、科学计算集群(High Performance Computing Cluster) https://www.zhihu.com/question/62730602 阅读全文
posted @ 2021-07-28 11:11 zJanly 阅读(63) 评论(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 阅读(145) 评论(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 阅读(476) 评论(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 阅读(41) 评论(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 阅读(498) 评论(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 阅读(218) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/linux/nginx-install-setup.html 阅读全文
posted @ 2021-07-12 18:59 zJanly 阅读(14) 评论(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 阅读(41) 评论(0) 推荐(0) 编辑
摘要:http://safecurves.cr.yp.to/ 阅读全文
posted @ 2021-07-08 19:00 zJanly 阅读(18) 评论(0) 推荐(0) 编辑
摘要:https://rustwiki.org/zh-CN/book/ https://forge.rust-lang.org/infra/other-installation-methods.html#standalone https://www.jetbrains.com/help/clion/rus 阅读全文
posted @ 2021-07-08 17:33 zJanly 阅读(252) 评论(0) 推荐(0) 编辑
摘要:https://github.com/dalek-cryptography 阅读全文
posted @ 2021-07-08 17:21 zJanly 阅读(15) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/79ca08116d57 centos https://blog.csdn.net/wang1988081309/article/details/97374677 https://github.com/streadway/amqp/tree/mas 阅读全文
posted @ 2021-07-06 19:17 zJanly 阅读(88) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/353807709 阅读全文
posted @ 2021-07-06 15:21 zJanly 阅读(13) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/336365600 阅读全文
posted @ 2021-07-06 15:09 zJanly 阅读(39) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/f319c78e9714 阅读全文
posted @ 2021-07-06 10:18 zJanly 阅读(14) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/mutourend/article/details/98877639 阅读全文
posted @ 2021-07-05 14:18 zJanly 阅读(50) 评论(0) 推荐(0) 编辑
摘要:https://blog.filippo.io/rustgo/ 阅读全文
posted @ 2021-07-05 11:28 zJanly 阅读(24) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示