log10 function

VARP log10(
  1. VARP x
)

Implementation

VARP log10(VARP x) => F.log(x) / F.log(F.scalar<float32>(10, dtype: x.dtype));