Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions results/retrieval_VLACombined_256.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
epoch,train_loss,train_acc,test_acc,epoch_time_sec
Empty file.
6 changes: 3 additions & 3 deletions src/models/attention/fast_vla.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

# Try importing Triton
try:
import triton
import triton.language as tl
import triton # type: ignore
import triton.language as tl # type: ignore
HAS_TRITON = True
except ImportError:
HAS_TRITON = False

def _combine(F_l, G_l, F_r, G_r):
"""Associative operator for the (F, G) recurrence."""
return torch.matmul(F_r, F_l), torch.matmul(F_r, G_l) + G_r
return torch.matmul(F_r, F_l).to(F_l.dtype), (torch.matmul(F_r, G_l) + G_r).to(G_l.dtype)

def parallel_scan(Fs, Gs):
"""
Expand Down
Loading