graphprogram/main.c

65 lines
1.8 KiB
C
Raw Normal View History

2024-09-26 14:32:20 +02:00
#include "graph.h"
#include "matrix.h"
#include <stdint.h>
2024-10-04 01:03:39 +02:00
#include <stdio.h>
2024-10-08 23:04:09 +02:00
#include <stdlib.h>
2024-10-04 01:03:39 +02:00
#include <time.h>
2024-09-26 14:32:20 +02:00
2024-10-04 01:03:39 +02:00
void benchmark() {
2024-10-08 23:04:09 +02:00
const uint64_t vertex_count1 = 1024;
uint64_t (*matrix1)[vertex_count1] = malloc(vertex_count1 * vertex_count1 * sizeof(uint64_t));
2024-09-26 14:32:20 +02:00
2024-10-08 23:04:09 +02:00
const uint64_t vertex_count2 = 1024;
uint64_t (*matrix2)[vertex_count2] = malloc(vertex_count2 * vertex_count2 * sizeof(uint64_t));
2024-10-04 01:03:39 +02:00
2024-10-08 23:04:09 +02:00
uint64_t (*new_matrix)[vertex_count2] = malloc(vertex_count1 * vertex_count2 * sizeof(uint64_t));
2024-10-04 01:03:39 +02:00
double elapsed_time = 0.0;
const uint64_t iterations = 10;
2024-10-04 01:03:39 +02:00
clock_t start_time;
for (uint64_t i = 0; i < iterations; i++) {
2024-10-08 23:04:09 +02:00
random_adjacency(vertex_count1, matrix1);
random_adjacency(vertex_count2, matrix2);
2024-10-04 01:03:39 +02:00
start_time = clock();
gemm_basic(vertex_count1, vertex_count1, matrix1,
2024-10-08 23:04:09 +02:00
vertex_count2, vertex_count2, matrix2,
2024-10-04 01:03:39 +02:00
new_matrix);
elapsed_time += (double)(clock() - start_time) / CLOCKS_PER_SEC;
}
2024-09-26 14:32:20 +02:00
printf("%lu iterations of gemm_basic took roughly %f seconds\n", iterations, elapsed_time);
printf("An iteration of gemm_basic took on average roughly %f seconds\n", elapsed_time/iterations);
2024-10-08 23:04:09 +02:00
free(matrix1);
free(matrix2);
free(new_matrix);
2024-10-04 01:03:39 +02:00
}
void test() {
2024-10-04 17:36:40 +02:00
const uint64_t vertex_count = 5;
uint64_t adjacency_matrix[vertex_count][vertex_count];
2024-10-04 01:03:39 +02:00
2024-10-04 17:36:40 +02:00
read_csv("csv/graph.csv", vertex_count, vertex_count, adjacency_matrix);
2024-10-04 01:03:39 +02:00
2024-10-08 22:18:36 +02:00
puts("G:");
2024-10-04 17:36:40 +02:00
print_matrix(vertex_count, vertex_count, adjacency_matrix);
2024-10-08 22:18:36 +02:00
puts("");
2024-09-26 14:32:20 +02:00
2024-10-04 17:36:40 +02:00
uint64_t distance_matrix[vertex_count][vertex_count];
2024-10-04 13:05:02 +02:00
2024-10-04 17:36:40 +02:00
calculate_distance_matrix(vertex_count, adjacency_matrix, distance_matrix);
2024-10-04 13:05:02 +02:00
2024-10-08 22:18:36 +02:00
puts("distance_matrix:");
2024-10-04 17:36:40 +02:00
print_matrix(vertex_count, vertex_count, distance_matrix);
2024-10-08 22:18:36 +02:00
puts("");
2024-10-04 01:03:39 +02:00
}
int main(void) {
// test();
benchmark();
2024-09-26 14:32:20 +02:00
}