Skip to content

Commit

Permalink
Update philipsslide.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
AzHicham authored Jan 27, 2024
1 parent 9bc7728 commit 103c6b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cpp/philipsslide.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ std::unique_ptr<PhilipsEngine> new_() { return std::make_unique<PhilipsEngine>()
PhilipsEngine::PhilipsEngine()
: _render_context(std::make_unique<SoftwareRenderContext>()),
_render_backend(std::make_unique<SoftwareRenderBackend>(RenderBackend::ImageFormatType::RGB)),
_pixel_engine(std::make_unique<PixelEngine>(*_render_backend, *_render_context)) {}
_pixel_engine(std::make_unique<PixelEngine>(*_render_backend, *_render_context)) {
_render_context->numberOfWorkerThreads(8);
}

std::string const& PhilipsEngine::sdkVersion() const { return _version; }

Expand Down

1 comment on commit 103c6b4

@github-actions
Copy link

Choose a reason for hiding this comment

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

philips-isyntax-rs Benchmark

Benchmark suite Current: 103c6b4 Previous: 9bc7728 Ratio
philips_i2syntax_read_region_256_lvl_0 1329429 ns/iter (± 137760) 1323964 ns/iter (± 86016) 1.00
philips_i2syntax_read_region_256_lvl_1 1127453 ns/iter (± 102769) 1130446 ns/iter (± 149378) 1.00
philips_i2syntax_read_region_512_lvl_0 1614313 ns/iter (± 197786) 1536684 ns/iter (± 164230) 1.05
philips_i2syntax_read_region_512_lvl_1 7311980 ns/iter (± 2779377) 7840477 ns/iter (± 3095327) 0.93
philips_read_region_256_lvl_0 485226 ns/iter (± 52740) 472703 ns/iter (± 46508) 1.03
philips_read_region_256_lvl_1 1270887 ns/iter (± 304937) 1236867 ns/iter (± 299880) 1.03
philips_read_region_512_lvl_0 3621540 ns/iter (± 969634) 3451297 ns/iter (± 916522) 1.05
philips_read_region_512_lvl_1 2805557 ns/iter (± 831096) 2833340 ns/iter (± 775183) 0.99

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.