04 2023 档案
摘要:使用DDP时出现错误,但是单卡跑无错误。 错误记录如下: RuntimeError: Expected to have finished reduction in the prior iteration before starting a new one. This error indicates
阅读全文
摘要:Ununtu服务器安装Nginx与PHP 1. 安装Nginx: 1.1 sudo apt update sudo apt install nginx 验证结果,使用命令: sudo systemctl status nginx 若有结果如下则说明成功: 但注意,此时只是在服务器上配置好了nginx
阅读全文
摘要:C++ 强制类型转换有四种关键字:static_cast、const_cast、reinterpret_cast和dynamic_cast。它们用于不同的情况和目的,比C语言的强制类型转换更清晰和安全。static_cast用于数据类型和继承关系类间的明确定义的转换,const_cast用于去掉或加
阅读全文
摘要:基本概念 智能指针是一个模板; shared_ptr允许多个指针指向同一个对象,unique指针则独占指向的对象; 基本使用 shared_ptr<T> ptr; //默认初始化保存着一个空指针 shared_ptr<int> ptr = make_shared<int>(42); 拷贝与赋值,会有
阅读全文