exercises 2 to 5
This commit is contained in:
parent
14b51cb405
commit
ce217b844f
5 changed files with 820 additions and 0 deletions
17
BSP_3_2to5/main.cpp
Normal file
17
BSP_3_2to5/main.cpp
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue