This commit is contained in:
2025-08-18 10:19:35 +08:00
parent b25cc550ad
commit 51a85bc674
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15.2) cmake_minimum_required(VERSION 3.15.2)
# 设置项目名称与语言 # 设置项目名称与语言
project(GCTL_TUTORIALS VERSION 2.0.1) project(GCTL_TUTORIALS VERSION 2.1.0)
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
# ExprTK库在macOS 15.4中编译会有错误 添加以下命令对应检查项 # ExprTK库在macOS 15.4中编译会有错误 添加以下命令对应检查项

View File

@@ -114,7 +114,6 @@ int main(int argc, char const *argv[])
random_float(fm, 1.0, 2.0, gctl::RdUniform); random_float(fm, 1.0, 2.0, gctl::RdUniform);
ex1 test; ex1 test;
test.set_blas_backend("accelerate");
// 计算共轭梯度B项 // 计算共轭梯度B项
gctl::array<double> B(N); gctl::array<double> B(N);