Numericalmodelingkickstarter » History » Version 2
Nicolas Aunai, 07/03/2017 08:03 PM
1 | 1 | Nicolas Aunai | # Numerical simulations |
---|---|---|---|
2 | 2 | Nicolas Aunai | |
3 | |||
4 | ## High Performance Computing |
||
5 | |||
6 | * [What is the effect of the different cache (L1, L2, etc.) on performance?](#What-is-the-effect-of-the-different-cache-on-performance)? |
||
7 | * [What should I know about memory?](#What-should-I-Know-about-memory)? |
||
8 | |||
9 | |||
10 | |||
11 | |||
12 | ---- |
||
13 | |||
14 | |||
15 | ## General Data Analysis |
||
16 | |||
17 | ### What is the effect of the different cache on performance? |
||
18 | |||
19 | You can have very good information on [CPU caches](https://en.wikipedia.org/wiki/CPU_cache) on [this blog page](http://igoro.com/archive/gallery-of-processor-cache-effects/). |
||
20 | |||
21 | ### What should I know about memory? |
||
22 | |||
23 | There is a **very** good and complete review on computer memories [here](https://people.freebsd.org/~lstewart/articles/cpumemory.pdf). In particular the section 6 is good to know for performance programming. |