Home
last modified time | relevance | path

Searched refs:Runner (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMLRegallocPriorityAdvisor.cpp80 SlotIndexes *const Indexes, MLModelRunner *Runner);
89 const MLModelRunner &getRunner() const { return *Runner; } in getRunner()
95 MLModelRunner *const Runner; member in llvm::MLPriorityAdvisor
128 if (!Runner) in getAdvisor()
129 Runner = std::make_unique<ReleaseModeModelRunner<NoopSavedModelImpl>>( in getAdvisor()
132 MF, RA, &getAnalysis<SlotIndexes>(), Runner.get()); in getAdvisor()
134 std::unique_ptr<ReleaseModeModelRunner<NoopSavedModelImpl>> Runner; member in llvm::ReleaseModePriorityAdvisorAnalysis
162 MLModelRunner *Runner, Logger *Log) in DevelopmentModePriorityAdvisor() argument
163 : MLPriorityAdvisor(MF, RA, Indexes, Runner), Log(Log) {} in DevelopmentModePriorityAdvisor()
212 Runner = std::make_unique<NoInferenceModelRunner>(Ctx, InputFeatures); in doInitialization()
[all …]
H A DMLRegallocEvictAdvisor.cpp243 void resetInputs(MLModelRunner &Runner) { in resetInputs() argument
245 std::memset(Runner.getTensorUntyped(FeatureIDs::NAME), 0, \ in resetInputs()
277 MLModelRunner *Runner, const MachineBlockFrequencyInfo &MBFI,
287 const MLModelRunner &getRunner() const { return *Runner; } in getRunner()
337 MLModelRunner *const Runner; member in __anon583707800111::MLEvictAdvisor
385 if (!Runner) in getAdvisor()
386 Runner = std::make_unique<ReleaseModeModelRunner<CompiledModelType>>( in getAdvisor()
389 MF, RA, Runner.get(), getAnalysis<MachineBlockFrequencyInfo>(), in getAdvisor()
392 std::unique_ptr<ReleaseModeModelRunner<CompiledModelType>> Runner; member in __anon583707800111::ReleaseModeEvictionAdvisorAnalysis
415 MLModelRunner *Runner, in DevelopmentModeEvictAdvisor() argument
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h286 void callWrapperAsync(RunPolicyT &&Runner, ExecutorAddr WrapperFnAddr, in callWrapperAsync() argument
289 WrapperFnAddr, Runner(std::forward<FnT>(OnComplete)), ArgBuffer); in callWrapperAsync()
323 void callSPSWrapperAsync(RunPolicyT &&Runner, ExecutorAddr WrapperFnAddr, in callSPSWrapperAsync() argument
326 [this, WrapperFnAddr, Runner = std::move(Runner)] in callSPSWrapperAsync()
328 this->callWrapperAsync(std::move(Runner), WrapperFnAddr, in callSPSWrapperAsync()
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/
H A Dllvm-exegesis.cpp354 const BenchmarkRunner &Runner) { in runBenchmarkConfigurations() argument
376 auto RC = ExitOnErr(Runner.getRunnableConfiguration( in runBenchmarkConfigurations()
379 ExitOnErr(Runner.runConfiguration(std::move(RC), DumpObjectToDisk))); in runBenchmarkConfigurations()
442 const std::unique_ptr<BenchmarkRunner> Runner = in benchmarkMain() local
445 if (!Runner) { in benchmarkMain()
504 runBenchmarkConfigurations(State, Configurations, Repetitors, *Runner); in benchmarkMain()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMLInlineAdvisor.cpp90 std::unique_ptr<MLModelRunner> Runner) in MLInlineAdvisor() argument
93 ModelRunner(std::move(Runner)), in MLInlineAdvisor()