Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 247 for legalize (0.09 sec)

  1. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/test/fixtures/plugin/AbstractLanguagePluginSpec.groovy

        abstract String getLanguageId()
    
        def "registers transformation for language"() {
            when:
            dsl {
                apply plugin: pluginClass
            }
    
            then:
            def transform = realize("languageTransforms").find { it.languageName == languageId }
    
            transform != null
            transform.sourceSetType == languageSourceSet
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

        const ::stablehlo::quantization::DebuggerConfig& debugger_config);
    
    // Deserializes StableHLO functions serialized and embedded in XlaCallModuleOps.
    void AddXlaCallModuleOpDeserializationPasses(OpPassManager& pm);
    
    // Legalizes shape/tensor/arith dialect ops to StableHLO for handling dynamic
    // shapes, by going through a round-trip to MHLO.
    void AddShapeLegalizationPasses(OpPassManager& pm);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/ComponentBasePluginTest.groovy

            when:
            dsl {
                apply plugin: ComponentBasePlugin
                model {
                    baseComponent(ComponentSpec) {
                    }
                }
            }
    
            then:
            realize("baseComponent") instanceof ComponentSpec
        }
    
        def "adds a 'components' container to the project model"() {
            when:
            dsl {
                apply plugin: ComponentBasePlugin
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/LanguageBasePluginTest.groovy

            dsl {
                apply plugin: LanguageBasePlugin
                model {
                    baseSourceSet(LanguageSourceSet) {
                    }
                }
            }
    
            then:
            realize("baseSourceSet") instanceof LanguageSourceSet
        }
    
        def "adds a 'sources' container to the project model"() {
            when:
            dsl {
                apply plugin: LanguageBasePlugin
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectResolver.java

            // Looks in the correct project registry for this binary
            VisualStudioExtension visualStudioExtension = getComponentModel(nativeBinary).realize("visualStudio", VisualStudioExtension.class);
            VisualStudioProjectRegistry projectRegistry = ((VisualStudioExtensionInternal) visualStudioExtension).getProjectRegistry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

          /*allow_mutable_tensors=*/true));
    
      // Generic MLIR optimization passes.
      pm.addPass(mlir::createCanonicalizerPass());
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
    
      // Legalizes TF UniformQuantized types into MHLO.
      pm.addNestedPass<func::FuncOp>(
          mlir::quant::stablehlo::CreateConvertTFQuantOpsToMHLOPass());
      pm.addPass(mlir::createCanonicalizerPass());
    
      // TF -> StableHLO legalization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderOptions.java

    import org.gradle.api.NonNullApi;
    
    @NonNullApi
    public class GradleProjectBuilderOptions {
    
        /**
         * Determines whether a builder for the {@link org.gradle.tooling.model.GradleProject} model should realize tasks.
         * <p>
         * This method has to be invoked during builder execution time to provide an effective value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:25:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/ManagedNodeBackedModelMapTest.groovy

        }
    
        def "can put existing unmanaged instance"() {
            when:
            mutate {
                put("foo", "bar")
            }
    
            then:
            registry.realize("map.foo", String) == "bar"
        }
    
        @Managed
        abstract static class Invalid<T> implements SpecialNamedThingInterface {}
    
        def "cannot create invalid subtype"() {
            when:
            mutate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cunit/CUnitTest.groovy

                components {
                    main(NativeLibrarySpec)
                }
            }
            project.evaluate()
    
            when:
            CUnitTestSuiteSpec testSuite = project.modelRegistry.realize("testSuites", modelMap(TestSuiteSpec)).mainTest
            def sources = testSuite.sources.values()
            def binaries = testSuite.binaries.values()
    
            then:
            sources.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/ComponentModelBasePluginTest.groovy

            dsl {
                apply plugin: ComponentModelBasePlugin
                model {
                    baseComponent(type) {
                    }
                }
            }
    
            then:
            type.isInstance(realize("baseComponent"))
    
            where:
            type                 | _
            GeneralComponentSpec | _
            ApplicationSpec      | _
            LibrarySpec          | _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top