摘要: https://zhuanlan.zhihu.com/p/613720409 阅读全文
posted @ 2023-06-29 20:13 dyling 阅读(3) 评论(0) 推荐(0) 编辑
摘要: # 修改最近提交的 commit 信息 git commit --amend --message="Vissim联仿代码入库" --author="duanyanling <duanyanling@saimo.ai>" # 仅修改 message 信息 git commit --amend --me 阅读全文
posted @ 2023-06-27 18:38 dyling 阅读(31) 评论(0) 推荐(0) 编辑
摘要: FIND_PACKAGE( OpenMP REQUIRED) if(OPENMP_FOUND) message("OPENMP FOUND") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") set(CMAKE_CXX_FLAGS "$ 阅读全文
posted @ 2023-05-26 16:31 dyling 阅读(11) 评论(0) 推荐(0) 编辑
摘要: cat /etc/default/apport # 1 cat /etc/sysctl.conf # << kernel.core_pattern = /coredump/core-%e-%p-%t /sbin/sysctl -p # 查看路径 cat /proc/sys/kernel/core_p 阅读全文
posted @ 2023-04-28 14:55 dyling 阅读(24) 评论(0) 推荐(0) 编辑
摘要: ~/.pip/pip.conf [global] index-url =http://pypi.douban.com/simple/ [install] trusted-host =pypi.douban.com 阅读全文
posted @ 2022-12-13 23:14 dyling 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 下载:链接:https://pan.baidu.com/s/1pE9WyrrSQHdceLq3-IqvDA 提取码:3qgi 解压: tar -xvf opencv-3.4.16_ippcv.tar.gz 复制 ippicv : cp opencv-3.4.16/Downloads/ippicv_2 阅读全文
posted @ 2022-11-23 14:46 dyling 阅读(109) 评论(0) 推荐(0) 编辑
摘要: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 20 --slave /usr/bin/g++ g++ /usr/bin/g++-9 sudo update-alternatives --config gcc 需要 阅读全文
posted @ 2022-11-02 14:36 dyling 阅读(31) 评论(0) 推荐(0) 编辑
摘要: (5条消息) Ubuntu网络连接图标消失_AlwaysSimple的博客-CSDN博客_ubuntu没有网络图标 阅读全文
posted @ 2022-09-20 14:14 dyling 阅读(41) 评论(0) 推荐(0) 编辑
摘要: git clone https://ghproxy.com/https://github.com/ldqk/new-pac.git git config --global url."https://hub.fastgit.xyz/".insteadOf https://github.com/ 查看代 阅读全文
posted @ 2022-09-04 20:07 dyling 阅读(223) 评论(0) 推荐(0) 编辑
摘要: import torchvision.models as models import torch import onnx from ptflops import get_model_complexity_info # from time import sleep def get_base_info( 阅读全文
posted @ 2022-09-02 17:14 dyling 阅读(25) 评论(0) 推荐(0) 编辑