Skip to content

Commit 3be018b

Browse files
committed
determining i386 processor string from CI
1 parent e8d1cac commit 3be018b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

tests/python/contrib/test_hexagon/test_conv2d_blocked.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ def test_conv2d(
156156
dtype,
157157
target,
158158
):
159+
print()
160+
print(platform.machine())
161+
print(platform.processor())
162+
159163
# TODO: no support for dilation
160164
dilation = 1
161165

tests/python/contrib/test_hexagon/test_conv2d_conv2d.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import pytest
3737

3838

39-
def conv2dconv2d(
39+
def conv2dconv2d_nhwc8h8w32c(
4040
shape_input,
4141
pad1,
4242
stride1,
@@ -182,6 +182,10 @@ def test_conv2d(
182182
dtype,
183183
target,
184184
):
185+
print()
186+
print(platform.machine())
187+
print(platform.processor())
188+
185189
# TODO: no support for padding in conv2d #2
186190
pad2 = 0
187191

@@ -217,7 +221,7 @@ def test_conv2d(
217221
ref_output = testing.conv2d_nhwc_python(temp_output, np_filter2, stride2, pad2)
218222
output = build_and_run(
219223
inputs,
220-
conv2dconv2d,
224+
conv2dconv2d_nhwc8h8w32c,
221225
target,
222226
target,
223227
shape_input=shape_input,

0 commit comments

Comments
 (0)