Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for createModule (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

    static constexpr char kNonStaticOpSkipStreamz[] =
        "/tensorflow/core/tf2xla/mlir_second_phase_non_static_op_skip_count";
    
    class VerifyTfxlaLegalizationTest : public ::testing::Test {
     protected:
      void CreateModule(const char* module_string) {
        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
    
        pm_ = std::make_unique<mlir::PassManager>(&context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/inference/inference_metrics_pass_test.cc

    static constexpr char kHasTpuPartitionedCallStreamzName[] =
        "/tensorflow/core/tf2xla/internal/inference/tpu_partitioned_call";
    
    class InferenceMetricsPassTest : public ::testing::Test {
     protected:
      void CreateModule(const char* module_string) {
        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
    
        pm_ = std::make_unique<mlir::PassManager>(&context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass_test.cc

    using ::mlir::ModuleOp;
    using ::mlir::OwningOpRef;
    using ::mlir::mhlo::test::GetMlirModuleFromString;
    
    class VerifyNoOutsideCompilationMarkersPassTest : public ::testing::Test {
     protected:
      void CreateModule(const char* module_string) {
        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
    
        pm_ = std::make_unique<mlir::PassManager>(&context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_clustering_pass_test.cc

    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    namespace {
    
    using mlir::mhlo::test::GetMlirModuleFromString;
    
    class VerifyClusteringPassTest : public testing::Test {
     protected:
      void CreateModule(const char* module_string) {
        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
        pm_ = std::make_unique<mlir::PassManager>(&context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 17:03:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        }
    
        def "builds transitive closure of required modules"() {
            given:
            def module1Dir = createModule("some-module", properties(projects: 'gradle-module-2'))
            def module2Dir = createModule("module-2", properties(projects: 'gradle-module-3'))
            def module3Dir = createModule("module-3", properties(projects: ''))
            def registry = defaultModuleRegistryFor([module1Dir, module2Dir, module3Dir])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileRepository.groovy

        }
    
        IvyFileModule module(String organisation, String module, String revision = '1.0') {
            return createModule(organisation, module, revision as String)
        }
    
        IvyFileModule module(String module) {
            return createModule("org.gradle.test", module, '1.0')
        }
    
        private IvyFileModule createModule(String organisation, String module, String revision) {
            def modulePath = getDirPath(organisation, module, revision)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenModuleArtifactResolutionIntegrationTest.groovy

        }
    
        private MavenHttpModule publishModule() {
            def module = createModule()
            module.publish()
        }
    
        private MavenHttpModule publishModuleWithoutMetadata() {
            MavenHttpModule module = createModule()
            module.withNoPom()
            module.publish()
        }
    
        private MavenHttpModule createModule() {
            httpRepo.module(fixture.id.group, fixture.id.module, fixture.id.version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types_test.cc

    using ::testing::Test;
    
    static constexpr char kMetricsName[] =
        "/tensorflow/core/tf2xla/tf_quant_op_count";
    
    class LegalizeTfTypesTest : public Test {
     protected:
      void CreateModule(const char* module_string) {
        DialectRegistry mlir_registry;
        RegisterCommonToolingDialects(mlir_registry);
        context_.appendDialectRegistry(mlir_registry);
        TF_ASSERT_OK(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 09:05:02 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass_test.cc

    static constexpr char kDynamismFunctionCounterStreamzName[] =
        "/tensorflow/core/tf2xla/api/v2/dynamism_function_counter";
    
    class InputLoweringMetricsPassTest : public testing::Test {
     protected:
      void CreateModule(const char* module_string) {
        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
        pm_ = std::make_unique<mlir::PassManager>(&context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 19:42:09 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

        }
    
        private IvyHttpModule publishModule() {
            def module = createModule()
            module.publish()
        }
    
        private IvyHttpModule publishModuleWithoutMetadata() {
            IvyHttpModule module = createModule()
            module.withNoMetaData()
            module.publish()
        }
    
        private IvyHttpModule createModule() {
            httpRepo.module(fixture.id.group, fixture.id.module, fixture.id.version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top