Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for aligned (0.11 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/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)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    
    	// Move clock to make the unschedulable pods complete backoff.
    	c.Step(DefaultPodInitialBackoffDuration + time.Second)
    	// Simulate addition of an assigned pod. The pod has matching labels for
    	// affinityPod. So, affinityPod should go to activeQ.
    	q.AssignedPodAdded(logger, labelPod)
    	if getUnschedulablePod(q, affinityPod) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top