File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -344,11 +344,15 @@ def testConcreteShapedType():
344344 # CHECK: is_static_size_with_dynamic: False
345345 print ("is_static_size_with_dynamic:" , vector .is_static_size (dynamic_size_val ))
346346 # CHECK: is_dynamic_stride_or_offset_with_dynamic: True
347- print ("is_dynamic_stride_or_offset_with_dynamic:" ,
348- vector .is_dynamic_stride_or_offset (dynamic_stride_val ))
347+ print (
348+ "is_dynamic_stride_or_offset_with_dynamic:" ,
349+ vector .is_dynamic_stride_or_offset (dynamic_stride_val )
350+ )
349351 # CHECK: is_static_stride_or_offset_with_dynamic: False
350- print ("is_static_stride_or_offset_with_dynamic:" ,
351- vector .is_static_stride_or_offset (dynamic_stride_val ))
352+ print (
353+ "is_static_stride_or_offset_with_dynamic:" ,
354+ vector .is_static_stride_or_offset (dynamic_stride_val )
355+ )
352356 # CHECK: isinstance(ShapedType): True
353357 print ("isinstance(ShapedType):" , isinstance (vector , ShapedType ))
354358
You can’t perform that action at this time.
0 commit comments