Skip to content

Commit cf8c270

Browse files
shoumikhinfacebook-github-bot
authored andcommitted
Rename LLaMARunner to LLMRunner (#12024)
Summary: Pull Request resolved: #12024 . Reviewed By: larryliu0820 Differential Revision: D77399571
1 parent 7adffe6 commit cf8c270

15 files changed

Lines changed: 69 additions & 69 deletions

File tree

examples/demo-apps/apple_ios/LLaMA/LLaMARunner/LLaMARunner/Exported/LLaMARunner.h renamed to examples/demo-apps/apple_ios/LLaMA/LLMRunner/LLMRunner/Exported/LLMRunner.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
NS_ASSUME_NONNULL_BEGIN
1212

13-
FOUNDATION_EXPORT NSErrorDomain const LLaMARunnerErrorDomain;
13+
FOUNDATION_EXPORT NSErrorDomain const LLMRunnerErrorDomain;
1414
FOUNDATION_EXPORT NSErrorDomain const LLaVARunnerErrorDomain;
1515

1616
NS_SWIFT_NAME(Runner)
17-
@interface LLaMARunner : NSObject
17+
@interface LLMRunner : NSObject
1818

1919
- (instancetype)initWithModelPath:(NSString*)filePath
2020
tokenizerPath:(NSString*)tokenizerPath;

examples/demo-apps/apple_ios/LLaMA/LLaMARunner/LLaMARunner/Exported/LLaMARunner.mm renamed to examples/demo-apps/apple_ios/LLaMA/LLMRunner/LLMRunner/Exported/LLMRunner.mm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9-
#import "LLaMARunner.h"
9+
#import "LLMRunner.h"
1010

1111
#import <ExecuTorch/ExecuTorchLog.h>
1212
#import <executorch/examples/models/llama/runner/runner.h>
@@ -17,13 +17,13 @@
1717
using executorch::extension::llm::TextLLMRunner;
1818
using executorch::runtime::Error;
1919

20-
NSErrorDomain const LLaMARunnerErrorDomain = @"LLaMARunnerErrorDomain";
20+
NSErrorDomain const LLMRunnerErrorDomain = @"LLMRunnerErrorDomain";
2121
NSErrorDomain const LLaVARunnerErrorDomain = @"LLaVARunnerErrorDomain";
2222

23-
@interface LLaMARunner ()<ExecuTorchLogSink>
23+
@interface LLMRunner ()<ExecuTorchLogSink>
2424
@end
2525

26-
@implementation LLaMARunner {
26+
@implementation LLMRunner {
2727
std::unique_ptr<TextLLMRunner> _runner;
2828
}
2929

@@ -50,7 +50,7 @@ - (BOOL)loadWithError:(NSError**)error {
5050
const auto status = _runner->load();
5151
if (status != Error::Ok) {
5252
if (error) {
53-
*error = [NSError errorWithDomain:LLaMARunnerErrorDomain
53+
*error = [NSError errorWithDomain:LLMRunnerErrorDomain
5454
code:(NSInteger)status
5555
userInfo:nil];
5656
}
@@ -72,7 +72,7 @@ - (BOOL)generate:(NSString*)prompt
7272
});
7373
if (status != Error::Ok) {
7474
if (error) {
75-
*error = [NSError errorWithDomain:LLaMARunnerErrorDomain
75+
*error = [NSError errorWithDomain:LLMRunnerErrorDomain
7676
code:(NSInteger)status
7777
userInfo:nil];
7878
return NO;
@@ -170,7 +170,7 @@ - (BOOL)generate:(void*)imageBuffer
170170
[callback](const std::string& token) { callback(@(token.c_str())); });
171171
if (status != Error::Ok) {
172172
if (error) {
173-
*error = [NSError errorWithDomain:LLaMARunnerErrorDomain
173+
*error = [NSError errorWithDomain:LLMRunnerErrorDomain
174174
code:(NSInteger)status
175175
userInfo:nil];
176176
return NO;

examples/demo-apps/apple_ios/LLaMA/LLaMARunner/LLaMARunner/__tests__/RunnerTest.swift renamed to examples/demo-apps/apple_ios/LLaMA/LLMRunner/LLMRunner/__tests__/RunnerTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9-
@testable import LLaMARunner
9+
@testable import LLMRunner
1010

1111
import XCTest
1212

File renamed without changes.

examples/demo-apps/apple_ios/LLaMA/LLaMA.xcodeproj/project.pbxproj

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
0324D6922BAACB6900DEF36F /* ResourceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0324D6872BAACB6900DEF36F /* ResourceManager.swift */; };
1818
0324D6932BAACB6900DEF36F /* ResourceMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0324D6882BAACB6900DEF36F /* ResourceMonitor.swift */; };
1919
0324D6962BAACB7000DEF36F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0324D6942BAACB7000DEF36F /* Assets.xcassets */; };
20-
03729EDC2BB1F8DE00152F2E /* LLaMARunner.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 03729ED52BB1F8DE00152F2E /* LLaMARunner.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
21-
03729EE12BB1F93800152F2E /* LLaMARunner.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0324D69A2BAACB7C00DEF36F /* LLaMARunner.mm */; };
22-
03729EE22BB1F93E00152F2E /* LLaMARunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 0324D6992BAACB7C00DEF36F /* LLaMARunner.h */; settings = {ATTRIBUTES = (Public, ); }; };
20+
03729EDC2BB1F8DE00152F2E /* LLMRunner.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 03729ED52BB1F8DE00152F2E /* LLMRunner.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
21+
03729EE12BB1F93800152F2E /* LLMRunner.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0324D69A2BAACB7C00DEF36F /* LLMRunner.mm */; };
22+
03729EE22BB1F93E00152F2E /* LLMRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 0324D6992BAACB7C00DEF36F /* LLMRunner.h */; settings = {ATTRIBUTES = (Public, ); }; };
2323
03729F0A2BB203B300152F2E /* runner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03729F072BB203B300152F2E /* runner.cpp */; };
2424
03729F0B2BB203B300152F2E /* runner.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F082BB203B300152F2E /* runner.h */; };
2525
03729F0C2BB203B300152F2E /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F092BB203B300152F2E /* util.h */; };
@@ -84,7 +84,7 @@
8484
containerPortal = 032C01672AC228E5002955E1 /* Project object */;
8585
proxyType = 1;
8686
remoteGlobalIDString = 03729ED42BB1F8DE00152F2E;
87-
remoteInfo = LLaMARunner;
87+
remoteInfo = LLMRunner;
8888
};
8989
/* End PBXContainerItemProxy section */
9090

