| 67 | inline Maybe<int32_t> GetFLAGS_v() { return FLAGS_v; } |
| 68 | |
| 69 | inline Maybe<void> EmptyCache() { |
| 70 | JUST(vm::CurrentRankSync()); |
| 71 | auto* vm = JUST(SingletonMaybe<VirtualMachine>()); |
| 72 | JUST(vm->ShrinkAllMem()); |
| 73 | return Maybe<void>::Ok(); |
| 74 | } |
| 75 | |
| 76 | inline Maybe<void> SetGraphLRVerbose(bool verbose) { |
| 77 | SetGraphVerboseStepLr(verbose); |
nothing calls this directly
no test coverage detected