446 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			446 B
		
	
	
	
	
	
	
	
Profiling
- Compile Times: append -Ztimingsto cargo builds
- Runtime Flame Graph:
- Flat-ish: RUSTFLAGS='-C force-frame-pointers=y' cargo flamegraph --example EXAMPLE_NAME
- Graph: RUSTFLAGS='-C force-frame-pointers=y' cargo flamegraph -c "record -g" --example EXAMPLE_NAME
- built on top of perf, no instrumentation required
 
- Flat-ish: 
- Runtime Instrumentation:
