Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 589 for graphml (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_executor_to_functional.cc

    };
    
    // Extracts inner ops of tf_executor.island ops in a tf_executor.graph, in the
    // order of ops in tf_executor.graph.
    LogicalResult LiftIslandOpInnerOpsFromGraph(tf_executor::GraphOp graph) {
      auto graph_position = graph.getOperation()->getIterator();
      Block* parent_block = graph.getOperation()->getBlock();
      for (Operation& op : graph.GetBody().without_terminator()) {
        auto island_op = llvm::dyn_cast<tf_executor::IslandOp>(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

          std::next(copy_range.begin()) == copy_range.end() &&
          isa<tf_executor::GraphOp>(*copy_range.begin())) {
        // Already a graph.
        return;
      }
    
      auto return_op = dyn_cast<func::ReturnOp>(body.getTerminator());
      if (!return_op) {
        LLVM_DEBUG(llvm::dbgs() << "Expect function to end with return\n");
        return;
      }
      // Build GraphOp.
      OpBuilder builder(&body, body.begin());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K 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/jit/encapsulate_subgraphs_pass.cc

    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/control_flow.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/graph/tensor_id.h"
    #include "tensorflow/core/lib/gtl/map_util.h"
    #include "tensorflow/core/lib/hash/hash.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_duplicate_resource_ops.cc

        // The pass runs on a valid tf_executor dialect, so the op should be the
        // GraphOp.
        return cast<GraphOp>(graph_op_range.begin());
      }
    
      return {};
    }
    
    void MergeDuplicateResourceOpsPass::runOnOperation() {
      func::FuncOp func_op = getOperation();
      GraphOp graph_op = GetGraphOpFromFuncOp(func_op);
      if (!graph_op) return;
    
      llvm::StringMap<Operation*> shared_name_to_resource;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 04:26:16 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    It's a common misconception that there's a single dependency graph for an application.
    In fact Gradle will, during a build, resolve a number of distinct dependency graphs, even within a single project.
    For example, the graph of dependencies to use at compile time is different from the graph of dependencies to use at runtime.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-malformed.pbtxt

    # RUN: not tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -o - 2>&1 | FileCheck %s
    
    this is not a valid graph def
    
    # CHECK: Error parsing Protobuf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 10 23:27:16 UTC 2021
    - 219 bytes
    - Viewed (0)
  10. 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)
Back to top