Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 233 for alignment (0.24 sec)

  1. tensorflow/c/tf_tensor.cc

              0) {
        // TF_STRING and TF_RESOURCE tensors have a different representation in
        // TF_Tensor than they do in tensorflow::Tensor. So a copy here is a waste
        // (any alignment requirements will be taken care of by TF_TensorToTensor
        // and TF_TensorFromTensor).
        //
        // Other types have the same representation, so copy only if it is safe to
        // do so.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.cc

        : stream_executor_(stream_executor) {}
    
    XlaDeviceAllocator::~XlaDeviceAllocator() = default;
    
    std::string XlaDeviceAllocator::Name() { return "xla"; }
    
    void* XlaDeviceAllocator::AllocateRaw(size_t alignment, size_t num_bytes) {
      // We always return an empty XlaTensor object, encoded as an opaque tagged
      // pointer. We can return an empty object and ignore num_bytes here because we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/go/printer/printer_test.go

    var data = []entry{
    	{"empty.input", "empty.golden", idempotent},
    	{"comments.input", "comments.golden", 0},
    	{"comments.input", "comments.x", export},
    	{"comments2.input", "comments2.golden", idempotent},
    	{"alignment.input", "alignment.golden", idempotent},
    	{"linebreaks.input", "linebreaks.golden", idempotent},
    	{"expressions.input", "expressions.golden", idempotent},
    	{"expressions.input", "expressions.raw", rawFormat | idempotent},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. docs/bucket/replication/setup_3site_replication.sh

    ./s3-check-md5 -versions -access-key minio -secret-key minio123 -endpoint http://127.0.0.1:9006/ -bucket olockbucket
    
    # additional tests for encryption object alignment
    go install -v github.com/minio/multipart-debug@latest
    
    upload_id=$(multipart-debug --endpoint 127.0.0.1:9001 --accesskey minio --secretkey minio123 multipart new --bucket bucket --object new-test-encrypted-object --encrypt)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/http-stats.go

    // HTTP requests made by all clients
    type HTTPStats struct {
    	s3RequestsInQueue       int32 // ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG
    	_                       int32 // For 64 bits alignment
    	s3RequestsIncoming      uint64
    	rejectedRequestsAuth    uint64
    	rejectedRequestsTime    uint64
    	rejectedRequestsHeader  uint64
    	rejectedRequestsInvalid uint64
    	currentS3Requests       HTTPAPIStats
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. internal/ioutil/ioutil.go

    	}
    	if !fi1.ModTime().Equal(fi2.ModTime()) {
    		return false
    	}
    	if fi1.Mode() != fi2.Mode() {
    		return false
    	}
    	return fi1.Size() == fi2.Size()
    }
    
    // DirectioAlignSize - DirectIO alignment needs to be 4K. Defined here as
    // directio.AlignSize is defined as 0 in MacOS causing divide by 0 error.
    const DirectioAlignSize = 4096
    
    // CopyAligned - copies from reader to writer using the aligned input
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                    "The highest version was selected in order to stabilize selection.\n" +
                    "Features available in a stable graph like version alignment are not guaranteed in this case.", id);
            }
            boolean newSelectedIsProject = false;
            if (conflictResolution == ConflictResolution.preferProjectModules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    		// compiler-emitted funcdata. If we dedup a string symbol and
    		// a non-string symbol with the same content, we should keep
    		// the largest alignment.
    		// TODO: maybe the compiler could set the alignment for all
    		// data symbols more carefully.
    		switch {
    		case strings.HasPrefix(s.Name, "go:string."),
    			strings.HasPrefix(name, "type:.namedata."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    // called with an active traceAcquire on the M (reentrant locking). This exists for
    // optimistically emitting events in the few contexts where tracing is now allowed.
    //
    // nosplit for alignment with traceTryAcquire, so it can be used in the
    // same contexts.
    //
    //go:nosplit
    func traceTryAcquire() traceLocker {
    	if !traceEnabled() {
    		return traceLocker{}
    	}
    	return traceTryAcquireEnabled()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/sync/atomic/doc.go

    //
    // On non-Linux ARM, the 64-bit functions use instructions unavailable before the ARMv6k core.
    //
    // On ARM, 386, and 32-bit MIPS, it is the caller's responsibility to arrange
    // for 64-bit alignment of 64-bit words accessed atomically via the primitive
    // atomic functions (types [Int64] and [Uint64] are automatically aligned).
    // The first word in an allocated struct, array, or slice; in a global
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top