diff --git a/examples/distributed/jacobi3d/source/grid.cpp b/examples/distributed/jacobi3d/source/grid.cpp index 5fc3189..3264a91 100644 --- a/examples/distributed/jacobi3d/source/grid.cpp +++ b/examples/distributed/jacobi3d/source/grid.cpp @@ -14,7 +14,6 @@ * limitations under the License. */ -#include #include #include #include "grid.hpp" @@ -910,4 +909,4 @@ void Grid::print(const uint32_t it) printf("\n"); } } -} \ No newline at end of file +} diff --git a/examples/local/cholesky/meson.build b/examples/local/cholesky/meson.build index f8d94e2..9648afe 100644 --- a/examples/local/cholesky/meson.build +++ b/examples/local/cholesky/meson.build @@ -1,7 +1,7 @@ testSuite = [ 'examples', 'local', 'cholesky' ] choleskyDep = declare_dependency( - dependencies: [ TaskRBuildDep, dependency('openblas', required: true, version: '0.3.26') ], + dependencies: [ TaskRBuildDep, dependency('openblas', required: true) ], include_directories: ['.'], compile_args: [ '-ffast-math','-Werror' ] )