Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for permutation (0.48 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // 'input_permutation' is a mapping from old argument numbers to new argument
    // numbers, whereas 'output_permutation' is the same for outputs. Both
    // 'input_permutation' and 'output_permutation' are initialized to the identity
    // permutation. 'nodedef' is the NodeDef for the call to the function under
    // construction, provided to allow additional attributes to be set.
    // The rewrite may also change the NodeDef's operator name, and that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      //     ..., dn-1). For example, a 2-D matrix stored in row-major order would
      //     have traversal_order = (d0, d1).
      //   - if block sparse with a k-dimensional block (0 <= k <= n), the
      //     traversal_order has n + k elements. The first n elements are still a
      //     permutation of (d0, ..., dn-1). The lask k elements are a permutation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import spock.lang.Issue
    
    @Requires(value = IntegTestPreconditions.IsEmbeddedExecutor, reason = """
    This test is very expensive due to the permutation testing.
    Because it tests the internal state of the resolution engine, the Gradle execution model does not matter.
    Se we run the tests only in embedded mode
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  4. src/math/rand/v2/rand.go

    	// Shuffle really ought not be called with n that doesn't fit in 32 bits.
    	// Not only will it take a very long time, but with 2³¹! possible permutations,
    	// there's no way that any PRNG can have a big enough internal state to
    	// generate even a minuscule percentage of the possible permutations.
    	// Nevertheless, the right API signature accepts an int n, so handle it as best we can.
    	for i := n - 1; i > 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //     ..., dn-1). For example, a 2-D matrix stored in row-major order would
      //     have traversal_order = (d0, d1).
      //   - if block sparse with a k-dimensional block (0 <= k <= n), the
      //     traversal_order has n + k elements. The first n elements are still a
      //     permutation of (d0, ..., dn-1). The lask k elements are a permutation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/tfl_stablehlo_pass.cc

      if (op_name == "stablehlo.slice" &&
          (field_name == "start_indices" || field_name == "limit_indices" ||
           field_name == "strides"))
        return true;
      if (op_name == "stablehlo.transpose" && field_name == "permutation")
        return true;
      return false;
    }
    
    class TflToStablehloPass
        : public mlir::PassWrapper<TflToStablehloPass,
                                   mlir::OperationPass<mlir::func::FuncOp>> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 06:08:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //     ..., dn-1). For example, a 2-D matrix stored in row-major order would
      //     have traversal_order = (d0, d1).
      //   - if block sparse with a k-dimensional block (0 <= k <= n), the
      //     traversal_order has n + k elements. The first n elements are still a
      //     permutation of (d0, ..., dn-1). The lask k elements are a permutation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    def : Pat<(TF_CastOp $arg, ConstBoolAttrFalse), (MHLO_ConvertOp $arg)>;
    
    def : Pat<(TF_TransposeOp:$res $arg, (ConstantLikeMatcher ElementsAttr:$permutation)),
              (MHLO_TransposeOp $arg, (CastElementsToI64Elements $permutation))>;
    
    
    // Lowering these ops with static shape to mhlo.reshape
    foreach TfOp = [TF_ExpandDimsOp, TF_ReshapeOp, TF_SqueezeOp, ] in {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/Collections2Test.java

          List<T> expectedPermutation, Iterator<List<T>> permutations) {
        assertTrue("Expected another permutation, but there was none.", permutations.hasNext());
        assertEquals(expectedPermutation, permutations.next());
      }
    
      private <T> void assertNoMorePermutations(Iterator<List<T>> permutations) {
        assertFalse("Expected no more permutations, but there was one.", permutations.hasNext());
        try {
          permutations.next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top