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

Method Unregister

tensorflow/compiler/xla/service/service.cc:192–202  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192Status Service::Unregister(const UnregisterRequest* arg,
193 UnregisterResponse* result) {
194 Status status;
195 for (auto& data : arg->data()) {
196 Status unregister_status = allocation_tracker_.Unregister(data);
197 if (!unregister_status.ok() && status.ok()) {
198 status = unregister_status;
199 }
200 }
201 return status;
202}
203
204// Deconstructs a previously-allocated global handle.
205Status Service::DeconstructTuple(const DeconstructTupleRequest* arg,

Callers 1

WaitForExecutionMethod · 0.45

Calls 2

dataMethod · 0.45
okMethod · 0.45

Tested by

no test coverage detected