ベンチャーメトリックフォーマット (BMF)


内蔵されたベンチマークハーネスアダプターは、ベンチマークの出力をBencher Metric Format (BMF) JSONに変換します。 カスタムベンチマーキングハーネスは、その結果をBMF JSONとして出力し、jsonアダプターを使用すべきです。 完全な概要については、カスタムベンチマークの追跡方法をご覧ください。

Bencher Metric Format (BMF) JSON スキーマ

これは Bencher Metric Format (BMF) JSON のための JSON スキーマ です:

{
"$id": "https://bencher.dev/bmf.json",
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"patternProperties": {
".+": {
"type": "object",
"patternProperties": {
".+": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"lower_value": {
"type": "number"
},
"upper_value": {
"type": "number"
}
},
"required": ["value"]
}
}
}
}
}


Published: Sun, May 12, 2024 at 3:12:00 PM UTC