Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Alignment (0.23 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // {sub} the subdiagonal alignment. "LEFT" means rows will be padded to the
        // left, "RIGHT" means rows will be padded ot the right.  The default is
        // "RIGHT_LEFT".
        StringRef align = op->getAttrOfType<StringAttr>("align").getValue();
        enum Alignment { kLeft, kRight };
    
        // default is RIGHT_LEFT
        Alignment superdiagonal_align = kRight;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	var inlMarksByPos map[src.XPos][]*obj.Prog
    
    	var argLiveIdx int = -1 // argument liveness info index
    
    	// These control cache line alignment; if the required portion of
    	// a cache line is not available, then pad to obtain cache line
    	// alignment.  Not implemented on all architectures, may not be
    	// useful on all architectures.
    	var hotAlign, hotRequire int64
    
    	if base.Debug.AlignHot > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top