Skip to content

Commit 85344f5

Browse files
committed
keep editing
1 parent 9fe6ef7 commit 85344f5

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

docs/support-for-jit/index.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ Each framework uses different compilation strategies to accelerate Python code:
1818

1919
Numba compiles Python functions to optimized machine code using the LLVM compiler infrastructure. Codeflash can suggest Numba optimizations that use:
2020

21-
- **`@jit`** - General-purpose JIT compilation with optional flags.
21+
- **`@jit`** - General-purpose JIT compilation with optional flags. Here is a non-exhaustive options which codeflash would apply on the function to optimize it via numba jit compilation.
2222
- **`noython=True`** - Compiles to machine code without falling back to the python interpreter.
23-
- **`parallel=True`** - Enables automatic thread-level parallelization of the function across multiple CPU cores (no GIL!).
2423
- **`fastmath=True`** - Uses aggressive floating-point optimizations via LLVM's fastmath flag
2524
- **`cache=True`** - Numba writes the result of function compilation to disk which significantly reduces future compilation times.
2625

0 commit comments

Comments
 (0)