tf.contrib.rpc.try_rpc(
address,
method,
request,
protocol='',
fail_fast=True,
timeout_in_ms=0,
name=None
)
Defined in generated file: tensorflow/contrib/rpc/python/ops/gen_rpc_op.py
.
TODO: add doc.
Args:
address
: ATensor
of typestring
.method
: ATensor
of typestring
.request
: ATensor
of typestring
.protocol
: An optionalstring
. Defaults to""
.fail_fast
: An optionalbool
. Defaults toTrue
.timeout_in_ms
: An optionalint
. Defaults to0
.name
: A name for the operation (optional).
Returns:
A tuple of Tensor
objects (response, status_code, status_message).
response
: ATensor
of typestring
.status_code
: ATensor
of typeint32
.status_message
: ATensor
of typestring
.