├── README.md ├── assignment1 ├── .gitignore ├── LICENSE ├── README.md ├── common │ ├── CycleTimer.h │ ├── ppm.cpp │ └── tasksys.cpp ├── prog1_mandelbrot_threads │ ├── Makefile │ ├── main.cpp │ ├── mandelbrotSerial.cpp │ └── mandelbrotThread.cpp ├── prog2_vecintrin │ ├── CMU418intrin.cpp │ ├── CMU418intrin.h │ ├── Makefile │ ├── logger.cpp │ ├── logger.h │ └── main.cpp ├── prog3_mandelbrot_ispc │ ├── Makefile │ ├── main.cpp │ ├── mandelbrot.ispc │ └── mandelbrotSerial.cpp ├── prog4_sqrt │ ├── Makefile │ ├── main.cpp │ ├── sqrt.ispc │ └── sqrtSerial.cpp └── prog5_saxpy │ ├── Makefile │ ├── main.cpp │ ├── saxpy.ispc │ └── saxpySerial.cpp ├── assignment2 ├── LICENSE ├── README.md ├── render │ ├── Makefile │ ├── benchmark.cpp │ ├── checker.pl │ ├── circleBoxTest.cu_inl │ ├── circleRenderer.h │ ├── cudaRenderer.cu │ ├── cudaRenderer.h │ ├── cycleTimer.h │ ├── display.cpp │ ├── exclusiveScan.cu_inl │ ├── harness.sh │ ├── image.h │ ├── latedays.qsub │ ├── lookupColor.cu_inl │ ├── main.cpp │ ├── noise.cpp │ ├── noise.h │ ├── noiseCuda.cu_inl │ ├── platformgl.h │ ├── ppm.cpp │ ├── ppm.h │ ├── refRenderer.cpp │ ├── refRenderer.h │ ├── refTimings.txt │ ├── render_ref │ ├── render_ref_latedays │ ├── run_latedays.sh │ ├── sceneLoader.cpp │ ├── sceneLoader.h │ ├── snow.par │ └── util.h ├── saxpy │ ├── CycleTimer.h │ ├── Makefile │ ├── main.cpp │ └── saxpy.cu └── scan │ ├── CycleTimer.h │ ├── Makefile │ ├── checker.pl │ ├── cudaScan_ref │ ├── main.cpp │ └── scan.cu ├── assignment3 ├── .gitignore ├── CycleTimer.h ├── LICENSE ├── Makefile ├── README.md ├── apps │ ├── bfs.cpp │ ├── bfs.h │ ├── graph_decomposition.cpp │ ├── graph_decomposition.h │ ├── kBFS.cpp │ ├── kBFS.h │ ├── page_rank.cpp │ └── page_rank.h ├── contracts.h ├── grade.h ├── graph.cpp ├── graph.h ├── graph_internal.h ├── jobs │ ├── generate_grade_performance_job.sh │ ├── generate_job.sh │ └── grade_performance.py ├── main.cpp ├── mic.h ├── paraGraph.h ├── parse_args.cpp ├── parse_args.h ├── ref │ ├── apps │ │ ├── bfs_ref.h │ │ ├── graph_decomposition_ref.h │ │ ├── kBFS_ref.h │ │ └── page_rank_ref.h │ ├── cpu_obj │ │ ├── bfs_ref.o │ │ ├── graph_decomposition_ref.o │ │ ├── kBFS_ref.o │ │ ├── page_rank_ref.o │ │ ├── util_ref.o │ │ └── vertex_set_ref.o │ └── phi_obj │ │ ├── bfs_ref.o │ │ ├── graph_decomposition_ref.o │ │ ├── kBFS_ref.o │ │ ├── page_rank_ref.o │ │ ├── util_ref.o │ │ └── vertex_set_ref.o ├── tools │ ├── .gitignore │ ├── Makefile │ ├── convert.cpp │ └── makegraphs.sh ├── vertex_set.cpp └── vertex_set.h └── assignment4 ├── .gitignore ├── LICENSE ├── Makefile ├── easy_install ├── external_lib ├── libevent-2.0.so.5 ├── libgflags.so.2 ├── libglog.so.0 └── pkgconfig │ ├── libevent.pc │ ├── libevent_openssl.pc │ ├── libevent_pthreads.pc │ ├── libgflags.pc │ ├── libgflags_nothreads.pc │ ├── libglog.pc │ ├── libprofiler.pc │ ├── libtcmalloc.pc │ ├── libtcmalloc_debug.pc │ ├── libtcmalloc_minimal.pc │ ├── libtcmalloc_minimal_debug.pc │ └── opencv.pc ├── functions.mk ├── harness.sh ├── latedays.qsub ├── run_ghc.sh ├── run_latedays.sh ├── scripts ├── comm.py ├── grading.py ├── load_modules.sh ├── nodemanager_local.py ├── port-for-user.py ├── random_workgen.py └── workgen.py ├── src ├── asst4harness │ ├── comm │ │ ├── comm.cpp │ │ ├── comm.h │ │ ├── connect.cpp │ │ └── connect.h │ ├── master │ │ ├── main.cpp │ │ └── main_loop.cpp │ ├── types │ │ ├── messages.cpp │ │ ├── types.cpp │ │ └── types.h │ └── worker │ │ ├── main.cpp │ │ └── work_engine.cpp ├── asst4include │ ├── server │ │ ├── master.h │ │ ├── messages.h │ │ └── worker.h │ └── tools │ │ ├── cycle_timer.h │ │ └── work_queue.h └── myserver │ ├── master.cpp │ └── worker.cpp └── tests ├── allrequests.txt ├── fasterwisdom.txt ├── grading_compareprimes.txt ├── grading_nonuniform1.txt ├── grading_nonuniform2.txt ├── grading_nonuniform3.txt ├── grading_tellmenow.txt ├── grading_uniform1.txt ├── grading_wisdom.txt ├── hello418.txt ├── nonuniform2_hint.txt ├── old ├── grading_burst.txt ├── grading_nonuniform1.txt ├── grading_nonuniform2.txt ├── grading_nonuniform3.txt ├── grading_random.txt ├── nonuniform1.txt ├── nonuniform2.txt ├── uniform1.txt ├── uniform2.txt ├── uniform3.txt └── uniform4.txt └── simplewisdom.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/README.md -------------------------------------------------------------------------------- /assignment1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/.gitignore -------------------------------------------------------------------------------- /assignment1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/LICENSE -------------------------------------------------------------------------------- /assignment1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/README.md -------------------------------------------------------------------------------- /assignment1/common/CycleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/common/CycleTimer.h -------------------------------------------------------------------------------- /assignment1/common/ppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/common/ppm.cpp -------------------------------------------------------------------------------- /assignment1/common/tasksys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/common/tasksys.cpp -------------------------------------------------------------------------------- /assignment1/prog1_mandelbrot_threads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog1_mandelbrot_threads/Makefile -------------------------------------------------------------------------------- /assignment1/prog1_mandelbrot_threads/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog1_mandelbrot_threads/main.cpp -------------------------------------------------------------------------------- /assignment1/prog1_mandelbrot_threads/mandelbrotSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog1_mandelbrot_threads/mandelbrotSerial.cpp -------------------------------------------------------------------------------- /assignment1/prog1_mandelbrot_threads/mandelbrotThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog1_mandelbrot_threads/mandelbrotThread.cpp -------------------------------------------------------------------------------- /assignment1/prog2_vecintrin/CMU418intrin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog2_vecintrin/CMU418intrin.cpp -------------------------------------------------------------------------------- /assignment1/prog2_vecintrin/CMU418intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog2_vecintrin/CMU418intrin.h -------------------------------------------------------------------------------- /assignment1/prog2_vecintrin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog2_vecintrin/Makefile -------------------------------------------------------------------------------- /assignment1/prog2_vecintrin/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog2_vecintrin/logger.cpp -------------------------------------------------------------------------------- /assignment1/prog2_vecintrin/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog2_vecintrin/logger.h -------------------------------------------------------------------------------- /assignment1/prog2_vecintrin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog2_vecintrin/main.cpp -------------------------------------------------------------------------------- /assignment1/prog3_mandelbrot_ispc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog3_mandelbrot_ispc/Makefile -------------------------------------------------------------------------------- /assignment1/prog3_mandelbrot_ispc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog3_mandelbrot_ispc/main.cpp -------------------------------------------------------------------------------- /assignment1/prog3_mandelbrot_ispc/mandelbrot.ispc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog3_mandelbrot_ispc/mandelbrot.ispc -------------------------------------------------------------------------------- /assignment1/prog3_mandelbrot_ispc/mandelbrotSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog3_mandelbrot_ispc/mandelbrotSerial.cpp -------------------------------------------------------------------------------- /assignment1/prog4_sqrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog4_sqrt/Makefile -------------------------------------------------------------------------------- /assignment1/prog4_sqrt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog4_sqrt/main.cpp -------------------------------------------------------------------------------- /assignment1/prog4_sqrt/sqrt.ispc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog4_sqrt/sqrt.ispc -------------------------------------------------------------------------------- /assignment1/prog4_sqrt/sqrtSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog4_sqrt/sqrtSerial.cpp -------------------------------------------------------------------------------- /assignment1/prog5_saxpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog5_saxpy/Makefile -------------------------------------------------------------------------------- /assignment1/prog5_saxpy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog5_saxpy/main.cpp -------------------------------------------------------------------------------- /assignment1/prog5_saxpy/saxpy.ispc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog5_saxpy/saxpy.ispc -------------------------------------------------------------------------------- /assignment1/prog5_saxpy/saxpySerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment1/prog5_saxpy/saxpySerial.cpp -------------------------------------------------------------------------------- /assignment2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/LICENSE -------------------------------------------------------------------------------- /assignment2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/README.md -------------------------------------------------------------------------------- /assignment2/render/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/Makefile -------------------------------------------------------------------------------- /assignment2/render/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/benchmark.cpp -------------------------------------------------------------------------------- /assignment2/render/checker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/checker.pl -------------------------------------------------------------------------------- /assignment2/render/circleBoxTest.cu_inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/circleBoxTest.cu_inl -------------------------------------------------------------------------------- /assignment2/render/circleRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/circleRenderer.h -------------------------------------------------------------------------------- /assignment2/render/cudaRenderer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/cudaRenderer.cu -------------------------------------------------------------------------------- /assignment2/render/cudaRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/cudaRenderer.h -------------------------------------------------------------------------------- /assignment2/render/cycleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/cycleTimer.h -------------------------------------------------------------------------------- /assignment2/render/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/display.cpp -------------------------------------------------------------------------------- /assignment2/render/exclusiveScan.cu_inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/exclusiveScan.cu_inl -------------------------------------------------------------------------------- /assignment2/render/harness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/harness.sh -------------------------------------------------------------------------------- /assignment2/render/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/image.h -------------------------------------------------------------------------------- /assignment2/render/latedays.qsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/latedays.qsub -------------------------------------------------------------------------------- /assignment2/render/lookupColor.cu_inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/lookupColor.cu_inl -------------------------------------------------------------------------------- /assignment2/render/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/main.cpp -------------------------------------------------------------------------------- /assignment2/render/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/noise.cpp -------------------------------------------------------------------------------- /assignment2/render/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/noise.h -------------------------------------------------------------------------------- /assignment2/render/noiseCuda.cu_inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/noiseCuda.cu_inl -------------------------------------------------------------------------------- /assignment2/render/platformgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/platformgl.h -------------------------------------------------------------------------------- /assignment2/render/ppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/ppm.cpp -------------------------------------------------------------------------------- /assignment2/render/ppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/ppm.h -------------------------------------------------------------------------------- /assignment2/render/refRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/refRenderer.cpp -------------------------------------------------------------------------------- /assignment2/render/refRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/refRenderer.h -------------------------------------------------------------------------------- /assignment2/render/refTimings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/refTimings.txt -------------------------------------------------------------------------------- /assignment2/render/render_ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/render_ref -------------------------------------------------------------------------------- /assignment2/render/render_ref_latedays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/render_ref_latedays -------------------------------------------------------------------------------- /assignment2/render/run_latedays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/run_latedays.sh -------------------------------------------------------------------------------- /assignment2/render/sceneLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/sceneLoader.cpp -------------------------------------------------------------------------------- /assignment2/render/sceneLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/sceneLoader.h -------------------------------------------------------------------------------- /assignment2/render/snow.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/snow.par -------------------------------------------------------------------------------- /assignment2/render/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/render/util.h -------------------------------------------------------------------------------- /assignment2/saxpy/CycleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/saxpy/CycleTimer.h -------------------------------------------------------------------------------- /assignment2/saxpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/saxpy/Makefile -------------------------------------------------------------------------------- /assignment2/saxpy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/saxpy/main.cpp -------------------------------------------------------------------------------- /assignment2/saxpy/saxpy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/saxpy/saxpy.cu -------------------------------------------------------------------------------- /assignment2/scan/CycleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/scan/CycleTimer.h -------------------------------------------------------------------------------- /assignment2/scan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/scan/Makefile -------------------------------------------------------------------------------- /assignment2/scan/checker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/scan/checker.pl -------------------------------------------------------------------------------- /assignment2/scan/cudaScan_ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/scan/cudaScan_ref -------------------------------------------------------------------------------- /assignment2/scan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/scan/main.cpp -------------------------------------------------------------------------------- /assignment2/scan/scan.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment2/scan/scan.cu -------------------------------------------------------------------------------- /assignment3/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | paraGraph 3 | objs/ 4 | jobs/*.job 5 | -------------------------------------------------------------------------------- /assignment3/CycleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/CycleTimer.h -------------------------------------------------------------------------------- /assignment3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/LICENSE -------------------------------------------------------------------------------- /assignment3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/Makefile -------------------------------------------------------------------------------- /assignment3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/README.md -------------------------------------------------------------------------------- /assignment3/apps/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/bfs.cpp -------------------------------------------------------------------------------- /assignment3/apps/bfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/bfs.h -------------------------------------------------------------------------------- /assignment3/apps/graph_decomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/graph_decomposition.cpp -------------------------------------------------------------------------------- /assignment3/apps/graph_decomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/graph_decomposition.h -------------------------------------------------------------------------------- /assignment3/apps/kBFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/kBFS.cpp -------------------------------------------------------------------------------- /assignment3/apps/kBFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/kBFS.h -------------------------------------------------------------------------------- /assignment3/apps/page_rank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/page_rank.cpp -------------------------------------------------------------------------------- /assignment3/apps/page_rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/apps/page_rank.h -------------------------------------------------------------------------------- /assignment3/contracts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/contracts.h -------------------------------------------------------------------------------- /assignment3/grade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/grade.h -------------------------------------------------------------------------------- /assignment3/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/graph.cpp -------------------------------------------------------------------------------- /assignment3/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/graph.h -------------------------------------------------------------------------------- /assignment3/graph_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/graph_internal.h -------------------------------------------------------------------------------- /assignment3/jobs/generate_grade_performance_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/jobs/generate_grade_performance_job.sh -------------------------------------------------------------------------------- /assignment3/jobs/generate_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/jobs/generate_job.sh -------------------------------------------------------------------------------- /assignment3/jobs/grade_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/jobs/grade_performance.py -------------------------------------------------------------------------------- /assignment3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/main.cpp -------------------------------------------------------------------------------- /assignment3/mic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/mic.h -------------------------------------------------------------------------------- /assignment3/paraGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/paraGraph.h -------------------------------------------------------------------------------- /assignment3/parse_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/parse_args.cpp -------------------------------------------------------------------------------- /assignment3/parse_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/parse_args.h -------------------------------------------------------------------------------- /assignment3/ref/apps/bfs_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/apps/bfs_ref.h -------------------------------------------------------------------------------- /assignment3/ref/apps/graph_decomposition_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/apps/graph_decomposition_ref.h -------------------------------------------------------------------------------- /assignment3/ref/apps/kBFS_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/apps/kBFS_ref.h -------------------------------------------------------------------------------- /assignment3/ref/apps/page_rank_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/apps/page_rank_ref.h -------------------------------------------------------------------------------- /assignment3/ref/cpu_obj/bfs_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/cpu_obj/bfs_ref.o -------------------------------------------------------------------------------- /assignment3/ref/cpu_obj/graph_decomposition_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/cpu_obj/graph_decomposition_ref.o -------------------------------------------------------------------------------- /assignment3/ref/cpu_obj/kBFS_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/cpu_obj/kBFS_ref.o -------------------------------------------------------------------------------- /assignment3/ref/cpu_obj/page_rank_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/cpu_obj/page_rank_ref.o -------------------------------------------------------------------------------- /assignment3/ref/cpu_obj/util_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/cpu_obj/util_ref.o -------------------------------------------------------------------------------- /assignment3/ref/cpu_obj/vertex_set_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/cpu_obj/vertex_set_ref.o -------------------------------------------------------------------------------- /assignment3/ref/phi_obj/bfs_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/phi_obj/bfs_ref.o -------------------------------------------------------------------------------- /assignment3/ref/phi_obj/graph_decomposition_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/phi_obj/graph_decomposition_ref.o -------------------------------------------------------------------------------- /assignment3/ref/phi_obj/kBFS_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/phi_obj/kBFS_ref.o -------------------------------------------------------------------------------- /assignment3/ref/phi_obj/page_rank_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/phi_obj/page_rank_ref.o -------------------------------------------------------------------------------- /assignment3/ref/phi_obj/util_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/phi_obj/util_ref.o -------------------------------------------------------------------------------- /assignment3/ref/phi_obj/vertex_set_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/ref/phi_obj/vertex_set_ref.o -------------------------------------------------------------------------------- /assignment3/tools/.gitignore: -------------------------------------------------------------------------------- 1 | convert 2 | dirs/ 3 | -------------------------------------------------------------------------------- /assignment3/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/tools/Makefile -------------------------------------------------------------------------------- /assignment3/tools/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/tools/convert.cpp -------------------------------------------------------------------------------- /assignment3/tools/makegraphs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/tools/makegraphs.sh -------------------------------------------------------------------------------- /assignment3/vertex_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/vertex_set.cpp -------------------------------------------------------------------------------- /assignment3/vertex_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment3/vertex_set.h -------------------------------------------------------------------------------- /assignment4/.gitignore: -------------------------------------------------------------------------------- 1 | deps 2 | objs 3 | cpplint.py 4 | worker$ 5 | logs_* -------------------------------------------------------------------------------- /assignment4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/LICENSE -------------------------------------------------------------------------------- /assignment4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/Makefile -------------------------------------------------------------------------------- /assignment4/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/easy_install -------------------------------------------------------------------------------- /assignment4/external_lib/libevent-2.0.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/libevent-2.0.so.5 -------------------------------------------------------------------------------- /assignment4/external_lib/libgflags.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/libgflags.so.2 -------------------------------------------------------------------------------- /assignment4/external_lib/libglog.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/libglog.so.0 -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libevent.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libevent.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libevent_openssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libevent_openssl.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libevent_pthreads.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libevent_pthreads.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libgflags.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libgflags.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libgflags_nothreads.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libgflags_nothreads.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libglog.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libglog.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libprofiler.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libprofiler.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libtcmalloc.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libtcmalloc.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libtcmalloc_debug.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libtcmalloc_debug.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libtcmalloc_minimal.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libtcmalloc_minimal.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/libtcmalloc_minimal_debug.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/libtcmalloc_minimal_debug.pc -------------------------------------------------------------------------------- /assignment4/external_lib/pkgconfig/opencv.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/external_lib/pkgconfig/opencv.pc -------------------------------------------------------------------------------- /assignment4/functions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/functions.mk -------------------------------------------------------------------------------- /assignment4/harness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/harness.sh -------------------------------------------------------------------------------- /assignment4/latedays.qsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/latedays.qsub -------------------------------------------------------------------------------- /assignment4/run_ghc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/run_ghc.sh -------------------------------------------------------------------------------- /assignment4/run_latedays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/run_latedays.sh -------------------------------------------------------------------------------- /assignment4/scripts/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/scripts/comm.py -------------------------------------------------------------------------------- /assignment4/scripts/grading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/scripts/grading.py -------------------------------------------------------------------------------- /assignment4/scripts/load_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/scripts/load_modules.sh -------------------------------------------------------------------------------- /assignment4/scripts/nodemanager_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/scripts/nodemanager_local.py -------------------------------------------------------------------------------- /assignment4/scripts/port-for-user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/scripts/port-for-user.py -------------------------------------------------------------------------------- /assignment4/scripts/random_workgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/scripts/random_workgen.py -------------------------------------------------------------------------------- /assignment4/scripts/workgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/scripts/workgen.py -------------------------------------------------------------------------------- /assignment4/src/asst4harness/comm/comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/comm/comm.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4harness/comm/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/comm/comm.h -------------------------------------------------------------------------------- /assignment4/src/asst4harness/comm/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/comm/connect.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4harness/comm/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/comm/connect.h -------------------------------------------------------------------------------- /assignment4/src/asst4harness/master/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/master/main.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4harness/master/main_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/master/main_loop.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4harness/types/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/types/messages.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4harness/types/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/types/types.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4harness/types/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/types/types.h -------------------------------------------------------------------------------- /assignment4/src/asst4harness/worker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/worker/main.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4harness/worker/work_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4harness/worker/work_engine.cpp -------------------------------------------------------------------------------- /assignment4/src/asst4include/server/master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4include/server/master.h -------------------------------------------------------------------------------- /assignment4/src/asst4include/server/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4include/server/messages.h -------------------------------------------------------------------------------- /assignment4/src/asst4include/server/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4include/server/worker.h -------------------------------------------------------------------------------- /assignment4/src/asst4include/tools/cycle_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4include/tools/cycle_timer.h -------------------------------------------------------------------------------- /assignment4/src/asst4include/tools/work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/asst4include/tools/work_queue.h -------------------------------------------------------------------------------- /assignment4/src/myserver/master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/myserver/master.cpp -------------------------------------------------------------------------------- /assignment4/src/myserver/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/src/myserver/worker.cpp -------------------------------------------------------------------------------- /assignment4/tests/allrequests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/allrequests.txt -------------------------------------------------------------------------------- /assignment4/tests/fasterwisdom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/fasterwisdom.txt -------------------------------------------------------------------------------- /assignment4/tests/grading_compareprimes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/grading_compareprimes.txt -------------------------------------------------------------------------------- /assignment4/tests/grading_nonuniform1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/grading_nonuniform1.txt -------------------------------------------------------------------------------- /assignment4/tests/grading_nonuniform2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/grading_nonuniform2.txt -------------------------------------------------------------------------------- /assignment4/tests/grading_nonuniform3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/grading_nonuniform3.txt -------------------------------------------------------------------------------- /assignment4/tests/grading_tellmenow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/grading_tellmenow.txt -------------------------------------------------------------------------------- /assignment4/tests/grading_uniform1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/grading_uniform1.txt -------------------------------------------------------------------------------- /assignment4/tests/grading_wisdom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/grading_wisdom.txt -------------------------------------------------------------------------------- /assignment4/tests/hello418.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/hello418.txt -------------------------------------------------------------------------------- /assignment4/tests/nonuniform2_hint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/nonuniform2_hint.txt -------------------------------------------------------------------------------- /assignment4/tests/old/grading_burst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/grading_burst.txt -------------------------------------------------------------------------------- /assignment4/tests/old/grading_nonuniform1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/grading_nonuniform1.txt -------------------------------------------------------------------------------- /assignment4/tests/old/grading_nonuniform2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/grading_nonuniform2.txt -------------------------------------------------------------------------------- /assignment4/tests/old/grading_nonuniform3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/grading_nonuniform3.txt -------------------------------------------------------------------------------- /assignment4/tests/old/grading_random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/grading_random.txt -------------------------------------------------------------------------------- /assignment4/tests/old/nonuniform1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/nonuniform1.txt -------------------------------------------------------------------------------- /assignment4/tests/old/nonuniform2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/nonuniform2.txt -------------------------------------------------------------------------------- /assignment4/tests/old/uniform1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/uniform1.txt -------------------------------------------------------------------------------- /assignment4/tests/old/uniform2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/uniform2.txt -------------------------------------------------------------------------------- /assignment4/tests/old/uniform3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/uniform3.txt -------------------------------------------------------------------------------- /assignment4/tests/old/uniform4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/old/uniform4.txt -------------------------------------------------------------------------------- /assignment4/tests/simplewisdom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subingangadharan/cmu15418/HEAD/assignment4/tests/simplewisdom.txt --------------------------------------------------------------------------------