We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eba105 commit b8ea0c3Copy full SHA for b8ea0c3
test/perf/micro/Makefile
@@ -50,7 +50,6 @@ export OPENBLAS_NUM_THREADS=1
50
perf.h: $(JULIAHOME)/deps/Versions.make
51
echo '#include "$(BLASDIR)cblas.h"' > $@
52
echo '#include "$(DSFMTDIR)/dSFMT.c"' >> $@
53
- echo '#include "$(RMATHDIR)/src/randmtzig.c"' >> $@
54
55
bin/perf%: perf.c perf.h
56
$(CC) -std=c99 -O$* $< -o $@ -I$(DSFMTDIR) $(LIBBLAS) -L$(LIBMDIR) $(LIBM) $(CFLAGS) -lpthread
test/perf/micro/perf.c
@@ -5,6 +5,7 @@
5
// include header file generated by make:
6
#define DSFMT_MEXP 19937
7
#include "perf.h"
8
+#include "randmtzig.c"
9
10
double *myrand(int n) {
11
double *d = (double *)malloc(n*sizeof(double));
0 commit comments