Home
last modified time | relevance | path

Searched refs:GetConstantFloat (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dvector_support_library.h56 return Mul(GetConstantFloat(rhs->getType(), lhs), rhs); in Mul()
69 return Add(GetConstantFloat(rhs->getType(), lhs), rhs); in Add()
79 return Sub(lhs, GetConstantFloat(lhs->getType(), rhs)); in Sub()
83 return Max(GetConstantFloat(rhs->getType(), lhs), rhs); in Max()
92 return Add(GetConstantFloat(vector_type(), c), Mul(a, b)); in MulAdd()
97 return Add(GetConstantFloat(a->getType(), c), in MulAdd()
98 Mul(a, GetConstantFloat(a->getType(), b))); in MulAdd()
106 return GetConstantFloat(vector_type(), d); in SplatFloat()
118 return FCmpEQMask(lhs, GetConstantFloat(lhs->getType(), rhs)); in FCmpEQMask()
123 return FCmpOLTMask(lhs, GetConstantFloat(lhs->getType(), rhs)); in FCmpOLTMask()
[all …]
Dvector_support_library.cc115 llvm_ir::EmitFloatMax(a, GetConstantFloat(type, low), b_), in Clamp()
116 GetConstantFloat(type, high), b_); in Clamp()