Skip to content

Commit 056df3a

Browse files
authored
Better explanation
1 parent 96d0ff0 commit 056df3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ As far as I can tell Numba does give you a reasonable mapping, but you can't ass
141141
In order to profile, additional info needs to be added during compilation; specifically, the `NUMBA_DEBUGINFO` env variable is set.
142142
This might change runtime characteristics slightly, because it increases the memory size of the compiled code.
143143

144-
### 3. Compiled code is impacted by CPU effects that aren't visible in profiling
144+
### 3. Compiled code is impacted by CPU effects that aren't obvious from profiling results
145145

146-
Instruction-level parallelism, branch mispredictions, SIMD, and the CPU memory caches all have a significant impact on runtime performance, but they don't show up in profiling.
146+
Instruction-level parallelism, branch mispredictions, SIMD, and the CPU memory caches all have a significant impact on runtime performance, but the profiling result doesn't always make it clear that's the problem.
147147
[I'm writing a book about this if you want to learn more](https://pythonspeed.com/products/lowlevelcode/).
148148

149149
## Changelog

0 commit comments

Comments
 (0)