Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for Tperm (0.06 sec)

  1. src/crypto/aes/gcm_ppc64x.s

    	ADD    $0x40, INP, INP
    #ifdef GOARCH_ppc64le
    	VPERM  IN0, IN0, LEMASK, IN0
    	VPERM  IN1, IN1, LEMASK, IN1
    	VPERM  IN2, IN2, LEMASK, IN2
    	VPERM  IN3, IN3, LEMASK, IN3
    #endif
    
    	VXOR IN0, XL, XH
    
    	VPMSUMD IN1, H3L, XL1
    	VPMSUMD IN1, H3, XM1
    	VPMSUMD IN1, H3H, XH1
    
    	VPERM   H2, H, HIPERM, H21L
    	VPERM   IN2, IN3, LOPERM, T0
    	VPERM   H2, H, LOPERM, H21H
    	VPERM   IN2, IN3, HIPERM, T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. src/math/rand/regress_test.go

    	[]int{3, 0, 1, 2, 4},                // Perm(5)
    	[]int{5, 1, 2, 0, 4, 7, 3, 6},       // Perm(8)
    	[]int{4, 0, 6, 8, 1, 5, 2, 7, 3},    // Perm(9)
    	[]int{8, 6, 1, 7, 5, 4, 3, 2, 9, 0}, // Perm(10)
    	[]int{0, 3, 13, 2, 15, 4, 10, 1, 8, 14, 7, 6, 12, 9, 5, 11}, // Perm(16)
    	[]int{},                             // Perm(0)
    	[]int{0},                            // Perm(1)
    	[]int{0, 4, 2, 1, 3},                // Perm(5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  3. src/math/rand/v2/regress_test.go

    	[]int{4, 2, 1, 3, 0},                // Perm(5)
    	[]int{0, 2, 3, 1, 5, 4, 6, 7},       // Perm(8)
    	[]int{2, 0, 8, 3, 4, 7, 6, 5, 1},    // Perm(9)
    	[]int{0, 6, 5, 3, 8, 4, 1, 2, 9, 7}, // Perm(10)
    	[]int{9, 14, 4, 11, 13, 8, 0, 6, 2, 12, 3, 7, 1, 10, 5, 15}, // Perm(16)
    	[]int{},                             // Perm(0)
    	[]int{0},                            // Perm(1)
    	[]int{2, 4, 0, 3, 1},                // Perm(5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	cSpaceString   = `(?:\s+(\S+))?`
    	cSpaceHex      = `(?:\s+([[:xdigit:]]+))?`
    	cSpaceAtOffset = `(?:\s+\(@([[:xdigit:]]+)\))?`
    	cPerm          = `(?:\s+([-rwxp]+))?`
    
    	procMapsRE  = regexp.MustCompile(`^` + cHexRange + cPerm + cSpaceHex + hexPair + spaceDigits + cSpaceString)
    	briefMapsRE = regexp.MustCompile(`^` + cHexRange + cPerm + cSpaceString + cSpaceAtOffset + cSpaceHex)
    
    	// Regular expression to parse log data, of the form:
    	// ... file:line] msg...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512block_ppc64x.s

    	VADDUDM	V16, V6, V6
    	VADDUDM	V17, V7, V7
    
    	CMPU	INP, END
    	BLT	loop
    
    #ifdef GOARCH_ppc64le
    	VPERM	V0, V1, KI, V0
    	VPERM	V2, V3, KI, V2
    	VPERM	V4, V5, KI, V4
    	VPERM	V6, V7, KI, V6
    #else
    	VPERM	V1, V0, KI, V0
    	VPERM	V3, V2, KI, V2
    	VPERM	V5, V4, KI, V4
    	VPERM	V7, V6, KI, V6
    #endif
    	STXVD2X	VS32, (CTX+R_x000)	// v0 = vs32
    	STXVD2X	VS34, (CTX+R_x010)	// v2 = vs34
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/crypto/aes/asm_ppc64x.s

    #define NEEDS_ESPERM
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X	(RA+RB), VT \
    	VPERM	VT, VT, ESPERM, VT
    
    #define P8_STXVB16X(VS,RA,RB) \
    	VPERM	VS, VS, ESPERM, TMP2 \
    	STXVD2X	TMP2, (RA+RB)
    
    #define XXBRD_ON_LE(VA,VT) \
    	VPERM	VA, VA, ESPERM, VT
    
    #  endif // defined(GOPPC64_power9)
    #else
    #define P8_LXVB16X(RA,RB,VT)  LXVD2X	(RA+RB), VT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

          ConstOp perm =
              dyn_cast_or_null<ConstOp>(transpose.getOperand(1).getDefiningOp());
          if (!perm) return;
    
          // With the same permutation indices.
          auto dense_elem_attr = mlir::dyn_cast<DenseElementsAttr>(perm.getValue());
          if (!dense_elem_attr) return;
    
          if (!permutation_op) permutation_op = perm;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/volume/emptydir/empty_dir.go

    		// the specific bits we need.
    		err := os.Chmod(dir, perm)
    		if err != nil {
    			return err
    		}
    
    		fileinfo, err = os.Lstat(dir)
    		if err != nil {
    			return err
    		}
    
    		if fileinfo.Mode().Perm() != perm.Perm() {
    			klog.Errorf("Expected directory %q permissions to be: %s; got: %s", dir, perm.Perm(), fileinfo.Mode().Perm())
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VPERM T_0, R_0, T_1, R_0   // [_,  r₂₆[0], _, 0]
    	VPERM T_0, R_1, T_1, R_1   // [_,  r₂₆[1], _, 0]
    	VPERM T_0, R_2, T_1, R_2   // [_,  r₂₆[2], _, 0]
    	VPERM T_0, R_3, T_1, R_3   // [_,  r₂₆[3], _, 0]
    	VPERM T_0, R_4, T_1, R_4   // [_,  r₂₆[4], _, 0]
    	VPERM T_0, R5_1, T_1, R5_1 // [_, 5r₂₆[1], _, 0]
    	VPERM T_0, R5_2, T_1, R5_2 // [_, 5r₂₆[2], _, 0]
    	VPERM T_0, R5_3, T_1, R5_3 // [_, 5r₂₆[3], _, 0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    def ReorderTransposeDequantQuant :
          Pat<(TF_TransposeOp:$old_value
                  (TFL_DequantizeOp (TFL_QuantizeOp $input, $qtype)), $perm),
              (TFL_DequantizeOp (TFL_QuantizeOp
                                    (TF_TransposeOp $input, $perm),
                                    (UpdateShapeWithAxis<-1> $qtype, $old_value))),
              [(CanUpdateShapeWithAxis<-1> $qtype, $old_value)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top