Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for permutation (0.2 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    // Pattern to fuse redundant tanspose op
    def FoldDoubleTranspose : Pat<
      (TF_TransposeOp
        (TF_TransposeOp:$transpose_out1 $input, (Arith_ConstantOp:$permutation1 $p1)),
        (Arith_ConstantOp:$permutation2 $p2)),
      (TF_TransposeOp $input,
        (Arith_ConstantOp (RemapPermutation $permutation1, $permutation2))),
      [(HasOneUse $transpose_out1)]>;
    
    // Pattern to fuse trivial reshape op into transpose op
    def FoldTrivialReshapeIntoTranspose : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/Utf8Test.java

      }
    
      /** Tests that round tripping of all three byte permutations work. */
      @GwtIncompatible // java.nio.charset.Charset
    
      public void testIsWellFormed_3Bytes() {
        testBytes(3, EXPECTED_THREE_BYTE_ROUNDTRIPPABLE_COUNT);
      }
    
      /**
       * Tests that round tripping of a sample of four byte permutations work. All permutations are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

                    def generator = new PermutationGenerator<>(nextBatch.versions)
                    def permutations = []
                    def permutationsAsSet = [] as Set
                    while (generator.hasNext()) {
                        def next = generator.next()
                        if (permutationsAsSet.add(next)) {
                            permutations << next
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

                this.delegate = delegate;
                this.state = state;
                this.elementType = elementType;
            }
    
            public C getDelegate(boolean forMutation) {
                if (forMutation) {
                    state.assertCanMutate();
                }
                return delegate;
            }
    
            protected void validateElementType(Object o) {
                if (o != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/crypto/cipher/gcm_test.go

    	asm, generic, err := newAESGCM(key[:])
    	if err != nil {
    		t.Fatal(err)
    	}
    	if reflect.TypeOf(asm) == reflect.TypeOf(generic) {
    		t.Skipf("no assembly implementation of GCM")
    	}
    
    	// generate permutations
    	type pair struct{ align, length int }
    	lengths := []int{0, 156, 8192, 8193, 8208}
    	keySizes := []int{16, 24, 32}
    	alignments := []int{0, 1, 2, 3}
    	if testing.Short() {
    		keySizes = []int{16}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessorTest.groovy

            then:
            TestComponentMetadataRule.instanceCount == 2
            rule1Executed
            rule2Executed
    
            where:
            rules << [rule1, rule2, "classRule1", "classRule2"].permutations()
    
        }
    
        private SpecConfigurableRule addRuleForModule(String notation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

            succeeds taskName
    
            then:
            file("build/test.${fileExtension}").md5Hash == expectedHash
    
            where:
            input << [
                ['DIR1/FILE11.txt', 'dir2/file22.txt', 'DIR3/file33.txt'].permutations(),
                ['zip', 'tar']
            ].combinations()
            files = input[0]
            taskName = input[1]
            taskType = taskName.capitalize()
            fileExtension = taskName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                                }
                            }
                        }
                    }
                }
            }
    
            where:
            [chain, testVariant] << [REPO_TYPES.permutations(), TEST_VARIANTS.keySet()].combinations()
        }
    
        def "explicit compile configuration selection works for a chain of pure maven dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            1 * attributeMatcher.isMatching(compatible, requested) >> true
    
            0 * attributeMatcher._
    
            where:
            registrationsIndex << (0..3).permutations()
        }
    
        @Issue("gradle/gradle#7061")
        def "selects chain of transforms that only all the attributes are satisfied"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top