Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Delemental_ir_emitter.cc1378 auto for_small_x = FDiv(numerator, denominator); in EmitLog1p() local
1379 for_small_x = FMul(FMul(x, x_squared), for_small_x); in EmitLog1p()
1380 for_small_x = FAdd(FMul(negative_half, x_squared), for_small_x); in EmitLog1p()
1381 for_small_x = FAdd(x, for_small_x); in EmitLog1p()
1387 return Select(x_is_small, for_small_x, for_large_x); in EmitLog1p()
1436 auto for_small_x = FAdd(x, x_squared_over_two); in EmitExpm1() local
1445 return Select(x_is_small, for_small_x, for_large_x); in EmitExpm1()