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

Class Resource

tensorflow/core/framework/resource_mgr_test.cc:31–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29namespace tensorflow {
30
31class Resource : public ResourceBase {
32 public:
33 explicit Resource(const string& label) : label_(label) {}
34 ~Resource() override {}
35
36 string DebugString() const override { return strings::StrCat("R/", label_); }
37
38 private:
39 string label_;
40};
41
42class Other : public ResourceBase {
43 public:

Callers 3

TEST_FFunction · 0.50
BuildArgumentsMethod · 0.50
SetResourceOutputMethod · 0.50

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.40