Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for crunch (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // CHECK: %[[COMPILE_OUTPUT:[0-9]*]]:3 = "tf_device.launch"
        // CHECK-NEXT: "tf._TPUCompileMlir"()
        // CHECK: "tf_device.launch"
        // CHECK: "tf.TPUCompileSucceededAssert"(%[[COMPILE_OUTPUT]]#0)
        // CHECK: [[PARALLEL_EXECUTE_OUTPUT:[0-9]*]]:2 = "tf_device.parallel_execute"
        // CHECK: "tf_device.launch"() <{device = "/job:worker/replica:0/task:0/device:TPU:0"}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

      func.func @nodep_multiple_outside_compilation() -> () {
         // CHECK:      "tf_device.parallel_execute"
         // CHECK:      "tf_device.launch"
         // CHECK:        "tf.B"
         // CHECK-NEXT:   "tf.D"
         // CHECK-NOT   "tf_device.launch"
         // CHECK: "tf_device.cluster"
        "tf_device.cluster"() ({
          "tf.A"() : () -> ()
          "tf.B"() {_xla_outside_compilation = "cluster1"} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	op_BCR     uint32 = 0x0700 // FORMAT_RR         BRANCH ON CONDITION
    	op_BCT     uint32 = 0x4600 // FORMAT_RX1        BRANCH ON COUNT (32)
    	op_BCTG    uint32 = 0xE346 // FORMAT_RXY1       BRANCH ON COUNT (64)
    	op_BCTGR   uint32 = 0xB946 // FORMAT_RRE        BRANCH ON COUNT (64)
    	op_BCTR    uint32 = 0x0600 // FORMAT_RR         BRANCH ON COUNT (32)
    	op_BPP     uint32 = 0xC700 // FORMAT_SMI        BRANCH PREDICTION PRELOAD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    }
    
    func markPodReady(pod *v1.Pod) {
    	condition := v1.PodCondition{Type: v1.PodReady, Status: v1.ConditionTrue}
    	podutil.UpdatePodCondition(&pod.Status, &condition)
    }
    
    // DaemonSets without node selectors should launch pods on every node.
    func TestSimpleDaemonSetLaunchesPods(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def LaunchOutliningPass : Pass<"tf-device-launch-outlining", "ModuleOp"> {
      let summary = "Outlines regions of tf_device.launch operations";
    
      let description = [{
        This pass outlines the body of a `tf_device.launch` into a function and
        replaces the `tf_device.launch` op with an equivalent `tf_device.launch_func`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      for (const auto& branch : llvm::enumerate(branches)) {
        auto branch_func = symbol_table.lookupNearestSymbolFrom<func::FuncOp>(
            op, mlir::cast<SymbolRefAttr>(branch.value()));
        if (!branch_func)
          return op->emitOpError()
                 << "expects " << branch_name(branch.index()) << " ("
                 << branch.value() << ") to point to a defined function";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        Node* arg_node) {
      Node* lifted_arg_node = lifted_arg_nodes[arg_idx - original_arg_count];
      // This might happen because lifted_arg_node only exists in one branch of an
      // If node, and we are handling the other branch.
      if (!lifted_arg_node) {
        return;
      }
    
      for (const Edge* e : lifted_arg_node->out_edges()) {
        if (e->IsControlEdge()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"chopsticks":                           "\U0001f962",
    	"christmas_island":                     "\U0001f1e8\U0001f1fd",
    	"christmas_tree":                       "\U0001f384",
    	"church":                               "\u26ea",
    	"cinema":                               "\U0001f3a6",
    	"circus_tent":                          "\U0001f3aa",
    	"city_sunrise":                         "\U0001f307",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    					invertible := false
    
    					if bo&0x14 == 0x14 {
    						// A conditional branch that is unconditionally taken. This cannot be inverted.
    					} else if bo&0x10 == 0x10 {
    						// A branch based on the value of CTR. Invert the CTR comparison against zero bit.
    						bo ^= 0x2
    						invertible = true
    					} else if bo&0x04 == 0x04 {
    						// A branch based on CR bit. Invert the BI comparison bit.
    						bo ^= 0x8
    						invertible = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

        }) { is_stateless = false} : (tensor<i1>) -> tensor<2xf32>
    
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // value generated in one branch cannot be consumed in the other branch
    func.func @testIfRegionElseConsumingThen(%arg0: tensor<i1>, %arg1: tensor<2xf32>) -> tensor<2xf32> {
      %0 = "tf.IfRegion"(%arg0) ({
         %t = "tf.Acos"(%arg1) : (tensor<2xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top