Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zhwang/output len #27

Open
wants to merge 57 commits into
base: corvo
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
b04253c
commit
sfc-gh-zhwang Oct 12, 2023
72199b3
commit
sfc-gh-zhwang Oct 12, 2023
3446b20
commit
sfc-gh-zhwang Oct 12, 2023
fed0fd9
commit
sfc-gh-zhwang Oct 12, 2023
fc983ae
commit
sfc-gh-zhwang Oct 12, 2023
28f736f
commit
sfc-gh-zhwang Oct 12, 2023
59d547c
commit
sfc-gh-zhwang Oct 12, 2023
7f411be
commit
sfc-gh-zhwang Oct 12, 2023
58f90cf
commit
sfc-gh-zhwang Oct 12, 2023
3c6db02
commit
sfc-gh-zhwang Oct 12, 2023
8c13f1d
commit
sfc-gh-zhwang Oct 12, 2023
9dc0329
commit
sfc-gh-zhwang Oct 12, 2023
8f0b203
commit
sfc-gh-zhwang Oct 12, 2023
441af5e
commit
sfc-gh-zhwang Oct 12, 2023
31383b4
commit
sfc-gh-zhwang Oct 12, 2023
b114cb8
commit
sfc-gh-zhwang Oct 12, 2023
2bf928e
commit
sfc-gh-zhwang Oct 12, 2023
47a55dc
commit
sfc-gh-zhwang Oct 12, 2023
d450e4f
commit
sfc-gh-zhwang Oct 12, 2023
f2ae7bd
commit
sfc-gh-zhwang Oct 12, 2023
4a780cb
commit
sfc-gh-zhwang Oct 12, 2023
c163de8
commit
sfc-gh-zhwang Oct 12, 2023
d97d69c
commit
sfc-gh-zhwang Oct 12, 2023
48b72a9
commit
sfc-gh-zhwang Oct 12, 2023
5407d15
commit
sfc-gh-zhwang Oct 12, 2023
a5e7793
commit
sfc-gh-zhwang Oct 13, 2023
b39167a
commit
sfc-gh-zhwang Oct 13, 2023
7e7101f
commit
sfc-gh-zhwang Oct 13, 2023
b8dac84
commit
sfc-gh-zhwang Oct 13, 2023
cb74cfc
commit
sfc-gh-zhwang Oct 13, 2023
4162ce5
commit
sfc-gh-zhwang Oct 13, 2023
59d662f
commit
sfc-gh-zhwang Oct 13, 2023
27b843a
commit
sfc-gh-zhwang Oct 13, 2023
4cd3026
commit
sfc-gh-zhwang Oct 13, 2023
e3f14f3
commit
sfc-gh-zhwang Oct 13, 2023
882a430
commit
sfc-gh-zhwang Oct 13, 2023
5c561c1
commit
sfc-gh-zhwang Oct 13, 2023
bee965e
commit
sfc-gh-zhwang Oct 13, 2023
7d62c7f
commit
sfc-gh-zhwang Oct 13, 2023
75e11f4
commit
sfc-gh-zhwang Oct 13, 2023
5b365c9
commit
sfc-gh-zhwang Oct 13, 2023
f7631a5
commit
sfc-gh-zhwang Oct 13, 2023
092e00e
commit
sfc-gh-zhwang Oct 13, 2023
3052151
commit
sfc-gh-zhwang Oct 13, 2023
d9ce514
commit
sfc-gh-zhwang Oct 13, 2023
0537189
commit
sfc-gh-zhwang Oct 13, 2023
115a949
commit
sfc-gh-zhwang Oct 13, 2023
762efd1
commit
sfc-gh-zhwang Oct 13, 2023
caadb53
commit
sfc-gh-zhwang Oct 13, 2023
dd23f20
commit
sfc-gh-zhwang Oct 13, 2023
7d83aff
commit
sfc-gh-zhwang Oct 13, 2023
a96e57d
commit
sfc-gh-zhwang Oct 13, 2023
59fb43d
commit
sfc-gh-zhwang Oct 13, 2023
3311fba
commit
sfc-gh-zhwang Oct 13, 2023
287d598
commit
sfc-gh-zhwang Oct 13, 2023
e959d15
commit
sfc-gh-zhwang Oct 13, 2023
8fac5b0
commit
sfc-gh-zhwang Oct 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
commit
  • Loading branch information
sfc-gh-zhwang committed Oct 13, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 7d62c7f3c5ae3f5cd995d56575a2727a6d09261b
2 changes: 1 addition & 1 deletion src/fastertransformer/models/llama/Llama.cc
Original file line number Diff line number Diff line change
@@ -1092,7 +1092,7 @@ void Llama<T>::forward(std::unordered_map<std::string, Tensor>* output_ten
printf("ids: \n");
for (int i=0; i < batch_size; i++) {
for (int j=0; j<max_seq_len; j++) {
printf("%d ", id_buf[j*batch_size+i]);
printf("%05d ", id_buf[j*batch_size+i]);
}
printf("\n");
}