Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for feedsif (0.41 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

    }
    
    // Returns a TPUPartitionedInput op connected to a `tf_device.cluster_func`
    // operand value if it has an XLA sharding. If value is a resource type then
    // TPUPartitionedInput op will be connected to a ReadVariable op that feeds into
    // a `tf_device.cluster_func`.
    mlir::Operation* GetXlaShardingFromOperand(Value value) {
      Value value_to_visit = value;
      if (auto read_var = value_to_visit.getDefiningOp<mlir::TF::ReadVariableOp>())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

          related config.
        representative_dataset: a generator that returns a dictionary in {input_key:
          input_value} format or a tuple with signature key and a dictionary in
          {input_key: input_value} format that feeds calibration data for quantizing
          model. This should be provided when the model is not a QAT model.
    
      Returns:
        A SavedModel object with TF quantization applied.
    
      Raises:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

         * Adapt a {@link MavenExecutionRequest} to a {@link Settings} object for use in the Maven core.
         * We want to make sure that what is ask for in the execution request overrides what is in the settings.
         * The CLI feeds into an execution request so if a particular value is present in the execution request
         * then we will take that over the value coming from the user settings.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.h

    // constant arguments? Even constant arguments get an _Arg node in the graph
    // instantiated for Function compilation. The tf2xla kernel for constant _Arg
    // nodes takes the constant value, converts it to XlaLiteral, and feeds it
    // to xla::ComputationBuilder.ConstantLiteral, which returns the handle. This
    // constant XlaLiteral is included in the HLO graph, and subsequently, in
    // the actual executable, which is copied to the device before being
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/loader.cc

    // leaving behind non-GC'ed state.
    //
    // Detailed motivation behind this approach, from ashankar@:
    //
    // Each call to Session::Run() that identifies a new subgraph (based on feeds
    // and fetches) creates some datastructures that live as long as the session
    // (the partitioned graph, associated executors etc.).
    //
    // A pathological case of this would be if say the initialization op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    be wrapped in the `tf_executor.island` operation.
    
    The `tf_executor.graph` operation does not accept any operands, inputs are
    implicitly captured by the region, representing the feeds to the graph.
    
    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`
    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/ir/tf_executor_ops.td

        (like `tf.Add`) they must be wrapped in the `tf_executor.island` operation.
    
        The `tf_executor.graph` operation does not accept any operands, inputs are
        implicitly captured by the region, representing the feeds to the graph.
    
        The region attached to `tf_executor.graph` is terminated by a
        `tf_executor.fetch` operation. The operands of the terminator correspond to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          std::unordered_map<string, Node*>* node_name_map);
    
      // Prune nodes that do not feed into fetch nodes.
      Status PruneUnreachableNodes(
          std::unordered_map<string, Node*>* node_name_map);
    
      // Converts feeds to Placeholder nodes.
      Status ConvertFeedsToPlaceholders(
          std::unordered_map<string, Node*>* node_name_map);
    
      // Converts the inferred shape referred to by 'handle' in 'context', with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/compilability_check_util.cc

                                  encapsulating_function, uncompilable_nodes);
        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    
      // _Arg nodes in a top-level function represent feeds and _Retval nodes in a
      // top-level function represent fetches.
      if (stack_depth == 1 &&
          (node.type_string() == "_Arg" || node.type_string() == "_Retval")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      // IfRegion or WhileRegion ops that need to converted.
      worklist.push_back(outlined_func);
      return outlined_func.getName();
    }
    
    // Returns call for region with single call whose result feeds into the
    // terminator of the region. If `allow_to_bool` is true, it allows patterns used
    // in the condition of While ops, i.e. it allows a single bool (possibly passed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top