3个版本
0.1.2 | 2021年6月9日 |
---|---|
0.1.1 | 2019年7月10日 |
0.1.0 | 2019年7月10日 |
1559 在 解析器实现
每月158次下载
用于 rustpython
9KB
140 行
flamescope
将 flame 数据导出到 speedscope 的格式。
用法
use flame;
use flamescope;
use std::fs::File;
fn main() {
let main_guard = flame::start_guard("main");
{
let _scope_guard = flame::start_guard("inner scope");
}
main_guard.end();
flamescope::dump(&mut File::create("flamescope.json").unwrap()).unwrap();
}
许可证
本项目采用MIT许可证。请参阅LICENSE文件以获取更多详细信息。
lib.rs
:
将 flame 数据导出到 speedscope 的配置格式。
基本配置是从顶层span派生出来的,因此建议确保您有一个适当命名的span,它包含了整个程序的整个运行。
依赖项
~2.4–3.5MB
~62K SLoC