Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for 0$ (0.1 sec)

  1. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %43 = "tf.StridedSlice"(%36#1, %15, %5, %16) {begin_mask = 1 : i64, device = "", ellipsis_mask = 0 : i64, end_mask = 0 : i64, new_axis_mask = 0 : i64, shrink_axis_mask = 0 : i64} : (tensor<?xi64>, tensor<1xi32>, tensor<1xi32>, tensor<1xi32>)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		}
    		v_2_0_0 := v_2_0.Args[0]
    		if v_2_0_0.Op != OpPPC64MOVDconst || auxIntToInt64(v_2_0_0.AuxInt) != 0 {
    			break
    		}
    		v.reset(OpPPC64ADDC)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (ADDE (MOVDconst [0]) y c)
    	// result: (ADDZE y c)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpPPC64MOVDconst || auxIntToInt64(v_0.AuxInt) != 0 {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    func.func @broadcast_shift_left(%arg0: tensor<1xi32>, %arg1: tensor<4xi32>) -> (tensor<4xi32>, tensor<4xi32>) {
      %0 = "mhlo.broadcast_in_dim"(%arg0) <{broadcast_dimensions = dense<[0]> : tensor<1xi64>}> : (tensor<1xi32>) -> tensor<4xi32>
      %1 = mhlo.shift_left %0, %arg1 : tensor<4xi32>
      %2 = mhlo.shift_left %arg1, %0 : tensor<4xi32>
      func.return %1, %2 : tensor<4xi32>, tensor<4xi32>
    }
    
    // CHECK-LABEL:   func @div_dynamic(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      func.return %0: tensor<2xi32>
    }
    
    // -----
    
    // CHECK-LABEL: @const_dynamic_output
    func.func @const_dynamic_output() -> tensor<*xi32> {
      // CHECK: [[CONST:%.*]] = mhlo.constant dense<0> : tensor<2xi32>
      // CHECK: [[CAST:%.*]] = tensor.cast [[CONST]] : tensor<2xi32> to tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %q = "tfl.quantize"(%w) {qtype = tensor<3x3x3x3x!quant.uniform<i8<-127:127>:f32:0,{1.0,2.0,3.0}>>} : (tensor<3x3x3x3xf32>) -> tensor<3x3x3x3x!quant.uniform<i8<-127:127>:f32:0,{1.0,2.0,3.0}>>
      %dq = "tfl.dequantize"(%q) : (tensor<3x3x3x3x!quant.uniform<i8<-127:127>:f32:0,{1.0,2.0,3.0}>>) -> tensor<3x3x3x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    `.charCodeAt(0),wr=" ".charCodeAt(0),Mi="\f".charCodeAt(0),Bi="	".charCodeAt(0),Fi="\r".charCodeAt(0),m0="[".charCodeAt(0),g0="]".charCodeAt(0),y0="(".charCodeAt(0),w0=")".charCodeAt(0),b0="{".charCodeAt(0),v0="}".charCodeAt(0),x0=";".charCodeAt(0),k0="*".charCodeAt(0),S0=":".charCodeAt(0),C0="@".charCodeAt(0),Li=/[\t\n\f\r "#'()/;[\\\]{}]/g,Ni=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,A0=/.[\n"'(/\\]/,If=/[\da-f]/i;qf.exports=function(e,t={}){let r=e.css.valueOf(),n=t.ignoreErr...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if len(pod.Status.HostIPs) == 0 {
    		return allErrs
    	}
    
    	hostIPsField := field.NewPath("status", "hostIPs")
    
    	// hostIP must be equal to hostIPs[0].IP
    	if pod.Status.HostIP != pod.Status.HostIPs[0].IP {
    		allErrs = append(allErrs, field.Invalid(hostIPsField.Index(0).Child("ip"), pod.Status.HostIPs[0].IP, "must be equal to `hostIP`"))
    	}
    
    	// all HostPs must be valid IPs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	}
    	if vv := req.Header["Transfer-Encoding"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && vv[0] != "chunked") {
    		return fmt.Errorf("http2: invalid Transfer-Encoding request header: %q", vv)
    	}
    	if vv := req.Header["Connection"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && !http2asciiEqualFold(vv[0], "close") && !http2asciiEqualFold(vv[0], "keep-alive")) {
    		return fmt.Errorf("http2: invalid Connection request header: %q", vv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      auto shape_x = x_rankless.getShape();
      auto shape_y = y_rankless.getShape();
    
      int rank_diff = shape_x.size() - shape_y.size();
      int offset_x = rank_diff > 0 ? rank_diff : 0;
      int offset_y = rank_diff < 0 ? -rank_diff : 0;
      for (int i = 0, s = std::min(shape_x.size(), shape_y.size()); i < s; i++) {
        int index_x = i + offset_x;
        int index_y = i + offset_y;
        if ((shape_x[index_x] == -1 && shape_y[index_y] != 1) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		case 1:
    			return s.constInt8(t, 0)
    		case 2:
    			return s.constInt16(t, 0)
    		case 4:
    			return s.constInt32(t, 0)
    		case 8:
    			return s.constInt64(t, 0)
    		default:
    			s.Fatalf("bad sized integer type %v", t)
    		}
    	case t.IsFloat():
    		switch t.Size() {
    		case 4:
    			return s.constFloat32(t, 0)
    		case 8:
    			return s.constFloat64(t, 0)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top