Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 284 for Compilation (0.19 sec)

  1. src/cmd/link/internal/ld/pcln.go

    		}
    		funcs = append(funcs, s)
    		state.nfunc++
    		if state.firstFunc == 0 {
    			state.firstFunc = s
    		}
    		state.lastFunc = s
    
    		// We need to keep track of all compilation units we see. Some symbols
    		// (eg, go.buildid, _cgoexp_, etc) won't have a compilation unit.
    		cu := ldr.SymUnit(s)
    		if _, ok := seenCUs[cu]; cu != nil && !ok {
    			seenCUs[cu] = struct{}{}
    			cu.PclnIndex = len(compUnits)
    			compUnits = append(compUnits, cu)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    fmt.Printf format strings.
    
    A "modular" analysis is one that inspects one package at a time but can
    save information from a lower-level package and use it when inspecting a
    higher-level package, analogous to separate compilation in a toolchain.
    The printf checker is modular: when it discovers that a function such as
    log.Fatalf delegates to fmt.Printf, it records this fact, and checks
    calls to that function too, including calls made from another package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/dwarf.go

    	// linker, we need to reset the state machine that controls the
    	// debug symbols. Do this using an end-of-sequence operator.
    	//
    	// Note: at one point in time, Delve did not support multiple end
    	// sequence ops within a compilation unit (bug for this:
    	// https://github.com/go-delve/delve/issues/1694), however the bug
    	// has since been fixed (Oct 2019).
    	//
    	// Issue 38192: the DWARF standard specifies that when you issue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    `compile__Variant__Swift` (e.g. `compileDebugSwift` and `compileReleaseSwift`)  - link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html[SwiftCompile]::
    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles Swift source files using the selected compiler.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      // Parse the original compile metadata.
      Operation& compile = compile_launch.GetBody().front();
      auto metadata_str = compile.getAttrOfType<StringAttr>("metadata");
      assert(metadata_str && "Missing compilation metadata");
      tensorflow::tpu::TPUCompileMetadataProto metadata;
      metadata.ParseFromString(std::string(metadata_str.getValue()));
      int64_t num_replicas = replicate.getN();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

        }
    
        @Issue("GRADLE-2973")
        @Requires(IntegTestPreconditions.IsParallelExecutor)
        @ToBeFixedForConfigurationCache
        def "releases cache lock when compilation fails with --parallel"() {
            def helloWorldApp = new CppHelloWorldApp()
            given:
            settingsFile << "include ':a', ':b'"
            buildFile << """
    subprojects {
        apply plugin: 'cpp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

                            }
                       }
                   }
               }
            }""".stripMargin()
    
            expect:
            fails ":test"
            failure.assertHasCause("Compilation failed; see the compiler error output for details.")
        }
    
        def "can toggle framework multiple times on default test task directly, outside of default test suite"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

      }
      return variable_snapshots;
    }
    
    class PjRtExecutionUtilGpuTest : public OpsTestBase {
     public:
      PjRtExecutionUtilGpuTest() {
        // Set flag to use PJRT for device compilation and execution.
        auto& rollout_config = GetXlaOpsCommonFlags()->tf_xla_use_device_api;
        rollout_config.enabled_for_xla_launch_ = true;
        rollout_config.enabled_for_compile_on_demand_ = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. src/debug/dwarf/type.go

    // types section.
    type typeReader interface {
    	Seek(Offset)
    	Next() (*Entry, error)
    	clone() typeReader
    	offset() Offset
    	// AddressSize returns the size in bytes of addresses in the current
    	// compilation unit.
    	AddressSize() int
    }
    
    // Type reads the type at off in the DWARF “info” section.
    func (d *Data) Type(off Offset) (Type, error) {
    	return d.readType("info", d.Reader(), off, d.typeCache, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    using mlir::PassManager;
    using mlir::func::FuncOp;
    
    namespace {
    
    void CreateReplicatedBridgePipelineV1(OpPassManager &pm) {
      pm.addPass(mlir::tf2xla::internal::CreateInferenceMetricsPass());
    
      // Convert to unified compilation and replication attributes.
      pm.addNestedPass<FuncOp>(
          mlir::TF::CreateCanonicalizeCompileAndReplicateAttributesPass());
      // Guarantee all functions have one use, which enables more exact shape
      // inference.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top