Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,071 for compilers (0.22 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

            }
        }
    }
    // end::executables[]
    
    // tag::compiler-args[]
    model {
        binaries {
            all {
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cCompiler.args "-O2"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

    #define TENSORFLOW_COMPILER_JIT_TF_GRAPH_TO_HLO_COMPILER_H_
    
    #include <memory>
    #include <vector>
    
    #include "tensorflow/compiler/jit/tf_to_hlo_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    
    namespace tensorflow {
    
    class TfGraphToHloCompiler : public TfToHloCompiler {
     public:
      TfGraphToHloCompiler() = delete;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. test/fixedbugs/issue7740.go

    // license that can be found in the LICENSE file.
    
    // This test computes the precision of the compiler's internal multiprecision floats.
    
    package main
    
    import (
    	"fmt"
    	"math"
    	"runtime"
    )
    
    const ulp = (1.0 + (2.0 / 3.0)) - (5.0 / 3.0)
    
    func main() {
    	// adjust precision depending on compiler
    	var prec float64
    	switch runtime.Compiler {
    	case "gc":
    		prec = math.Inf(1) // exact precision using rational arithmetic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 25 18:53:24 UTC 2021
    - 736 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

            GccCommandLineToolConfigurationInternal compiler = toolRegistry.getTool(compilerType);
            if (compiler == null) {
                return new ComponentNotFound<GccMetadata>("Tool " + compilerType.getToolName() + " is not available");
            }
            CommandLineToolSearchResult searchResult = toolSearchPath.locate(compiler.getToolType(), compiler.getExecutable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/c/tasks/CCompileTest.groovy

        def platform = Mock(NativePlatformInternal)
        def platformToolChain = Mock(PlatformToolProvider)
        Compiler<CCompileSpec> cCompiler = Mock(Compiler)
        def pch = Mock(PreCompiledHeader)
    
        def setup() {
            cCompile = TestUtil.createTask(CCompile, project)
        }
    
        def "executes using the C Compiler"() {
            def sourceFile = temporaryFolder.createFile("sourceFile")
            def result = Mock(WorkResult)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            return versionAwareCompiler(outputCleaningCompiler);
        }
    
        @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)
  8. buildscripts/cross-compile.sh

    Daniel Jakots <******@****.***> 1702948102 -0500
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 19 01:08:22 UTC 2023
    - 958 bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

        }
    
        def "compiler defines are taken from cpp, c and rc compiler configurations combined"() {
            when:
            cCompiler.macros >> [_c: null]
            cppCompiler.macros >> [foo: "bar", _cpp: null]
            rcCompiler.macros >> [rc: "defined", rc_empty: null]
            exeBinary.getToolByName('cCompiler') >> cCompiler
            exeBinary.getToolByName('cppCompiler') >> cppCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.Compile.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 762 bytes
    - Viewed (0)
Back to top