Skip to content

Commit a654654

Browse files
authored
Refactor: remove OpenBLAS version requirement and unused mpi import (#1)
* examples: remove unused import in distributed jacobi * build: remove version constraint on OpenBLAS for local cholesky
1 parent 0240014 commit a654654

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

examples/distributed/jacobi3d/source/grid.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
#include <mpi.h>
1817
#include <stdio.h>
1918
#include <math.h>
2019
#include "grid.hpp"
@@ -910,4 +909,4 @@ void Grid::print(const uint32_t it)
910909
printf("\n");
911910
}
912911
}
913-
}
912+
}

examples/local/cholesky/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
testSuite = [ 'examples', 'local', 'cholesky' ]
22

33
choleskyDep = declare_dependency(
4-
dependencies: [ TaskRBuildDep, dependency('openblas', required: true, version: '0.3.26') ],
4+
dependencies: [ TaskRBuildDep, dependency('openblas', required: true) ],
55
include_directories: ['.'],
66
compile_args: [ '-ffast-math','-Werror' ]
77
)

0 commit comments

Comments
 (0)