Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for outp (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      }];
    
      let arguments = (ins);
    
      let results = (outs
        Res<TF_Int32Tensor, [{A vector containing the global TPU id of each TPU on the host.}]>:$output
      );
    }
    
    def TF_ShutdownTPUSystemOp : TF_Op<"ShutdownTPUSystem", []> {
      let summary = [{
    An op that shuts down the TPU system.
      }];
    
      let arguments = (ins);
      let results = (outs
        TF_BoolTensor:$success
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        }),
        out = "__init__.py",
    )
    
    genrule(
        name = "virtual_root_init_gen",
        srcs = select({
            "api_version_2": [":virtual_root_template_v2.__init__.py"],
            "//conditions:default": [":virtual_root_template_v1.__init__.py"],
        }),
        outs = ["virtual_root.__init__.py"],
        cmd = "cp $(SRCS) $(OUTS)",
    )
    
    generate_apis(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.play()
    
        // Play it back.
        val connection = connect(peer)
        val client = connection.newStream(headerEntries("b", "banana"), true)
        val out = client.getSink().buffer()
        out.write(EMPTY_BYTE_ARRAY)
        out.flush()
        out.close()
    
        // Verify the peer received what was expected.
        assertThat(peer.takeFrame().type).isEqualTo(Http2.TYPE_HEADERS)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top