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
Separate testing scenarios for each operator (#120)
* Rename files for clarity
* Make less confusing
* Minor doc-string fix
* Add Scenario types for each operator
* Loosen type restrictions, add defaults
* Dispatch on scenario type
* Dispatch benchmarks on scenario type
* Simplify compatibility tests
Signed-off-by adrhill <adrian.hill@mailbox.org>
* Fix dispatch
* Remove operator filtering
* Update docstring
* Finish fixing
* Remove test from docs
* Tweaks
* No logging in CI
* Fix component scenarios
* Fix component arrays
* Make JET happy
---------
Co-authored-by: Guillaume Dalle <22795598+gdalle@users.noreply.github.com>
The `BenchmarkData` object is just a struct of vectors, and you can easily convert to a `DataFrame` from [DataFrames.jl](https://github.com/JuliaData/DataFrames.jl):
170
+
The resulting object is just a vector of structs, and you can easily convert to a `DataFrame` from [DataFrames.jl](https://github.com/JuliaData/DataFrames.jl):
173
171
174
172
```@repl tuto
175
-
df = DataFrames.DataFrame(pairs(data)...)
173
+
df = DataFrames.DataFrame(data)
176
174
```
177
175
178
176
Here's what the resulting `DataFrame` looks like with all its columns.
0 commit comments