Giter Site home page Giter Site logo

Comments (3)

limhoyeon avatar limhoyeon commented on July 30, 2024

Im sorry for late reply.

we haven`t considered the cpu enviornment, but you can simply run on the cpu by modifying our codes like...

from

a = a.cuda()
b = torch.tensor([1., 2.], device="cuda") 

to

a = a.cpu()
b = torch.tensor([1., 2.], device="cpu") 

It would take a long time to do it yourself, but it's possible...
I sorry for not being more helpful.

from toothgroupnetwork.

kamste avatar kamste commented on July 30, 2024

Hello, thank you for the reply. The python part of the project is one thing and can be done like you mentioned. The issue is with rewriting CUDA kernels from pointops in external_libs folder. This functions are working only on specific type of GPU Nvidia series. Even if python is modified like you presented above there is still part in C++/C that is working only on GPU.
My question is: how to modify the project so there is no need to use cuda kernels (like sampling_cuda_kernel.cu, knnquery_cuda_kernel.cu ... etc. ) and have this part of the project run on CPU during inference.

from toothgroupnetwork.

limhoyeon avatar limhoyeon commented on July 30, 2024

As you say,, it seems that the project does not support cpu.
Im planning to modify the coda kernels c++ library to PyTorch, which can be executed on cpu. However, Im not sure when it will be fixed.

from toothgroupnetwork.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.