Input: 16bit unsigned integer.
Output: Q8.8. fixed point (log2 accurate to +- 0.005).
Execution time: 2.13us - 12.38us
How it works:
1) Integer part "n" of log2 is the rank of the highest set bit. A fast table lokup is used.
2) Fractional part: The input is normalized to (1 + x) where 0 <= x < 1. This is done dividing by 2^n (shifted right n times, input extended to 24 bits).
Te least significant bits are the index for the second LUT containing the precalculated log2(1 + x).
log_2_table_8bit_asm.zip
Output: Q8.8. fixed point (log2 accurate to +- 0.005).
Execution time: 2.13us - 12.38us
How it works:
1) Integer part "n" of log2 is the rank of the highest set bit. A fast table lokup is used.
2) Fractional part: The input is normalized to (1 + x) where 0 <= x < 1. This is done dividing by 2^n (shifted right n times, input extended to 24 bits).
Te least significant bits are the index for the second LUT containing the precalculated log2(1 + x).
Code:
Benchmark at 16 MHz Estimate log(3.00): 1.582 True val log(3.00): 1.585 Timer count: 34 Time lapsed us: 2.13 Estimate log(18.00): 4.168 True val log(18.00): 4.170 Timer count: 52 Time lapsed us: 3.25 Estimate log(108.00): 6.754 True val log(108.00): 6.755 Timer count: 64 Time lapsed us: 4.00 Estimate log(648.00): 9.340 True val log(648.00): 9.340 Timer count: 168 Time lapsed us: 10.50 Estimate log(3888.00): 11.922 True val log(3888.00): 11.925 Timer count: 96 Time lapsed us: 6.00 Estimate log(23328.00): 14.504 True val log(23328.00): 14.510 Timer count: 198 Time lapsed us: 12.38
Comment