Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for typehash (0.3 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.h

    // The MLIR type represents a C++ mlrt::Future.
    class FutureType
        : public mlir::Type::TypeBase<FutureType, mlir::Type, mlir::TypeStorage> {
     public:
      using Base::Base;
      static constexpr mlir::StringLiteral name = "mlrt.compiler.future";
    };
    
    // The MLIR type represents a C++ mlrt::Promise.
    class PromiseType
        : public mlir::Type::TypeBase<PromiseType, mlir::Type, mlir::TypeStorage> {
     public:
      using Base::Base;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	}
    	return tileHash(data[start:end]), nil
    }
    
    // tileHash computes the subtree hash corresponding to the (2^K)-1 hashes in data.
    func tileHash(data []byte) Hash {
    	if len(data) == 0 {
    		panic("bad math in tileHash")
    	}
    	if len(data) == HashSize {
    		var h Hash
    		copy(h[:], data)
    		return h
    	}
    	n := len(data) / 2
    	return NodeHash(tileHash(data[:n]), tileHash(data[n:]))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/runtime/map.go

    				// bit of tophash to decide which way NaNs go.
    				// NOTE: this case is why we need two evacuate tophash
    				// values, evacuatedX and evacuatedY, that differ in
    				// their low bit.
    				if checkBucket>>(it.B-1) != uintptr(b.tophash[offi]&1) {
    					continue
    				}
    			}
    		}
    		if (b.tophash[offi] != evacuatedX && b.tophash[offi] != evacuatedY) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

    // The Control type is a token-like value that models control dependencies from
    // TensorFlow graphs.
    class ControlType : public Type::TypeBase<ControlType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr ::mlir::StringLiteral name = "tf_executor.control";
    };
    
    class TokenType : public Type::TypeBase<TokenType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr ::mlir::StringLiteral name = "tf_executor.token";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // typedarrayclear zeroes the value at ptr of an array of elemType,
    // only clears len elem.
    //
    //go:noescape
    func typedarrayclear(elemType *abi.Type, ptr unsafe.Pointer, len int)
    
    //go:noescape
    func typehash(t *abi.Type, p unsafe.Pointer, h uintptr) uintptr
    
    func verifyNotInHeapPtr(p uintptr) bool
    
    //go:noescape
    func growslice(t *abi.Type, old unsafeheader.Slice, num int) unsafeheader.Slice
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/fingerprinting_utils.cc

              switch (key.type_case()) {
                case ::tensorflow::proto_splitter::FieldIndex::MapKey::TypeCase::kS:
                  if (chunked_key.has_s() && chunked_key.s() == key.s()) {
                    matches += 1;
                  }
                  break;
                case ::tensorflow::proto_splitter::FieldIndex::MapKey::TypeCase::
                    kBoolean:
                  if (chunked_key.has_boolean() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

                return new AnnotationVisitor(types);
            }
    
            @Override
            public org.objectweb.asm.AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, String descriptor, boolean visible) {
                maybeAddDependentType(types, Type.getType(descriptor));
                return new AnnotationVisitor(types);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/compress/flate/token.go

    	// 2 bits:   type   0 = literal  1=EOF  2=Match   3=Unused
    	// 8 bits:   xlength = length - MIN_MATCH_LENGTH
    	// 22 bits   xoffset = offset - MIN_OFFSET_SIZE, or literal
    	lengthShift = 22
    	offsetMask  = 1<<lengthShift - 1
    	typeMask    = 3 << 30
    	literalType = 0 << 30
    	matchType   = 1 << 30
    )
    
    // The length code for length X (MIN_MATCH_LENGTH <= X <= MAX_MATCH_LENGTH)
    // is lengthCodes[length - MIN_MATCH_LENGTH]
    var lengthCodes = [...]uint32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	TypeOffset               // signed offset in load/store
    	TypeNegOffset            // A negative 16 bit value 0b1111111xxxxx000 encoded as 0bxxxxx (e.g in the hashchk instruction)
    	TypeLast                 // must be the last one
    )
    
    func (t ArgType) String() string {
    	switch t {
    	default:
    		return fmt.Sprintf("ArgType(%d)", int(t))
    	case TypeUnknown:
    		return "Unknown"
    	case TypeReg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.h

    namespace mlir {
    namespace TFL {
    
    typedef TFLDialect TensorFlowLiteDialect;
    
    // The Control type is a token-like value that models control dependencies
    class ControlType : public Type::TypeBase<ControlType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr StringLiteral name = "tfl.control";
    };
    
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_interface.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top