-
Notifications
You must be signed in to change notification settings - Fork 559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Bullet 2.89 #322
base: main
Are you sure you want to change the base?
chore: Bullet 2.89 #322
Conversation
@kripken I wanted to preserve some flexibility in the repo history, so I walked all of bullet's tagged releases and squashed them into individual commits. So we just have to take care about re-squashing to master if we want to preserve that. Unfortunately, bullet's source tree is really bloated these days... 329MB with all files included. To keep ammo peppy, I excluded a number of directories and was able to shrink it down to 15MB. But if you think it's good to include some or all of those sources, let me know. I have some intermediate branches and can restore them pretty easily. Other than that, let me know if you like this approach 👍 |
Sounds good in general! How does this affect code size and performance? |
Sorry for the delay, I wanted to spend some time with this... Code size has grown a little, for example the total wasm footprint grows by 44K to 340K. Performance unfortunately did not improve. The WebGL demo runs roughly the same on my laptop, however the stress test is not performing so well. The wasm stress test avg time increased by 136% 🤔 Maybe there is a newer bullet build configuration that we could use to improve things. I'll see what I can find. I built everything on macOS w/ emsdk 1.39.20 Sizemaster (aa26a62)$ du -h builds/ammo.*
1.7M builds/ammo.js
388K builds/ammo.wasm.js
640K builds/ammo.wasm.wasm
$ gzip -k builds/ammo.*
$ du -h builds/ammo.*.gz
392K builds/ammo.js.gz
48K builds/ammo.wasm.js.gz
248K builds/ammo.wasm.wasm.gz chore/bullet-2.89$ du -h builds/ammo.*
1.9M builds/ammo.js
388K builds/ammo.wasm.js
768K builds/ammo.wasm.wasm
$ gzip builds/ammo.*
$ du -h builds/ammo.*.gz
448K builds/ammo.js.gz
48K builds/ammo.wasm.js.gz
292K builds/ammo.wasm.wasm.gz WebGL Demo, 1000 cubesmacOS Chrome Version 84.0.4147.105 (Official Build) (64-bit) master (aa26a62)
chore/bullet-2.89
Stress Testmaster (aa26a62)$ AMMO_PATH=builds/ammo.wasm.js ./profile 10
2.21890000000000000000
$ AMMO_PATH=builds/ammo.js ./profile 10
3.52330000000000000000 chore/bullet-2.89$ AMMO_PATH=builds/ammo.wasm.js ./profile 10
5.23810000000000000000
$ AMMO_PATH=builds/ammo.js ./profile 10
10.19750000000000000000 ☝️ #!/usr/bin/env bash
# profile <iterations>
iterations=${1:-1}
for i in $(seq 1 ${iterations}); do
npx ava --verbose --no-cache tests/stress.js
done \
| sed -n -E 's/.*total time: (.*)/\1/p' \
| paste -s -d+ - \
| echo \($(cat)\)/${iterations} \
| bc -l |
Does native Bullet exhibit similar perf/size differences between 2.83 and 2.89? These numbers make me very nervous about rolling out 2.89 to PlayCanvas developers. |
@willeastcott I was surprised when I finally checked the numbers. Testing native bullet is good idea. Do you know of a good perf test for bullet, something that we could run between 2.83 and 2.89 ? In a perfect world, it would be nice to port that to javascript and run the same test on the ammo side. Alternatively I guess we could try to port the ammo stress test to native bullet and look for some indicators. I'm not a bullet expert, so I will definitely take advice. Here are the size differences that I see for the bullet libraries built with ammo. chore/bullet-2.89
master (aa26a62)
|
Btw, I found these benchmark ideas from an old thread - #117 (comment)
|
Bullet comes with a Benchmark Demo, which for example emscripten runs in its benchmark suite, |
Thanks! I can push it forward with that. |
I've been looking at updating Ammo to use 2.89 in n5ro/aframe-physics-system#171, I really apologise I didn't check if this was already only going work. I have been looking into the performance degradation with [email protected] and I wanted to share my findings, which I hope are useful and not just adding noise. I found that 2.85 to 2.86 bulletphysics/bullet3@2.85...2.86 gave the largest drop in performance. I managed to bisect my way through the commits and found that bulletphysics/bullet3@dcd02a1 looks to be the commit that introduces the largest performance drop, at least in the stress test. I wouldn't recommend actually building against
It looks like bulletphysics/bullet3@dcd02a1 introduced quite a few simple arithmetic operations and a comparison at each iteration of the solver. I still see something like 10-15% performance degradation in the stress test going from bulletphysics/bullet3@379a852 to bulletphysics/bullet3@830f0a9 (2.89), but this performance degradation before 2.86 is by far the largest, more than halving the performance of the stress tests. I completely appreciate that @ianpurvis is working on much more detailed and complete benchmarks in #336, but I hope this is useful towards resolving performance issues. I did attempt to simply revert bulletphysics/bullet3@dcd02a1, but the function names and interfaces have changed enough that this isn't trivial. But it does look doable and if it could be done, may resolve most of the performance degradation in 2.89, and possibly eliminate any perceived real world performance degradation 😊 |
@Galadirith This is rad! Thanks for sharing your info, definitely appreciated. I'll take a look at bulletphysics/bullet3@dcd02a1 and see if I can figure out a path forward. If we can fix this in ammo, it would be great to submit a patch to upstream bullet as well. |
Updates to bullet 2.89 (https://github.com/bulletphysics/bullet3/releases/tag/2.89)
Excluded:
Ammo patches: