Searched defs:col1 (Results 1 - 3 of 3) sorted by relevance

/frameworks/ml/nn/runtime/test/specs/
H A Dconcat_float_3.mod.py21 col1 = 60 variable
23 output_col = col1 + col2
25 input1 = Input("input1", "TENSOR_FLOAT32", "{%d, %d}" % (row, col1)) # input tensor 1
32 input1_values = [x for x in range(row * col1)]
39 for c1 in range(col1):
40 output_values[r * output_col + c1] = input1_values[r * col1 + c1]
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
H A Dconcat_quant8_3.mod.py21 col1 = 60 variable
23 output_col = col1 + col2
25 input1 = Input("input1", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, col1))
32 input1_values = [(x % 128 + 128) for x in range(row * col1)]
39 for c1 in range(col1):
40 output_values[r * output_col + c1] = input1_values[r * col1 + c1]
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
/frameworks/base/libs/hwui/tests/macrobench/
H A Dmain.cpp78 const char* col1 = info.name.c_str(); local
92 printf("%-20s %.*s\n", col1, toPrint, col2);
93 col1 = "";

Completed in 338 milliseconds