aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/tiff-4.0.10/Makefile
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-06-07 09:44:40 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-06-07 09:44:40 +0200
commit5af2a08cfae5b1ecc21f9be3ddc20648415c3847 (patch)
tree9d011ab0e238f5ccc6969f7747fa7256d9b9dfbd /test/monniaux/tiff-4.0.10/Makefile
parent1b4315d734f8b1173b5333cb7a650c0587b22aa3 (diff)
downloadcompcert-kvx-5af2a08cfae5b1ecc21f9be3ddc20648415c3847.tar.gz
compcert-kvx-5af2a08cfae5b1ecc21f9be3ddc20648415c3847.zip
tiff example
Diffstat (limited to 'test/monniaux/tiff-4.0.10/Makefile')
-rw-r--r--test/monniaux/tiff-4.0.10/Makefile17
1 files changed, 16 insertions, 1 deletions
diff --git a/test/monniaux/tiff-4.0.10/Makefile b/test/monniaux/tiff-4.0.10/Makefile
index 3547748b..db3428fa 100644
--- a/test/monniaux/tiff-4.0.10/Makefile
+++ b/test/monniaux/tiff-4.0.10/Makefile
@@ -14,7 +14,6 @@ all: $(PRODUCTS)
.PHONY:
run: measures.csv
-
ppm2tiff.gcc.host: $(src:.c=.gcc.host.o) ../clock.gcc.host.o
$(CC) $(CFLAGS) $+ $(LIBS) -o $@
ppm2tiff.ccomp.host: $(src:.c=.ccomp.host.o) ../clock.gcc.host.o
@@ -25,6 +24,22 @@ ppm2tiff.gcc.o1.k1c: $(src:.c=.gcc.o1.k1c.o) ../clock.gcc.k1c.o
$(K1C_CC) $(K1C_CFLAGS_O1) $+ $(LIBS) -o $@
ppm2tiff.ccomp.k1c: $(src:.c=.ccomp.k1c.o) ../clock.gcc.k1c.o
$(K1C_CCOMP) $(K1C_CCOMPFLAGS) $+ $(LIBS) -o $@
+
+ppm2tiff.gcc.host.out: ppm2tiff.gcc.host
+ bunzip2 < example_bw.pbm.bz2 | ./$< -c g3 $<.g3.tif | tee $@
+
+ppm2tiff.ccomp.host.out: ppm2tiff.ccomp.host
+ bunzip2 < example_bw.pbm.bz2 | ./$< -c g3 $<.g3.tif | tee $@
+
+ppm2tiff.gcc.k1c.out: ppm2tiff.gcc.k1c
+ bunzip2 < example_bw.pbm.bz2 | $(EXECUTE_CYCLES) ./$< -c g3 $<.g3.tif | tee $@
+
+ppm2tiff.gcc.o1.k1c.out: ppm2tiff.gcc.o1.k1c
+ bunzip2 < example_bw.pbm.bz2 | $(EXECUTE_CYCLES) ./$< -c g3 $<.g3.tif | tee $@
+
+ppm2tiff.ccomp.k1c.out: ppm2tiff.ccomp.k1c
+ bunzip2 < example_bw.pbm.bz2 | $(EXECUTE_CYCLES) ./$< -c g3 $<.g3.tif | tee $@
+
measures.csv: $(PRODUCTS_OUT)
echo "benches, gcc host,ccomp host,gcc k1c,gcc o1 k1c,ccomp k1c" > $@
echo "ppm2tiff ", $$(grep 'cycles' ppm2tiff.gcc.host.out | cut -d':' -f2), $$(grep 'cycles' ppm2tiff.ccomp.host.out | cut -d':' -f2), $$(grep 'cycles' ppm2tiff.gcc.k1c.out | cut -d':' -f2), $$(grep 'cycles' ppm2tiff.gcc.o1.k1c.out | cut -d':' -f2), $$(grep 'cycles' ppm2tiff.ccomp.k1c.out | cut -d':' -f2)>> $@