Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 85 of 85 for opcode (0.26 sec)

  1. RELEASE.md

                create status using an error code without accessing it.
            *   Use the free functions such as
                `tensorflow::errors::IsInvalidArgument` if needed.
            *   In the last resort, use
                e.g.`static_cast<tensorflow::errors::Code>(error::Code::INVALID_ARGUMENT)`
                or `static_cast<int>(code)` for comparisons.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    <!-- BEGIN MUNGE: GENERATED_TOC -->
    
    - [v1.30.2](#v1302)
      - [Downloads for v1.30.2](#downloads-for-v1302)
        - [Source Code](#source-code)
        - [Client Binaries](#client-binaries)
        - [Server Binaries](#server-binaries)
        - [Node Binaries](#node-binaries)
        - [Container Images](#container-images)
      - [Changelog since v1.30.1](#changelog-since-v1301)
      - [Changes by Kind](#changes-by-kind)
        - [API Change](#api-change)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_DecodeAndCropJpegOp : TF_Op<"DecodeAndCropJpeg", [Pure]> {
      let summary = "Decode and Crop a JPEG-encoded image to a uint8 tensor.";
    
      let description = [{
    The attr `channels` indicates the desired number of color channels for the
    decoded image.
    
    Accepted values are:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    			wantStatus := fmt.Sprintf("%d %s", code, StatusText(code))
    			if !strings.Contains(got, wantStatus) {
    				t.Errorf("Code %d: Wanted %q Modified for %q: %s", code, wantStatus, req, got)
    			} else if strings.Contains(got, "Content-Length") {
    				t.Errorf("Code %d: Got a Content-Length from %q: %s", code, req, got)
    			} else if strings.Contains(got, "stuff") {
    				t.Errorf("Code %d: Response contains a body from %q: %s", code, req, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	// float
    	{types.TFLOAT64, types.TFLOAT32}: {ssa.OpCvt64Fto32F, ssa.OpCopy, types.TFLOAT32},
    	{types.TFLOAT64, types.TFLOAT64}: {ssa.OpRound64F, ssa.OpCopy, types.TFLOAT64},
    	{types.TFLOAT32, types.TFLOAT32}: {ssa.OpRound32F, ssa.OpCopy, types.TFLOAT32},
    	{types.TFLOAT32, types.TFLOAT64}: {ssa.OpCvt32Fto64F, ssa.OpCopy, types.TFLOAT64},
    }
    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