Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for idml (0.04 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            includeBuild buildC
    
            when:
            idea()
    
            then:
            iprHasModules "buildA.iml", "../buildB/buildB.iml", "../buildB/b1/b1.iml", "../buildB/b2/b2.iml", "../buildC/c2/c2.iml"
            // This is actually invalid: no `buildC.iml` file exists in the project. Should generated buildC iml file even when plugin not applied.
            imlHasDependencies "b1", "buildC", "c2"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            iml('root').languageLevel == null
            iml('child1').languageLevel == null
            iml('child2').languageLevel == null
            iml('child3').languageLevel == null
        }
    
        def getIpr() {
            return IdeaFixtures.parseIpr(file("root.ipr"))
        }
    
        def iml(String name = 'root') {
            if (name == 'root') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

            List moduleFileNames = parseIprModules()
    
            ['master.iml',
             'shared-api.iml', 'shared.iml',
             'master-services.iml', 'services-util.iml',
             'util.iml', 'contrib.iml', 'contrib-services.iml',
             'very-cool-model.iml',
             'master-api.iml',
             'master-util.iml'].each {
                assert moduleFileNames.contains(it)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // directly. Additionally remove the composite to custom once ODML long term
      // solution lands.
      pass_manager.addPass(
          mlir::odml::createLegalizeStablehloCustomCallToCompositePass());
      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::odml::createLegalizeCompositeToCustomOpPass());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        outputDir = file('foo-out')
        testOutputDir = file('foo-out-test')
    }
    """
    
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('inherit-compiler-output="false"')
            assert iml.contains('foo-out')
            assert iml.contains('foo-out-test')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void dslSupportsShortFormsForModule() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            iml {
                beforeMerged { it.excludeFolders.clear() }
                whenMerged   { it.jdkName = '1.33'   }
            }
        }
    }
    ''')
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('folderThatIsExcludedNow')
            assert !iml.contains('folderThatWasExcludedEarlier')
            assert iml.contains('1.33')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      // Unfuse mhlo BatchNorm to primitive ops.
      pm.addNestedPass<mlir::func::FuncOp>(mlir::odml::createUnfuseBatchNormPass());
      // Fuse Conv + Mul to Conv.
      pm.addNestedPass<mlir::func::FuncOp>(mlir::odml::createFuseConvolutionPass());
      // Fold broadcast_in_dim + Mul.
      pm.addNestedPass<mlir::func::FuncOp>(mlir::odml::createFoldBroadcastPass());
      pm.addNestedPass<mlir::func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

          // This `allow_tf` logic should be removed after the backend supports tf.
          optional_accepted_dialects.push_back("tf");
        }
        pm.addPass(
            mlir::odml::createCheckAcceptedOpsPass(optional_accepted_dialects));
      }
    
      mlir::odml::AddStablehloOptimizationPasses(pm);
    
      if (verbose) {
        // Print out a detailed report of non-converted stats.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        private final IdeaModuleIml iml;
        private final Project project;
        private PathFactory pathFactory;
        private boolean offline;
        private Map<String, Iterable<File>> singleEntryLibraries;
    
        @Inject
        public IdeaModule(Project project, IdeaModuleIml iml) {
            this.project = project;
            this.iml = iml;
    
            this.testSources = project.getObjects().fileCollection();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

        }
      }
    
      pass_manager.clear();
      mlir::odml::AddTFToStablehloPasses(pass_manager, /*skip_resize=*/true,
                                         /*smuggle_disallowed_ops=*/true);
      // Print out a detailed report of non-converted stats.
      pass_manager.addPass(mlir::odml::createPrintOpStatsPass(
          mlir::odml::GetAcceptedStableHLODialects()));
      mlir::odml::AddStablehloOptimizationPasses(pass_manager);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top