Skip to content
#

cuda

Here are 2,821 public repositories matching this topic...

numba
DrTodd13
DrTodd13 commented Apr 7, 2021

In numba/stencils/stencil.py, there are various places (like line 552, "if isinstance(kernel_size[i][0], int):") where we check for "int" in relation to neighborhoods. I ran across a case where I was creating a neighborhood tuple by extracting values from a Numpy array. This causes a problem because those Numpy values will not match in these isinstance int checks. I worked around it by conver

pseudotensor
pseudotensor commented Jan 12, 2021

Problem: the approximate method can still be slow for many trees
catboost version: master
Operating System: ubuntu 18.04
CPU: i9
GPU: RTX2080

Would be good to be able to specify how many trees to use for shapley. The model.predict and prediction_type versions allow this. lgbm/xgb allow this.

beckernick
beckernick commented Apr 19, 2021

Today, I can manipulate ListDtype columns and execute operations like segmented sort and unique. Because these operations do not have cross-row (or cross-partition) dependencies, they can be executed in Dask by passing a lambda function to map_partitions.

It would be nice to expose the list accessor on dask-cuDF objects like we do for other accessors. As this is not supported by pandas, per

thrust
nv-dlasalle
nv-dlasalle commented Mar 19, 2021

Problem

Cub allows itself to place into a namespace via CUB_NS_PREFIX and CUB_NS_POSTFIX, such that multiple shared libraries can each utilize their own copy of it (and thus different versions can safely coexist). Static variables used for caching could otherwise cause problems (e.g., https://github.com/NVIDIA/cub/blob/main/cub/util_device.cuh#L212).

Thrust however depends on cub and

fcomitani
fcomitani commented Apr 14, 2021

Describe the bug
Not a proper bug. The UMAP implementation has a typo in the target_weights argument, where the original UMAP uses target_weight. This creates issues of compatibility when working with both libraries.

Steps/Code to reproduce bug

from cuml import UMAP

mapper = UMAP(n_neighbors=15, n_components=2, target_weights=0.5)
# no error here

mapper2 = UMAP(n_neigh
futhark

Improve this page

Add a description, image, and links to the cuda topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cuda topic, visit your repo's landing page and select "manage topics."

Learn more