issue update

This commit is contained in:
saishruthi 2019-06-17 13:54:05 -07:00
parent 6715c7e625
commit 7fc71251d9
6 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
op {
graph_op_name: "Cos"
summary: "Computes cos of x element-wise."
description: << END
description: <<END
Given an input tensor, this function computes cosine of every
element in the tensor. Input range is `(-inf, inf)` and
output range is `[-1,1]`. If input lies outside the boundary, `nan`

View File

@ -1,7 +1,7 @@
op {
graph_op_name: "Cosh"
summary: "Computes hyperbolic cosine of x element-wise."
description: << END
description: <<END
Given an input tensor, this function computes hyperbolic cosine of every
element in the tensor. Input range is `[-inf, inf]` and output range
is `[1, inf]`.

View File

@ -1,7 +1,7 @@
op {
graph_op_name: "Sin"
summary: "Computes sine of x element-wise."
description: << END
description: <<END
Given an input tensor, this function computes sine of every
element in the tensor. Input range is `(-inf, inf)` and
output range is `[-1,1]`.

View File

@ -1,7 +1,7 @@
op {
graph_op_name: "Sinh"
summary: "Computes hyperbolic sine of x element-wise."
description: << END
description: <<END
Given an input tensor, this function computes hyperbolic sine of every
element in the tensor. Input range is `[-inf,inf]` and output range
is `[-inf,inf]`.

View File

@ -1,7 +1,7 @@
op {
graph_op_name: "Tan"
summary: "Computes tan of x element-wise."
description: << END
description: <<END
Given an input tensor, this function computes tangent of every
element in the tensor. Input range is `(-inf, inf)` and
output range is `(-inf, inf)`. If input lies outside the boundary, `nan`

View File

@ -1,7 +1,7 @@
op {
graph_op_name: "Tanh"
summary: "Computes hyperbolic tangent of `x` element-wise."
description: << END
description: <<END
Given an input tensor, this function computes hyperbolic tangent of every
element in the tensor. Input range is `[-inf, inf]` and
output range is `[-1,1]`.