摘要: 操作\容器vectorliststringsetstackqueuemap插入push_bcak()、insert()push_back() 、push_front()、insert()append(string)、push_back(char)、insert(string)insert()push 阅读全文
posted @ 2022-03-14 18:16 青城墨白 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 参考 Yuezero 的 CUDA编程基础(https://blog.csdn.net/weixin_54338498/article/details/127947551) CUDA 编程模型 host 指代 CPU及其内存,包含host程序 device 指代 GPU及其内存,包含device程序 阅读全文
posted @ 2023-11-02 10:55 青城墨白 阅读(18) 评论(0) 推荐(0) 编辑
摘要: EDA领域 缩写 全称 意思 EDA Electronic Design Automation 电子设计自动化 CAD Computer Aided Design 计算机辅助设计 CAD涉及更宽广的领域 IP Core Intellectual Property Core 知识产权核 LUT Loo 阅读全文
posted @ 2023-09-23 11:37 青城墨白 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 卸载boost库 sudo rm -f /usr/local/lib/libboost* sudo rm -rf /usr/local/include/boost sudo rm -r /usr/local/lib/cmake/boost* sudo rm -r /usr/local/lib/cma 阅读全文
posted @ 2023-09-14 11:41 青城墨白 阅读(255) 评论(0) 推荐(0) 编辑
摘要: Ubuntu切换gcc版本 sudo update-alternatives --config gcc #需root用户 阅读全文
posted @ 2023-09-13 16:36 青城墨白 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 在你需要clone的github网址前添加一个代理网址https://ghproxy.com/即可。 如下,当我想下载一个代码https://github.com/limbo018/DREAMPlace.git,且该仓库需要递归子仓库下载,直接下载是行不通的,加上这个网址即可 git clone - 阅读全文
posted @ 2023-09-11 16:42 青城墨白 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1. 打开PyTorch官网,选择get started https://pytorch.org/ ![p1](https://img2023.cnblogs.com/blog/1809921/202309/1809921-20230908210617363-598618424.png) 2. 查看 阅读全文
posted @ 2023-09-08 21:24 青城墨白 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ### 创建环境 ```bash conda create --name xxx python=3.7 ``` ### 激活环境 ```bash conda activate xxx conda deactivate #退出环境 ``` ### 删除环境 ```bash conda remove - 阅读全文
posted @ 2023-09-08 20:44 青城墨白 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 本文来自博客园,作者:阿弱,转载请注明原文链接:[https://www.cnblogs.com/aruo/p/15771915.html](https://www.cnblogs.com/aruo/p/15771915.html) 当下载完一个源码包并且解压后 文件夹下会有一个重要的文件 ```c 阅读全文
posted @ 2023-07-24 11:37 青城墨白 阅读(122) 评论(0) 推荐(0) 编辑
摘要: ##git 基本操作 ###远程仓库克隆到本地 git clone ssh://git@xxx ###本地修改提交到远程仓库 git add newfile<details> git commit -m "提交newfile,ps: 这引号内容是备注,必须要有内容" git push ###从远程仓 阅读全文
posted @ 2022-04-19 22:15 青城墨白 阅读(238) 评论(0) 推荐(0) 编辑
摘要: #服务器远程连接 天下大事 必作于细 ##rsa密钥配置 ###本地设备 利用git生成一对rsa公私密钥 keygen windows的话,默认生成目录在 C:\Users\用户名.ssh id_rsa为私钥文件 id_rsa.pub为公钥文件 私钥文件为你的登录的身份证,登录时选择这个文件即可, 阅读全文
posted @ 2022-04-03 16:54 青城墨白 阅读(983) 评论(0) 推荐(1) 编辑