├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── card.png ├── day1 ├── .gitignore ├── CMakeLists.txt ├── README.md ├── fig │ ├── comparison.png │ ├── fig.pptx │ └── process_thread.png ├── gdb_mpi.cpp ├── hello.cpp ├── index.html ├── rank.cpp └── rank_stream.cpp ├── day2 ├── README.md ├── fig │ ├── backfill.png │ ├── crowded.png │ ├── fairshare.png │ ├── fig.pptx │ ├── job.png │ ├── kousei.png │ ├── lustre.png │ ├── nawatobi.png │ ├── staging.png │ └── supercomputer.png └── index.html ├── day3 ├── .gitignore ├── CMakeLists.txt ├── README.md ├── calc_pi.cpp ├── calc_pi_mpi.cpp ├── calc_pi_reduce.cpp ├── fig │ ├── fig.pptx │ └── scaling.png ├── index.html └── processfiles.cpp ├── day4 ├── .gitignore ├── CMakeLists.txt ├── README.md ├── fig │ ├── bakapara.png │ ├── fig.pptx │ ├── fixed.png │ ├── margin.png │ ├── nontrivial.png │ ├── parafile.png │ ├── r_and_e.png │ ├── thermal.png │ └── uniform.png ├── fixed.plt ├── gather.cpp ├── index.html ├── thermal.cpp ├── thermal_mpi.cpp └── uniform.plt ├── day5 ├── .gitignore ├── CMakeLists.txt ├── README.md ├── fig │ ├── .gitignore │ ├── conf010.png │ ├── conf010_mpi.png │ ├── conf030.png │ ├── conf030_mpi.png │ ├── conf050.png │ ├── conf050_mpi.png │ ├── conf090.png │ ├── conf090_mpi.png │ ├── fig.pptx │ ├── gather.png │ ├── gs.png │ ├── margin.png │ ├── sendrecv_x.png │ ├── sendrecv_y.png │ └── serial_and_mpi.png ├── gather2d.cpp ├── gs.cpp ├── gs_mpi.cpp ├── image.rb ├── index.html ├── makefile └── sendrecv.cpp ├── day6 ├── .gitignore ├── CMakeLists.txt ├── README.md ├── fig │ ├── fig.pdf │ ├── fig.pptx │ ├── firsttouch.png │ ├── inner.png │ ├── largepage.png │ ├── multi.png │ ├── numa.png │ ├── outer.png │ ├── perf.png │ ├── perf2.png │ ├── perf_sample.png │ ├── single_scaling.png │ └── smallpage.png ├── gs.cpp ├── gs_hybrid.cpp ├── gs_omp1.cpp ├── gs_omp1.perf ├── gs_omp2.cpp ├── gs_omp2.perf ├── index.html ├── makefile ├── multi.dat ├── multi.plt ├── result.txt ├── single.dat ├── single.plt ├── single.png ├── single_eff.png └── vmem.cpp ├── day7 ├── .gitignore ├── CMakeLists.txt ├── README.md ├── add.cpp ├── add1.cpp ├── fig │ ├── energy.png │ ├── fig.pptx │ ├── load_pd.png │ ├── one.png │ ├── permute.png │ └── simd.png ├── func.cpp ├── func_simd.cpp ├── index.html ├── load.cpp ├── loadasm.cpp ├── magnetic │ ├── .gitignore │ ├── energy.plt │ ├── euler.dat │ ├── mag.cpp │ ├── mag_simd.cpp │ ├── mag_soa.cpp │ ├── makefile │ ├── one.dat │ └── rk2.dat ├── makefile ├── mul.cpp ├── print.cpp ├── setpd.cpp └── simdcheck.cpp ├── github-markdown.css ├── index.html ├── pdf.mk ├── postface ├── README.md ├── fig │ └── dummy.png └── index.html ├── preface ├── README.md ├── fig │ └── myjob.png └── index.html ├── review ├── .gitignore ├── Gemfile ├── Rakefile ├── catalog.yml ├── catalog.yml.orig ├── config-starter.yml ├── config.yml ├── css │ ├── normalize.css │ └── webstyle.css ├── images │ └── .gitignore ├── layouts │ ├── layout.html5.erb │ ├── layout.tex.erb │ └── layout.tex.erb.orig ├── lib │ ├── hooks │ │ ├── beforetexcompile.rb │ │ └── monkeypatch.rb │ ├── ruby │ │ └── review-pdfmaker.rb │ └── tasks │ │ ├── mytasks.rake │ │ ├── review.rake │ │ ├── review.rake.orig │ │ └── starter.rake ├── locale.yml ├── makefile ├── post.rb ├── pre.rb ├── review-ext.rb ├── sty │ ├── jumoline.sty │ ├── mycolophon.sty │ ├── mystyle.sty │ ├── mytextsize.sty │ ├── mytitlepage.sty │ ├── reviewmacro.sty │ └── starter.sty └── style.css └── template.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/README.md -------------------------------------------------------------------------------- /card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/card.png -------------------------------------------------------------------------------- /day1/.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | -------------------------------------------------------------------------------- /day1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/CMakeLists.txt -------------------------------------------------------------------------------- /day1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/README.md -------------------------------------------------------------------------------- /day1/fig/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/fig/comparison.png -------------------------------------------------------------------------------- /day1/fig/fig.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/fig/fig.pptx -------------------------------------------------------------------------------- /day1/fig/process_thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/fig/process_thread.png -------------------------------------------------------------------------------- /day1/gdb_mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/gdb_mpi.cpp -------------------------------------------------------------------------------- /day1/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/hello.cpp -------------------------------------------------------------------------------- /day1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/index.html -------------------------------------------------------------------------------- /day1/rank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/rank.cpp -------------------------------------------------------------------------------- /day1/rank_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day1/rank_stream.cpp -------------------------------------------------------------------------------- /day2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/README.md -------------------------------------------------------------------------------- /day2/fig/backfill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/backfill.png -------------------------------------------------------------------------------- /day2/fig/crowded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/crowded.png -------------------------------------------------------------------------------- /day2/fig/fairshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/fairshare.png -------------------------------------------------------------------------------- /day2/fig/fig.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/fig.pptx -------------------------------------------------------------------------------- /day2/fig/job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/job.png -------------------------------------------------------------------------------- /day2/fig/kousei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/kousei.png -------------------------------------------------------------------------------- /day2/fig/lustre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/lustre.png -------------------------------------------------------------------------------- /day2/fig/nawatobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/nawatobi.png -------------------------------------------------------------------------------- /day2/fig/staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/staging.png -------------------------------------------------------------------------------- /day2/fig/supercomputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/fig/supercomputer.png -------------------------------------------------------------------------------- /day2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day2/index.html -------------------------------------------------------------------------------- /day3/.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | -------------------------------------------------------------------------------- /day3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/CMakeLists.txt -------------------------------------------------------------------------------- /day3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/README.md -------------------------------------------------------------------------------- /day3/calc_pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/calc_pi.cpp -------------------------------------------------------------------------------- /day3/calc_pi_mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/calc_pi_mpi.cpp -------------------------------------------------------------------------------- /day3/calc_pi_reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/calc_pi_reduce.cpp -------------------------------------------------------------------------------- /day3/fig/fig.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/fig/fig.pptx -------------------------------------------------------------------------------- /day3/fig/scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/fig/scaling.png -------------------------------------------------------------------------------- /day3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/index.html -------------------------------------------------------------------------------- /day3/processfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day3/processfiles.cpp -------------------------------------------------------------------------------- /day4/.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | *.dat 3 | -------------------------------------------------------------------------------- /day4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/CMakeLists.txt -------------------------------------------------------------------------------- /day4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/README.md -------------------------------------------------------------------------------- /day4/fig/bakapara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/bakapara.png -------------------------------------------------------------------------------- /day4/fig/fig.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/fig.pptx -------------------------------------------------------------------------------- /day4/fig/fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/fixed.png -------------------------------------------------------------------------------- /day4/fig/margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/margin.png -------------------------------------------------------------------------------- /day4/fig/nontrivial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/nontrivial.png -------------------------------------------------------------------------------- /day4/fig/parafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/parafile.png -------------------------------------------------------------------------------- /day4/fig/r_and_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/r_and_e.png -------------------------------------------------------------------------------- /day4/fig/thermal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/thermal.png -------------------------------------------------------------------------------- /day4/fig/uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fig/uniform.png -------------------------------------------------------------------------------- /day4/fixed.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/fixed.plt -------------------------------------------------------------------------------- /day4/gather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/gather.cpp -------------------------------------------------------------------------------- /day4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/index.html -------------------------------------------------------------------------------- /day4/thermal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/thermal.cpp -------------------------------------------------------------------------------- /day4/thermal_mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/thermal_mpi.cpp -------------------------------------------------------------------------------- /day4/uniform.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day4/uniform.plt -------------------------------------------------------------------------------- /day5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/.gitignore -------------------------------------------------------------------------------- /day5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/CMakeLists.txt -------------------------------------------------------------------------------- /day5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/README.md -------------------------------------------------------------------------------- /day5/fig/.gitignore: -------------------------------------------------------------------------------- 1 | !*.png 2 | -------------------------------------------------------------------------------- /day5/fig/conf010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf010.png -------------------------------------------------------------------------------- /day5/fig/conf010_mpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf010_mpi.png -------------------------------------------------------------------------------- /day5/fig/conf030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf030.png -------------------------------------------------------------------------------- /day5/fig/conf030_mpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf030_mpi.png -------------------------------------------------------------------------------- /day5/fig/conf050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf050.png -------------------------------------------------------------------------------- /day5/fig/conf050_mpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf050_mpi.png -------------------------------------------------------------------------------- /day5/fig/conf090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf090.png -------------------------------------------------------------------------------- /day5/fig/conf090_mpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/conf090_mpi.png -------------------------------------------------------------------------------- /day5/fig/fig.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/fig.pptx -------------------------------------------------------------------------------- /day5/fig/gather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/gather.png -------------------------------------------------------------------------------- /day5/fig/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/gs.png -------------------------------------------------------------------------------- /day5/fig/margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/margin.png -------------------------------------------------------------------------------- /day5/fig/sendrecv_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/sendrecv_x.png -------------------------------------------------------------------------------- /day5/fig/sendrecv_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/sendrecv_y.png -------------------------------------------------------------------------------- /day5/fig/serial_and_mpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/fig/serial_and_mpi.png -------------------------------------------------------------------------------- /day5/gather2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/gather2d.cpp -------------------------------------------------------------------------------- /day5/gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/gs.cpp -------------------------------------------------------------------------------- /day5/gs_mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/gs_mpi.cpp -------------------------------------------------------------------------------- /day5/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/image.rb -------------------------------------------------------------------------------- /day5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/index.html -------------------------------------------------------------------------------- /day5/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/makefile -------------------------------------------------------------------------------- /day5/sendrecv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day5/sendrecv.cpp -------------------------------------------------------------------------------- /day6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/.gitignore -------------------------------------------------------------------------------- /day6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/CMakeLists.txt -------------------------------------------------------------------------------- /day6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/README.md -------------------------------------------------------------------------------- /day6/fig/fig.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/fig.pdf -------------------------------------------------------------------------------- /day6/fig/fig.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/fig.pptx -------------------------------------------------------------------------------- /day6/fig/firsttouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/firsttouch.png -------------------------------------------------------------------------------- /day6/fig/inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/inner.png -------------------------------------------------------------------------------- /day6/fig/largepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/largepage.png -------------------------------------------------------------------------------- /day6/fig/multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/multi.png -------------------------------------------------------------------------------- /day6/fig/numa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/numa.png -------------------------------------------------------------------------------- /day6/fig/outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/outer.png -------------------------------------------------------------------------------- /day6/fig/perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/perf.png -------------------------------------------------------------------------------- /day6/fig/perf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/perf2.png -------------------------------------------------------------------------------- /day6/fig/perf_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/perf_sample.png -------------------------------------------------------------------------------- /day6/fig/single_scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/single_scaling.png -------------------------------------------------------------------------------- /day6/fig/smallpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/fig/smallpage.png -------------------------------------------------------------------------------- /day6/gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/gs.cpp -------------------------------------------------------------------------------- /day6/gs_hybrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/gs_hybrid.cpp -------------------------------------------------------------------------------- /day6/gs_omp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/gs_omp1.cpp -------------------------------------------------------------------------------- /day6/gs_omp1.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/gs_omp1.perf -------------------------------------------------------------------------------- /day6/gs_omp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/gs_omp2.cpp -------------------------------------------------------------------------------- /day6/gs_omp2.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/gs_omp2.perf -------------------------------------------------------------------------------- /day6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/index.html -------------------------------------------------------------------------------- /day6/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/makefile -------------------------------------------------------------------------------- /day6/multi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/multi.dat -------------------------------------------------------------------------------- /day6/multi.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/multi.plt -------------------------------------------------------------------------------- /day6/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/result.txt -------------------------------------------------------------------------------- /day6/single.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/single.dat -------------------------------------------------------------------------------- /day6/single.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/single.plt -------------------------------------------------------------------------------- /day6/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/single.png -------------------------------------------------------------------------------- /day6/single_eff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/single_eff.png -------------------------------------------------------------------------------- /day6/vmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day6/vmem.cpp -------------------------------------------------------------------------------- /day7/.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | *.s 3 | -------------------------------------------------------------------------------- /day7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/CMakeLists.txt -------------------------------------------------------------------------------- /day7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/README.md -------------------------------------------------------------------------------- /day7/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/add.cpp -------------------------------------------------------------------------------- /day7/add1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/add1.cpp -------------------------------------------------------------------------------- /day7/fig/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/fig/energy.png -------------------------------------------------------------------------------- /day7/fig/fig.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/fig/fig.pptx -------------------------------------------------------------------------------- /day7/fig/load_pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/fig/load_pd.png -------------------------------------------------------------------------------- /day7/fig/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/fig/one.png -------------------------------------------------------------------------------- /day7/fig/permute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/fig/permute.png -------------------------------------------------------------------------------- /day7/fig/simd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/fig/simd.png -------------------------------------------------------------------------------- /day7/func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/func.cpp -------------------------------------------------------------------------------- /day7/func_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/func_simd.cpp -------------------------------------------------------------------------------- /day7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/index.html -------------------------------------------------------------------------------- /day7/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/load.cpp -------------------------------------------------------------------------------- /day7/loadasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/loadasm.cpp -------------------------------------------------------------------------------- /day7/magnetic/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.txt 3 | -------------------------------------------------------------------------------- /day7/magnetic/energy.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/energy.plt -------------------------------------------------------------------------------- /day7/magnetic/euler.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/euler.dat -------------------------------------------------------------------------------- /day7/magnetic/mag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/mag.cpp -------------------------------------------------------------------------------- /day7/magnetic/mag_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/mag_simd.cpp -------------------------------------------------------------------------------- /day7/magnetic/mag_soa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/mag_soa.cpp -------------------------------------------------------------------------------- /day7/magnetic/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/makefile -------------------------------------------------------------------------------- /day7/magnetic/one.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/one.dat -------------------------------------------------------------------------------- /day7/magnetic/rk2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/magnetic/rk2.dat -------------------------------------------------------------------------------- /day7/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/makefile -------------------------------------------------------------------------------- /day7/mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/mul.cpp -------------------------------------------------------------------------------- /day7/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/print.cpp -------------------------------------------------------------------------------- /day7/setpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/setpd.cpp -------------------------------------------------------------------------------- /day7/simdcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/day7/simdcheck.cpp -------------------------------------------------------------------------------- /github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/github-markdown.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/index.html -------------------------------------------------------------------------------- /pdf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/pdf.mk -------------------------------------------------------------------------------- /postface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/postface/README.md -------------------------------------------------------------------------------- /postface/fig/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postface/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/postface/index.html -------------------------------------------------------------------------------- /preface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/preface/README.md -------------------------------------------------------------------------------- /preface/fig/myjob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/preface/fig/myjob.png -------------------------------------------------------------------------------- /preface/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/preface/index.html -------------------------------------------------------------------------------- /review/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/.gitignore -------------------------------------------------------------------------------- /review/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/Gemfile -------------------------------------------------------------------------------- /review/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/Rakefile -------------------------------------------------------------------------------- /review/catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/catalog.yml -------------------------------------------------------------------------------- /review/catalog.yml.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/catalog.yml.orig -------------------------------------------------------------------------------- /review/config-starter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/config-starter.yml -------------------------------------------------------------------------------- /review/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/config.yml -------------------------------------------------------------------------------- /review/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/css/normalize.css -------------------------------------------------------------------------------- /review/css/webstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/css/webstyle.css -------------------------------------------------------------------------------- /review/images/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /review/layouts/layout.html5.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/layouts/layout.html5.erb -------------------------------------------------------------------------------- /review/layouts/layout.tex.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/layouts/layout.tex.erb -------------------------------------------------------------------------------- /review/layouts/layout.tex.erb.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/layouts/layout.tex.erb.orig -------------------------------------------------------------------------------- /review/lib/hooks/beforetexcompile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/lib/hooks/beforetexcompile.rb -------------------------------------------------------------------------------- /review/lib/hooks/monkeypatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/lib/hooks/monkeypatch.rb -------------------------------------------------------------------------------- /review/lib/ruby/review-pdfmaker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/lib/ruby/review-pdfmaker.rb -------------------------------------------------------------------------------- /review/lib/tasks/mytasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/lib/tasks/mytasks.rake -------------------------------------------------------------------------------- /review/lib/tasks/review.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/lib/tasks/review.rake -------------------------------------------------------------------------------- /review/lib/tasks/review.rake.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/lib/tasks/review.rake.orig -------------------------------------------------------------------------------- /review/lib/tasks/starter.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/lib/tasks/starter.rake -------------------------------------------------------------------------------- /review/locale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/locale.yml -------------------------------------------------------------------------------- /review/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/makefile -------------------------------------------------------------------------------- /review/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/post.rb -------------------------------------------------------------------------------- /review/pre.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/pre.rb -------------------------------------------------------------------------------- /review/review-ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/review-ext.rb -------------------------------------------------------------------------------- /review/sty/jumoline.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/sty/jumoline.sty -------------------------------------------------------------------------------- /review/sty/mycolophon.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/sty/mycolophon.sty -------------------------------------------------------------------------------- /review/sty/mystyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/sty/mystyle.sty -------------------------------------------------------------------------------- /review/sty/mytextsize.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/sty/mytextsize.sty -------------------------------------------------------------------------------- /review/sty/mytitlepage.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/sty/mytitlepage.sty -------------------------------------------------------------------------------- /review/sty/reviewmacro.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/sty/reviewmacro.sty -------------------------------------------------------------------------------- /review/sty/starter.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/sty/starter.sty -------------------------------------------------------------------------------- /review/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/review/style.css -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaityo256/sevendayshpc/HEAD/template.html --------------------------------------------------------------------------------