use crate::points3d_shared::{prepare_points3d, Point3DInput};
const NUM_POINTS: usize = 50_000_000;
fn execute(input: Point3DInput) -> anyhow::Result<()> {
re_tracing::profile_function!();
let Point3DInput {
positions,
colors,
radii,
label,
} = input;
let (rec, _storage) =
rerun::RecordingStreamBuilder::new("rerun_example_benchmark_points3d_large_batch")
.memory()?;
rec.log(
"large_batch",
&rerun::Points3D::new(positions)
.with_colors(colors)
.with_radii(radii)
.with_labels([label]),
)?;
Ok(())
}
pub fn run() -> anyhow::Result<()> {
re_tracing::profile_function!();
let input = std::hint::black_box(prepare_points3d(42, NUM_POINTS));
execute(input)
}