Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for yield4x (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (return_op == nullptr) continue;
    
        rewriter.setInsertionPoint(return_op);
        rewriter.replaceOpWithNewOp<TF::YieldOp>(return_op,
                                                 return_op->getOperands());
      }
    }
    
    // If `value` is a splat constant, returns a success and set `splat_value`
    // to the splate constant value.
    // `SplatValueType` can be `APInt` or `APFloat`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

            "tf.Yield"() : () -> ()
          }, {
            "tf.Yield"() : () -> ()
          }) {is_stateless = false, device = "/device:CPU:0"} : (tensor<i1>) -> ()
          tf_device.return
        }) : () -> ()
        func.return
      }
      func.func @empty_func() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    				}
    			}
    		})
    	}
    }
    
    // These are test cases for StrategicMergePatch, to assert that applying  a patch
    // yields the correct outcome. They are also test cases for CreateTwoWayMergePatch
    // and CreateThreeWayMergePatch, to assert that they both generate the correct patch
    // for the given set of input documents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    			kv.SetIterKey(iter)
    			seenk ^= kv.Uint()
    			kv.SetIterValue(iter)
    			seenv ^= kv.Uint()
    		}
    		if seenk != 0b111 {
    			t.Errorf("iteration yielded keys %b, want %b", seenk, 0b111)
    		}
    		if seenv != 0b1110 {
    			t.Errorf("iteration yielded values %b, want %b", seenv, 0b1110)
    		}
    	}
    
    	// Reset should not allocate.
    	n := int(testing.AllocsPerRun(10, func() {
    		iter.Reset(ValueOf(m2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                      << "` has resource operands/results but effects not modelled";
            }
          }
        }
      }
    
      // Add the terminator for the island
      island_builder.create<mlir::tf_executor::YieldOp>(result.location,
                                                        inner_op->getResults());
      return island.getOperation();
    }
    
    Status ImporterBase::ConvertNode(const Node& node) {
      if (!node.IsOp()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	case *body:
    		v.registerOnHitEOF(fn)
    	default:
    		panic("unexpected type " + fmt.Sprintf("%T", rc))
    	}
    }
    
    // requestBodyRemains reports whether future calls to Read
    // on rc might yield more data.
    func requestBodyRemains(rc io.ReadCloser) bool {
    	if rc == NoBody {
    		return false
    	}
    	switch v := rc.(type) {
    	case *expectContinueReader:
    		return requestBodyRemains(v.readCloser)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top