dreamlike-zzg

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2024年10月9日

摘要: 代码 git clone https://github.com/castorini/pyserini.git --recurse-submodules pyserini/tools为submodules anserini-tools 安装 https://github.com/castorini/p 阅读全文
posted @ 2024-10-09 15:33 梦幻济公 阅读(322) 评论(0) 推荐(0)

2023年1月17日

摘要: 庚子年初,突起灾疫,名为新冠,传播迅猛,覆盖广全,惊世骇俗。数月之间,席卷天下,威慑海内,患者无数。疫重之地,病无可医,救无可药,宛如炼狱。一时寰宇惶惶,各国无计。唯我天朝,断路封城,举国抗击,以遏毒疫,为世之表。此后严守禁令,动态清零。 辛丑新年,适逢毕业期,恐患疫,留京未返,二十余载唯此过年于异 阅读全文
posted @ 2023-01-17 21:47 梦幻济公 阅读(47) 评论(0) 推荐(0)

2022年11月5日

摘要: problem: InternalError (see above for traceback): Blas GEMM launch failed solve: sudo rm -rf ~/.nv/ 参考 problem:pycharm不能动态显示plt ... 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(35) 评论(0) 推荐(0)

摘要: 新建document,重命名为XXX.desktop,打开文件 以sublime为例,填写 [Desktop Entry] Version=1.0 Type=Application Name=Sublime Text GenericName=Text Edit... 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(368) 评论(0) 推荐(0)

摘要: .C++ 拷贝构造函数和赋值构造函数 一下内容从不同网站摘录而来 ... 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(260) 评论(0) 推荐(0)

摘要: 引用一定程度弥补了指针的“野蛮”。 引用只有声明,没有定义,一旦绑定不能再换(外号不能再给别人)。 只有具体类型的对象才能被引用。 int temp=1; int temp2=2; int &b = temp; b=temp2; //... 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(79) 评论(0) 推荐(0)

摘要: 1.指向常量的指针(*P是常量,P不是常量) const int a = 5; const int b = 6; int c = 7;// int *pa = &a; //不能将const int* 赋值给int*,否则可以通过*pa修改a const ... 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(35) 评论(0) 推荐(0)

摘要: “工具”->“编译选项” ,如图进行设置 本人电脑(win7/10)使用devC++ 5.11单步调试程序时,遇到cout<<endl;便会卡住,无法继续执行下面的语句。重新安装devC++ 5.6.3后则正常。 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(197) 评论(0) 推荐(0)

摘要: 转 C/C++中关于时间的函数 time() 2017年11... 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(60) 评论(0) 推荐(0)

摘要: 原文链接:https://www.cnblogs.com/jpfss/articles/6437112.html ... 阅读全文
posted @ 2022-11-05 16:00 梦幻济公 阅读(107) 评论(0) 推荐(0)