OpenMP Independent In-Class Coursework – The Game of LifeThe aim of this assignment is to write a parallel version of Conway’s Game of Life using Open ...
分类:
其他好文 时间:
2020-02-25 19:40:04
阅读次数:
56
物理层 物理层是指物理设备通过物理媒体进行互连的描述和规定,定义了通信传输介质的物理特性。例如机械特性、电气(电流电压)、功能(某一电平的意义)、规章(出现的顺序)简单来说就是设备之间传输的bit流,物理层只能看到0和1 数据链路层 数据链路层分为上层LLC层和下层mac层:LLC:Logical ...
分类:
其他好文 时间:
2020-02-24 16:39:21
阅读次数:
72
LVM LVM是逻辑盘卷管理(Logical Volume Manager)的简称,它是Linux环境下对磁盘分区进行管理的一种机制,LVM是建立在硬盘和分区之上的一个逻辑层,来提高磁盘分区管理的灵活性。LVM是在磁盘分区和文件系统之间添加的一个逻辑层,来为文件系统屏蔽下层磁盘分区布局,提供一个抽象 ...
分类:
系统相关 时间:
2020-02-24 09:25:54
阅读次数:
81
一,程序设计时经常用到的有6种运算:算术运算(Arithmetic)、赋值运算(Assignment)、二进制运算(Bitwise)、比较运算(Comparison)、连接运算(concatenation)及逻辑运算(Logical) 1.算术运算 运算符 名称 类型 说明 + 加号 双目运算符 加 ...
分类:
Web程序 时间:
2020-02-20 17:11:19
阅读次数:
90
在CMD命令文本下执行,即可: diskpart //1、进入diskpart模式 list disk //2、查询磁盘 select disk 1 //3、选择磁盘 create partition extended //4、创建扩展区 create partition logical //5、创 ...
sudo parted /dev/sdb (parted) mklabel gpt (parted) mkpart logical 0 -1(parted) q sudo mkfs.ext4 -F /dev/sdb1sudo mkdir /mnt/sdb1sudo mount /dev/sdb1 / ...
分类:
系统相关 时间:
2020-02-06 18:06:20
阅读次数:
88
1、知乎 Vulkan-高性能渲染 2、Life of a triangle - NVIDIA's logical pipeline 3、Round Robin 算法 4、NVIDIA Developer Vulkan 5、Vulkan SDK Tutorial 6、Vulkan In 30 Min ...
分类:
其他好文 时间:
2020-02-03 10:17:02
阅读次数:
96
import psutil def GetCpuInfo(): cpu_count = psutil.cpu_count(logical=False) #1代表单核CPU,2代表双核CPU xc_count = psutil.cpu_count() #线程数,如双核四线程 cpu_slv = rou ...
分类:
其他好文 时间:
2020-01-31 22:30:52
阅读次数:
89
案例源代码如下: #include <uf_obj.h> #include <uf_setup.h> #include <uf_ncgroup.h> static logical cycelGenerateCb(tag_t tag, void* data) { logical is_group; c ...
分类:
其他好文 时间:
2020-01-24 00:07:29
阅读次数:
102