Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 124 for permutation (0.25 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                                version(v) {
                                    // Not interested in the actual interactions, especially with
                                    // the complexity introduced by permutation testing
                                    allowAll()
                                }
                            }
                        }
                    }
                }
    
                extraSpec.delegate = delegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      (TFL_TransposeOp
        (TFL_TransposeOp:$transpose_out1 $input, (Arith_ConstantOp:$permutation1 $p1)),
        (Arith_ConstantOp:$permutation2 $p2)),
      (TFL_TransposeOp $input,
        (Arith_ConstantOp (RemapPermutation $permutation1, $permutation2))),
      [(HasOneUse $transpose_out1)]>;
    
    // Convert expand_dims to reshape if possible.
    def ConvertExpandDimsToReshape : Pat<
      (TFL_ExpandDimsOp:$expand_dims_op $input, $dim),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

          if (perm_type.getNumElements() != input_type.getRank()) {
            return transpose_op.emitOpError(
                "perm tensor elements size is not equal to input tensor rank");
          }
        }
    
        // Get permutation axes of the TransposeOp
        DenseIntElementsAttr perm;
        if (!matchPattern(transpose_op.getPerm(), m_Constant(&perm))) {
          return failure();
        }
    
        SmallVector<int64_t, 4> axes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512block_ppc64x.s

    #define R_x110	R27
    
    
    // V0-V7 are A-H
    // V8-V23 are used for the message schedule
    #define KI	V24
    #define FUNC	V25
    #define S0	V26
    #define S1	V27
    #define s0	V28
    #define s1	V29
    #define LEMASK	V31	// Permutation control register for little endian
    
    // VPERM is needed on LE to switch the bytes
    
    #ifdef GOARCH_ppc64le
    #define VPERMLE(va,vb,vc,vt) VPERM va, vb, vc, vt
    #else
    #define VPERMLE(va,vb,vc,vt)
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/math/rand/rand_test.go

    				{name: "int31n", fn: func() int { return int(Int31nForTest(r, int32(nfact))) }},
    				{name: "Perm", fn: func() int { return encodePerm(r.Perm(n)) }},
    				{name: "Shuffle", fn: func() int {
    					// Generate permutation using Shuffle.
    					for i := range p {
    						p[i] = i
    					}
    					r.Shuffle(n, func(i, j int) { p[i], p[j] = p[j], p[i] })
    					return encodePerm(p)
    				}},
    			}
    
    			for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    LogicalResult PadOp::FoldOperandsPermutation(ArrayRef<int64_t> permutation) {
      // Paddings must be defined by a constant operation.
      auto paddings_op =
          dyn_cast_or_null<TF::ConstOp>(getPaddings().getDefiningOp());
      if (!paddings_op) return failure();
    
      auto paddings_value = paddings_op.getValue().dyn_cast<DenseElementsAttr>();
      if (!paddings_value ||
          paddings_value.getNumElements() != permutation.size() * 2)
        return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/math/rand/v2/rand_test.go

    			}{
    				{name: "Int32N", fn: func() int { return int(r.Int32N(int32(nfact))) }},
    				{name: "Perm", fn: func() int { return encodePerm(r.Perm(n)) }},
    				{name: "Shuffle", fn: func() int {
    					// Generate permutation using Shuffle.
    					for i := range p {
    						p[i] = i
    					}
    					r.Shuffle(n, func(i, j int) { p[i], p[j] = p[j], p[i] })
    					return encodePerm(p)
    				}},
    			}
    
    			for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: [[RESHAPED_SHAPE:%.+]] = "tf.ConcatV2"([[PADDED_SHAPE_SPLITS]]#0, [[OUTER_SHAPE_0]], [[BLOCK_SHAPE_SPLITS]]#0, [[OUTER_SHAPE_1]], [[BLOCK_SHAPE_SPLITS]]#1, [[PADDED_SHAPE_SPLITS]]#3, [[ZERO_I64]])
      // CHECK-DAG: [[PERMUTATION:%.+]] = "tf.Const"() <{value = dense<[2, 4, 0, 1, 3, 5]> : tensor<6xi64>}>
      // CHECK-DAG: [[OUTPUT_BATCH_PART:%.+]] = "tf.Mul"([[PADDED_SHAPE_SPLITS]]#0, [[BLOCK_SHAPE_SPLITS]]#0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (a.getRank() != 2 || b.getRank() < 2) return false;
        if (a.getShape().back() != b.getShape().back()) return false;
        return b.getDimSize(b.getRank() - 2) == 1;
      }
    
      // Checks if the transpose permutation has value [2, 3, ..., n-1, 0, 1].
      bool TransposeFirstTwoDimToLast(DenseIntElementsAttr perm) const {
        int rank = perm.getNumElements();
        if (rank < 3) return false;
        for (int i = 0; i < rank - 2; i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1block_amd64.s

    	CALC_151 \
    	CALC_152 \
    	CALC_153 \
    	CALC_154 \
    	CALC_155 \
    	CALC_156 \
    	CALC_157 \
    	CALC_158 \
    	CALC_159 \
    	UPDATE_HASH(SI,DI,DX,CX,BX) \
    	MOVL	SI, R12 \ //Reset state for  AVX2 reg permutation
    	MOVL	DI, SI \
    	MOVL	DX, DI \
    	MOVL	BX, DX \
    	MOVL	CX, AX \
    	MOVL	R12, CX \
    	XCHGQ   R15, R14 \
    	JMP     loop
    
    
    
    TEXT ·blockAVX2(SB),$1408-32
    
    	MOVQ	dig+0(FP),	DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top