Home
last modified time | relevance | path

Searched refs:col2 (Results 1 – 7 of 7) sorted by relevance

/frameworks/ml/nn/runtime/test/specs/V1_2/
Dconcat_float16_3.mod.py22 col2 = 30 variable
23 output_col = col1 + col2
26 input2 = Input("input2", "TENSOR_FLOAT16", "{%d, %d}" % (row, col2)) # input tensor 2
33 input2_values = [-x for x in range(row * col2)]
41 for c2 in range(col2):
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
/frameworks/ml/nn/runtime/test/specs/V1_0/
Dconcat_float_3.mod.py22 col2 = 30 variable
23 output_col = col1 + col2
26 input2 = Input("input2", "TENSOR_FLOAT32", "{%d, %d}" % (row, col2)) # input tensor 2
33 input2_values = [-x for x in range(row * col2)]
41 for c2 in range(col2):
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
Dconcat_quant8_3.mod.py22 col2 = 30 variable
23 output_col = col1 + col2
26 input2 = Input("input2", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, col2))
33 input2_values = [x % 128 for x in range(row * col2)]
41 for c2 in range(col2):
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
/frameworks/ml/nn/runtime/test/specs/V1_1/
Dconcat_float_3_relaxed.mod.py22 col2 = 30 variable
23 output_col = col1 + col2
26 input2 = Input("input2", "TENSOR_FLOAT32", "{%d, %d}" % (row, col2)) # input tensor 2
34 input2_values = [-x for x in range(row * col2)]
42 for c2 in range(col2):
43 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
/frameworks/base/libs/hwui/tests/macrobench/
Dmain.cpp82 const char* col2 = info.description.c_str(); in listTests() local
87 char* found = (char*)memrchr(col2, ' ', 50); in listTests()
89 toPrint = found - col2; in listTests()
94 printf("%-20s %.*s\n", col1, toPrint, col2); in listTests()
96 col2 += toPrint; in listTests()
98 while (*col2 == ' ') { in listTests()
99 col2++; in listTests()
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
DBiDiTestGridLayoutCodeRtl.java80 Spec col2 = spec(1, START); in create() local
106 layout.addView(c, new GridLayout.LayoutParams(row3, col2)); in create()
117 layout.addView(c, new GridLayout.LayoutParams(row4, col2)); in create()
DBiDiTestGridLayoutCodeLtr.java80 Spec col2 = spec(1, START); in create() local
106 layout.addView(c, new GridLayout.LayoutParams(row3, col2)); in create()
117 layout.addView(c, new GridLayout.LayoutParams(row4, col2)); in create()