摘要:
2024年11月18日 VS2022更新提示 阅读全文
摘要:
https://blog.csdn.net/qq_19524879/article/details/82848556 https://blog.csdn.net/weixin_49615561/article/details/107564293 https://blog.csdn.net/m0_37 阅读全文
摘要:
首先安装了OpenJDK https://segmentfault.com/a/1190000044953489 没有配置默认的Jave版本 没有设置JAVA_HOME环境变量 补充:设置JAVE_HOME环境变量 在图形界面中打开etc\environment文件,在其中追加JAVA_HOME变量 阅读全文
摘要:
deal 阅读全文
摘要:
前面忘截图了 提示要求电脑里安装VS2015/2017/2019,但虚拟机里只有VS2013。网上说可以一起装,但是我虚拟机配置不太行,再说吧,不行用我自己笔记本,虽然也有点菜,但比虚拟机强。 虚拟机配置 安装之后的配置 密码三个旧的特殊符号 这少一步,写的是点击execute来应用配置 apply 阅读全文
摘要:
参考链接: https://blog.csdn.net/love906897406/article/details/124504065 https://blog.csdn.net/libai13/article/details/108095947 卸载VS2022 没找到官网的VS2019,随便找个 阅读全文
摘要:
本地环境: VS2022 安装的NuGet包:Eigen版本3.3.9 配置MKL 头文件相关代码 #include <cmath> #include <math.h> #include <stddef.h> #include <stdlib.h> #include <string.h> void 阅读全文
摘要:
问:讲解以下C++代码 点击查看代码 template <typename T> T quickPow(T a, int n) { T res = 1; while (n > 0) { if (n % 2 == 1) { res = res * a; } a = a * a; n /= 2; } r 阅读全文
摘要:
运行现有代码、配置本地环境 用领导的代码在本地运行,借机配置Eigen库和Intel的MKL Eigen库VS2022建议使用vcpkg安装,但vcpkg使用需要学习时间,所以直接用Nuget安装了 安装之后报错找不到mkl.h 在官网下载oneMKL(https://www.intel.cn/co 阅读全文