Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsConstant (0.08 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

          root.WithOpName("capture_enter_outer"), captured, "outer_loop",
          ops::internal::Enter::Attrs().IsConstant(true));
      Output capture_enter_inner = ops::internal::Enter(
          root.WithOpName("capture_enter_inner"), capture_enter_outer, "inner_loop",
          ops::internal::Enter::Attrs().IsConstant(true));
      Output mul0 = ops::Mul(root.WithOpName("mul0"), div1_inner.induction_var,
                             capture_enter_inner);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        return false;
      }
    
      Node* const_input = nullptr;
      for (const Edge* e : n->in_edges()) {
        if (!e->IsControlEdge() && e->src()->IsConstant()) {
          const_input = e->src();
          break;
        }
      }
    
      if (!const_input) {
        return false;
      }
    
      const TensorProto* proto = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top