init assignment 1
This commit is contained in:
commit
07f514c657
11 changed files with 14 additions and 0 deletions
1
assignments/01/.clang-format
Normal file
1
assignments/01/.clang-format
Normal file
|
@ -0,0 +1 @@
|
|||
IndentWidth: 2
|
2
assignments/01/.gitignore
vendored
Normal file
2
assignments/01/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
lc_openmp
|
||||
lc_pthreads
|
9
assignments/01/Makefile
Normal file
9
assignments/01/Makefile
Normal file
|
@ -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 $@ $<
|
0
assignments/01/generate_test_data.py
Normal file
0
assignments/01/generate_test_data.py
Normal file
1
assignments/01/lc_openmp.c
Normal file
1
assignments/01/lc_openmp.c
Normal file
|
@ -0,0 +1 @@
|
|||
int main() { return 0; }
|
1
assignments/01/lc_pthreads.c
Normal file
1
assignments/01/lc_pthreads.c
Normal file
|
@ -0,0 +1 @@
|
|||
int main() { return 0; }
|
BIN
assignments/01/linear_classification.pdf
Normal file
BIN
assignments/01/linear_classification.pdf
Normal file
Binary file not shown.
BIN
lectures/2023-09-06-SerialAlgorithms.pdf
Normal file
BIN
lectures/2023-09-06-SerialAlgorithms.pdf
Normal file
Binary file not shown.
BIN
lectures/2023-09-06-course-overview.pdf
Normal file
BIN
lectures/2023-09-06-course-overview.pdf
Normal file
Binary file not shown.
Binary file not shown.
BIN
lectures/2023-09-11 chapter2.pdf
Normal file
BIN
lectures/2023-09-11 chapter2.pdf
Normal file
Binary file not shown.
Loading…
Reference in a new issue