aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_EnsureShape.pbtxt
blob: 1658472209422d320d9b8f9d413f4c99dac604c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
op {
  graph_op_name: "EnsureShape"
  in_arg {
  name: "input"
  description: <<END
A tensor, whose shape is to be validated.
END
  }
  out_arg {
    name: "output"
    description: <<END
A tensor with the same shape and contents as the input tensor or value.
END
  }
  attr {
    name: "shape"
    description: <<END
The expected (possibly partially specified) shape of the input tensor.
END
  }
  summary: "Ensures that the tensor's shape matches the expected shape."
  description: <<END
Raises an error if the input tensor's shape does not match the specified shape.
Returns the input tensor otherwise.
END
}