MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Tensor

Method Tensor

tensorflow/lite/delegates/gpu/cl/tensor.cc:26–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24namespace cl {
25
26Tensor::Tensor(cl_mem memory, int width, int height, int channels,
27 enum DataType data_type, TensorStorageType storage_type)
28 : memory_(memory),
29 width_(width),
30 height_(height),
31 channels_(channels),
32 data_type_(data_type),
33 storage_type_(storage_type) {}
34
35Tensor::Tensor(Tensor&& tensor)
36 : memory_(tensor.memory_),

Callers 1

PersistEagerOutputsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected