-
Updated
Apr 22, 2021 - C++
nvidia
Here are 796 public repositories matching this topic...
-
Updated
Apr 21, 2021 - C++
[BUG] Typo in UMAP
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
-
Updated
Apr 10, 2021
-
Updated
Apr 24, 2021 - C++
-
Updated
Apr 24, 2021 - C
-
Updated
Dec 15, 2020 - Jupyter Notebook
-
Updated
Apr 23, 2021 - C++
-
Updated
Nov 18, 2020 - Shell
-
Updated
Mar 1, 2021 - Python
DeviceSegmentedReduce reduces each segment using the same kernel as DeviceReduce, and thus provides the same run-to-run consistency guarantee for non-associative types. The documentation for DeviceSegmentedReduce should be updated to reflect this.
E.g. this bit: https://github.com/NVIDIA/cub/blob/a8910accebe74ce043a13026f8e71d678cddd6c1/cub/device/device_reduce.cuh#L91-L95
needs to be ad
-
Updated
Apr 23, 2021 - Python
-
Updated
Sep 25, 2020 - Jupyter Notebook
-
Updated
Jan 3, 2020 - Shell
-
Updated
Aug 18, 2020 - C#
We can probably move RemoveContiguous to RemoveNOP:
-
Updated
Feb 14, 2021 - Python
-
Updated
Apr 24, 2021 - C
Windows Defender blocking excavator.exe without any ability to react - bug in Windows Defender UI
If you are getting issues about application (excavator.exe) being blocked by Windows Defender security, then we are also aware that there is no way to make any decision about this block, because it is simply not visible anywhere. There are 2 possible solutions you can take:
- After you install NiceHash QuickMiner and Windows Defender starts blocking it, perform manual virus scan of the folder wh
Improve this page
Add a description, image, and links to the nvidia topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the nvidia topic, visit your repo's landing page and select "manage topics."
Problem
Cub allows itself to place into a namespace via
CUB_NS_PREFIXandCUB_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