Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for GetSize (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                        Type argType = paramTypes.get(typeVar);
                        _ILOAD_OF(argType, stackVar);
                        stackVar += argType.getSize();
                    }
                    _INVOKESPECIAL(superclassType, "<init>", superMethodDescriptor);
    
                    if (addNameParameter) {
                        // this.name = name
                        _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (begin_ty && begin_ty.getRank() != 1) {
        return op.emitOpError() << "requires begin operand to be 1D tensor";
      }
    
      RankedTensorType size_ty = GetRankedTensorTypeForOperand(op.getSize());
      if (size_ty && size_ty.getRank() != 1) {
        return op.emitOpError() << "requires size operand to be 1D tensor";
      }
    
      if (!begin_ty || !size_ty || !begin_ty.hasStaticShape() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    mlir::LogicalResult SliceOp::verify() {
      SliceOp op = *this;
      auto input_type = op.getInput().getType().cast<ShapedType>();
      auto begin_type = op.getBegin().getType().cast<ShapedType>();
      auto size_type = op.getSize().getType().cast<ShapedType>();
      if (input_type.hasStaticShape() && begin_type.hasStaticShape() &&
          size_type.hasStaticShape()) {
        if (input_type.getRank() != begin_type.getNumElements()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    private java.util.ArrayList pooledObjects; private boolean shuttingDown; public void SweeperPool(int, int, int, int, int); private int saneConvert(int); public synchronized Object get(); public synchronized boolean put(Object); public synchronized int getSize(); public synchronized void dispose(); public synchronized void trim(); public void objectDisposed(Object); public void objectAdded(Object); public void objectRetrieved(Object); } org/codehaus/plexus/util/TypeFormat.class package org.codehaus.plexus.util;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  6. 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)
  7. src/reflect/value.go

    		*valueRegs = methodRegs
    	}
    	if retSize := methodFrameType.Size() - methodABI.retOffset; retSize > 0 {
    		valueRet := add(valueFrame, valueABI.retOffset, "valueFrame's size > retOffset")
    		methodRet := add(methodFrame, methodABI.retOffset, "methodFrame's size > retOffset")
    		// This copies to the stack. Write barriers are not needed.
    		memmove(valueRet, methodRet, retSize)
    	}
    
    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