#if 1
#include <iostream>
#include <conio.h>
#include <Libra.h>
int main(int argc, char** argv)
{
const int N = 2048;
long long flopCount;
double startTime, time, gflops;
gVar A, B, C;
First we initialize Libra by calling startTime = libra_GetTime();
C = A * B;
time = libra_GetTime() - startTime;
printf("Total time : %g%s", time*1000, " milliseconds\n");
flopCount = (2*N-1)*N*(long long)N;
gflops = flopCount / time / 1e9;
printf("%g%s", gflops, " GFlop/s.\n");
After printing measurements our program ends and calls