Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 212 for cond_a (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/unfreeze_constants.mlir

        %0:3 = "tf.While"(%cst_0, %cst_1, %arg0) {T = [i32, i32, f32], _lower_using_switch_merge = true, _num_original_outputs = 4 : i64, _read_only_resource_inputs = [], body = @while_body, cond = @while_cond, device = "", is_stateless = true, output_shapes = [#tf_type.shape<>, #tf_type.shape<>, #tf_type.shape<1x5x5x1024>], parallel_iterations = 10 : i64, shape_invariant} : (tensor<i32>, tensor<i32>, tensor<1x5x5x1024xf32>) -> (tensor<i32>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util_test.cc

      NodeBuilder while_builder(kFunctionalWhileNodeName, "While",
                                builder.opts().op_registry());
      while_builder.Input({input_node, input_node})
          .Attr("cond", compilable)
          .Attr("body", uncompilable);
      builder.opts().FinalizeBuilder(&while_builder);
    
      GraphDef graph_def;
      TF_EXPECT_OK(builder.ToGraphDef(&graph_def));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      // expected-remark@above {{ID: 3}}
      %cond = builtin.unrealized_conversion_cast to tensor<i1>
      // expected-remark@above {{ID: 0}}
      "tf.Assert"(%cond, %arg1) {device = "/job:localhost/replica:0/task:0/device:CPU:0", summarize = 3 : i64} : (tensor<i1>, tensor<1xf32>) -> ()
      // expected-remark@above {{ID: 1}}
      func.return %cond : tensor<i1>
      // expected-remark@above {{ID: 2}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                                              broadcastedShape)) {
        emitError(result.location) << "non-broadcastable operands: " << operand_type
                                   << " and " << cond.getType();
      }
    
      result.addOperands({cond, x, y});
    
      auto elementType = x.getType().dyn_cast<ShapedType>().getElementType();
      if (has_static_cond_shape && has_static_operand_shape) {
        result.types.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. pilot/pkg/autoregistration/controller_test.go

    		return
    	}
    	stat := cfg.Status.(*v1alpha1.IstioStatus)
    	found := false
    	idx := 0
    	for i, cond := range stat.Conditions {
    		if cond.Type == "Healthy" {
    			idx = i
    			found = true
    		}
    	}
    	if !found {
    		err = multierror.Append(err, fmt.Errorf("expected condition of type Health on WorkloadEntry %s/%s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. src/internal/trace/oldtrace.go

    	addBuiltin(sSleep, "sleep")
    	addBuiltin(sChanSend, "chan send")
    	addBuiltin(sChanRecv, "chan receive")
    	addBuiltin(sNetwork, "network")
    	addBuiltin(sSync, "sync")
    	addBuiltin(sSyncCond, "sync.(*Cond).Wait")
    	addBuiltin(sSelect, "select")
    	addBuiltin(sEmpty, "")
    	addBuiltin(sMarkAssistWait, "GC mark assist wait for work")
    	addBuiltin(sSTWUnknown, "")
    	addBuiltin(sSTWGCMarkTermination, "GC mark termination")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	conn *conn
    
    	mu      sync.Mutex // guards following
    	hasByte bool
    	byteBuf [1]byte
    	cond    *sync.Cond
    	inRead  bool
    	aborted bool  // set true before conn.rwc deadline is set to past
    	remain  int64 // bytes remaining
    }
    
    func (cr *connReader) lock() {
    	cr.mu.Lock()
    	if cr.cond == nil {
    		cr.cond = sync.NewCond(&cr.mu)
    	}
    }
    
    func (cr *connReader) unlock() { cr.mu.Unlock() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/eviction_test.go

    				t.Errorf("expected DisruptionsAllowed to be %d, but got %d", want, got)
    			}
    
    			cond := apimeta.FindStatusCondition(existingPDB.Status.Conditions, policyv1.DisruptionAllowedCondition)
    			if want, got := tc.expectedReason, cond.Reason; want != got {
    				t.Errorf("expected Reason to be %q, but got %q", want, got)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      // expected-remark@below {{Result #1, ID 2 : 1, 2, 3, 5, 6}}
      // expected-remark@below {{Result #2, ID 3 : 1, 2, 3, 5, 6}}
      %w:3 = "tf.While"(%arg0, %arg1, %arg2) {
                body = @while_body, cond = @while_cond, is_stateless = false
             } : (!tf_res, !tf_res, !tf_res) -> (!tf_res, !tf_res, !tf_res)
      func.return
    }
    
    // CHECK-LABEL: func @while_body
    // Return 0 : new unknown resource
    // Return 1 : arg2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    
    (If cond yes no) => (NE cond yes no)
    
    // Write barrier.
    (WB ...) => (LoweredWB ...)
    
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 0 => (LoweredPanicBoundsA [kind] x y mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
Back to top