Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for RES (0.05 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // CHECK-DAG:  %[[CONSTANT0:.*]] = "tfl.pseudo_const"(){{.*}}dense<[2.000000e+00, 4.000000e+00]> : tensor<2xf32>
    // CHECK:  %[[RES:.*]] = "tfl.fully_connected"(%arg0, %[[CONSTANT]], %[[CONSTANT0]]) <{fused_activation_function = "RELU6", keep_num_dims = false, weights_format = "DEFAULT"}>
    // CHECK:  return %[[RES]] : tensor<4x2xf32>
    }
    
    // CHECK-LABEL: @DontFuseMulIntoFullyConnectedForLargeFilter
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	res.Body = http2transportResponseBody{cs}
    
    	if cs.requestedGzip && http2asciiEqualFold(res.Header.Get("Content-Encoding"), "gzip") {
    		res.Header.Del("Content-Encoding")
    		res.Header.Del("Content-Length")
    		res.ContentLength = -1
    		res.Body = &http2gzipReader{body: res.Body}
    		res.Uncompressed = true
    	}
    	return res, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           %[[CST:.*]] = "tf.Const"() <{value = dense<-1> : tensor<i8>}> : () -> tensor<i8>
    // CHECK:           %[[RES:.*]] = "tf.BitwiseXor"(%[[ARG]], %[[CST]]) : (tensor<7x9x11xi8>, tensor<i8>) -> tensor<7x9x11xi8>
    // CHECK:           return %[[RES]] : tensor<7x9x11xi8>
    // CHECK:         }
    func.func @convert_not_i8(%arg0: tensor<7x9x11xi8>) -> tensor<7x9x11xi8> {
    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. src/cmd/compile/internal/ssagen/ssa.go

    	case ir.OAS2DOTTYPE:
    		n := n.(*ir.AssignListStmt)
    		var res, resok *ssa.Value
    		if n.Rhs[0].Op() == ir.ODOTTYPE2 {
    			res, resok = s.dottype(n.Rhs[0].(*ir.TypeAssertExpr), true)
    		} else {
    			res, resok = s.dynamicDottype(n.Rhs[0].(*ir.DynamicTypeAssertExpr), true)
    		}
    		deref := false
    		if !ssa.CanSSA(n.Rhs[0].Type()) {
    			if res.Op != ssa.OpLoad {
    				s.Fatalf("dottype of non-load")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT:   %[[RES:.*]] = func.call @ge_select(%[[ARG0]], %[[ARG1]]){{.*}}
      // CHECK-NEXT:   mhlo.return %[[RES]] : tensor<i1>
      // CHECK-NEXT: },  {
      // CHECK-NEXT: ^{{.*}}(%[[ARG2:.*]]: tensor<bf16>, %[[ARG3:.*]]: tensor<bf16>)
      // CHECK-NEXT:   %[[RES:.*]] = func.call @add_scatter(%[[ARG2]], %[[ARG3]]){{.*}}
      // CHECK-NEXT:   mhlo.return %[[RES]] : tensor<bf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.ptid"/>
      </mime-type>
      <mime-type type="application/vnd.pwg-multiplexed"/>
      <mime-type type="application/vnd.pwg-xhtml-print+xml"/>
      <mime-type type="application/vnd.qualcomm.brew-app-res"/>
      <mime-type type="application/vnd.quark.quarkxpress">
        <glob pattern="*.qxd"/>
        <glob pattern="*.qxt"/>
        <glob pattern="*.qwd"/>
        <glob pattern="*.qwt"/>
        <glob pattern="*.qxl"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  7. doc/go_spec.html

    with the same name as a result parameter is in
    <a href="#Declarations_and_scope">scope</a> at the place of the return.
    </p>
    
    <pre>
    func f(n int) (res int, err error) {
    	if _, err := f(n-1); err != nil {
    		return  // invalid return statement: err is shadowed
    	}
    	return
    }
    </pre>
    
    <h3 id="Break_statements">Break statements</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top