diff options
author | Eduardo Julian | 2022-03-04 04:03:55 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-03-04 04:03:55 -0400 |
commit | ab9dc5fd656ef42dbb0192f96d34e1c7b451a430 (patch) | |
tree | f2a39496a1b162acf0a3504f1b4eba61ffdf05d7 /documentation/bookmark/optimization | |
parent | d4792368d8e63f9eb883a2cfbe9da5312b2ad557 (diff) |
Keeping the JVM interop fixes coming...
Diffstat (limited to '')
-rw-r--r-- | documentation/bookmark/optimization.md | 1 | ||||
-rw-r--r-- | documentation/bookmark/optimization/memoization.md | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/documentation/bookmark/optimization.md b/documentation/bookmark/optimization.md index 3df2cd1ae..b3d61c084 100644 --- a/documentation/bookmark/optimization.md +++ b/documentation/bookmark/optimization.md @@ -31,6 +31,7 @@ # Reference +0. [Algorithms for Modern Hardware](https://en.algorithmica.org/hpc/) 0. [Refterm Lecture Part 1 - Philosophies of Optimization](https://www.youtube.com/watch?v=pgoetgxecw8) 0. [Optimizations enabled by -ffast-math](https://kristerw.github.io/2021/10/19/fast-math/) 0. [Simple Code, High Performance](https://www.youtube.com/watch?v=Ge3aKEmZcqY) diff --git a/documentation/bookmark/optimization/memoization.md b/documentation/bookmark/optimization/memoization.md new file mode 100644 index 000000000..62c0bb9db --- /dev/null +++ b/documentation/bookmark/optimization/memoization.md @@ -0,0 +1,5 @@ +# Reference + +0. [Skip: A programming language to skip the things you have already computed](http://skiplang.com/) +0. https://github.com/skiplang/skip + |