Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for graphMain (0.09 sec)

  1. build-logic/root-build/src/main/kotlin/gradlebuild.internal.cc-experiment.gradle.kts

            // JMH plugin
            task.name in listOf("jmh", "jmhJar", "jmhReport") -> true
    
            // Gradle Doctor plugin
            task.name in listOf(
                "graph", "graphMain",
                "projectGraphReport",
                "ripples",
                "aggregateAdvice",
            ) -> true
            task.name.startsWithAnyOf(
                "advice",
                "analyzeClassUsage",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 17:29:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      return results_.at(OutputTensor(edge->src(), edge->src_output()));
    }
    
    Node* Encapsulator::Subgraph::MakeNodeImage(const Graph* graph_in, Node* node) {
      if (!graph_) {
        graph_.reset(new Graph(graph_in->op_registry()));
        graph_->set_versions(graph_in->versions());
      }
    
      // TODO(b/116981129): Enhance how the device for the encapsulated subgraph is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // dep from B. Originally D must run after C, post-transformation this
    // dependency is lost.
    Status EncapsulateSubgraphsInFunctions(
        string group_attribute, const Graph& graph_in,
        const RewriteSubgraphFn& rewrite_subgraph_fn, bool reuse_existing_functions,
        std::unique_ptr<Graph>* graph_out, FunctionLibraryDefinition* library);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top