This commit is contained in:
dino.celebic 2025-11-11 13:36:28 +01:00
commit 7a02dff345
29 changed files with 3943 additions and 1 deletions

8
ex3/code/task_5.h Normal file
View file

@ -0,0 +1,8 @@
#pragma once
#include <vector>
using namespace std;
double norm(vector<double> const &x);
vector<double> init_norm(size_t N);
void benchmark_norm(vector<double> const &x, size_t NLOOPS);