Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for modulemap (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

     public:
      // Constructs analysis by analyzing the given module operation. Because no
      // parallel_ids are given, the program has sequential memory semantics.
      explicit SideEffectAnalysis(ModuleOp module_op);
    
      // Constructs analysis by analyzing the given module operation where
      // `op_to_parallel_ids` supplies the group to branch map. This is the map
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // their region based counterparts.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFFunctionalControlFlowToRegions();
    std::unique_ptr<OperationPass<ModuleOp>> CreateTFFunctionalControlFlowToRegions(
        bool allow_passthrough_args);
    
    // Transforms region bases control flow operations in the TensorFlow dialect to
    // their functional counterparts.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFRegionControlFlowToFunctional();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

            output.contains "display-name: ModelMap<Thing> 'things'"
            output.contains "to-string: ModelMap<Thing> 'things'"
        }
    
        def "can view as ModelElement"() {
            when:
            buildScript '''
                @Managed
                interface Thing {
                }
    
                class Rules extends RuleSource {
                  @Model
                  void things(ModelMap<Thing> things) {
                  }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                }
    
                apply type: MyPlugin
            '''
    
            when:
            run()
    
            then:
            output.contains "as map: ModelMap<Task> 'tasks'"
            output.contains("as container:")
            output.contains "as model element: ModelMap<Task> 'tasks'"
            output.contains "name: tasks"
        }
    
        def "can view tasks as various view types"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

            then:
            failure.assertHasCause("Exception thrown while executing model rule: MyPlugin#addTasks2(ModelMap<Task>, MyModel)")
            failure.assertHasCause("Cannot create 'tasks.a' using creation rule 'MyPlugin#addTasks2(ModelMap<Task>, MyModel) > create(a)' as the rule 'MyPlugin#addTasks1(ModelMap<Task>, MyModel) > create(a)' is already registered to create this model element.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

        MavenModule bom
        MavenModule moduleA
    
        def setup() {
            resolve.prepare()
            resolve.addDefaultVariantDerivationStrategy()
            settingsFile << "rootProject.name = 'testproject'"
            buildFile << """
                repositories { maven { url "${mavenHttpRepo.uri}" } }
                configurations { compile }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

    void MoveFunctions(SymbolTableCollection &symbol_tables, ModuleOp from,
                       ModuleOp to) {
      SymbolTable &to_symbol_table = symbol_tables.getSymbolTable(to);
      for (auto func : llvm::make_early_inc_range(from.getOps<func::FuncOp>())) {
        func->remove();
        func.setPrivate();
        to_symbol_table.insert(func);
      }
    }
    
    void CopyStablehloModuleAttrs(ModuleOp stablehlo_module, XlaCallModuleOp op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                            .activeRequiredProjects(MODULE_C_2, MODULE_B, MODULE_A)
                            .resumeFrom(MODULE_B)
                            .expectResult(MODULE_B, MODULE_C_2),
                    scenario("Duplicate projects are filtered out")
                            .activeRequiredProjects(MODULE_A, MODULE_A)
                            .expectResult(MODULE_A),
                    scenario("Select reactor by specific pom")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util_test.cc

      func.return %arg0 : tensor<i32>
    }
    )mlir";
      mlir::MLIRContext context;
      context.loadDialect<mlir::func::FuncDialect, mlir::TF::TensorFlowDialect>();
      mlir::OwningOpRef<mlir::ModuleOp> module =
          mlir::parseSourceString<mlir::ModuleOp>(code, &context);
      ASSERT_TRUE(module);
      auto entry_funcs = GetEntryFunctions(*module);
      EXPECT_EQ(entry_funcs.size(), 2);
      EXPECT_EQ(entry_funcs[0].getSymName(), "entry_func_1");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/passes.h

    // pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTrimFunctionsPass();
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateTrimFunctionsPass(
        const std::vector<std::string>& trim_funcs_allowlist);
    
    // Creates an instance of the TensorFlow Lite dialect PrepareCompositeFunctions
    // pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePrepareCompositeFunctionsPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top