Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 200 for graphml (0.15 sec)

  1. src/internal/profile/graph.go

    // NodePtrSet is a collection of nodes. Trimming a graph or tree requires a set
    // of objects which uniquely identify the nodes to keep. In a graph, NodeInfo
    // works as a unique identifier; however, in a tree multiple nodes may share
    // identical NodeInfos. A *Node does uniquely identify a node so we can use that
    // instead. Though a *Node also uniquely identifies a node in a graph,
    // currently, during trimming, graphs are rebuilt from scratch using only the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        func::FuncOp func,
        const TF::SideEffectAnalysis::Info& side_effect_analysis) {
      auto graph_op_range = func.front().without_terminator();
      tf_executor::GraphOp graph_op;
    
      if (llvm::hasSingleElement(graph_op_range))
        graph_op = dyn_cast<tf_executor::GraphOp>(func.front().front());
    
      if (!graph_op) {
        func.emitError("expected function to contain only a graph_op");
        signalPassFailure();
        return;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. src/image/gif/reader.go

    			return nil
    		}
    	}
    }
    
    func (d *decoder) readGraphicControl() error {
    	if err := readFull(d.r, d.tmp[:6]); err != nil {
    		return fmt.Errorf("gif: can't read graphic control: %s", err)
    	}
    	if d.tmp[0] != 4 {
    		return fmt.Errorf("gif: invalid graphic control extension block size: %d", d.tmp[0])
    	}
    	flags := d.tmp[1]
    	d.disposalMethod = (flags & gcDisposalMethodMask) >> 2
    	d.delayTime = int(d.tmp[2]) | int(d.tmp[3])<<8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. .github/actions/notify-translations/app/main.py

    awaiting_label = "awaiting-review"
    lang_all_label = "lang-all"
    approved_label = "approved-2"
    translations_path = Path(__file__).parent / "translations.yml"
    
    github_graphql_url = "https://api.github.com/graphql"
    questions_translations_category_id = "DIC_kwDOCZduT84CT5P9"
    
    all_discussions_query = """
    query Q($category_id: ID) {
      repository(name: "fastapi", owner: "tiangolo") {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    // the fetch values in the main GraphOp corresponding to the original fetch
    // values from `src_func_op`. Returns an empty vector when `src_func_op` is
    // empty. `main_func_op` must have a GraphOp.
    SmallVector<Value> CopyOpsToMainFunction(func::FuncOp src_func_op,
                                             func::FuncOp main_func_op) {
      GraphOp src_graph_op = GetGraphOpFromFuncOp(src_func_op);
      if (!src_graph_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    The region attached to `tf_executor.graph` is terminated by a
    `tf_executor.fetch` operation. The non-control operands of the terminator
    correspond to the result values (or fetches) of the `tf_executor.graph`
    operation. The behavior is undefined if any of the operands of the
    `tf_executor.fetch` is dead.
    
    ```mlir {.mlir}
    %fetches = tf_executor.graph : tensor<*xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

    // a tf_executor.NextIteration.Source/tf_executor.NextIteration.Sink will result
    // in multiple passes over the tf_executor.graph to propagate devices in loops.
    void PropagateDevicesInGraph(
        tf_executor::GraphOp graph,
        llvm::DenseMap<Value, llvm::StringRef>& value_to_device) {
      auto ops = graph.GetBody().without_terminator();
    
      bool updated_next_iteration = false;
      do {
        updated_next_iteration = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

    //   tf_executor.yield %a1, %b1 : tensor<i1>, tensor<i1>
    // }
    LogicalResult CreateIslandsFromReplicate(const Dialect* tf_dialect,
                                             tf_executor::GraphOp graph_op,
                                             tf_executor::IslandOp island_op,
                                             tf_device::ReplicateOp replicate_op,
                                             bool legacy_graph_export,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_unified_experimental_graph.cc

        return absl::OkStatus();
      }
    
      tensorflow::FullTypeDef FullType() const override {
        const FullTypeDef* ft;
        mutex_lock l(graph_->mu);
        graph_->graph.NodeType(output_.oper->node.name(), &ft);
        if (ft == nullptr) {
          return FullTypeDef();
        } else {
          return *ft;
        }
      }
    
      TF_Output output_;
    
      // For LLVM style RTTI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

        }
      }
    
      @After
      public final void validateGraphState() {
        validateGraph(graph);
      }
    
      static <N> void validateGraph(Graph<N> graph) {
        assertStronglyEquivalent(graph, Graphs.copyOf(graph));
        assertStronglyEquivalent(graph, ImmutableGraph.copyOf(graph));
    
        String graphString = graph.toString();
        assertThat(graphString).contains("isDirected: " + graph.isDirected());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top