Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for namebuf (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-LABEL: func @cluster_ops_with_regions
    func.func @cluster_ops_with_regions() {
      %0 = "tf.opA"() ({
          %1 = "tf.opB"() {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", name = "nameB", is_stateless = true} : () -> (tensor<i32>)
        }) {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", name = "nameA"} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    			}
    			// hash := f.ByteOrder.Uint32(d[j:j+4])
    			// flags := f.ByteOrder.Uint16(d[j+4:j+6])
    			other := f.ByteOrder.Uint16(d[j+6 : j+8])
    			nameoff := f.ByteOrder.Uint32(d[j+8 : j+12])
    			next := f.ByteOrder.Uint32(d[j+12 : j+16])
    			name, _ = getString(str, int(nameoff))
    			ndx := int(other)
    			if ndx >= len(need) {
    				a := make([]verneed, 2*(ndx+1))
    				copy(a, need)
    				need = a
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		ldr.SetAttrLocal(ptab, true)
    		if ldr.SymType(ptab) != sym.SRODATA {
    			panic(fmt.Sprintf("go:plugin.tabs is %v, not SRODATA", ldr.SymType(ptab)))
    		}
    		nentries := uint64(len(ldr.Data(ptab)) / 8) // sizeof(nameOff) + sizeof(typeOff)
    		slice(ptab, nentries)
    	} else {
    		nilSlice()
    	}
    
    	if ctxt.BuildMode == BuildModePlugin {
    		addgostring(ctxt, ldr, moduledata, "go:link.thispluginpath", objabi.PathToPrefix(*flagPluginPath))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<BufferOffset<tflite::TensorMap>> result;
      for (const auto& item : items) {
        auto name_buf = builder_.CreateString(item.first);
        tflite::TensorMapBuilder tensor_map_builder(builder_);
        tensor_map_builder.add_name(name_buf);
        tensor_map_builder.add_tensor_index(
            tensor_index_map_[subgraph_index][item.second]);
        result.push_back(tensor_map_builder.Finish());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    // and with package debug/gosym and with symtab.go in package runtime.
    type _func struct {
    	sys.NotInHeap // Only in static data
    
    	entryOff uint32 // start pc, as offset from moduledata.text/pcHeader.textStart
    	nameOff  int32  // function name, as index into moduledata.funcnametab.
    
    	args        int32  // in/out args size
    	deferreturn uint32 // offset of start of a deferreturn call instruction from entry, if any.
    
    	pcsp      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// the Trailer response header when the response header is
    	// written.
    	trailers []string
    
    	handlerDone atomic.Bool // set true when the handler exits
    
    	// Buffers for Date, Content-Length, and status code
    	dateBuf   [len(TimeFormat)]byte
    	clenBuf   [10]byte
    	statusBuf [3]byte
    
    	// closeNotifyCh is the channel returned by CloseNotify.
    	// TODO(bradfitz): this is currently (for Go 1.8) always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		// First, see if it is already spilled before it may be live. Look for a spill
    		// in the entry block up to the first safepoint.
    		type nameOff struct {
    			n   *ir.Name
    			off int64
    		}
    		partLiveArgsSpilled := make(map[nameOff]bool)
    		for _, v := range f.Entry.Values {
    			if v.Op.IsCall() {
    				break
    			}
    			if v.Op != ssa.OpStoreReg || v.Args[0].Op != ssa.OpArgIntReg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/reflect/value.go

    		tt := (*interfaceType)(unsafe.Pointer(v.typ()))
    		if uint(i) >= uint(len(tt.Methods)) {
    			panic("reflect: internal error: invalid method index")
    		}
    		m := &tt.Methods[i]
    		if !tt.nameOff(m.Name).IsExported() {
    			panic("reflect: " + op + " of unexported method")
    		}
    		iface := (*nonEmptyInterface)(v.ptr)
    		if iface.itab == nil {
    			panic("reflect: " + op + " of method on nil interface value")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top