aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/client/lib/arithmetic.h
diff options
context:
space:
mode:
authorGravatar Gunhan Gulsoy <gunan@google.com>2018-07-02 10:09:16 -0700
committerGravatar Gunhan Gulsoy <gunan@google.com>2018-07-02 10:09:16 -0700
commite35d9ae50c5bb9ebc6e8e52ab937410fba2030fd (patch)
tree8fbadbee72dba3cdf4b94fa16d6878fb4e5b3fde /tensorflow/compiler/xla/client/lib/arithmetic.h
parenta7b7aa856f34bf2e44fbeb91d817742c61483618 (diff)
parent28b8525b417d5b0a1d0a4905e5e3237ef5b502ef (diff)
Merge commit for internal changes
Diffstat (limited to 'tensorflow/compiler/xla/client/lib/arithmetic.h')
-rw-r--r--tensorflow/compiler/xla/client/lib/arithmetic.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/tensorflow/compiler/xla/client/lib/arithmetic.h b/tensorflow/compiler/xla/client/lib/arithmetic.h
index d0e04bbb5e..d0b916e8c8 100644
--- a/tensorflow/compiler/xla/client/lib/arithmetic.h
+++ b/tensorflow/compiler/xla/client/lib/arithmetic.h
@@ -55,21 +55,6 @@ XlaComputation CreateScalarOrComputation(XlaBuilder* builder);
// Note: if predicates is zero-sized, Any() vacuously returns false.
XlaOp Any(XlaOp predicates);
-// Evaluate the polynomial given coefficients and `x`.
-// N.B. Coefficients should be supplied in decreasing order.
-XlaOp EvaluatePolynomial(XlaOp x,
- tensorflow::gtl::ArraySlice<float> coefficients,
- PrimitiveType data_type);
-
-// Compute an approximation of the error function complement (1 - erf(x)).
-XlaOp Erfc(XlaOp x, PrimitiveType data_type);
-
-// Compute an approximation of the error function.
-XlaOp Erf(XlaOp x, PrimitiveType data_type);
-
-// Compute an approximation of the inverse of the error function.
-XlaOp ErfInv(XlaOp x);
-
} // namespace xla
#endif // TENSORFLOW_COMPILER_XLA_CLIENT_LIB_ARITHMETIC_H_