Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetSize (0.09 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // check if Flatbuffer builder can no longer hold the given amount of the data
      inline bool IsModelBiggerThan2GB(const uint64_t data_size) {
        return data_size > flatbuffer_size_max - builder_.GetSize();
      }
    
      // helper function for build stablehlo operators
      std::optional<BufferOffset<tflite::Operator>>
      BuildStablehloOperatorwithoutOptions(Operation* inst,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	sdata.SetLocal(true)
    	sdata.SetType(sym.SRODATA)
    	sdata.SetSize(int64(len(str)))
    	sdata.SetData([]byte(str))
    	s.AddAddr(ctxt.Arch, sdata.Sym())
    	s.AddUint(ctxt.Arch, uint64(len(str)))
    }
    
    func addinitarrdata(ctxt *Link, ldr *loader.Loader, s loader.Sym) {
    	p := ldr.SymName(s) + ".ptr"
    	sp := ldr.CreateSymForUpdate(p, 0)
    	sp.SetType(sym.SINITARR)
    	sp.SetSize(0)
    	sp.SetDuplicateOK(true)
    	sp.AddAddr(ctxt.Arch, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top