Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for Carian (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      %zeros-like = "tf.ZerosLike"(%addn) : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
      // CHECK-NEXT: %[[ADDN2:.*]] = "tf.AddN"(%[[ADDN]], %[[ZEROS_LIKE]]) : (tensor<10xf32>, tensor<10xf32>) -> tensor<10xf32>
      %addn2 = "tf.AddN"(%addn, %zeros-like) : (tensor<!tf_type.variant<tensor<f32>>>, tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-cfg.mlir

    // -----
    
    func.func @testIfThen(%arg0: tensor<!tf_type.variant>) -> tensor<!tf_type.variant> {
      func.return %arg0 : tensor<!tf_type.variant>
    }
    func.func @testIfElse(%arg0: tensor<!tf_type.variant>) -> tensor<!tf_type.variant> {
      func.return %arg0 : tensor<!tf_type.variant>
    }
    
    // CHECK-LABEL: func @testIfCasts(%arg0: tensor<i1>, %arg1: tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list.mlir

      %0 = "tf.TensorListLength"(%arg1) : (tensor<!tf_type.variant>) -> tensor<i32>
      %1 = "tf.Identity"(%arg1) : (tensor<!tf_type.variant>) -> tensor<!tf_type.variant>
      func.return %0, %1 : tensor<i32>, tensor<!tf_type.variant>
    
    // verify `body` function's signature.
    // CHECK: func @tensorlistWhileBody(%[[ARG0:.*]]: tensor<i32>, %[[ARG:.*]]: tensor<2x3xf32>) -> (tensor<i32>, tensor<2x3xf32>)
    // CHECK-NOT: tensor<!tf_type.variant>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 39.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                    }
                }
            }
        }
    
        def "can select both main variant and test fixtures of a single component"() {
            given:
            repository {
                'org:foo:1.0' {
                    variant('api') {}
                    variant('runtime') {}
                    variant('test-fixtures') {
                        artifact('test-fixtures')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

            variant.dependencies[1].module == 'bar'
            variant.dependencies[1].version == null
            variant.dependencies[1].prefers == '2.0'
            variant.dependencies[1].strictly == null
            variant.dependencies[1].rejectsVersion == []
    
            variant.dependencies[2].group == 'org'
            variant.dependencies[2].module == 'baz'
            variant.dependencies[2].version == '3.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

            then:
            gmmMetadata.parsedModuleMetadata.variant("apiElements") {
                noMoreDependencies()
            }
            gmmMetadata.parsedModuleMetadata.variant("runtimeElements") {
                noMoreDependencies()
            }
            gmmMetadata.parsedModuleMetadata.variant("custom") {
                dependency('log4j:log4j:1.2.17').exists()
                noMoreDependencies()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

            /**
             * Executes the underlying action if the supplied variant matches.
             *
             * @param variant the variant metadata, used to check if the rule applies
             * @param subject the subject of the rule
             */
            public void maybeExecute(VariantResolveMetadata variant, T subject) {
                if (variantName == null || variantName.equals(variant.getName())) {
                    delegate.execute(subject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    Finally, Gradle selects the appropriate variant by looking at the variant attributes:
    
    - the consumer wants a variant with attributes `org.gradle.usage=java-api`
    - the producer has a matching variant (`apiElements`)
    - the producer has a non-matching variant (`runtimeElements`)
    
    Gradle provides the artifacts and dependencies from the `apiElements` variant to the consumer.
    
    == A more complicated example
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

            if (variants) {
                variants.each { variant ->
                    module.withVariant(variant.name) {
                        attributes = attributes ? attributes + variant.attributes : variant.attributes
                        artifacts = variant.artifacts.collect {
                            if (it.name && it.name == it.url && it.name == it.publishUrl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

            for (SoftwareComponentVariant variant : softwareComponent.getUsages()) {
                checkVariant(variant);
                variants.add(dependencyCoordinateResolverFactory.createCoordinateResolvers(variant, versionMappingStrategy).map(resolvers ->
                    new ModuleMetadataSpec.LocalVariant(
                        variant.getName(),
                        attributesFor(variant.getAttributes()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top