1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-21 23:54:25 +00:00

Added missing include in matmul.c

This commit is contained in:
Alessandro Capotondi 2021-04-21 13:09:20 +02:00
parent 1ec5d154a2
commit 7d7334a018

View file

@ -4,6 +4,8 @@
#include <time.h>
#include <omp.h>
#include "utils.h"
#ifndef N
#define N (1 << 10)
#endif