Skip to content

Commit 78613ad

Browse files
committed
[Test] Fix syntax error in experiment scripts
1 parent a90f114 commit 78613ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

experiments/gemm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def custom_matmul(a, b):
3131
import os
3232
import sys
3333
base_dir = os.environ.get('TORCHSIM_DIR', default='/workspace/PyTorchSim')
34-
config = os.environ.get('TORCHSIM_CONFIG', default=f'{base_dir}/configs/systolic_ws_128x128_c2_simple_noc_tpuv4.yml)
34+
config = os.environ.get('TORCHSIM_CONFIG', default=f'{base_dir}/configs/systolic_ws_128x128_c2_simple_noc_tpuv4.yml')
3535
config_prefix = config.split('/')[-1].split('.')[0][9:] # extract config name from config path
3636
sys.path.append(base_dir)
3737
args = argparse.ArgumentParser()

0 commit comments

Comments
 (0)