-
### Description of improvement
CPython 3.13 will include an option to turn off the global interpreter lock (GIL). 🎆 We should make it so that PlasmaPy works with the GIL off.
### Motivation
…
-
Code like the following:
```python
@parameterized.named_parameters(
{"testcase_name": "_jit_scan={}_jit_f={}".format(jit_scan, jit_f),
"jit_scan": jit_scan, "jit_f": jit_f}
f…
-
This page has several issues with the provided examples:
https://pytorch.org/TensorRT/user_guide/saving_models.html
1. In the examples, an optional parameter is passed before a non-optional paramete…
-
In some versions of python (details below) triton.jit will read only a partial part of the decorated function, leading to an assertion error when the function is first called, parsed with ast.parse(),…
-
I tried to run the FMCW radar example (web: [1], source: [3])
But I get "UnicodeEncodeError: 'charmap' codec can't encode character '\u2834' in position 0: character maps to " and after that a lot of…
-
I was trying to figure out how to use the Python bindings to do some quick prototyping. And naturally, I wanted to start with an auto-scheduler. I kept running into an "unknown autoscheduler name" err…
-
When importing unsloth executable is created, but when running it, It throws:
OSError: could not get source code
and exits.
Full log:
```
Traceback (most recent call last):
File "D:\Projec…
-
### Description
In the following code, `jax.nn.softmax` returns different results under `jax.jit`.
```python
import jax
import jax.numpy as jnp
x = jax.random.normal(jax.random.key(0), (3, 1,…
-
Hello, I'm trying to run your code before digging into the details of the model, but ran into problems when attempting to train on some sample dataset. I've installed everything needed and followed t…
-
I encountered the following error on Python 3.10.14 (75b3de9d9035, Apr 28 2024, 20:54:05) [PyPy 7.3.16 with GCC 12.3.1 20230825]. The particular binary was built from the gentoo pypy3 ebuild.
```
RP…