Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for nbrecv (0.14 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* recv = RecvAtHost(
            ops::NodeOut(key_constant, 0), "F1", "F1", "O1", {DT_FLOAT, DT_FLOAT},
            b2.opts().WithAttr(kXlaHasHostTransferAttrName, true));
        Node* e = Binary(ops::NodeOut(recv, 0), ops::NodeOut(recv, 1),
                         b2.opts()
                             .WithName("E")
                             .WithControlInputs({recv})
    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. 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)
  3. 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)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        Graph* g, const string& oc_cluster_name,
        const std::vector<DataType>& recv_at_host_dtypes, Node* key_placeholder) {
      NodeDefBuilder recv_at_host_builder(
          absl::StrCat("outside_compilation_", oc_cluster_name, "_recv"),
          "_XlaRecvAtHost");
      NodeDef recv_at_host_def;
      recv_at_host_builder.Attr("Toutputs", recv_at_host_dtypes);
      // The correct device_ordinal will be inserted during replication in a
      // subsequent rewrite.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&npolint;":                         "\u2a14",
    	"&npr;":                             "\u2280",
    	"&nprcue;":                          "\u22e0",
    	"&npre;":                            "\u2aaf\u0338",
    	"&nprec;":                           "\u2280",
    	"&npreceq;":                         "\u2aaf\u0338",
    	"&nrArr;":                           "\u21cf",
    	"&nrarr;":                           "\u219b",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. 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)
  7. src/html/entity.go

    		"nparallel;":                       '\U00002226',
    		"npolint;":                         '\U00002A14',
    		"npr;":                             '\U00002280',
    		"nprcue;":                          '\U000022E0',
    		"nprec;":                           '\U00002280',
    		"nrArr;":                           '\U000021CF',
    		"nrarr;":                           '\U0000219B',
    		"nrightarrow;":                     '\U0000219B',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K 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. 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