https://github.com/hsm207/optimize_julia_code
https://github.com/hsm207/optimize_julia_code
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hsm207/optimize_julia_code
- Owner: hsm207
- License: gpl-3.0
- Created: 2020-03-21T14:21:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-23T07:55:15.000Z (over 5 years ago)
- Last Synced: 2025-03-04T09:42:08.119Z (7 months ago)
- Language: Jupyter Notebook
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
This repository contains code to accompany my Medium blog post titled [A Beginner's Guide To Optimizing Julia Code](https://medium.com/towards-artificial-intelligence/a-beginners-guide-to-optimizing-julia-code-148e3f2d69bd).
# Usage
1. Clone this repo.
2. Open a Julia REPL and `cd` to the project's root directory.
3. Enter Pkg REPL mode and execute:
```julia
activate .
instantiate
```
4. Exit Pkg REPL mode and execute:
```julia
using IJulia
notebook(dir=pwd())
```
This open Jupyter notebook in your default browser.
Navigate to the [notebooks](./notebooks) folder to view the solutions presented in the blog post.