Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GuaranteeConst (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/convert_to_legacy_compile_and_replicate_attributes.mlir

      // CHECK-NOT: _replication_info =
      %0 = tf_executor.graph {
        %outputs, %control = tf_executor.island wraps "tf.GuaranteeConst"(%arg1) {T = f32, device = ""} : (tensor<f32>) -> tensor<f32>
        %outputs_0, %control_1 = tf_executor.island wraps "tf.GuaranteeConst"(%arg2) {T = f32, device = ""} : (tensor<f32>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      auto x1 = ops::Placeholder(root.WithOpName("x1"), DT_FLOAT);
      auto x2 = ops::Placeholder(root.WithOpName("x2"), DT_FLOAT);
      auto const_guarantee_x2 =
          ops::GuaranteeConst(root.WithOpName("const_guarantee_x2"), x2);
      auto const_guarantee_x1 =
          ops::GuaranteeConst(root.WithOpName("const_guarantee_x1"), x1);
      auto add1 =
          ops::Add(root.WithOpName("add1"), const_guarantee_x1, const_guarantee_x2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    namespace {
    
    bool AreAllParentsGuaranteedConst(
        const Node& n,
        const absl::flat_hash_set<const Node*>& runtime_const_nodes) {
      if (n.type_string() == "GuaranteeConst") {
        // If the current node is itself a cast-to-const, no need
        // to look at the incoming edges.
        return true;
      }
    
      bool all_parents_const = true;
      bool atleast_one_non_control_edge = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top