microsoft / O-CNN

O-CNN: Octree-based Convolutional Neural Networks for 3D Shape Analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CUDA error! when try to run pytorch/projects/classification.py in cpu.

TrepangCat opened this issue · comments

I manually edit pytorch/projects/classification.py to run it in cpu mode by using .to('cpu')
But CUDA error: CUBLAS_STATUS_ALLOC_FAILED when calling cublasCreate(handle) occurs when ocnn.nn.octree_conv() is runing.
Why?

Sorry, currently for octree_conv in PyTorch, the cpu mode is not supported.

The basic implement of cpu-based octree_conv exists in the library octree, however, the interfaces are not exposed to PyTorch.

Thanks