Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 124 for permutation (0.31 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionRangeResolvePreferPairBatch2IntegrationTest.groovy

        def "resolve prefer pair #permutation"() {
            given:
            def candidates = permutation.candidates
            def expectedSingle = permutation.expectedSingle
            def expectedMulti = permutation.expectedMulti
    
            expect:
            checkScenarioResolution(expectedSingle, expectedMulti, candidates)
    
            where:
            permutation << VersionRangeResolveTestScenarios.SCENARIOS_PREFER_BATCH2
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.h

    namespace odml {
    
    struct PermutationAndShape {
      DenseIntElementsAttr permutation;
      ShapedType shape;
    };
    
    // Check that `arr` is an R1 iota with integer element type starting from `0`
    // with `size` number of values.
    bool IsIotaAttr(ArrayRef<int64_t> arr, int64_t size);
    
    // Returns a DenseIntElementsAttr for a permutation and the shape after
    // applying the permutation to a given shape through a transpose.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 11:35:25 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionRangeResolveRejectPairIntegrationTest.groovy

        def "resolve reject pair #permutation"() {
            given:
            def candidates = permutation.candidates
            def expectedSingle = permutation.expectedSingle
            def expectedMulti = permutation.expectedMulti
    
            expect:
            checkScenarioResolution(expectedSingle, expectedMulti, candidates)
    
            where:
            permutation << VersionRangeResolveTestScenarios.SCENARIOS_DEPENDENCY_WITH_REJECT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionRangeResolvePairBatch2IntegrationTest.groovy

        def "resolve pair #permutation"() {
            given:
            def candidates = permutation.candidates
            def expectedSingle = permutation.expectedSingle
            def expectedMulti = permutation.expectedMulti
    
            expect:
            checkScenarioResolution(expectedSingle, expectedMulti, candidates)
    
            where:
            permutation << VersionRangeResolveTestScenarios.SCENARIOS_TWO_DEPENDENCIES_BATCH2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

    }
    
    // Convenience function to create a `TransposeOp` with a given `permutation`.
    // The Location is set as `input`'s loc.
    TransposeOp CreateTransposeOp(Value input, const ArrayRef<int64_t> permutation,
                                  PatternRewriter& rewriter) {
      return rewriter.create<TransposeOp>(
          input.getLoc(), input, rewriter.getDenseI64ArrayAttr(permutation));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/sha3.go

    		// If we're absorbing, we need to xor the input into the state
    		// before applying the permutation.
    		xorIn(d, d.storage[:d.rate])
    		d.n = 0
    		keccakF1600(&d.a)
    	case spongeSqueezing:
    		// If we're squeezing, we need to apply the permutation before
    		// copying more output.
    		keccakF1600(&d.a)
    		d.i = 0
    		copyOut(d, d.storage[:d.rate])
    	}
    }
    
    // pads appends the domain separation bits in dsbyte, applies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/policy.go

    }
    
    // Merge a TopologyHints permutation to a single hint by performing a bitwise-AND
    // of their affinity masks. The hint shall be preferred if all hits in the permutation
    // are preferred.
    func mergePermutation(defaultAffinity bitmask.BitMask, permutation []TopologyHint) TopologyHint {
    	// Get the NUMANodeAffinity from each hint in the permutation and see if any
    	// of them encode unpreferred allocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/permutation_test.cc

      const SmallVector<int64_t> permutation = {0};
    
      const SmallVector<int> permutation_result =
          Permute<int>(single_element_array, permutation);
      EXPECT_THAT(permutation_result, ElementsAre(8));
    }
    
    TEST(PermutationTest, PermuteFourElements) {
      const SmallVector<int> arr = {0, 3, 1, 2};
      // Permutation inverse of {0, 3, 1, 2}.
      const SmallVector<int64_t> permutation = {0, 2, 3, 1};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 00:14:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

      }
      auto transposed_type =
          RankedTensorType::get(transposed_shape, input_type.getElementType());
      DenseIntElementsAttr permutation = DenseIntElementsAttr::get(
          RankedTensorType::get(permutation_array.size(), rewriter.getI64Type()),
          permutation_array);
      return {permutation, transposed_type};
    }
    
    Value BuildIntConstOp(ImplicitLocOpBuilder& builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionRangeResolvePreferPairBatch1IntegrationTest.groovy

        def "resolve prefer pair #permutation"() {
            given:
            def candidates = permutation.candidates
            def expectedSingle = permutation.expectedSingle
            def expectedMulti = permutation.expectedMulti
    
            expect:
            checkScenarioResolution(expectedSingle, expectedMulti, candidates)
    
            where:
            permutation << VersionRangeResolveTestScenarios.SCENARIOS_PREFER_BATCH1
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top