123456789101112131415161718192021 |
- #################################################
- #
- #################################################
- FC=gfortran
- CC=gcc
- FFLAGS=-fopenmp -O3
- all : timing compte
- timing :
- $(FC) $(FFLAGS) matmul-omp.f90 -o timingopenmp
- compte :
- $(CC) compteur-arg.c -o compte
- clean:
- rm -f timingopenmp compte *~
- allclean:
- rm -f timingopenmp compte *~ context_compteu* compteur.*.err compteur.*.out openmp-timing-*.??? done.context_comp*
|