exercises 2 to 5

This commit is contained in:
Georg Thomas Mandl 2025-11-13 02:29:23 +01:00
commit ce217b844f
5 changed files with 820 additions and 0 deletions

17
BSP_3_2to5/main.cpp Normal file
View file

@ -0,0 +1,17 @@
#include "bsp_3_lib_bench.h"
#include <iostream>
using namespace std;
int main()
{
benchmark_A(25*1e7,25);
benchmark_A_kahan(25*1e7,25);
benchmark_A_norm(25*1e7,25);
benchmark_B(8000,8000,75);
benchmark_B_column(8000,8000,75);
benchmark_C(1000,1000,1000,3);
benchmark_D(1e4,1e5,5);
return 0;
}