Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 5,029 for cCompiler (0.89 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    //
    //   XLAs `mhlo.transpose` operation requires permutation to be an attribute
    //   (compile time value), so it means that if we want to put `tf.Transpose`
    //   into a cluster that will be compiled with XLA, the `%perm` operand must
    //   be a known compiled time value, e.g. result of a `tf.Const` operation.
    //
    class ClusteringPolicy {
     public:
      virtual ~ClusteringPolicy() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue22327.go

    // compile
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Using a multi-result function as an argument to
    // append should compile successfully. Previously there
    // was a missing *int -> interface{} conversion that caused
    // the compiler to ICE.
    
    package p
    
    func f() ([]interface{}, *int) {
    	return nil, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 22 17:30:57 UTC 2018
    - 448 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/SystemPathVersionLocatorTest.groovy

            def vsDir = tmpDir.createDir("vs")
            def compiler = vsDir.file("cl.exe")
    
            when:
            List<VisualStudioInstallCandidate> metadata = locator.getVisualStudioInstalls()
    
            then:
            1 * os.findInPath("cl.exe") >> compiler
            1 * versionDeterminer.getVisualStudioMetadataFromCompiler(compiler) >> vsMetadata(vsDir, "15.0")
    
            and:
            metadata.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/run/run.go

    cross-compiled programs when a simulator or other execution method is
    available.
    
    By default, 'go run' compiles the binary without generating the information
    used by debuggers, to reduce build time. To include debugger information in
    the binary, use 'go build'.
    
    The exit status of Run is not the exit status of the compiled binary.
    
    For more about build flags, see 'go help build'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/compile/CompilerVersion.java

     */
    
    package org.gradle.language.base.compile;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.NonNullApi;
    import org.gradle.api.tasks.Input;
    
    /**
     * Version of a compiler.
     *
     * @since 4.4
     */
    @Incubating
    @NonNullApi
    public interface CompilerVersion {
    
        /**
         * Returns the type of the compiler.
         */
        @Input
        String getType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_cache_compile.txt

    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building trivial non-main package should run compiler the first time.
    go build -x lib.go
    stderr '(compile|gccgo)( |\.exe).*lib\.go'
    
    # ... but not again ...
    go build -x lib.go
    ! stderr '(compile|gccgo)( |\.exe).*lib\.go'
    
    # ... unless we use -a.
    go build -a -x lib.go
    stderr '(compile|gccgo)( |\.exe)'
    
    -- lib.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 430 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

            scriptCompiles*.displayName == relativePaths(
                "Compile initialization script 'init.gradle' (CLASSPATH)",
                "Compile initialization script 'init.gradle' (BODY)",
                "Compile settings file 'settings.gradle' (CLASSPATH)",
                "Compile settings file 'settings.gradle' (BODY)",
                "Compile build file 'build.gradle' (CLASSPATH)",
                "Compile build file 'build.gradle' (BODY)",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

            failure.assertHasCause("Swift compiler version '${toolChain.version}' doesn't support Swift language version '${SwiftVersion.SWIFT3.version}'")
        }
    
        @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC_3)
        @ToBeFixedForConfigurationCache
        def "can compile Swift 3 component on Swift 3 compiler"() {
            given:
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. test/fixedbugs/bug411.go

    // compile
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 2588.  Used to trigger internal compiler error on 8g,
    // because the compiler tried to registerize the int64 being
    // used as a memory operand of a int64->float64 move.
    
    package p
    
    func f1(a int64) {
    	f2(float64(a), float64(a))
    }
    
    func f2(a,b float64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top