摘要: ICC 是intel 针对intel 体系架构开发的编百译器,显然,你的代码,如果运行在intel机器上,intel的人开发的编译器,编译出来的可执行代码效率更高。毕竟度人家对intel体系结构这么熟悉,里面的优化说明的,肯定做得不错。问但是只能运行在intel体系结构上。比如你的PPC的板子就不能 阅读全文
posted @ 2020-06-08 22:33 ascertain 阅读(567) 评论(0) 推荐(0) 编辑
摘要: module random random.random() [0,1) 内的float pseudo randomizer random.sample() sample(population,k) method of random.Random instance,choose k unique ra 阅读全文
posted @ 2020-06-08 22:30 ascertain 阅读(452) 评论(0) 推荐(0) 编辑
摘要: intermittent import timedef bid(f): def bow(*args,**kwargs): with open('p.txt',encoding='utf-8',mode='a') as dam: dam.write('\n'+time.strftime('%Y-%m- 阅读全文
posted @ 2020-06-08 22:28 ascertain 阅读(358) 评论(0) 推荐(0) 编辑
摘要: chrony prerequisite: firewalld firewall-cmd --state firewall-cmd --list-all firewall-cmd --zone=public --query-port=123/tcp firewall-cmd --zone=public 阅读全文
posted @ 2020-06-08 22:26 ascertain 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 杨辉三角 解法: triangle=[]p=int(input('>>>'))for i in range(0,p): if i == 0: triangle.append([1]) else: current=[1] for j in range(0,i-1): current.append(tr 阅读全文
posted @ 2020-06-08 22:14 ascertain 阅读(568) 评论(0) 推荐(0) 编辑
摘要: /proc目录 内核把状态信息,统计信息,可配置参数通过proc伪文件系统输出 参数: 只读:输出信息 可写:配置内核 可写参数位于/proc/sys目录 1:sysctl查看设定/proc/sys目录中的参数 sysctl -w path.to.parameter=VALUE sysctl -w 阅读全文
posted @ 2020-06-08 22:05 ascertain 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 命令的执行状态结果 $? 0成功 1-255失败程序执行有两类结果: 程序返回值:执行结果 程序状态结果:0,1-255文本文件查看命令: cat tac more less tail head more: more [option] file... -d:显示提示 +#:定位 less: less 阅读全文
posted @ 2020-06-08 22:04 ascertain 阅读(352) 评论(0) 推荐(0) 编辑
摘要: HPC APPLICATION SUPPORT FOR GPU COMPUTING HPC 对GPU计算的应用支持 AddisonSnell LauraSegervall Sponsored research report November 2017 EXECUTIVE SUMMARY 执行总结 在 阅读全文
posted @ 2020-06-08 21:49 ascertain 阅读(468) 评论(0) 推荐(0) 编辑