MCPcopy Index your code
hub / github.com/microsoft/TRELLIS / cuda

Method cuda

trellis/modules/sparse/basic.py:212–215  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

210 return self.replace(new_feats, new_coords)
211
212 def cuda(self) -> 'SparseTensor':
213 new_feats = self.feats.cuda()
214 new_coords = self.coords.cuda()
215 return self.replace(new_feats, new_coords)
216
217 def half(self) -> 'SparseTensor':
218 new_feats = self.feats.half()

Callers

nothing calls this directly

Calls 1

replaceMethod · 0.95

Tested by

no test coverage detected