MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Atan

Function Atan

tensorflow/compiler/xla/client/lib/math.cc:1131–1131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1129}
1130
1131XlaOp Atan(XlaOp x) { return Atan2(x, ScalarLike(x, 1.0)); }
1132
1133XlaOp Tan(XlaOp x) {
1134 return DoWithUpcastToF32(x, {F16}, [](XlaOp x) { return Sin(x) / Cos(x); });

Callers 3

unary_ops.ccFile · 0.50
TEST_FFunction · 0.50
TestCWiseGradMethod · 0.50

Calls 2

ScalarLikeFunction · 0.85
Atan2Function · 0.50

Tested by 2

TEST_FFunction · 0.40
TestCWiseGradMethod · 0.40