Track the number of cached/recomputed values using the LLVM statistics macro
Aperta
good first issue
- Lingua principale
- LLVM
- Stelle
- 1.7k
- Fork
- 188
- Merge medio
- 2g 4h
- PR unite (30g)
- 22
Descrizione
https://llvm.org/docs/ProgrammersManual.html#id38
```
#include "llvm/ADT/Statistic.h"
STATISTIC(NumCachedValues, "Number of values cached");
STATISTIC(NumRecomputedValues, "Number of values recomputed");
```
Other stats to track:
- GPU gradient accumulation
- Non-atomic load/store
- Parallel Reduction
- Atomic increment
- Allocation Merging
- Heap-to-stack (and register)
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.