MCPcopy
hub / github.com/TencentARC/Pixal3D / cuda

Method cuda

pixal3d/modules/sparse/basic.py:613–616  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

611 return self.replace(new_feats, new_coords)
612
613 def cuda(self) -> 'SparseTensor':
614 new_feats = self.feats.cuda()
615 new_coords = self.coords.cuda()
616 return self.replace(new_feats, new_coords)
617
618 def half(self) -> 'SparseTensor':
619 new_feats = self.feats.half()

Callers

nothing calls this directly

Calls 2

replaceMethod · 0.95
cudaMethod · 0.45

Tested by

no test coverage detected