Changes between Version 3 and Version 4 of dev/optim/logbook
- Timestamp:
- Sep 2, 2011, 1:53:00 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/optim/logbook
v3 v4 8 8 * [890] Do the Taylor series on `x / π` instead of `x`: results in a measurable 2% speed increase in `sin()` (ppu-lv2-g++) 9 9 * [891] Do the Taylor series in two steps, for better pipelining at the cost of one extra multiplication: a notable 11% speed increase in `sin()` (ppu-lv2-g++) 10 11 Note: there is currently no way to build all the engine using SNC. However, individual files can be built using a command along the following one: 12 13 {{{ 14 #!sh 15 touch trig.cpp 16 ps3ppusnc.exe -c trig.cpp -O3 -Xreorder=1 -Xfastmath=1 -o liblol_a-trig.o -I. 17 make 18 }}} 19