Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for aligned (0.12 sec)

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

    // used by the TOCO export. (It does not explain rationale for this choice.)
    constexpr size_t kInitialBufferSize = 10240;
    
    // Flatbuffer fields to be padded to 16 bytes aligned.
    constexpr size_t kFbAlignment = 16;
    
    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    // Since tflite doesn't support unsigned for other types, returns error if
    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/internal/obj/arm64/asm7.go

    		// 2-byte and 1-byte aligned addresses, so the address of load/store must be aligned.
    		// Also symbols with prefix of "go:string." are Go strings, which will go into
    		// the symbol table, their addresses are not necessary aligned, rule this out.
    		align := int64(1 << sz)
    		if o.a1 == C_ADDR && p.From.Offset%align == 0 && !strings.HasPrefix(p.From.Sym.Name, "go:string.") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	getMD5 := getMD5Hash(getContent)
    
    	// Compare putContent and getContent.
    	c.Assert(putMD5, getMD5)
    }
    
    // TestGetPartialObjectMisAligned - tests get object partially miss-aligned.
    // create a large buffer of miss-aligned data and upload it.
    // then make partial range requests to while fetching it back and assert the response content.
    func (s *TestSuiteCommon) TestGetPartialObjectMisAligned(c *check) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    hashADDone:
    	RET
    
    // ----------------------------------------------------------------------------
    // func chacha20Poly1305Open(dst, key, src, ad []byte) bool
    TEXT ·chacha20Poly1305Open(SB), 0, $288-97
    	// For aligned stack access
    	MOVQ SP, BP
    	ADDQ $32, BP
    	ANDQ $-32, BP
    	MOVQ dst+0(FP), oup
    	MOVQ key+24(FP), keyp
    	MOVQ src+48(FP), inp
    	MOVQ src_len+56(FP), inl
    	MOVQ ad+72(FP), adp
    
    	// Check for AVX2 support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        for (const auto &axis_int : perm.getValues<APInt>()) {
          axes.push_back(axis_int.getSExtValue());
        }
        if (axes != SmallVector<int64_t>({1, 2, 0, 3})) return failure();
    
        // Add reshape op to be aligned with the input restriction with
        // TFL::resize_nearest_neighor op.
        const int32_t image_size = static_cast<int32_t>(params_type.getShape()[0]);
        const int32_t feature_size =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	min := int32(thearch.Minalign)
    	align := ldr.SymAlign(s)
    	if align >= min {
    		return align
    	} else if align != 0 {
    		return min
    	}
    	align = int32(thearch.Maxalign)
    	ssz := ldr.SymSize(s)
    	for int64(align) > ssz && align > min {
    		align >>= 1
    	}
    	ldr.SetSymAlign(s, align)
    	return align
    }
    
    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. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return input_tensor.reshape(input_tensor.getType().cloneWith(
            output_shape, input_tensor.getElementType()));
      }
    
      // MLIR implementation pads elements < 8 bits to 8 bits and pads non byte
      // aligned to the nearest byte. So this is allowed.
      const char* raw_input = input_tensor.getRawData().data();
      const int element_byte_size =
          input_tensor.getElementType().getIntOrFloatBitWidth() / 8;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    <li>For a variable <code>x</code> of any type: <code>unsafe.Alignof(x)</code> is at least 1.
    </li>
    
    <li>For a variable <code>x</code> of struct type: <code>unsafe.Alignof(x)</code> is the largest of
       all the values <code>unsafe.Alignof(x.f)</code> for each field <code>f</code> of <code>x</code>, but at least 1.
    </li>
    
    <li>For a variable <code>x</code> of array type: <code>unsafe.Alignof(x)</code> is the same as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    		// The function alignment is not promoted on AIX at this time.
    		// TODO: Investigate AIX function alignment.
    		if ctxt.Headtype != objabi.Haix && cursym.Func().Align < int32(a) {
    			cursym.Func().Align = int32(a)
    		}
    		if pc&(a-1) != 0 {
    			return int(a - (pc & (a - 1)))
    		}
    	default:
    		ctxt.Diag("Unexpected alignment: %d for PCALIGN directive\n", a)
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    mportant;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.al...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
Back to top