Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for recvs (0.1 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

            tf_executor.yield
          }
          tf_executor.fetch %control : !tf_executor.control
        }
        return
      }
    ```
    ### `-tf-rewrite-tpu-embedding-ops`
    
    _Rewrites TPU embedding send/recv ops by adding TPU embedding deduplication data_
    
    ### `-tf-shape-inference`
    
    _Shape inference on TF dialect and ops implementing InferTypeOpInterface_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		})
    
    		// hchan<T>
    		dwhs := d.mkinternaltype(ctxt, dwarf.DW_ABRV_STRUCTTYPE, "hchan", elemname, "", func(dwh *dwarf.DWDie) {
    			d.copychildren(ctxt, dwh, hchan)
    			d.substitutetype(dwh, "recvq", dwws)
    			d.substitutetype(dwh, "sendq", dwws)
    			newattr(dwh, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, getattr(hchan, dwarf.DW_AT_byte_size).Value, nil)
    		})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/reflect/type.go

    	case SendDir:
    		s = "chan<- " + stringFor(typ)
    	case RecvDir:
    		s = "<-chan " + stringFor(typ)
    	case BothDir:
    		typeStr := stringFor(typ)
    		if typeStr[0] == '<' {
    			// typ is recv chan, need parentheses as "<-" associates with leftmost
    			// chan possible, see:
    			// * https://golang.org/ref/spec#Channel_types
    			// * https://github.com/golang/go/issues/39897
    			s = "chan (" + typeStr + ")"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top