@@ -2208,11 +2208,10 @@ def buffer_load_store_kernel(x, y):
22082208 ttgl .amd .cdna4 .buffer_store (stored_value = a , ptr = y , offsets = offsets , mask = mask , cache = '.cs' )
22092209
22102210
2211- @pytest .mark .parametrize ("target" , [HIP_TARGET_CDNA3 , HIP_TARGET_CDNA4 ])
2212- def test_buffer_load_store (target ):
2211+ def test_buffer_load_store ():
22132212 x = MockTensor (ttgl .float32 )
22142213 y = MockTensor (ttgl .float32 )
2215- module = run_parser (buffer_load_store_kernel , * make_args (x , y ), target = target )
2214+ module = run_parser (buffer_load_store_kernel , * make_args (x , y ), target = HIP_TARGET_CDNA3 )
22162215
22172216 expecttest .assert_expected_inline (
22182217 anonymize_ir (module .str_nodebug ()), """\
@@ -2257,11 +2256,10 @@ def buffer_load_store_with_broadcast_kernel(x, y):
22572256 ttgl .amd .cdna3 .buffer_store (stored_value = a , ptr = y , offsets = offsets , mask = mask , cache = '.cs' )
22582257
22592258
2260- @pytest .mark .parametrize ("target" , [HIP_TARGET_CDNA3 , HIP_TARGET_CDNA4 ])
2261- def test_buffer_load_store_with_broadcast (target ):
2259+ def test_buffer_load_store_with_broadcast ():
22622260 x = MockTensor (ttgl .float16 )
22632261 y = MockTensor (ttgl .float16 )
2264- module = run_parser (buffer_load_store_with_broadcast_kernel , * make_args (x , y ), target = target )
2262+ module = run_parser (buffer_load_store_with_broadcast_kernel , * make_args (x , y ), target = HIP_TARGET_CDNA3 )
22652263
22662264 expecttest .assert_expected_inline (
22672265 anonymize_ir (module .str_nodebug ()), """\
0 commit comments