实验室新来了一台服务器,唉,花了我3天的时间去安装他那个环境,记一下安装流程,希望可以帮助一下苦苦安装环境的小伙伴吧! 先说一下新服务器的配置:见下图: 这是在英伟达官网下载驱动程序设置参数的时候截的图,我下载的驱动是‘457.09’版本的,没啥注意的,我就随便安装了一下! ##1、CUDA的安装 ...
CPU 和 GPU GPU(图像处理器,Graphics Processing Unit)和CPU(中央处理器,Central Processing Unit)在设计上的主要差异在于GPU有更多的运算单元(如图中绿色的ALU),而Control和Cache单元不如CPU多,这是因为GPU在进行并行计 ...
分类:
其他好文 时间:
2020-11-20 11:37:36
阅读次数:
11
https://hackernoon.com/python-sandbox-escape-via-a-memory-corruption-bug-19dde4d5fea5 像numpy这种python模块,里面很多代码都是c写的,可能存在内存漏洞,而且很多是没怎么被注意的 这个洞是由于把有符号数没有 ...
分类:
数据库 时间:
2020-11-20 11:36:04
阅读次数:
14
1 #include <iostream> 2 #include <cstdio> 3 #include <memory.h> 4 using namespace std; 5 const int INF=0x3f3f3f3f,city=4; 6 int main(){ 7 int a[city][ ...
分类:
其他好文 时间:
2020-11-19 12:53:22
阅读次数:
10
常用的存储引擎有以下: Innodb引擎:Innodb引擎提供了对数据库ACID事务的支持。并且还提供了行级锁和外键的约束。它的设计的目标就是处理大数据容量的数据库系统。 MyIASM引擎(原本Mysql的默认引擎):不提供事务的支持,也不支持行级锁和外键。 MEMORY引擎:所有的数据都在内存中, ...
分类:
数据库 时间:
2020-11-12 14:01:35
阅读次数:
9
[2020-CCPC Changchun Onsite]-F. Strange Memory(dsu on tree) 题面: 题意: 给定一个含有$\mathit n$个节点的数,求下式的值。 \[ \sum\limits_{i=1}^n\sum\limits_{j=i+1}^n [a_i \op ...
分类:
其他好文 时间:
2020-11-10 10:56:31
阅读次数:
7
操作系统 CentOS : https://www.centos.org/download/ WEB中间件 Apache Tomcat : https://tomcat.apache.org/ 内存分析工具 Memory Analyzer : https://www.eclipse.org/mat/ ...
分类:
其他好文 时间:
2020-11-08 17:16:36
阅读次数:
26
#include<iostream> #include<memory.h> #include<cmath> #include<algorithm> using namespace std; typedef struct { int x, y; }node; node d[6000]; int r, ...
分类:
其他好文 时间:
2020-11-08 17:11:46
阅读次数:
15
1、以管理员身份打开cmd窗口; 2、停止mysql服务,cmd输入命令net stop mysql ; 或者在服务中停止mysql(如下图); 3、转到mysql服务bin目录, 运行命令 .\mysqld --console --skip-grant-tables --shared-memory ...
分类:
数据库 时间:
2020-11-07 17:23:21
阅读次数:
25