scf_celebic/ex3/code/task_7.h
dino.celebic 7a02dff345 ex3
2025-11-11 13:49:00 +01:00

7 lines
No EOL
220 B
C++

#pragma once
#include <vector>
using namespace std;
tuple<vector<double>, vector<double>> init_M(size_t N, size_t Nrhs);
void print_matrix(vector<double> &A, size_t M, size_t N);
void benchmark_lapacke(int N, int Nrhs);