Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for addTasks (0.4 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                    void configurePlatform(Platform platform) {
                        platform.operatingSystem.name = "${platform.operatingSystem.name} 10"
                    }
    
                    @Mutate
                    void addTask(ModelMap<Task> tasks, @Path("platform.operatingSystem") OperatingSystem os) {
                        tasks.create("fromPlugin") {
                            doLast {
                                println "plugin input: $os"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/debug/debug_test.cc

    TEST_F(InitPassManagerTest, CrashReproducer) {
      converter::DebugOptions debug_options;
      *debug_options.mutable_ir_dump_dir() = path_;
    
      mlir::PassManager pm(&context_);
      InitPassManager(pm, debug_options);
      pm.addPass(std::make_unique<AlwaysFailPass>());
      ASSERT_TRUE(mlir::failed(pm.run(*module_)));
    
      std::string dump_dir;
      TF_ASSERT_OK(GetDumpDir(&dump_dir));
    
      std::string mlir_dump;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeWithUnmanagedPropertiesIntegrationTest.groovy

                    @Model
                    void m(ManagedThing thing) {
                        thing.unmanaged = new UnmanagedThing(value: "foo")
                    }
    
                    @Mutate
                    void addTask(ModelMap<Task> tasks, ManagedThing thing) {
                        tasks.create("echo") {
                            it.doLast {
                                println "value: $thing.unmanaged.value"
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

                                                    llvm::StringRef module_name) {
      pm.addPass(mlir::TFTPU::CreateTPURewritePass(module_name));
      pm.addPass(mlir::createSymbolDCEPass());
      pm.addNestedPass<FuncOp>(
          mlir::TFDevice::CreateReplicateInvariantOpHoistingPass());
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateEmbeddingProgramKeyPass());
      pm.addPass(mlir::TFTPU::CreateTPUMergeVariablesWithExecutePass());
      pm.addNestedPass<FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      // - materialize the eventual "pass-through" ops by inlining their content.
      func_pm.addPass(tf_executor::CreateTFExecutorGraphPruningPass());
      func_pm.addPass(tf_executor::CreateTFExecutorIslandCoarseningPass());
      func_pm.addPass(CreateMaterializePassthroughOpPass());
      if (options.form_clusters) pm.addPass(TFDevice::CreateClusterFormationPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    void CreateReplicatedBridgePipelineV1(OpPassManager &pm) {
      pm.addPass(mlir::tf2xla::internal::CreateInferenceMetricsPass());
    
      // Convert to unified compilation and replication attributes.
      pm.addNestedPass<FuncOp>(
          mlir::TF::CreateCanonicalizeCompileAndReplicateAttributesPass());
      // Guarantee all functions have one use, which enables more exact shape
      // inference.
      pm.addPass(mlir::TF::CreateGuaranteeAllFuncsOneUsePass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

      }
    
      pm.addPass(mlir::quant::CreateInsertMainFunctionPass());
      pm.addPass(mlir::quant::CreateLiftHashTableOpsAsArgsPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::CreateFunctionalToExecutorDialectConversionPass());
      pm.addPass(mlir::CreateBreakUpIslandsPass());
      pm.addPass(mlir::quant::CreateMergeInitializerFunctionOpsToMainPass());
      pm.addPass(mlir::quant::CreateMergeSaveFunctionOpsToMainPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      // legalization passes.
      pm.addPass(mlir::createSCCPPass());
    
      if (lower_to_xla_hlo) {
        pm.addPass(mlir::TF::CreateTensorListOpsDecompositionPass());
      }
      pm.addPass(mlir::TF::CreateStackOpsDecompositionPass());
      if (lower_to_xla_hlo) {
        pm.addPass(mlir::TF::CreateTensorArrayOpsDecompositionPass());
      }
      pm.addNestedPass<mlir::func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

        }
    
        def "removing collection of tasks throws exception"() {
            given:
            def task1 = addTask("a")
            def task2 = addTask("b")
            def task3 = addTask("c")
    
            when:
            container.removeAll([task1, task2, task3])
    
            then:
            def e = thrown(UnsupportedOperationException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

      // the results of side effect analysis.
      pm.addPass(
          mlir::tf_executor::CreateTFExecutorUpdateControlDependenciesPass());
    
      pm.addNestedPass<FuncOp>(mlir::TFTPU::CreateTPUDevicePropagationPass());
      pm.addNestedPass<FuncOp>(mlir::TFTPU::CreateTPUColocateSplitsPass());
      pm.addPass(mlir::createSymbolDCEPass());
      pm.addNestedPass<FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top