logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

CUDA中的cudaMemcpy2D和cudaMallocPitch使用详解

#include#include#include#define N 3 //类似数组的行#define M 5 //类似数组的列#define GridSize 16#define BlockSize 16#includeusing namespace std;__global__ void kernel(float * d_matrix, size_t pit

#GPU
linux(centos)升级到python3

最近开始学习机器学习,再次得用起python来。想想一年多前,整整两周的python课,还是新加坡的教育处处长给我们上的,然而当时的我,为什么沉迷于LOL无法自拔呢!悲伤!博主用的centos7系统,开始还奇怪为什么实验室服务器每个centos系统都装了Python。后来踩了坑才知道,原来centos的yum是python编译的。记录下这个大坑吧,希望大家别像我一样踩坑了!python!

#centos#python
到底了