Note on Julia
Table of Content
Installation
- Julia Download page: Stable release
- Julia Installation Instruction:
- Windows: Official Instruction
- MacOS: Official Instruction
- Jupyter Notebook / Jupyter Lab Installation Instruction: Official Instruction
- Link Jupyter Notebook with Julia: Video tutorial on Windows, Video tutorial on MacOS
Julia Introduction
- 100 Seconds Intro by Fireship: video
Julia Tips
Memory Allocations
Due to the nature of LLVM, memory allocation in Julia can be very expensive. Especially in dynamic programming, we usually a lot of arrays to store our data. Therefore, tracking where the memory is allocated can fast computation a lot.
Article tags: Miscellaneous