Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,539 for ccompile (0.15 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/cpp/tasks/CppCompile.java

    import org.gradle.language.nativeplatform.tasks.AbstractNativeSourceCompileTask;
    import org.gradle.nativeplatform.toolchain.internal.NativeCompileSpec;
    
    /**
     * Compiles C++ source files into object files.
     */
    @CacheableTask
    public abstract class CppCompile extends AbstractNativeSourceCompileTask {
        @Override
        protected NativeCompileSpec createCompileSpec() {
            return new DefaultCppCompileSpec();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/CCompiler.java

    import org.gradle.nativeplatform.toolchain.internal.CommandLineToolInvocationWorker;
    import org.gradle.nativeplatform.toolchain.internal.compilespec.CCompileSpec;
    
    class CCompiler extends GccCompatibleNativeCompiler<CCompileSpec> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	"sort"
    	"strings"
    	"time"
    )
    
    // Compile is the main entry point for this package.
    // Compile modifies f so that on return:
    //   - all Values in f map to 0 or 1 assembly instructions of the target architecture
    //   - the order of f.Blocks is the order to emit the Blocks
    //   - the order of b.Values is the order to emit the Values in each Block
    //   - f has a non-nil regAlloc field
    func Compile(f *Func) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler.h

    #include "absl/types/span.h"
    #include "tensorflow/compiler/jit/device_compilation_cache.h"
    #include "tensorflow/compiler/jit/device_compilation_cluster_signature.h"
    #include "tensorflow/compiler/jit/device_compilation_profiler.h"
    #include "tensorflow/compiler/jit/device_compiler_client.h"
    #include "tensorflow/compiler/jit/device_executable_persistor.h"
    #include "tensorflow/compiler/jit/flags.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. tools/go-compile-verbose

    # This script runs can be used to emit (readable) compile tracing info when building go packages
    
    # Before usage, `go clean -cache` is suggested, otherwise you will measure cached results.
    # Cleanup: rm -f /tmp/golog; This will always append to the file so you should cleanup between each call.
    # Usage (compile all tests only): `go test -exec=true -toolexec=$PWD/tools/go-compile-verbose ./...`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

        }
    
        @Override
        protected Compiler<CCompileSpec> createCCompiler() {
            CommandLineToolInvocationWorker commandLineTool = tool("C compiler", visualCpp.getCompilerExecutable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeSourceCompileTask.java

    import org.gradle.api.Task;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.Optional;
    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.nativeplatform.internal.incremental.sourceparser.RegexBackedCSourceParser;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top