William Ayd

Results 421 comments of William Ayd

FWIW the newer releases of the Hyper API have forced us to upgrade to version 4 for single point precision support (see https://github.com/innobi/pantab/pull/313) so your more immediate need may be...

As it turns out, hyper versions are not backwards compatible. The most recent pantab version bumped to hyper version for to support numeric data and I think arm chips on...

Thanks for the PR! This has been superseded by https://github.com/innobi/pantab/pull/335 though

On the topic of docstrings downstream users could always just use -OO at runtime if they are trying to strip those. That may not fully be what you are after,...

Thanks but I don't think this is wrong? "Distributed under" seems like a very common term - is there a precedent for "distributed on"?

I get a similar issue on ubuntu 25.10, albeit with different functions: ``` /usr/local/cuda-13.0/bin/../targets/x86_64-linux/include/crt/math_functions.h) extern double rsqrt (double __x) noexcept (true); extern double __rsqrt (double __x) noexcept (true); ^ /usr/include/x86_64-linux-gnu/bits/mathcalls.h(206):...

Looks like the code always assume nanoseconds when stringifying the index, at least according to the below comment: https://github.com/pandas-dev/pandas/blob/1895c382296bca720acc358b996f4800dbdf6c9c/pandas/_libs/src/vendored/ujson/python/objToJSON.c#L1319 That's unfortunate that it doesn't raise....but it any case needs implementation

The more I look at this the more I think it is potentially a bug with gcc. For example, if I produce an MRE like: ```cpp #include "absl/synchronization/mutex.h" void foo()...

I can't reproduce the issue with g++ 14.3.0 in a docker image, so I think this is related to the g++ 14.3.0 that comes in the compilers package

Issue was resolved in https://github.com/apache/arrow/pull/48414