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

Make sure that indices are available on all relevant devices #328

Merged
Merged
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion outlines/text/generate/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ def __call__(

if past_key_values:
unfinished_past_key_values = tuple(
tuple(vv[~local_is_finished] for vv in v) for v in past_key_values
tuple(vv[~local_is_finished.to(vv.device)] for vv in v)
for v in past_key_values
)

result = self.model.tokenizer.decode(token_ids[:, num_prompt_tokens:])
Expand Down
Loading