Skip to content

Commit

Permalink
Fix Llama demo app after move in pytorch#4460
Browse files Browse the repository at this point in the history
  • Loading branch information
dltn committed Aug 22, 2024
1 parent 87b38cf commit b266fb3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
03729F0B2BB203B300152F2E /* runner.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F082BB203B300152F2E /* runner.h */; };
03729F0C2BB203B300152F2E /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F092BB203B300152F2E /* util.h */; };
03729F122BB2042B00152F2E /* sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F102BB2042B00152F2E /* sampler.h */; };
03729F132BB2042B00152F2E /* sampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03729F112BB2042B00152F2E /* sampler.cpp */; };
03729F162BB2043600152F2E /* bpe_tokenizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03729F142BB2043600152F2E /* bpe_tokenizer.cpp */; };
03729F172BB2043600152F2E /* tokenizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 03729F152BB2043600152F2E /* tokenizer.h */; };
038D678C2C482C1E00B88CF2 /* llama_tiktoken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 038D678A2C482C1D00B88CF2 /* llama_tiktoken.cpp */; };
Expand All @@ -49,6 +48,7 @@
03BADE232BD2EB6700DDFDC2 /* tiktoken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03BADE212BD2EB6600DDFDC2 /* tiktoken.cpp */; };
03BADE242BD2EB6700DDFDC2 /* tiktoken.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BADE222BD2EB6700DDFDC2 /* tiktoken.h */; };
03DDA0FB2BD6368100D234B3 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = 03DDA0FA2BD6368100D234B3 /* base64.h */; };
5CF5ABA62C77EE45003B35A5 /* sampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CF5ABA52C77EE45003B35A5 /* sampler.cpp */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -105,6 +105,7 @@
03BADE212BD2EB6600DDFDC2 /* tiktoken.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tiktoken.cpp; path = ../../../../extension/llm/tokenizer/tiktoken.cpp; sourceTree = "<group>"; };
03BADE222BD2EB6700DDFDC2 /* tiktoken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tiktoken.h; path = ../../../../extension/llm/tokenizer/tiktoken.h; sourceTree = "<group>"; };
03DDA0FA2BD6368100D234B3 /* base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = base64.h; path = ../../../../extension/llm/tokenizer/base64.h; sourceTree = "<group>"; };
5CF5ABA52C77EE45003B35A5 /* sampler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sampler.cpp; path = ../../../../extension/llm/sampler/sampler.cpp; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -213,6 +214,7 @@
032C01662AC228E5002955E1 = {
isa = PBXGroup;
children = (
5CF5ABA52C77EE45003B35A5 /* sampler.cpp */,
0324D68A2BAACB6900DEF36F /* LLaMA */,
0324D6952BAACB7000DEF36F /* LLaMAAssets */,
035A5E952BB4B523001E0553 /* LLaMAEntitlements */,
Expand Down Expand Up @@ -447,12 +449,12 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5CF5ABA62C77EE45003B35A5 /* sampler.cpp in Sources */,
03729EE12BB1F93800152F2E /* LLaMARunner.mm in Sources */,
03BADE232BD2EB6700DDFDC2 /* tiktoken.cpp in Sources */,
038D678C2C482C1E00B88CF2 /* llama_tiktoken.cpp in Sources */,
03729F162BB2043600152F2E /* bpe_tokenizer.cpp in Sources */,
03729F0A2BB203B300152F2E /* runner.cpp in Sources */,
03729F132BB2042B00152F2E /* sampler.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down

0 comments on commit b266fb3

Please sign in to comment.