上一页 1 2 3 4 5 6 7 ··· 21 下一页
摘要: 硬盘容量 = 主分区 + 扩展分区 扩展分区 = 各个逻辑分区之和 主分区:也叫引导分区,用于启动操作系统,最多有四个 扩展分区:不能直接使用,必须要分成逻辑分区 逻辑分区:存储区 阅读全文
posted @ 2020-09-29 21:12 6+0 阅读(678) 评论(0) 推荐(0) 编辑
摘要: 1、下载linux系统 官网:http://releases.ubuntu.com/ 网易:http://mirrors.163.com/ubuntu-releases/ 2、准备一个有线鼠标 3、磁盘分区 此电脑——管理——磁盘管理 删除卷(压缩卷)——新建卷 4、制作U盘启动盘 UltralSO 阅读全文
posted @ 2020-09-25 14:56 6+0 阅读(894) 评论(0) 推荐(0) 编辑
摘要: 1、下载mysql https://downloads.mysql.com/archives/community/ community server是免费的 2、以管理员身份进入mysql目录下的bin 3、执行安装命令mysqld -install 阅读全文
posted @ 2020-09-25 10:35 6+0 阅读(96) 评论(0) 推荐(0) 编辑
摘要: x86:32位 x64:64位 x86_64:32位指令集的扩展,同时支持32位和64位 32位的软件默认安装在program files(x86) 64位的软件默认安装在program files 阅读全文
posted @ 2020-09-23 09:18 6+0 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 一、独显 二、装驱动 https://www.nvidia.cn/Download/index.aspx?lang=cn 三、装cuda 通用gpu加速库 1、查看gpu支持的对高版本的cuda nvdia控制面板——帮助——系统信息——组件 2、下载cuda https://developer.n 阅读全文
posted @ 2020-09-22 21:28 6+0 阅读(1311) 评论(0) 推荐(1) 编辑
摘要: 操作系统控制硬件的程序,是一种特殊的软件 阅读全文
posted @ 2020-09-22 19:39 6+0 阅读(64) 评论(0) 推荐(0) 编辑
摘要: CPU擅长逻辑控制,是串行计算,而GPU擅长高强度计算,是并行计算。 打个比方,GPU就像成千上万的苦力,每个人干的都是类似的苦力活,相互之间没有依赖,都是独立的,简单的人多力量大; CPU就像包工头,虽然也能干苦力的活,但是人少,所以一般负责任务分配,人员调度等工作。 可以看出GPU加速是通过大量 阅读全文
posted @ 2020-09-22 19:33 6+0 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1、NTFS:windows 2、Ext4:Linux 3、APFS:mac 4、FAT32:U盘 5、exFAT:FAT的升级版,macOS、Linux、windows 阅读全文
posted @ 2020-09-19 19:09 6+0 阅读(1294) 评论(0) 推荐(0) 编辑
摘要: 1、点击文件——打开 2、选择系统镜像 3、选择启动盘后点击启动——写入硬盘映像 4、点击写入 5、看到“刻录成功”即可 ubuntu下载地址:http://mirrors.163.com/ubuntu-releases/ windows下载地址:http://win.mxjz12.cn/win7q 阅读全文
posted @ 2020-09-19 12:40 6+0 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 一、load 1、cpu——cpu、gpu——gpu checkpoint = t.load(_.pth) 2、cpu——gpu checkpoint = t.load(_.pth, map_location=lambda storage, loc: storage.cuda(i)) 3、gpu—— 阅读全文
posted @ 2020-09-18 16:47 6+0 阅读(163) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 21 下一页