logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

如何查看电脑的GPU型号

GPU 概念CUDA 概念如何查看win7电脑的GPUGPU的某种型号是否支持CUDA

PyOpenGL之glVertexAttribPointer

PyOpenGL 开发参考文档:1.LearnOpenGL-cn2.简书-Python之OpenGL笔记,大龙103.PyOpenGL-APIglVertexAttribPointer的APISet an attribute pointer for a given shader (index)index -- the index of the generic vertex to bind, see

#python
nohup后台运行程序与停止

目录在用服务器的时候,例如腾讯云服务器,想跑一个爬虫程序,就需要在后台不挂断的运行。博客园:nohup和&后台运行,进程查看及终止 这篇文章的方法是没有问题的。需要注意的是,当关闭一个session窗口后,重新打开一个后,用ps只能显示当前session的程序,不能查看之前的。这时候就要用:ps -aux | grep python来进行查询。...

git proxy设置

主要内容git proxy 代理设置问题出现代理设置方法git proxy 代理设置问题出现git clone的时候,报出如下错误:GnuTLS recv error (-110): The TLS connection was non-properly terminated.分析原因,我这是因为网络使用了代理,git没有使用。需要设置代理。代理设置方法代理设置方法1# 设置http:git co

#git
pytorch矩阵乘法总结

文章目录点乘 `torch.mul(a,b)`二维矩阵乘 `torch.mm(a,b)`三维矩阵乘 `torch.bmm(`a,b)高维矩阵乘 `torch.matmul(a,b)`点乘 torch.mul(a,b)点乘是对应位置元素相乘点乘都是broadcast的,可以用torch.mul(a, b)实现,也可以直接用*实现。python中的广播机制(broadcasting)broadcast

#pytorch#矩阵#深度学习
暂无文章信息