-
BPO | [15986](https://bugs.python.org/issue15986)
--- | :---
Nosy | @amauryfa, @abalkin, @pitrou, @skrah, @meadori, @vadmium, @MojoVampire
*Note: these values reflect the state of the issue at the ti…
-
what would be the difficulty to implement memoryview ?
code
```
x = memoryview(bytes(5))
#display x:
print(x)
#display the data type of x:
print(type(x))
```
-
`PyArray_FromAny` does not necessarily return an array of the requested DType. Specifically, when called with a memoryview object, the DType is ignored (i.e. there is no validation nor casting).
##…
-
It is not possible at the moment create/manipulate tensors containing `bfloat16` outside of MLX.
```python
x = mx.array(jnp.ones((2, 2), dtype=jnp.bfloat16))
```
This is because it seems every…
-
什么时候可以提供一个python3 实现的解密脚本, 现在解文件的时候一直报错!!!
-
#### Software versions
Python 3.9.7
pytype 2021.11.18
#### Testcases
repr1.py:
```python
import mmap
x = mmap.mmap(-1, 4096)
y = memoryview(x)
```
repr2.py:
```python
import array
x =…
-
Hi philippdre,
I am am on OSX 10.15.5 with Conda and python3.7 (with all the recommended package versions set by conda virtual environment) running into compiling problems. As you will see, I first…
-
In order to do most interesting things it is necessary to have an ABI that allows imported functions to read shared memory. For example, if the WASM code wants to pass a string to the host code it can…
-
### Is your feature request related to a problem? Please describe.
We've discussed speeding up memoryview slicing before, because it isn't as quick as we've like it to be.
Consider a common case…
-
## Description
An error is thrown when passing a non-writeable numpy array to a function such as `skimage.segmentation.relabel_sequential` that calls `utils.map_array`. This seems unexpected, as th…