Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 5,029 for cCompiler (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/BUILD

            ":llvm_targets",  # fixdeps: keep
            "//tensorflow/compiler/tf2xla",
            "//tensorflow/compiler/tf2xla:mlir_tf2xla",
            "//tensorflow/compiler/tf2xla:tf2xla_proto_cc",
            "//tensorflow/compiler/tf2xla:tf2xla_util",
            "//tensorflow/compiler/tf2xla:xla_compiler",
            "//tensorflow/compiler/tf2xla/kernels:xla_dummy_ops",
            "//tensorflow/compiler/tf2xla/kernels:xla_ops",
            "//tensorflow/core:core_cpu_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    		}
    	}
    
    	if runtime.Compiler != "gccgo" {
    		if goroot == "" {
    			build.ToolDir = ""
    		} else {
    			// Note that we must use the installed OS and arch here: the tool
    			// directory does not move based on environment variables, and even if we
    			// are testing a cross-compiled cmd/go all of the installed packages and
    			// tools would have been built using the native compiler and linker (and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompilerTest.groovy

        def delegateCompiler = Mock(Compiler)
        def outputs = Mock(TaskOutputsInternal)
        def compileStateCache = Mock(ObjectHolder)
        def incrementalCompilation = Mock(IncrementalCompilation)
        def deleter = TestFiles.deleter()
        def compiler = new IncrementalNativeCompiler(outputs, delegateCompiler, deleter, compileStateCache, incrementalCompilation)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/internal/bootstrap_test/experiment_toolid_test.go

    	runCmd(t, gorootSrc, env, makeScriptPath)
    
    	// Verify compiler version string.
    	goCmdPath := filepath.Join(goroot, "bin", "go")
    	gotVersion := bytes.TrimSpace(runCmd(t, gorootSrc, env, goCmdPath, "tool", "compile", "-V=full"))
    	wantVersion := []byte(`compile version go1.999`)
    	if !bytes.Equal(gotVersion, wantVersion) {
    		t.Errorf("compile version without experiment is unexpected:\ngot  %q\nwant %q", gotVersion, wantVersion)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 18:47:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivec/tasks/ObjectiveCPreCompiledHeaderCompileTest.groovy

        def platform = Mock(NativePlatformInternal)
        def platformToolChain = Mock(PlatformToolProvider)
        Compiler<ObjectiveCPCHCompileSpec> objCPCHCompiler = Mock(Compiler)
    
        def setup() {
            objCPCHCompile = TestUtil.createTask(ObjectiveCPreCompiledHeaderCompile, project)
        }
    
        def "executes using the C PCH 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.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #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_n_z.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/parallel_execute_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_cache_link.txt

    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building a main package should run the compiler and linker ...
    go build -o $devnull -x main.go
    stderr '(compile|gccgo)( |\.exe).*main\.go'
    stderr '(link|gccgo)( |\.exe)'
    
    # ... and then the linker again ...
    go build -o $devnull -x main.go
    ! stderr '(compile|gccgo)( |\.exe).*main\.go'
    stderr '(link|gccgo)( |\.exe)'
    
    # ... but the output binary can serve as a cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 21:00:48 UTC 2019
    - 644 bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonReuseIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.java.compile.daemon
    
    import org.gradle.api.internal.tasks.execution.ExecuteTaskBuildOperationType
    import org.gradle.api.tasks.compile.AbstractCompilerDaemonReuseIntegrationTest
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.JavaAgentFixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/gcflags_patterns.txt

    go build -a -n -v -gcflags=-e z1 z2
    stderr 'compile.* -p z1.* -e '
    stderr 'compile.* -p z2.* -e '
    stderr 'compile.* -p y'
    ! stderr 'compile.* -p [^z].* -e '
    
    # -gcflags can specify package=flags, and can be repeated; last match wins
    go build -a -n -v -gcflags=-e -gcflags=z1=-N z1 z2
    stderr 'compile.* -p z1.* -N '
    ! stderr 'compile.* -p z1.* -e '
    ! stderr 'compile.* -p z2.* -N '
    stderr 'compile.* -p z2.* -e '
    stderr 'compile.* -p y'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top