-
It doesn't appear to be possible to pass a list as a value inside a dictionary. Here is a simple reproducer.
```python3
import numba
@numba.njit
def f():
d = {}
for i in range(10):…
-
## Feature request
It would be nice if the global interpreter lock could be released for AOT-compiled code so that multiple functions can be run in parallel.
The syntax could be `@cc.export("foo…
99991 updated
2 years ago
-
**A clear and concise description of what the problem is.**
Concisely: if you have data as a list of dicts or jsons then Pandas is quite slow. This is an extremely common problem when data is sent…
-
It seems likely that we'll want the ability to write fast numeric code in a low-level-ish language. There are a few options:
1. Cython
2. Numba
3. C/C++, wrapped with a variety of other opti…
-
---
## Feature request Float Literal Type
I'd like to see support for a Float Literal type, similar to the Integer Literal and Boolean Literal types that currently exist.
The main motivations…
-
## Description of your problem or feature request
Context: I am trying to fix `aesara` on the [nixpkgs](https://github.com/NixOS/nixpkgs/) repository.
PR: https://github.com/NixOS/nixpkgs/pull/304…
-
## Feature request
Imagine writing an image transformation in python code and jitting it to output to WebAssembly for use in a browser. This will allow python viz tools to push computations to the…
-
I am evaluating a big sympy generated expression to solve and ODE. I have been able to accelerate it by applying numba.jit to the lambdified expression. However, as the the compilation of the expressi…
-
# Introduction of an inlinable mutable global binding
The main purpose of the `const` qualifier seems to be to allow the compiler to infer the type of global bindings and possibly inline their valu…
-
### Your current environment
```text
PyTorch version: 2.4.0+cu121
Is debug build: False
CUDA used to build PyTorch: 12.1
ROCM used to build PyTorch: N/A
OS: Ubuntu 22.04.4 LTS (x86_64)
GCC vers…