├── LICENSE ├── Lab1 ├── README.md ├── guide │ └── 体系结构相关及性能测试.pdf ├── part1 │ ├── main_arm.cpp │ └── main_x86.cpp ├── part2 │ ├── main2_arm.cpp │ └── main2_x86.cpp └── report │ └── 2012682韩佳迅.pdf ├── Lab2 ├── README.md ├── code │ ├── SIMD_neon.cpp │ ├── SIMD_neon_super.cpp │ ├── SIMD_sse_avx.cpp │ └── SIMD_sse_avx_super.cpp ├── guide │ └── 实验教学指导书-3 simd编程.pdf └── report │ └── 2012682韩佳迅.pdf ├── Lab3 ├── README.md ├── code │ ├── pthread_neon.cpp │ ├── pthread_neon_1.cpp │ ├── pthread_neon_2.cpp │ ├── pthread_neon_3.cpp │ ├── pthread_neon_4.cpp │ ├── pthread_sseavx_1.cpp │ ├── pthread_sseavx_2.cpp │ ├── pthread_sseavx_3.cpp │ ├── pthread_super.cpp │ └── super.cpp ├── guide │ └── 实验教学指导书-4 pthread编程.pdf └── report │ └── 2012682韩佳迅.pdf ├── Lab4 ├── README.md ├── code │ ├── main.cpp │ ├── openmp_main.cpp │ ├── openmp_super.cpp │ └── super.cpp ├── guide │ └── 实验教学指导书-5 OpenMP编程.pdf └── report │ └── 2012682韩佳迅.pdf ├── Lab5 ├── README.md ├── code │ ├── main_block.cpp │ ├── main_pipe.cpp │ ├── main_recycle.cpp │ └── super_recycle.cpp ├── guide │ └── 实验指导书-6 MPI编程.pdf └── report │ └── 2012682韩佳迅.pdf ├── README.md └── final report ├── README.md ├── code ├── SIMD_neon.cpp ├── SIMD_sse_avx.cpp ├── kernel.cu ├── kernel.dp.cpp ├── mpi.cpp ├── openmp.cpp ├── ordinary1.cpp ├── ordinary2.cpp └── pthread.cpp ├── guide ├── 实验教学指导书-1 环境搭建.pdf └── 期末研究报告选题示例.docx └── report └── 2012682韩佳迅.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab1/README.md -------------------------------------------------------------------------------- /Lab1/guide/体系结构相关及性能测试.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab1/guide/体系结构相关及性能测试.pdf -------------------------------------------------------------------------------- /Lab1/part1/main_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab1/part1/main_arm.cpp -------------------------------------------------------------------------------- /Lab1/part1/main_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab1/part1/main_x86.cpp -------------------------------------------------------------------------------- /Lab1/part2/main2_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab1/part2/main2_arm.cpp -------------------------------------------------------------------------------- /Lab1/part2/main2_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab1/part2/main2_x86.cpp -------------------------------------------------------------------------------- /Lab1/report/2012682韩佳迅.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab1/report/2012682韩佳迅.pdf -------------------------------------------------------------------------------- /Lab2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab2/README.md -------------------------------------------------------------------------------- /Lab2/code/SIMD_neon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab2/code/SIMD_neon.cpp -------------------------------------------------------------------------------- /Lab2/code/SIMD_neon_super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab2/code/SIMD_neon_super.cpp -------------------------------------------------------------------------------- /Lab2/code/SIMD_sse_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab2/code/SIMD_sse_avx.cpp -------------------------------------------------------------------------------- /Lab2/code/SIMD_sse_avx_super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab2/code/SIMD_sse_avx_super.cpp -------------------------------------------------------------------------------- /Lab2/guide/实验教学指导书-3 simd编程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab2/guide/实验教学指导书-3 simd编程.pdf -------------------------------------------------------------------------------- /Lab2/report/2012682韩佳迅.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab2/report/2012682韩佳迅.pdf -------------------------------------------------------------------------------- /Lab3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/README.md -------------------------------------------------------------------------------- /Lab3/code/pthread_neon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_neon.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_neon_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_neon_1.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_neon_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_neon_2.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_neon_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_neon_3.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_neon_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_neon_4.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_sseavx_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_sseavx_1.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_sseavx_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_sseavx_2.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_sseavx_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_sseavx_3.cpp -------------------------------------------------------------------------------- /Lab3/code/pthread_super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/pthread_super.cpp -------------------------------------------------------------------------------- /Lab3/code/super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/code/super.cpp -------------------------------------------------------------------------------- /Lab3/guide/实验教学指导书-4 pthread编程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/guide/实验教学指导书-4 pthread编程.pdf -------------------------------------------------------------------------------- /Lab3/report/2012682韩佳迅.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab3/report/2012682韩佳迅.pdf -------------------------------------------------------------------------------- /Lab4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab4/README.md -------------------------------------------------------------------------------- /Lab4/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab4/code/main.cpp -------------------------------------------------------------------------------- /Lab4/code/openmp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab4/code/openmp_main.cpp -------------------------------------------------------------------------------- /Lab4/code/openmp_super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab4/code/openmp_super.cpp -------------------------------------------------------------------------------- /Lab4/code/super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab4/code/super.cpp -------------------------------------------------------------------------------- /Lab4/guide/实验教学指导书-5 OpenMP编程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab4/guide/实验教学指导书-5 OpenMP编程.pdf -------------------------------------------------------------------------------- /Lab4/report/2012682韩佳迅.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab4/report/2012682韩佳迅.pdf -------------------------------------------------------------------------------- /Lab5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab5/README.md -------------------------------------------------------------------------------- /Lab5/code/main_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab5/code/main_block.cpp -------------------------------------------------------------------------------- /Lab5/code/main_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab5/code/main_pipe.cpp -------------------------------------------------------------------------------- /Lab5/code/main_recycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab5/code/main_recycle.cpp -------------------------------------------------------------------------------- /Lab5/code/super_recycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab5/code/super_recycle.cpp -------------------------------------------------------------------------------- /Lab5/guide/实验指导书-6 MPI编程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab5/guide/实验指导书-6 MPI编程.pdf -------------------------------------------------------------------------------- /Lab5/report/2012682韩佳迅.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/Lab5/report/2012682韩佳迅.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/README.md -------------------------------------------------------------------------------- /final report/README.md: -------------------------------------------------------------------------------- 1 | # parallel_homework 2 | 并行程序设计大作业 3 | -------------------------------------------------------------------------------- /final report/code/SIMD_neon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/SIMD_neon.cpp -------------------------------------------------------------------------------- /final report/code/SIMD_sse_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/SIMD_sse_avx.cpp -------------------------------------------------------------------------------- /final report/code/kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/kernel.cu -------------------------------------------------------------------------------- /final report/code/kernel.dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/kernel.dp.cpp -------------------------------------------------------------------------------- /final report/code/mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/mpi.cpp -------------------------------------------------------------------------------- /final report/code/openmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/openmp.cpp -------------------------------------------------------------------------------- /final report/code/ordinary1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/ordinary1.cpp -------------------------------------------------------------------------------- /final report/code/ordinary2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/ordinary2.cpp -------------------------------------------------------------------------------- /final report/code/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/code/pthread.cpp -------------------------------------------------------------------------------- /final report/guide/实验教学指导书-1 环境搭建.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/guide/实验教学指导书-1 环境搭建.pdf -------------------------------------------------------------------------------- /final report/guide/期末研究报告选题示例.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/guide/期末研究报告选题示例.docx -------------------------------------------------------------------------------- /final report/report/2012682韩佳迅.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmaxmax/Parallel-programming/HEAD/final report/report/2012682韩佳迅.pdf --------------------------------------------------------------------------------