Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,797 for _Graph (0.13 sec)

  1. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

                   const Graph& graph,
                   const FunctionLibraryDefinition& function_library),
                  (const, override));
    
      // Just modify MLIR module so that we can check whether original TF graph
      // has changed or not.
      Status Run(const std::string& function_name, const ConfigProto& config_proto,
                 mlir::ModuleOp module, const Graph& graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      std::unique_ptr<Graph> graph;
      TF_RETURN_IF_ERROR(ConvertMlirToGraph(module, configs, &graph, &flib_def));
    
      // If the entry function is exported to flib, then no graph is constructed.
      // Construct one in that case.
      if (configs.export_entry_func_to_flib) {
        graph = std::make_unique<Graph>(OpRegistry::Global());
        TF_RETURN_IF_ERROR(
            graph->mutable_flib_def()->AddLibrary(std::move(flib_def)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      std::unique_ptr<Graph> graph;
      TF_RETURN_IF_ERROR(ConvertMlirToGraph(module, configs, &graph, &flib_def));
    
      // If the entry function is exported to flib, then no graph is constructed.
      // Construct one in that case.
      if (configs.export_entry_func_to_flib) {
        graph = std::make_unique<Graph>(OpRegistry::Global());
        TF_RETURN_IF_ERROR(
            graph->mutable_flib_def()->AddLibrary(std::move(flib_def)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

    // CHECK:      return %[[GRAPH]]#2, %[[GRAPH]]#1 : tensor<i1>, tensor<i1>
    
    
    // Test single graph with an island and executor ops is unmodified.
    // CHECK-LABEL: func @graph_with_island_and_executor_op
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i1>)
    func.func @graph_with_island_and_executor_op(%arg0 : tensor<i1>) -> (tensor<i1>, tensor<i1>) {
      %0:3 = tf_executor.graph {
        %1:4 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf-gradient-attr.mlir

      %graph = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<*xf32>
      }
      func.return %graph : tensor<*xf32>
    }
    
    func.func @foo(%arg0: tensor<*xf32>) -> tensor<*xf32>
      attributes  {tf.gradient = @foo_grad} {
      %graph = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<*xf32>
      }
      func.return %graph : tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/ImmutableGraph.java

      @SuppressWarnings("Immutable") // The backing graph must be immutable.
      private final BaseGraph<N> backingGraph;
    
      ImmutableGraph(BaseGraph<N> backingGraph) {
        this.backingGraph = backingGraph;
      }
    
      /** Returns an immutable copy of {@code graph}. */
      public static <N> ImmutableGraph<N> copyOf(Graph<N> graph) {
        return (graph instanceof ImmutableGraph)
            ? (ImmutableGraph<N>) graph
            : new ImmutableGraph<N>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/shape_inference.cc

        }
      }
      return absl::OkStatus();
    }
    
    }  // namespace
    
    Status InferShapes(Graph* graph, const std::map<int, InferredShape>& arg_shapes,
                       const tensorflow::FunctionLibraryDefinition* fnlib_def,
                       GraphShapeInfo* shape_info) {
      ShapeRefiner shape_refiner(graph->versions(), graph->op_registry());
      shape_refiner.set_require_shape_inference_fns(false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildTreeWorkController.kt

                }
            }
            val executionResult = workGraph.withNewWorkGraph { graph ->
                val result = cache.loadOrScheduleRequestedTasks(
                    graph = graph,
                    graphBuilder = scheduleTaskSelectorPostProcessing
                ) { workPreparer.scheduleRequestedTasks(graph, taskSelector) }
                if (!result.wasLoadedFromCache && !result.entryDiscarded && startParameter.loadAfterStore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/GraphBuilder.java

     *
     * <p>Examples of use:
     *
     * <pre>{@code
     * // Building a mutable graph
     * MutableGraph<String> graph = GraphBuilder.undirected().allowsSelfLoops(true).build();
     * graph.putEdge("bread", "bread");
     * graph.putEdge("chocolate", "peanut butter");
     * graph.putEdge("peanut butter", "jelly");
     *
     * // Building an immutable graph
     * ImmutableGraph<String> immutableGraph =
     *     GraphBuilder.undirected()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.h

    // redundant for TF2 graphs.
    // If getting rollout policy involves graph analysis, `record_stats` is used
    // to decide whether to emit metrics on unsupported features of the graph.
    MlirBridgeRolloutPolicy GetMlirBridgeRolloutPolicy(
        const tensorflow::Graph& graph,
        const FunctionLibraryDefinition* function_library,
        std::optional<tensorflow::ConfigProto> config_proto,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top