Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for compileCpp (0.25 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

            project.evaluate()
    
            then:
            def compileCpp = project.tasks.compileTestCpp
            compileCpp instanceof CppCompile
            compileCpp.source.files == [src] as Set
            compileCpp.objectFileDir.get().asFile == projectDir.file("build/obj/test")
            compileCpp.debuggable
            !compileCpp.optimized
    
            def link = project.tasks.linkTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

            project.components.add(binary)
    
            then:
            def compileCpp = project.tasks[taskName]
            compileCpp instanceof CppCompile
            compileCpp.objectFileDir.get().asFile == projectDir.file("build/obj/${objDir}")
    
            where:
            name        | taskName              | objDir
            "main"      | "compileCpp"          | "main"
            "mainDebug" | "compileDebugCpp"     | "main/debug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            project.pluginManager.apply(CppApplicationPlugin)
            project.evaluate()
    
            when:
            project.buildDir = "output"
    
            then:
            def compileCpp = project.tasks.compileDebugCpp
            compileCpp.objectFileDir.get().asFile == project.file("output/obj/main/debug")
    
            def link = project.tasks.linkDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/NamesTest.groovy

        def "names for main"() {
            expect:
            def name = Names.of("main")
            name.baseName == "main"
            name.lowerBaseName == "main"
            name.getCompileTaskName("cpp") == "compileCpp"
            name.getTaskName("link") == "link"
            name.dirName == "main/"
            name.withPrefix("compile") == "compile"
            name.withSuffix("implementation") == "implementation"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            given:
            project.pluginManager.apply(CppLibraryPlugin)
            project.evaluate()
    
            when:
            project.buildDir = "output"
    
            then:
            def compileCpp = project.tasks.compileDebugCpp
            compileCpp.objectFileDir.get().asFile == project.file("output/obj/main/debug")
    
            def link = project.tasks.linkDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      }
    
      auto compile_op = builder->create<TF::_TPUCompileMlirOp>(
          cluster_func.getLoc(),
          /*compilation_status=*/compilation_status_type, /*program=*/
          llvm::SmallVector<Type, 8>(num_cores_per_replica, program_type),
          compile_op_operands, txt_module, txt_metadata);
    
      return tensorflow::WrapOpInLaunch(builder, compile_op.getLoc(), compile_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      Operation* tpu_compile_successor = nullptr;
      func_op->walk([&](TF::_TPUCompileMlirOp compile_op) {
        if (compile_op->getParentOp() == nullptr ||
            !isa<tf_device::LaunchOp>(compile_op->getParentOp()))
          return WalkResult::advance();
        Operation* compile_launch_op = compile_op->getParentOp();
    
        if (compile_launch_op->getBlock() == preprocess_or_launch->getBlock() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        TF::TPUCompilationResultOp compile_op = nullptr;
        for (auto op : func.getRegion().getOps<TF::TPUCompilationResultOp>()) {
          if (compile_op == nullptr) {
            compile_op = op;
          } else {
            ops_to_erase.insert(op);
          }
        }
        // If there's no outside compilation, we can exit early because this isn't
        // a TPU function.
        if (compile_op == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top