Skip to content
Open
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 .github/workflows/call-perf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ jobs:
fi

if [ -n "${{ matrix.build.pyreq }}" ]; then
pip install torch==2.9.0 --index-url https://download.pytorch.org/whl/cpu
pip install ${{ matrix.build.pyreq }}
fi
if [ "${{ matrix.build.project }}" == "tt-xla" ]; then
Expand Down
2 changes: 1 addition & 1 deletion benchmark/tt-xla/test_encoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def test_bert(output_file):
loader = ModelLoader()
model_info_name = loader.get_model_info().name
print(f"\nLoading model {model_info_name}...")
model = loader.load_model(dtype_override=DTYPE_MAP[data_format])
model = loader.load_model(dtype_override=DTYPE_MAP[data_format], attn_implementation="eager")

# Create function for loading raw inputs
load_inputs_fn = get_default_inputs
Expand Down
2 changes: 1 addition & 1 deletion benchmark/tt-xla/test_vision.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def test_vit(output_file):
variant = ModelVariant.BASE
loader = ModelLoader(variant=variant)
model_info_name = loader.get_model_info(variant=variant).name
model = loader.load_model(dtype_override=data_format)
model = loader.load_model(dtype_override=data_format, attn_implementation="eager")
model = model.eval()

def load_inputs_fn(batch_size, dtype):
Expand Down
2 changes: 1 addition & 1 deletion third_party/tt_forge_models
Submodule tt_forge_models updated 263 files
Loading