Skip to content

Commit c326957

Browse files
committed
Call it IRunner
1 parent 81a2055 commit c326957

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/models/llama/runner/runner.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
namespace example {
2929

3030
class ET_EXPERIMENTAL Runner
31-
: public executorch::extension::llm::RunnerInterface {
31+
: public executorch::extension::llm::IRunner {
3232
public:
3333
explicit Runner(
3434
const std::string& model_path,

extension/llm/runner/runner_interface.h renamed to extension/llm/runner/irunner.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ namespace executorch {
2121
namespace extension {
2222
namespace llm {
2323

24-
class ET_EXPERIMENTAL RunnerInterface {
24+
class ET_EXPERIMENTAL IRunner {
2525
public:
26-
virtual ~RunnerInterface() = default;
26+
virtual ~IRunner() = default;
2727

2828
// Checks if the model is loaded.
2929
virtual bool is_loaded() const = 0;

0 commit comments

Comments
 (0)