commit 07f514c6571d5b7f05f330b77502a580f6ddc383 Author: Michael Zhang Date: Fri Sep 22 23:37:36 2023 -0500 init assignment 1 diff --git a/assignments/01/.clang-format b/assignments/01/.clang-format new file mode 100644 index 0000000..d761b50 --- /dev/null +++ b/assignments/01/.clang-format @@ -0,0 +1 @@ +IndentWidth: 2 \ No newline at end of file diff --git a/assignments/01/.gitignore b/assignments/01/.gitignore new file mode 100644 index 0000000..2f7960e --- /dev/null +++ b/assignments/01/.gitignore @@ -0,0 +1,2 @@ +lc_openmp +lc_pthreads \ No newline at end of file diff --git a/assignments/01/Makefile b/assignments/01/Makefile new file mode 100644 index 0000000..265a122 --- /dev/null +++ b/assignments/01/Makefile @@ -0,0 +1,9 @@ +.PHONY: all + +all: lc_openmp lc_pthreads + +lc_openmp: lc_openmp.c + gcc -o $@ $< + +lc_pthreads: lc_pthreads.c + gcc -o $@ $< \ No newline at end of file diff --git a/assignments/01/generate_test_data.py b/assignments/01/generate_test_data.py new file mode 100644 index 0000000..e69de29 diff --git a/assignments/01/lc_openmp.c b/assignments/01/lc_openmp.c new file mode 100644 index 0000000..c3aeba4 --- /dev/null +++ b/assignments/01/lc_openmp.c @@ -0,0 +1 @@ +int main() { return 0; } \ No newline at end of file diff --git a/assignments/01/lc_pthreads.c b/assignments/01/lc_pthreads.c new file mode 100644 index 0000000..76e8197 --- /dev/null +++ b/assignments/01/lc_pthreads.c @@ -0,0 +1 @@ +int main() { return 0; } diff --git a/assignments/01/linear_classification.pdf b/assignments/01/linear_classification.pdf new file mode 100644 index 0000000..ae30371 Binary files /dev/null and b/assignments/01/linear_classification.pdf differ diff --git a/lectures/2023-09-06-SerialAlgorithms.pdf b/lectures/2023-09-06-SerialAlgorithms.pdf new file mode 100644 index 0000000..fb67c23 Binary files /dev/null and b/lectures/2023-09-06-SerialAlgorithms.pdf differ diff --git a/lectures/2023-09-06-course-overview.pdf b/lectures/2023-09-06-course-overview.pdf new file mode 100644 index 0000000..dd4ea6c Binary files /dev/null and b/lectures/2023-09-06-course-overview.pdf differ diff --git a/lectures/2023-09-11 Chapter 2 - Parallel Programming Platforms-1.pdf b/lectures/2023-09-11 Chapter 2 - Parallel Programming Platforms-1.pdf new file mode 100644 index 0000000..826b5d5 Binary files /dev/null and b/lectures/2023-09-11 Chapter 2 - Parallel Programming Platforms-1.pdf differ diff --git a/lectures/2023-09-11 chapter2.pdf b/lectures/2023-09-11 chapter2.pdf new file mode 100644 index 0000000..70b22c7 Binary files /dev/null and b/lectures/2023-09-11 chapter2.pdf differ