Nick Riasanovsky
Nick Riasanovsky
In regular Python you can zip together two sequences and created a dictionary using dict`. We should support the same in JIT (excluding heterogeneous sequences like tuples with mixed types)....
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 = {}...
## Reporting a bug - [X] I have tried using the latest released version of Numba (most recent is visible in the change log (https://github.com/numba/numba/blob/main/CHANGE_LOG). - [X] I have included...
closes #7707 Provides support for boxing an unhashable literal (i.e. slice). This updates serializing to avoid trying to place an unhashable object in a dictionary. It reuses the hashing implementation...
Hi I'm a relatively new user. I'm using my own dockerfile for a project that uses MPICH, and I have been able to successfully deploy the project. However, sometimes I'll...
## What is the current behavior? Currently when reading string data, the Snowflake connector always returns the data as a regular string array. ## What is the desired behavior? Snowflake...
## What is the current behavior? When you have data that is located on multiple different machine in memory, writing this data to Snowflake requires intermediate steps to perform the...
Please answer these questions before submitting your issue. Thanks! 1. What version of Python are you using (`python --version`)? 3.8.11 2. What operating system and processor architecture are you using...
I was experimenting with the AOT module inside a Python package that sets requires C++ 11. In doing so, I got a variety of errors related to C code that...
## Feature request While it's very rare, I have created situations when automatically generating JIT code where `find_topo_order` can lead to a maximum recursion error when attempting to sort the...