Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,424 for ccompile (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    [[sec:custom_cpp_compile_link]]
    === Changing compiler and linker options
    
    Most of the compiler and linker options are accessible through the corresponding task, such as `compile__Variant__Cpp`, `link__Variant__` and `create__Variant__`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/compile.h

    #include <memory>
    #include <string>
    
    #include "tensorflow/compiler/aot/flags.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.pb.h"
    #include "xla/service/cpu/cpu_compiler.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace tfcompile {
    
    // CompileResult describes the output of CompileGraph, where the object file
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/rc/tasks/WindowsResourceCompile.java

            WorkResult result = doCompile(spec, platformToolProvider);
            setDidWork(result.getDidWork());
        }
    
        private <T extends NativeCompileSpec> WorkResult doCompile(T spec, PlatformToolProvider platformToolProvider) {
            Class<T> specType = Cast.uncheckedCast(spec.getClass());
            Compiler<T> baseCompiler = platformToolProvider.newCompiler(specType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

    import org.gradle.internal.operations.logging.BuildOperationLogger;
    import org.gradle.internal.operations.logging.BuildOperationLoggerFactory;
    import org.gradle.language.base.compile.CompilerVersion;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.language.base.internal.compile.VersionAwareCompiler;
    import org.gradle.language.swift.SwiftVersion;
    import org.gradle.language.swift.tasks.internal.DefaultSwiftCompileSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_compile_util.h

    #ifndef TENSORFLOW_COMPILER_JIT_PJRT_COMPILE_UTIL_H_
    #define TENSORFLOW_COMPILER_JIT_PJRT_COMPILE_UTIL_H_
    
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/pjrt/pjrt_client.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/framework/op_kernel.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    |===
    
    [[sec:scala_compiler_plugins]]
    == Adding plugins to the Scala compiler
    
    The Scala plugin adds a configuration named `scalaCompilerPlugins` which is used to declare and resolve optional compiler plugins.
    
    .Adding a dependency on a Scala compiler plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractPlatformToolProvider.java

        }
    
        protected Compiler<?> createCCompiler() {
            throw unavailableTool("C compiler is not available");
        }
    
        protected Compiler<?> createCPCHCompiler() {
            throw unavailableTool("C pre-compiled header compiler is not available");
        }
    
        protected Compiler<?> createObjectiveCppCompiler() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.td

      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def CompileAndExecuteOp : TensorflowMlrtTpu_Op<"compile_and_execute"> {
      let summary = "tpu compile and execute operation";
      let description = [{
        tf_mlrt_tpu.compile_and_execute compiles a mlir tpu program and executes the compiled tpu program.
    
        $mlir_module is a serialized MLIR module with a `main` function that contains target computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * <p>
         * The source path indicates the location of source files that <i>may</i> be compiled if necessary.
         * It is effectively a complement to the class path, where the classes to be compiled against are in source form.
         * It does <b>not</b> indicate the actual primary source being compiled.
         * <p>
         * The source path feature of the Java compiler is rarely needed for modern builds that use dependency management.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code
        // For example, external JMH plugin generates code that produces compiler warnings
        if (!name.contains("CompileGeneratedClasses")) {
            options.compilerArgs.addAll(strictCompilerArgs)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top