Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 944 for crunch (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

        }
    
        if (!devices.has_value()) return WalkResult::advance();
    
        // Map aliased devices to explicit devices based on replica.
        if (auto launch = dyn_cast<tf_device::LaunchOp>(op))
          if (auto device_by_replica = devices.value().get(launch.getDevice()))
            launch->setAttr(
                kDeviceAttr,
                device_by_replica.cast<ArrayAttr>()[replica_id].cast<StringAttr>());
    
        return WalkResult::advance();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/obj.go

    	p = obj.Appendp(p, c.newprog)
    
    	p.As = AJAL
    	p.To.Type = obj.TYPE_BRANCH
    	if c.cursym.CFunc() {
    		p.To.Sym = c.ctxt.Lookup("runtime.morestackc")
    	} else if !c.cursym.Func().Text.From.Sym.NeedCtxt() {
    		p.To.Sym = c.ctxt.Lookup("runtime.morestack_noctxt")
    	} else {
    		p.To.Sym = c.ctxt.Lookup("runtime.morestack")
    	}
    	p.Mark |= BRANCH
    
    	p = c.cursym.Func().UnspillRegisterArgs(p, c.newprog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  3. staging/publishing/rules.yaml

          branch: release-1.27
        - repository: client-go
          branch: release-1.27
        - repository: apiserver
          branch: release-1.27
        - repository: component-base
          branch: release-1.27
        - repository: kms
          branch: release-1.27
        - repository: code-generator
          branch: release-1.27
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/kube-aggregator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/obj0.go

    	E_MCR   = 1 << 2
    	E_MEM   = 1 << 3
    	E_MEMSP = 1 << 4 /* uses offset and size */
    	E_MEMSB = 1 << 5 /* uses offset and size */
    	ANYMEM  = E_MEM | E_MEMSP | E_MEMSB
    	//DELAY = LOAD|BRANCH|FCMP
    	DELAY = BRANCH /* only schedule branch */
    )
    
    type Dep struct {
    	ireg uint32
    	freg uint32
    	cc   uint32
    }
    
    type Sch struct {
    	p       obj.Prog
    	set     Dep
    	used    Dep
    	soffset int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

      // Forward launch inner op results to launch op results.
      launch.replaceAllUsesWith(launch.GetBody().getTerminator()->getOperands());
    
      // For all inner ops, assign the launch device as a `device` attribute.
      if (failed(AssignDevicesInRegion(tf_dialect, launch, launch.getBody())))
        return failure();
    
      // Move all inner ops of the launch to the block containing the launch.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

      // CHECK-NOT: "tf_device.launch"
      // CHECK: "tf.opA"
      "tf.opA"() {device = ""} : () -> tensor<i1>
      func.return
    }
    
    // Tests that an op not in tf dialect (tf_device.launch) with device attribute is not wrapped in `tf_device.launch`.
    // Also tests that a `tf_device.launch` is not rewrapped.
    // CHECK-LABEL: func @non_tf_op
    func.func @non_tf_op() {
      // CHECK: "tf_device.launch"
      // CHECK-NOT "tf_device.launch"
      // CHECK: "tf.opA"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryFlavorsIntegrationTest.groovy

            buildFile << """
    model {
        binaries {
            all {
                if (flavor == flavors.french) {
                    cppCompiler.define "FRENCH"
                }
            }
        }
        components {
            main { targetFlavors "french" }
            hello { targetFlavors "french" }
            greetings { targetFlavors "french" }
        }
    }
    """
            when:
            succeeds "installMainExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. test/opt_branchlikely.go

    	if y == x { // ERROR "Branch prediction rule default < call"
    		y = g(y, z, x)
    	} else {
    	}
    	if y == 2 { // ERROR "Branch prediction rule default < call"
    		z++
    	} else {
    		y = g(z, x, y)
    	}
    	if y+z == 3 { // ERROR "Branch prediction rule call < exit"
    		println("ha ha")
    	} else {
    		panic("help help help")
    	}
    	if x != 0 { // ERROR "Branch prediction rule default < ret"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    # Adding commits to the above branches updates both the branch heads and the
    # corresponding bookmarks.
    # But apparently at some point it did not do so? The original copy of this repo
    # had bookmarks pointing to the base of each branch instead of the tip. 🤔
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import vcsroots.gradlePromotionBranches
    
    class PublishNightlySnapshot(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
        promotedBranch = branch.branchName,
        prepTask = branch.prepNightlyTaskName(),
        promoteTask = branch.promoteNightlyTaskName(),
        triggerName = "ReadyforNightly",
        vcsRootId = gradlePromotionBranches
    ) {
        init {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top