cchudant

Results 24 issues of cchudant

### Expected Behavior I don't know if it's "expected" behavior per say, of feature/change request. I'd like a way to have `ReferenceWarning: Code reference mymodule.erroneous_reference in module "mymodule" does not...

bug
enhancement
help wanted 🤷
good first issue
Hacktoberfest

Hi! As part of a freelance work for [xelis](https://github.com/xelis-project/), I have been working on an implementation of [FastECDLP](https://eprint.iacr.org/2022/1573). My implementation works, and is quite fast :partying_face: However, my work currently...

This PR brings a few things to the avx512 linalg kernels added in #989: - Kernels are now auto-generated based on mr/nr from the build.rs script - Wider kernels are...

heya 👋 I just implemented the pointer conversion so that I could test my own printf. It works by generating integers and casting them into void pointers. That means that...

https://github.com/pola-rs/polars/pull/6325 Work in progress

A-client
A-server
A-protocol
C-feature
S-blocked

Repro: ```py 1) import polars as pl from bastionlab.polars.policy import Policy, TrueRule, Log repro_df = pl.DataFrame({ "hello": [1, 2, 3], "world": [1, 2, 3] }) repro_rdf = connection.client.polars.send_df(repro_df, policy=Policy(safe_zone=TrueRule(), unsafe_handling=Log(),...

A-server
C-bug

``` GRPCException: Internal server error: code=StatusCode.INTERNAL message=Could not run logical plan: Data types don't match: Series of dtype: Date != Utf8 ``` should not be internal server error, it should...

A-server
C-bug

Any usage of `value_counts` fails with this error: ```py rdf.select(pl.col("gender").value_counts()).collect().fetch() ``` Error: `ValueError: Error("the enum variant Expr::AnonymousFunction cannot be serialized", line: 0, column: 0)` As @lyie28 told me, this is...

A-client
C-bug

The rocksdb crate supports a feature called `multi-threaded-cf`, which wraps column family descriptors into RwLocks. and change some types around. Enabling it in a downstream app makes kvdb-rocksdb then fail...

Hi, in our app we need to have long-lived snapshots - meaning, a snapshot which can span multiple http requests, and even be put into an Arc along with the...