Exercise sheet 5

This commit is contained in:
jakob.schratter 2025-12-09 21:48:17 +01:00
commit 582fc9b47a
25 changed files with 2310 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#pragma once
#include <vector>
using namespace std;
vector<double> test_A(const size_t &NLOOPS, const size_t &N);
vector<double> test_A_sum(const size_t &NLOOPS, const size_t &N);
vector<double> test_B(const size_t &NLOOPS, const size_t &N, const size_t &M);
vector<double> test_C(const size_t &NLOOPS, const size_t &L, const size_t &M, const size_t &N);
vector<double> test_D(const size_t &NLOOPS, const size_t &N, const size_t &p);