Bradley Dice

Results 313 comments of Bradley Dice

@hyperbolic2346 To make this issue more actionable, can you add links to a few of the places where these various alignment functions are defined or called?

This paper about `ranges::fold` is somewhat related: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p2322r5.html, https://github.com/cplusplus/papers/issues/1004

`reduce_noncommutative`, `fold`, or `reduce_ordered` are my favorites but I lean towards `reduce_noncommutative` most strongly out of the options presented. Compare to `fold`: I'm used to hearing "left fold" or "right...

I don’t _really_ know how the (parallel) reduce algorithm implements its partial results / reordering, and that doesn’t seem important to explain in the name. Knowing the mathematical concept of...

@benbarsdell Hi, any updates on this? I'm reviewing https://github.com/rapidsai/cudf/pull/11287 and would like to understand the issue / what solutions might be possible.

Builds are failing because scikit-build doesn't find Visual Studio 2019 when building the wheel. CMake is able to successfully build the TBB library with Visual Studio 2019 before it tries...

>Try this from the source directory instead of the existing build commands. > ``` > cmake --build build -j 4 --config Release > cmake --install build > ``` @joaander I...

> Maybe pytest is trying to create temporary files in a directory the VM doesn't allow writing to? Yes, that's my best guess as well. I've tried setting pytest's `--rootdir`,...