fix the formula of floor OP and ceil OP (#25292)

fix_copy_if_different
WuHaobo 5 years ago committed by GitHub
parent fc0da42b73
commit f593c3fb2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -225,14 +225,14 @@ $$out = |x|$$
UNUSED constexpr char CeilDoc[] = R"DOC(
Ceil Operator. Computes ceil of x element-wise.
$$out = \left \lceil x \right \rceil$$
$$out = \\left \\lceil x \\right \\rceil$$
)DOC";
UNUSED constexpr char FloorDoc[] = R"DOC(
Floor Activation Operator.
Floor Activation Operator. Computes floor of x element-wise.
$$out = \left \lfloor x \right \rfloor$$
$$out = \\left \\lfloor x \\right \\rfloor$$
)DOC";

Loading…
Cancel
Save