Skip to content

Commit 5838545

Browse files
shoumikhinfacebook-github-bot
authored andcommitted
Rename tokenizer file in Xcode. (#3160)
Summary: . Differential Revision: D56363030
1 parent 269b6ad commit 5838545

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@
4141
03729F0C2BB203B300152F2E /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F092BB203B300152F2E /* util.h */; };
4242
03729F122BB2042B00152F2E /* sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F102BB2042B00152F2E /* sampler.h */; };
4343
03729F132BB2042B00152F2E /* sampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03729F112BB2042B00152F2E /* sampler.cpp */; };
44-
03729F162BB2043600152F2E /* tokenizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03729F142BB2043600152F2E /* tokenizer.cpp */; };
44+
03729F162BB2043600152F2E /* bpe_tokenizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03729F142BB2043600152F2E /* bpe_tokenizer.cpp */; };
4545
03729F172BB2043600152F2E /* tokenizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F152BB2043600152F2E /* tokenizer.h */; };
46+
03BADE202BD2E88600DDFDC2 /* bpe_tokenizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BADE1F2BD2E88600DDFDC2 /* bpe_tokenizer.h */; };
4647
/* End PBXBuildFile section */
4748

4849
/* Begin PBXContainerItemProxy section */
@@ -91,8 +92,9 @@
9192
03729F092BB203B300152F2E /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
9293
03729F102BB2042B00152F2E /* sampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sampler.h; sourceTree = "<group>"; };
9394
03729F112BB2042B00152F2E /* sampler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sampler.cpp; sourceTree = "<group>"; };
94-
03729F142BB2043600152F2E /* tokenizer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tokenizer.cpp; sourceTree = "<group>"; };
95+
03729F142BB2043600152F2E /* bpe_tokenizer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bpe_tokenizer.cpp; sourceTree = "<group>"; };
9596
03729F152BB2043600152F2E /* tokenizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tokenizer.h; sourceTree = "<group>"; };
97+
03BADE1F2BD2E88600DDFDC2 /* bpe_tokenizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bpe_tokenizer.h; sourceTree = "<group>"; };
9698
/* End PBXFileReference section */
9799

98100
/* Begin PBXFrameworksBuildPhase section */
@@ -232,7 +234,8 @@
232234
03729F0E2BB203D700152F2E /* tokenizer */ = {
233235
isa = PBXGroup;
234236
children = (
235-
03729F142BB2043600152F2E /* tokenizer.cpp */,
237+
03BADE1F2BD2E88600DDFDC2 /* bpe_tokenizer.h */,
238+
03729F142BB2043600152F2E /* bpe_tokenizer.cpp */,
236239
03729F152BB2043600152F2E /* tokenizer.h */,
237240
);
238241
name = tokenizer;
@@ -256,6 +259,7 @@
256259
isa = PBXHeadersBuildPhase;
257260
buildActionMask = 2147483647;
258261
files = (
262+
03BADE202BD2E88600DDFDC2 /* bpe_tokenizer.h in Headers */,
259263
03729F172BB2043600152F2E /* tokenizer.h in Headers */,
260264
03729EE22BB1F93E00152F2E /* LLaMARunner.h in Headers */,
261265
03729F122BB2042B00152F2E /* sampler.h in Headers */,
@@ -403,7 +407,7 @@
403407
buildActionMask = 2147483647;
404408
files = (
405409
03729EE12BB1F93800152F2E /* LLaMARunner.mm in Sources */,
406-
03729F162BB2043600152F2E /* tokenizer.cpp in Sources */,
410+
03729F162BB2043600152F2E /* bpe_tokenizer.cpp in Sources */,
407411
03729F0A2BB203B300152F2E /* runner.cpp in Sources */,
408412
03729F132BB2042B00152F2E /* sampler.cpp in Sources */,
409413
);

0 commit comments

Comments
 (0)