Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for recv3 (0.06 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* recv1 = RecvAtHost(
            ops::NodeOut(key_constant, 0), "F1", "F1", "O1", {DT_FLOAT, DT_FLOAT},
            b2.opts().WithAttr(kXlaHasHostTransferAttrName, true));
        Node* e = Binary(ops::NodeOut(recv1, 0), ops::NodeOut(recv1, 1),
                         b2.opts()
                             .WithName("E")
                             .WithControlInputs({recv1})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    		// Call the ServeHTTP to execute the handler.
    		apiRouter.ServeHTTP(recV2, reqV2)
    		if recV2.Code != testCase.expectedRespStatus {
    			t.Errorf("Test %d: %s: Expected the response status to be `%d`, but instead found `%d`", i+1, instanceType, testCase.expectedRespStatus, recV2.Code)
    		}
    
    		// read the response body.
    		actualContent, err = io.ReadAll(recV2.Body)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			}
    			if !cas.recv.IsValid() {
    				t.Fatalf("%s\nselected #%d but internal error: missing recv value", fmtSelect(info), i)
    			}
    			if recv.Interface() != cas.recv.Interface() || recvOK != !cas.closed {
    				if recv.Interface() == cas.recv.Interface() && recvOK == !cas.closed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        // CHECK:           %[[RECV0:.+]] = "tf._XlaRecvAtHost"(%[[PROGRAM0]])
        // CHECK-SAME:        device_ordinal = 0
        // CHECK-SAME:        key = "host_compute_channel_0_args"
        // CHECK-SAME:        _xla_has_host_transfer = true
        // CHECK:           %[[B0:.+]] = "tf.OpB"(%[[RECV0]]) : (tensor<2x2xi64>) -> tensor<2x2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	return v.recv(false)
    }
    
    // internal recv, possibly non-blocking (nb).
    // v is known to be a channel.
    func (v Value) recv(nb bool) (val Value, ok bool) {
    	tt := (*chanType)(unsafe.Pointer(v.typ()))
    	if ChanDir(tt.Dir)&RecvDir == 0 {
    		panic("reflect: recv on send-only channel")
    	}
    	t := tt.Elem
    	val = Value{t, nil, flag(t.Kind())}
    	var p unsafe.Pointer
    	if t.IfaceIndir() {
    		p = unsafe_New(t)
    		val.ptr = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func AcceptEx(ls Handle, as Handle, buf *byte, rxdatalen uint32, laddrlen uint32, raddrlen uint32, recvd *uint32, overlapped *Overlapped) (err error) {
    	r1, _, e1 := syscall.Syscall9(procAcceptEx.Addr(), 8, uintptr(ls), uintptr(as), uintptr(unsafe.Pointer(buf)), uintptr(rxdatalen), uintptr(laddrlen), uintptr(raddrlen), uintptr(unsafe.Pointer(recvd)), uintptr(unsafe.Pointer(overlapped)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUParallelExecuteSinkResourceWritePass()";
    }
    
    def RewriteTPUEmbeddingOpsPass : Pass<"tf-rewrite-tpu-embedding-ops", "mlir::func::FuncOp"> {
      let summary = "Rewrites TPU embedding send/recv ops by adding TPU embedding "
               "deduplication data";
    
      let constructor = "TF::CreateRewriteTPUEmbeddingOpsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        // `stablehlo.custom_call` will be lowered to `stablehlo.send` and
        // `stablehlo.recv`.
        effects.emplace_back(MemoryEffects::Write::get(),
                             ResourceEffects::Send::get());
        effects.emplace_back(MemoryEffects::Write::get(),
                             ResourceEffects::Recv::get());
        effects.emplace_back(MemoryEffects::Write::get(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // Step 1: add key placeholder node.
      TF_ASSIGN_OR_RETURN(
          Node * key_placeholder,
          AddHostComputeKeyPlaceholder(xla_cluster_name, &host_graph));
    
      // Step 2: build XlaRecvAtHost node to recv predicate.
      NodeDefBuilder recv_pred_builder(
          absl::StrCat("recv_oc_if_pred_", if_node_name), "_XlaRecvAtHost");
      recv_pred_builder.Attr("Toutputs", std::vector<DataType>{DT_BOOL});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    						// in this window, back off to give pp a chance to
    						// schedule runnext. This will avoid thrashing gs
    						// between different Ps.
    						// A sync chan send/recv takes ~50ns as of time of
    						// writing, so 3us gives ~50x overshoot.
    						if !osHasLowResTimer {
    							usleep(3)
    						} else {
    							// On some platforms system timer granularity is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top