Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 124 for permutation (0.17 sec)

  1. src/vendor/golang.org/x/crypto/sha3/doc.go

    // A sponge builds a pseudo-random function from a public pseudo-random
    // permutation, by applying the permutation to a state of "rate + capacity"
    // bytes, but hiding "capacity" of the bytes.
    //
    // A sponge starts out with a zero state. To hash an input using a sponge, up
    // to "rate" bytes of the input are XORed into the sponge's state. The sponge
    // is then "full" and the permutation is applied to "empty" it. This process is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_canonicalize.td

    def ConvertTransposeToDecreaseRank : Pat<
      (TFL_TransposeOp:$output_transpose $input, (Arith_ConstantOp:$permutation $_)),
      (TFL_ReshapeOp
        (TFL_TransposeOp
          (TFL_ReshapeOp $input, (Arith_ConstantOp (GetSqueezedShape $input))),
          (Arith_ConstantOp (GetSqueezedPermutation $input, $permutation))),
        (Arith_ConstantOp (GetShape $output_transpose))),
        [(AnyStaticShapeTensor $input),
         (HasRankAtLeast<7> $input),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 20:41:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Collections2.java

       * Returns a {@link Collection} of all the permutations of the specified {@link Iterable}.
       *
       * <p><i>Notes:</i> This is an implementation of the algorithm for Lexicographical Permutations
       * Generation, described in Knuth's "The Art of Computer Programming", Volume 4, Chapter 7,
       * Section 7.2.1.2. The iteration order follows the lexicographical order. This means that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Collections2.java

       * Returns a {@link Collection} of all the permutations of the specified {@link Iterable}.
       *
       * <p><i>Notes:</i> This is an implementation of the algorithm for Lexicographical Permutations
       * Generation, described in Knuth's "The Art of Computer Programming", Volume 4, Chapter 7,
       * Section 7.2.1.2. The iteration order follows the lexicographical order. This means that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

    inline constexpr StringRef kQuantizationMethodAttr = "_quantization_method";
    
    // Permutation from the NHWC tensor format to NCHW. This is an inverse
    // permutation of `kNchwToNhwcPermutation`.
    inline constexpr std::array<int64_t, 4> kNhwcToNchwPermutation = {0, 3, 1, 2};
    
    // Permutation from the NCHW tensor format to NHWC. This is an inverse
    // permutation of `kNchwToNhwcPermutation`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/nchw_convolution_to_nhwc.cc

      // Returns a new tensor type with the shape transposed according to the
      // permutation. The rank of `type` and the size of `permutation` must be
      // equal.
      TensorType GetTransposedTensorType(
          const TensorType type, const ArrayRef<int64_t> permutation) const {
        const SmallVector<int64_t> after_shape =
            Permute<int64_t>(type.getShape(), permutation);
        return type.cloneWith(after_shape, type.getElementType());
      }
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.td

        >,
        InterfaceMethod<
          [{Updates operation attributes and operands to account for the folded
            permutation. If folding of permutation is not possible, must return
            failure.}],
          "LogicalResult", "FoldOperandsPermutation",
          (ins "ArrayRef<int64_t>":$permutation)
        >,
      ];
    
      let verify = [{
        return VerifyFoldOperandsTransposeInterface($_op);
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 30 19:07:07 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. src/crypto/des/const.go

    // in U.S. Federal Information Processing Standards Publication 46-3.
    //
    // DES is cryptographically broken and should not be used for secure
    // applications.
    package des
    
    // Used to perform an initial permutation of a 64-bit input block.
    var initialPermutation = [64]byte{
    	6, 14, 22, 30, 38, 46, 54, 62,
    	4, 12, 20, 28, 36, 44, 52, 60,
    	2, 10, 18, 26, 34, 42, 50, 58,
    	0, 8, 16, 24, 32, 40, 48, 56,
    	7, 15, 23, 31, 39, 47, 55, 63,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  9. src/hash/maphash/smhasher_test.go

    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 6)
    }
    func permutation(t *testing.T, h *hashSet, s []uint32, n int) {
    	b := make([]byte, n*4)
    	genPerm(h, b, s, 0)
    	h.check(t)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

        ],
    )
    
    cc_library(
        name = "permutation",
        hdrs = ["permutation.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:Support",
        ],
    )
    
    tf_cc_test(
        name = "permutation_test",
        srcs = ["permutation_test.cc"],
        deps = [
            ":permutation",
            "@com_google_googletest//:gtest_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top