Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for decltype (0.15 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_graph.cc

      }
      // For LLVM style RTTI.
      static bool classof(const AbstractContext* ptr) {
        return ptr->getKind() == kGraph;
      }
    
     private:
      std::unique_ptr<TF_Graph, decltype(&TF_DeleteGraph)> graph_;
      std::vector<TF_Output> inputs_;
      string name_;
    };
    
    static TracingContext* GraphTracingFactory(const char* name, TF_Status* s) {
      return new GraphContext(name);
    }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 15.4K bytes
    - Viewed (1)
Back to top