Skip to content

Commit fb989d4

Browse files
Fix llama2 benchmarks (#2767)
1 parent 8adba6e commit fb989d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thunder/benchmarks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2081,7 +2081,7 @@ def fn(self) -> Callable:
20812081
from litgpt.model import CausalSelfAttention
20822082

20832083
module = (
2084-
CausalSelfAttention(self.config)
2084+
CausalSelfAttention(self.config, 0)
20852085
.to(device=self.device, dtype=self.tdtype)
20862086
.requires_grad_(self.requires_grad)
20872087
)

0 commit comments

Comments
 (0)