Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for aligned (0.45 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		return fn(bt)
    	}
    	bt = &BitIntType{Size: size, Signed: bt.Signed}
    	if r := fn(bt); r != nil {
    		return r
    	}
    	return bt
    }
    
    func (bt *BitIntType) GoString() string {
    	return bt.goString(0, "")
    }
    
    func (bt *BitIntType) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sBitIntType: Signed: %t\n%s", indent, "", field,
    		bt.Signed,
    		bt.Size.goString(indent+2, "Size: "))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    template <class Op>
    static LogicalResult InferenceFoldOperandsPermutation(
        ArrayRef<int64_t> permutation, Op* op) {
      // FusedBatchNorm in training mode is a layout sentitive operation, and should
      // have already assigned an optimal data format.
      if (op->getIsTraining()) return failure();
      return ::mlir::TF::FoldOperandsPermutation(permutation, op);
    }
    
    template <class Op>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K 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)
  4. src/runtime/proc.go

    	if readgstatus(newg) != _Gdead {
    		throw("newproc1: new g is not Gdead")
    	}
    
    	totalSize := uintptr(4*goarch.PtrSize + sys.MinFrameSize) // extra space in case of reads slightly beyond frame
    	totalSize = alignUp(totalSize, sys.StackAlign)
    	sp := newg.stack.hi - totalSize
    	if usesLR {
    		// caller's LR
    		*(*uintptr)(unsafe.Pointer(sp)) = 0
    		prepGoExitFrame(sp)
    	}
    	if GOARCH == "arm64" {
    		// caller's FP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top