We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81a2055 commit c326957Copy full SHA for c326957
examples/models/llama/runner/runner.h
@@ -28,7 +28,7 @@
28
namespace example {
29
30
class ET_EXPERIMENTAL Runner
31
- : public executorch::extension::llm::RunnerInterface {
+ : public executorch::extension::llm::IRunner {
32
public:
33
explicit Runner(
34
const std::string& model_path,
extension/llm/runner/runner_interface.h renamed to extension/llm/runner/irunner.h
@@ -21,9 +21,9 @@ namespace executorch {
21
namespace extension {
22
namespace llm {
23
24
-class ET_EXPERIMENTAL RunnerInterface {
+class ET_EXPERIMENTAL IRunner {
25
26
- virtual ~RunnerInterface() = default;
+ virtual ~IRunner() = default;
27
// Checks if the model is loaded.
virtual bool is_loaded() const = 0;
0 commit comments