Searched refs:col2 (Results 1 – 7 of 7) sorted by relevance
/frameworks/ml/nn/runtime/test/specs/V1_2/ |
D | concat_float16_3.mod.py | 22 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/ |
D | concat_float_3.mod.py | 22 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]
|
D | concat_quant8_3.mod.py | 22 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/ |
D | concat_float_3_relaxed.mod.py | 22 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/ |
D | main.cpp | 82 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/ |
D | BiDiTestGridLayoutCodeRtl.java | 80 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()
|
D | BiDiTestGridLayoutCodeLtr.java | 80 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()
|