Skip to content
#

CUDA

cuda logo

CUDA® is a parallel computing platform and programming model developed by NVIDIA for general computing on graphical processing units (GPUs). With CUDA, developers are able to dramatically speed up computing applications by harnessing the power of GPUs.

Here are 3,444 public repositories matching this topic...

numba
rhjmoore
rhjmoore commented Sep 1, 2021

I see comments suggesting adding this to understand how loops are being handled by numba, and in the their own FAQ (https://numba.pydata.org/numba-doc/latest/user/faq.html)

from llvmlite import binding as llvm
llvm.set_option('','--debug-only=loop-vectorize')

You would then create your njit function and run it, and I believe the idea is that it prints debug information about whether

good first issue bug - documentation incorrect
fingoldo
fingoldo commented Mar 24, 2022

Problem:

_catboost.pyx in _catboost._set_features_order_data_pd_data_frame()

_catboost.pyx in _catboost.get_cat_factor_bytes_representation()

CatBoostError: Invalid type for cat_feature[non-default value idx=1,feature_idx=336]=2.0 : cat_features must be integer or string, real number values and NaN values should be converted to string.

Could you also print a feature name, not o

KazukiOnodera
KazukiOnodera commented Mar 29, 2022

Describe the bug
cudf.pivot doesn't understand "values" when it's column name instead of list and the column name includes numeric

Steps/Code to reproduce bug

import cudf
df = cudf.DataFrame([
    ['A', 'a', 0, 0, 0],
    ['A', 'b', 1, 1, 1],
    ['A', 'c', 2, 2, 2],
    ['B', 'a', 0, 0, 0],
    ['B', 'b', 1, 1, 1],
    ['B', 'c', 2, 2, 2],
    ['C', 'a', 0, 0, 0],
    [
bug good first issue cuDF (Python)
thrust
batterseapower
batterseapower commented Mar 2, 2022

Describe the bug
If min_samples_split is a small float, then it may be equivalent to splitting on < 2 samples. This causes cuml to blow up:

RuntimeError: exception occured! file=../src/decisiontree/decisiontree.cu line=41: Invalid value for min_samples_split: 1. Should be >= 2.
Obtained 64 stack frames
#0 in /home/mboling/miniconda3/lib/python3.8/site-packages/cuml/common/../../..
bug good first issue
xmnlab
xmnlab commented Mar 19, 2019

Hey everyone!

mapd-core-cpu is already available on conda-forge (https://anaconda.org/conda-forge/omniscidb-cpu)

now we should add some instructions on the documentation.

at this moment it is available for linux and osx.

some additional information about the configuration:

  1. for now, always install omniscidb-cpu inside a conda environment (also it is a good practice), eg:

Created by Nvidia

Released June 23, 2007

Website
developer.nvidia.com/cuda-zone
Wikipedia
Wikipedia

Related Topics

nvcc