Home
last modified time | relevance | path

Searched refs:FloatAnd (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dllvm_ir_runtime.cc226 tmp0 = vsl.FloatAnd(tmp0, inv_mant_mask); in GenerateVF32Log()
238 llvm::Value* tmp1 = vsl.FloatAnd(tmp0, mask); in GenerateVF32Log()
240 e = vsl.Sub(e, vsl.FloatAnd(mask, one)); in GenerateVF32Log()
266 llvm::Value* result_inf = vsl.FloatOr(vsl.FloatAnd(is_zero_mask, minus_inf), in GenerateVF32Log()
267 vsl.FloatAnd(is_pos_inf_mask, pos_inf)); in GenerateVF32Log()
Dvector_support_library.h130 llvm::Value* FloatAnd(llvm::Value* lhs, llvm::Value* rhs);
131 llvm::Value* FloatAnd(llvm::Value* lhs, const llvm::APFloat& rhs) { in FloatAnd() function
132 return FloatAnd(lhs, GetConstantFloat(lhs->getType(), rhs)); in FloatAnd()
140 return FloatAnd(FloatNot(lhs), rhs); in FloatAndNot()
Dvector_support_library.cc162 llvm::Value* VectorSupportLibrary::FloatAnd(llvm::Value* lhs, in FloatAnd() function in xla::cpu::VectorSupportLibrary