@@ -95,7 +95,7 @@
9595
dstPath = "";
9696
dstSubfolderSpec = 10;
9797
files = (
98-
03729EDC2BB1F8DE00152F2E /* LLaMARunner.framework in Embed Frameworks */,
98+
03729EDC2BB1F8DE00152F2E /* LLMRunner.framework in Embed Frameworks */,
9999
);
100100
name = "Embed Frameworks";
101101
runOnlyForDeploymentPostprocessing = 0;
@@ -114,11 +114,11 @@
114114
0324D6872BAACB6900DEF36F /* ResourceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResourceManager.swift; sourceTree = "<group>"; };
115115
0324D6882BAACB6900DEF36F /* ResourceMonitor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResourceMonitor.swift; sourceTree = "<group>"; };
116116
0324D6942BAACB7000DEF36F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
117-
0324D6992BAACB7C00DEF36F /* LLaMARunner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLaMARunner.h; sourceTree = "<group>"; };
118-
0324D69A2BAACB7C00DEF36F /* LLaMARunner.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LLaMARunner.mm; sourceTree = "<group>"; };
117+
0324D6992BAACB7C00DEF36F /* LLMRunner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLMRunner.h; sourceTree = "<group>"; };
118+
0324D69A2BAACB7C00DEF36F /* LLMRunner.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LLMRunner.mm; sourceTree = "<group>"; };
119119
035A5E942BB4B523001E0553 /* LLaMA.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = LLaMA.entitlements; sourceTree = "<group>"; };
120120
036CAF9D2BB1444500D6C2D5 /* LLaMA.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LLaMA.app; sourceTree = BUILT_PRODUCTS_DIR; };
121-
03729ED52BB1F8DE00152F2E /* LLaMARunner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LLaMARunner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
121+
03729ED52BB1F8DE00152F2E /* LLMRunner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LLMRunner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
122122
03729F072BB203B300152F2E /* runner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = runner.cpp; path = ../../../examples/models/llama/runner/runner.cpp; sourceTree = "<group>"; };
123123
03729F082BB203B300152F2E /* runner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = runner.h; path = ../../../examples/models/llama/runner/runner.h; sourceTree = "<group>"; };
124124
03729F092BB203B300152F2E /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
@@ -245,29 +245,29 @@
245245
0324D69B2BAACB7C00DEF36F /* Exported */ = {
246246
isa = PBXGroup;
247247
children = (
248-
0324D6992BAACB7C00DEF36F /* LLaMARunner.h */,
249-
0324D69A2BAACB7C00DEF36F /* LLaMARunner.mm */,
248+
0324D6992BAACB7C00DEF36F /* LLMRunner.h */,
249+
0324D69A2BAACB7C00DEF36F /* LLMRunner.mm */,
250250
);
251251
path = Exported;
252252
sourceTree = "<group>";
253253
};
254-
0324D69C2BAACB7C00DEF36F /* LLaMARunner */ = {
254+
0324D69C2BAACB7C00DEF36F /* LLMRunner */ = {
255255
isa = PBXGroup;
256256
children = (
257257
0324D69B2BAACB7C00DEF36F /* Exported */,
258258
03729F062BB2035900152F2E /* runner */,
259259
03729F0F2BB203E100152F2E /* sampler */,
260260
03729F0E2BB203D700152F2E /* tokenizers */,
261261
);
262-
path = LLaMARunner;
262+
path = LLMRunner;
263263
sourceTree = "<group>";
264264
};
265-
0324D69F2BAACB7C00DEF36F /* LLaMARunner */ = {
265+
0324D69F2BAACB7C00DEF36F /* LLMRunner */ = {
266266
isa = PBXGroup;
267267
children = (
268-
0324D69C2BAACB7C00DEF36F /* LLaMARunner */,
268+
0324D69C2BAACB7C00DEF36F /* LLMRunner */,
269269
);
270-
path = LLaMARunner;
270+
path = LLMRunner;
271271
sourceTree = "<group>";
272272
};
273273
032C01662AC228E5002955E1 = {
@@ -276,9 +276,9 @@
276276
0324D68A2BAACB6900DEF36F /* LLaMA */,
277277
0324D6952BAACB7000DEF36F /* LLaMAAssets */,
278278
035A5E952BB4B523001E0553 /* LLaMAEntitlements */,
279-
0324D69F2BAACB7C00DEF36F /* LLaMARunner */,
279+
0324D69F2BAACB7C00DEF36F /* LLMRunner */,
280280
036CAF9D2BB1444500D6C2D5 /* LLaMA.app */,
281-
03729ED52BB1F8DE00152F2E /* LLaMARunner.framework */,
281+
03729ED52BB1F8DE00152F2E /* LLMRunner.framework */,
282282
);
283283
sourceTree = "<group>";
284284
};
@@ -384,7 +384,7 @@
384384
isa = PBXHeadersBuildPhase;
385385
buildActionMask = 2147483647;
386386
files = (
387-
03729EE22BB1F93E00152F2E /* LLaMARunner.h in Headers */,
387+
03729EE22BB1F93E00152F2E /* LLMRunner.h in Headers */,
388388
03D03DA82C7823620088D6A7 /* text_prefiller.h in Headers */,
389389
F292B0882D88B0D200BE6839 /* llama2c_tokenizer.h in Headers */,
390390
F292B0892D88B0D200BE6839 /* tokenizer.h in Headers */,
@@ -435,9 +435,9 @@
435435
productReference = 036CAF9D2BB1444500D6C2D5 /* LLaMA.app */;
436436
productType = "com.apple.product-type.application";
437437
};
438-
03729ED42BB1F8DE00152F2E /* LLaMARunner */ = {
438+
03729ED42BB1F8DE00152F2E /* LLMRunner */ = {
439439
isa = PBXNativeTarget;
440-
buildConfigurationList = 03729EDD2BB1F8DE00152F2E /* Build configuration list for PBXNativeTarget "LLaMARunner" */;
440+
buildConfigurationList = 03729EDD2BB1F8DE00152F2E /* Build configuration list for PBXNativeTarget "LLMRunner" */;
441441
buildPhases = (
442442
03641D7C2C409960004AF8DE /* Build Cmake Dependencies */,
443443
03729ED02BB1F8DE00152F2E /* Headers */,
@@ -449,7 +449,7 @@
449449
);
450450
dependencies = (
451451
);
452-
name = LLaMARunner;
452+
name = LLMRunner;
453453
packageProductDependencies = (
454454
03CF43952CEC5CEC00C7113B /* backend_coreml */,
455455
03CF43972CEC5CEC00C7113B /* backend_coreml_debug */,
@@ -467,8 +467,8 @@
467467
03CF43AF2CEC5CEC00C7113B /* kernels_quantized */,
468468
03CF43B12CEC5CEC00C7113B /* kernels_quantized_debug */,
469469
);
470-
productName = LLaMARunner;
471-
productReference = 03729ED52BB1F8DE00152F2E /* LLaMARunner.framework */;
470+
productName = LLMRunner;
471+
productReference = 03729ED52BB1F8DE00152F2E /* LLMRunner.framework */;
472472
productType = "com.apple.product-type.framework";
473473
};
474474
/* End PBXNativeTarget section */
@@ -506,7 +506,7 @@
506506
projectRoot = "";
507507
targets = (
508508
032C016E2AC228E6002955E1 /* LLaMA */,
509-
03729ED42BB1F8DE00152F2E /* LLaMARunner */,
509+
03729ED42BB1F8DE00152F2E /* LLMRunner */,
510510
);
511511
};
512512
/* End PBXProject section */
@@ -574,7 +574,7 @@
574574
isa = PBXSourcesBuildPhase;
575575
buildActionMask = 2147483647;
576576
files = (
577-
03729EE12BB1F93800152F2E /* LLaMARunner.mm in Sources */,
577+
03729EE12BB1F93800152F2E /* LLMRunner.mm in Sources */,
578578
0372C3152C89418E00CD942A /* llava_runner.cpp in Sources */,
579579
F292B1022D88B20C00BE6839 /* llama_tiktoken.cpp in Sources */,
580580
03D03DAB2C7823830088D6A7 /* text_decoder_runner.cpp in Sources */,
@@ -599,7 +599,7 @@
599599
/* Begin PBXTargetDependency section */
600600
03729EDA2BB1F8DE00152F2E /* PBXTargetDependency */ = {
601601
isa = PBXTargetDependency;
602-
target = 03729ED42BB1F8DE00152F2E /* LLaMARunner */;
602+
target = 03729ED42BB1F8DE00152F2E /* LLMRunner */;
603603
targetProxy = 03729ED92BB1F8DE00152F2E /* PBXContainerItemProxy */;
604604
};
605605
/* End PBXTargetDependency section */
@@ -830,7 +830,7 @@
830830
MARKETING_VERSION = 1.0;
831831
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
832832
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
833-
PRODUCT_BUNDLE_IDENTIFIER = org.pytorch.executorch.illama.LLaMARunner;
833+
PRODUCT_BUNDLE_IDENTIFIER = org.pytorch.executorch.illama.LLMRunner;
834834
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
835835
SKIP_INSTALL = YES;
836836
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -866,7 +866,7 @@
866866
MARKETING_VERSION = 1.0;
867867
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
868868
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20";
869-
PRODUCT_BUNDLE_IDENTIFIER = org.pytorch.executorch.illama.LLaMARunner;
869+
PRODUCT_BUNDLE_IDENTIFIER = org.pytorch.executorch.illama.LLMRunner;
870870
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
871871
SKIP_INSTALL = YES;
872872
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -901,7 +901,7 @@
901901
defaultConfigurationIsVisible = 0;
902902
defaultConfigurationName = Release;
903903
};
904-
03729EDD2BB1F8DE00152F2E /* Build configuration list for PBXNativeTarget "LLaMARunner" */ = {
904+
03729EDD2BB1F8DE00152F2E /* Build configuration list for PBXNativeTarget "LLMRunner" */ = {
905905
isa = XCConfigurationList;
906906
buildConfigurations = (
907907
03729EDE2BB1F8DE00152F2E /* Debug */,

examples/demo-apps/apple_ios/LLaMA/LLaMA.xcodeproj/xcshareddata/xcschemes/LLaMARunner.xcscheme

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<BuildableReference
1717
BuildableIdentifier = "primary"
1818
BlueprintIdentifier = "03729ED42BB1F8DE00152F2E"
19-
BuildableName = "LLaMARunner.framework"
20-
BlueprintName = "LLaMARunner"
19+
BuildableName = "LLMRunner.framework"
20+
BlueprintName = "LLMRunner"
2121
ReferencedContainer = "container:LLaMA.xcodeproj">
2222
</BuildableReference>
2323
</BuildActionEntry>
@@ -51,8 +51,8 @@
5151
<BuildableReference
5252
BuildableIdentifier = "primary"
5353
BlueprintIdentifier = "03729ED42BB1F8DE00152F2E"
54-
BuildableName = "LLaMARunner.framework"
55-
BlueprintName = "LLaMARunner"
54+
BuildableName = "LLMRunner.framework"
55+
BlueprintName = "LLMRunner"
5656
ReferencedContainer = "container:LLaMA.xcodeproj">
5757
</BuildableReference>
5858
</MacroExpansion>

examples/demo-apps/apple_ios/LLaMA/LLaMA/Application/ContentView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import SwiftUI
1010
import UniformTypeIdentifiers
1111

12-
import LLaMARunner
12+
import LLMRunner
1313

1414
class RunnerHolder: ObservableObject {
1515
var runner: Runner?
@@ -87,7 +87,7 @@ struct ContentView: View {
8787
case llava
8888
case qwen3
8989
case phi4
90-
90+
9191
static func fromPath(_ path: String) -> ModelType {
9292
let filename = (path as NSString).lastPathComponent.lowercased()
9393
if filename.hasPrefix("llama") {

examples/demo-apps/apple_ios/LLaMA/LLaMA/SupportingFiles/Debug.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ OTHER_LDFLAGS = $(inherited) \
1212
-force_load $(BUILT_PRODUCTS_DIR)/libkernels_quantized_debug_$(ET_PLATFORM).a \
1313
@$(TEMP_DIR)/cmake/linker_flags
1414

15-
// LLaMARunner requires additional dependencies built with CMake in a custom run script phase.
15+
// LLMRunner requires additional dependencies built with CMake in a custom run script phase.
1616
// Include headers and libraries from $(TEMP_DIR)/cmake for it.
1717
HEADER_SEARCH_PATHS = $(inherited) \
1818
$(SRCROOT)/../../../../.. \
1919
$(TEMP_DIR)/cmake/include \
20-
$(SRCROOT)/../../../../extension/llm/tokenizers/include
20+
$(SRCROOT)/../../../../extension/llm/tokenizers/include
2121

2222
LIBRARY_SEARCH_PATHS = $(inherited) \
2323
$(TEMP_DIR)/cmake/lib

examples/demo-apps/apple_ios/LLaMA/LLaMA/SupportingFiles/Release.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ OTHER_LDFLAGS = $(inherited) \
1414
-force_load $(BUILT_PRODUCTS_DIR)/libkernels_quantized_$(ET_PLATFORM).a \
1515
@$(TEMP_DIR)/cmake/linker_flags
1616

17-
// LLaMARunner requires additional dependencies built with CMake in a custom run script phase.
17+
// LLMRunner requires additional dependencies built with CMake in a custom run script phase.
1818
// Include headers and libraries from $(TEMP_DIR)/cmake for it.
1919
HEADER_SEARCH_PATHS = $(inherited) \
2020
$(SRCROOT)/../../../../.. \

examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,14 @@ The following packages should be linked in your app target `LLaMA` (left side, L
152152
- kernels_portable
153153
- kernels_quantized
154154

155-
The following package should be linked in your target app `LLaMARunner` (left side, LLaMA --> General --> select LLaMARunner under "TARGETS" --> scroll down to "Frameworks and Libraries")
155+
The following package should be linked in your target app `LLMRunner` (left side, LLaMA --> General --> select LLMRunner under "TARGETS" --> scroll down to "Frameworks and Libraries")
156156
- executorch
157157

158158
<p align="center">
159159
<img src="https://raw.githubusercontent.com/pytorch/executorch/refs/heads/main/docs/source/_static/img/ios_demo_app_choosing_package.png" alt="iOS LLaMA App Choosing package" style="width:600px">
160160
</p>
161161

162-
If you cannot add the package into your app target (it's greyed out), it might have been linked before. You can verify it by checking it from your target app `(LLaMA / LLaMARunner) --> Build Phases --> Link Binary With Libraries`.
162+
If you cannot add the package into your app target (it's greyed out), it might have been linked before. You can verify it by checking it from your target app `(LLaMA / LLMRunner) --> Build Phases --> Link Binary With Libraries`.
163163

164164

165165

0 commit comments

Comments
 (0)