Skip to content
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

Fix benchmark #577

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bevy_rapier3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ headless = []
async-collider = ["bevy/bevy_asset", "bevy/bevy_scene"]

[dependencies]
bevy = { version = "0.14", default-features = false }
bevy = { version = "0.14", default-features = false, features = [
# This has to be enabled for non headless as of bevy 0.14 because we use AAbb
# "bevy_render",
] }
nalgebra = { version = "0.33", features = ["convert-glam027"] }
rapier3d = "0.22"
bitflags = "2.4"
Expand Down
19 changes: 17 additions & 2 deletions bevy_rapier_benches3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,22 @@ edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
visual = [
"bevy/x11",
"bevy/tonemapping_luts",
"bevy/bevy_core_pipeline",
"bevy/bevy_pbr",
"bevy/bevy_gizmos",
"rapier3d/debug-render",
#"bevy/bevy_asset",
"bevy_rapier3d/debug-render-3d",
]

[dependencies]
rapier3d = { features = ["profiler"], version = "0.22" }
bevy_rapier3d = { version = "0.27", path = "../bevy_rapier3d" }
bevy = { version = "0.14", default-features = false }
rapier3d = { features = ["profiler"], version = "0.22" }
Copy link
Member

@sebcrozet sebcrozet Sep 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This reminds me that I’d like to revisit that profiler thing in rapier to switch so something less manual. Like switching the tracy or something. (This is unrelated to this PR though.)

bevy_rapier3d = { version = "0.27", path = "../bevy_rapier3d", default-features = false, features = [
"dim3",
"headless",
] }
7 changes: 7 additions & 0 deletions bevy_rapier_benches3d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ and outputs them at the end.
cargo run --release --bin bench
```

To visually make sure your benchmarks setup is correct, you can use the feature `visual`,
and edit `bench.rs` to test only the scene you want.

```sh
cargo run --release --bin bench --features visual
```

## cargo bench

For short-lived benchmarks based on statistical analysis,
Expand Down
2 changes: 1 addition & 1 deletion bevy_rapier_benches3d/src/bin/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fn pyramid_1_with_height_2() {
}

fn pyramid_2_with_height_20() {
custom_bencher(100, |app| setup_pyramids(app, 3, 20));
custom_bencher(100, |app| setup_pyramids(app, 40, 20));
}

fn main() {
Expand Down
53 changes: 32 additions & 21 deletions bevy_rapier_benches3d/src/common.rs
Original file line number Diff line number Diff line change
@@ -1,31 +1,14 @@
use bevy::{
app::PluginsState,
prelude::*,
render::{
settings::{RenderCreation, WgpuSettings},
RenderPlugin,
},
scene::ScenePlugin,
time::TimeUpdateStrategy,
};
use bevy::{app::PluginsState, prelude::*};
use bevy_rapier3d::prelude::*;

#[cfg(not(feature = "visual"))]
pub fn default_app() -> App {
use bevy::{log::LogPlugin, time::TimeUpdateStrategy};
let mut app = App::new();

app.add_plugins((
WindowPlugin::default(),
MinimalPlugins,
AssetPlugin::default(),
ScenePlugin,
RenderPlugin {
render_creation: RenderCreation::Automatic(WgpuSettings {
backends: None,
..Default::default()
}),
..Default::default()
},
ImagePlugin::default(),
LogPlugin::default(),
HierarchyPlugin,
TransformPlugin,
RapierPhysicsPlugin::<()>::default(),
Expand All @@ -38,6 +21,34 @@ pub fn default_app() -> App {
app
}

#[cfg(feature = "visual")]
pub fn default_app() -> App {
use bevy::diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin};

let mut app = App::new();
println!("visual mode!");
app.insert_resource(ClearColor(Color::srgb(
0xF9 as f32 / 255.0,
0xF9 as f32 / 255.0,
0xFF as f32 / 255.0,
)));
app.add_plugins((
DefaultPlugins,
RapierPhysicsPlugin::<()>::default(),
RapierDebugRenderPlugin::default(),
FrameTimeDiagnosticsPlugin::default(),
LogDiagnosticsPlugin::default(),
));
app.add_systems(Startup, |mut commands: Commands| {
commands.spawn(Camera3dBundle {
transform: Transform::from_xyz(-30.0, 30.0, 100.0)
.looking_at(Vec3::new(0.0, 0.0, 0.0), Vec3::Y),
..Default::default()
});
});
app
}

pub fn wait_app_start(app: &mut App) {
while app.plugins_state() != PluginsState::Ready {
bevy::tasks::tick_global_task_pools_on_main_thread();
Expand Down
9 changes: 7 additions & 2 deletions bevy_rapier_benches3d/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,22 @@ use common::wait_app_start;
use bevy::prelude::*;
use bevy_rapier3d::plugin::RapierContext;

pub fn custom_bencher(steps: usize, setup: impl Fn(&mut App)) {
pub fn custom_bencher(_steps: usize, setup: impl Fn(&mut App)) {
let mut app = default_app();
setup(&mut app);
#[cfg(feature = "visual")]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add explaination to readme

{
app.run();
return;
}
wait_app_start(&mut app);

let mut timer_total = rapier3d::counters::Timer::new();
let mut timer_full_update = rapier3d::counters::Timer::new();
let mut rapier_step_times = vec![];
let mut total_update_times = vec![];
timer_total.start();
for _ in 0..steps {
for _ in 0.._steps {
timer_full_update.start();
app.update();
timer_full_update.pause();
Expand Down
7 changes: 5 additions & 2 deletions bevy_rapier_benches3d/src/pyramids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ pub fn create_pyramid(commands: &mut Commands, offset: Vect, stack_height: usize
// Build the rigid body.
commands.spawn((
RigidBody::Dynamic,
Transform::from_translation(Vec3::new(x, y, 0.0) + offset),
Collider::cuboid(1.0, 1.0, 1.0),
TransformBundle::from_transform(Transform::from_translation(
Vec3::new(x, y, 0.0) + offset,
)),
Collider::cuboid(rad, rad, rad),
));
}
}
Expand Down Expand Up @@ -47,6 +49,7 @@ pub fn setup_pyramids(app: &mut App, pyramid_count: usize, stack_height: usize)
/*
* Create the pyramids
*/

for pyramid_index in 0..pyramid_count {
let bottomy = rad;
create_pyramid(
Expand Down