From 6ff784158f61a082fe6d4332c743a066ef007674 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 22 Oct 2020 07:50:12 -0500 Subject: Add Project 2 Files --- P2/solutionexe/Makefile | 57 +++++++++++++++++++++++++++++++++++++++++++++++ P2/solutionexe/mapper | Bin 0 -> 26444 bytes P2/solutionexe/mapreduce | Bin 0 -> 24940 bytes P2/solutionexe/reducer | Bin 0 -> 25676 bytes 4 files changed, 57 insertions(+) create mode 100644 P2/solutionexe/Makefile create mode 100644 P2/solutionexe/mapper create mode 100644 P2/solutionexe/mapreduce create mode 100644 P2/solutionexe/reducer (limited to 'P2/solutionexe') diff --git a/P2/solutionexe/Makefile b/P2/solutionexe/Makefile new file mode 100644 index 0000000..231a15e --- /dev/null +++ b/P2/solutionexe/Makefile @@ -0,0 +1,57 @@ +CC=gcc +CFLAGS=-g + +SRCDIR=src +INCLDIR=include +LIBDIR=lib + +mapreduce: $(SRCDIR)/mapreduce.c $(LIBDIR)/utils.o mapper reducer + $(CC) $(CFLAGS) -I$(INCLDIR) $(LIBDIR)/utils.o $(SRCDIR)/mapreduce.c -o mapreduce + +mapper: $(SRCDIR)/mapper.c $(LIBDIR)/utils.o + $(CC) $(CFLAGS) -I$(INCLDIR) $(LIBDIR)/utils.o $(SRCDIR)/mapper.c -o mapper + +reducer: $(SRCDIR)/reducer.c $(LIBDIR)/utils.o + $(CC) $(CFLAGS) -I$(INCLDIR) $(LIBDIR)/utils.o $(SRCDIR)/reducer.c -o reducer + +$(LIBDIR)/utils.o: $(LIBDIR)/utils.c + $(CC) $(CFLAGS) -I$(INCLDIR) -c $(LIBDIR)/utils.c -o $(LIBDIR)/utils.o + +.PHONY: run clean t1 t2 t3 + +#500KB +t1: +# make -i clean +# make + ./mapreduce 5 2 test/T1/F1.txt + +#44KB +t2: +# make -i clean +# make + ./mapreduce 5 2 test/T2/F2.txt + +#0KB +t3: +# make -i clean +# make + ./mapreduce 5 2 test/T3/F3.txt + +# m >= r + +# m=1 r=1 (min case) +t4: +# make -i clean +# make + ./mapreduce 1 1 test/T1/F1.txt + +# m=32 r=26 (max case) +t5: +# make -i clean +# make + ./mapreduce 32 26 test/T1/F1.txt + + +clean: + rm lib/utils.o mapreduce mapper reducer + rm -rf output \ No newline at end of file diff --git a/P2/solutionexe/mapper b/P2/solutionexe/mapper new file mode 100644 index 0000000..15abd74 Binary files /dev/null and b/P2/solutionexe/mapper differ diff --git a/P2/solutionexe/mapreduce b/P2/solutionexe/mapreduce new file mode 100644 index 0000000..28be9a0 Binary files /dev/null and b/P2/solutionexe/mapreduce differ diff --git a/P2/solutionexe/reducer b/P2/solutionexe/reducer new file mode 100644 index 0000000..6d6ccd8 Binary files /dev/null and b/P2/solutionexe/reducer differ -- cgit v1.2.3