forked from Huxpro/huxpro.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (27 loc) · 776 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
info:
@echo "This is Liuxin's personal blog"
@echo ""
@echo "Welcome to visit http://peterlau.me"
.PHONY: info
todo:
@echo "The following blogs need to be continued"
@echo ""
@echo "1.folly IndexedMemoryPool"
@echo "2.onnxruntime workflow"
@echo "3.pytorch memory"
@echo "4.design pattern finite state machine"
@echo "5.environent variables"
.PHONY: todo
skills:
@echo "The following skills are to be learned"
@echo ""
@echo "1. Memory management"
@echo "Implementation details of TcMalloc"
@echo ""
@echo "2. Architecture design"
@echo "Architecture of NVIDIA Triton"
@echo ""
@echo "3. High performance computing"
@echo "Implementation details of parallel image processing in CVCUDA"
@echo "Mechanisms of GPUProvider in ONNXRuntime"
.PHONY: skills