Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 219 for idml (0.04 sec)

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

                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
                '$PROJECT_DIR$/shared/api/shared-api.iml',
                '$PROJECT_DIR$/shared/model/model.iml',
                '$PROJECT_DIR$/util/util.iml',
                '$PROJECT_DIR$/other/other.iml')
    
            def apiDependencies = parseIml(file('api/root-api.iml')).dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_pass.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_TRANSFORMS_COMPOSITE_LOWERING_PASS_H_
    
    namespace mlir {
    namespace odml {
    
    std::unique_ptr<Pass> CreateCompositeLoweringPass();
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 22:22:03 UTC 2024
    - 1K 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/stablehlo/tests/legalize-stablehlo-vhlo.mlir

    // RUN: odml-to-stablehlo-opt %s --stablehlo-legalize-vhlo -split-input-file | FileCheck %s
    // RUN: odml-to-stablehlo-opt --stablehlo-legalize-vhlo %s | odml-to-stablehlo-opt --vhlo-legalize-stablehlo > %t.0
    // RUN: odml-to-stablehlo-opt %s > %t.1
    // RUN: diff %t.0 %t.1
    
    // CHECK-LABEL: op_tfl
    func.func @op_tfl(%arg0 : tensor<f32>) -> (tensor<f32>) {
      // CHECK: %0 = tfl.add %arg0, %arg0 {fused_activation_function = "NONE"} : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 22:39:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/odml_converter_main.cc

     \___/|___/|_|  |_|____|  \___\___/_||_\_/\___|_|  \__\___|_|
    )";
    
    int main(int argc, char* argv[]) {
      tensorflow::InitMlir y(&argc, &argv);
      llvm::errs() << art << "\n";
    
      mlir::odml::registerODMLConverterPasses();
      mlir::odml::registerLegalizeStablehloToVhloPass();
    
      mlir::DialectRegistry registry;
      registry.insert<mlir::func::FuncDialect, mlir::stablehlo::StablehloDialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/top-level.iml.xml

    Tom Tresansky <******@****.***> 1689028866 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.h

    namespace mlir {
    namespace odml {
    
    // Adds passes which transform TF Ops to StableHLO Ops.
    void AddLegalizeTFToStablehloPasses(OpPassManager& pm,
                                        bool skip_quantization_ops,
                                        bool skip_resize,
                                        bool skip_partitioned_calls);
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 20:05:12 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. 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)
Back to top