You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #61, the Document shared across the FFI went from a *mut Document to a Arc<Mutex<Document>>. There's bound to be runtime overhead and we need to have a way to track the benchmarking of: Document::parse and Document::parse_fragment_json.
It might be worth doing from Swift or Kotlin via the uniffi bindings but a good start is with cargo bench via criterion or something.
Device specific benchmarking would be cool but sonos/dinghy#81 might be a blocker.
The text was updated successfully, but these errors were encountered:
In #61, the
Document
shared across the FFI went from a*mut Document
to aArc<Mutex<Document>>
. There's bound to be runtime overhead and we need to have a way to track the benchmarking of:Document::parse
andDocument::parse_fragment_json
.It might be worth doing from Swift or Kotlin via the uniffi bindings but a good start is with
cargo bench
viacriterion
or something.Device specific benchmarking would be cool but sonos/dinghy#81 might be a blocker.
The text was updated successfully, but these errors were encountered: