Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Summary:

Test Plan:

Reviewers:

Subscribers:

Tasks:

Tags:
  • Loading branch information
manman-ren committed Nov 27, 2024
1 parent 1f3f98d commit 8cd2a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tritonbench/operators/flash_attention/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def get_input_iter(self) -> Generator:
H = self.H

def get_ctx_vals():
for i in range(self.SEQ_LEN, self.SEQ_LEN + 1):
for i in range(self.SEQ_LEN, 15):
N_CTX = 2**i
# BATCH = 16384 // N_CTX
# H = 2048 // D_HEAD
Expand Down

0 comments on commit 8cd2a52

Please sign in to comment.