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,126 public repositories matching this topic...

numba
juliusbierk
juliusbierk commented Oct 19, 2021

I believe this is undocumented behaviour.

import numba as nb


@nb.njit
def f1():
    for i in nb.prange(1):
        print(type(i))  # >>> int64


@nb.njit(parallel=True)
def f2():
    for i in nb.prange(1):
        print(type(i))  # >>> uint64


f1()
f2()

This caused a nasty bug in my own code that was hard to debug as the problem did not exist without `parallel=Tr

nickhuangxinyu
nickhuangxinyu commented Sep 25, 2021

usually, after trained model. i save model in cpp format with code:

cat_model.save_model('a', format="cpp")
cat_model.save_model('b', format="cpp")

but when my cpp need to use multi models.

in my main.cpp

#include "a.hpp"
#include "b.hpp"

int main() {
  // do something
  double a_pv = ApplyCatboostModel({1.2, 2.3});  // i want to a.hpp's model here
  double b_pv 
odddozen
odddozen commented Aug 27, 2021

the .pcd file format allows for fields to be extended. this means it can neatly hold data about the label or object of a point. this can be very handy for ML tasks. However, the open3d file io does not appear to be able to read other fields other than the xyz, rgb, normals etc . I haven't been able to find where in the open3d structure the code for the file io pcd loading is implemented to att

thrust
wphicks
wphicks commented Feb 8, 2021

Report needed documentation

Report needed documentation
While the estimator guide offers a great breakdown of how to use many of the tools in api_context_managers.py, it would be helpful to have information right in the docstring during development to more easily understand what is actually going on in each of the provided functions/classes/methods. This is particularly important for

Created by Nvidia

Released June 23, 2007

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

Related Topics

nvcc