Searched refs:col1 (Results 1 – 5 of 5) sorted by relevance
/frameworks/ml/nn/runtime/test/specs/V1_0/ |
D | concat_float_3.mod.py | 21 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]
|
D | concat_quant8_3.mod.py | 21 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/ml/nn/runtime/test/specs/V1_1/ |
D | concat_float_3_relaxed.mod.py | 21 col1 = 60 variable 23 output_col = col1 + col2 25 input1 = Input("input1", "TENSOR_FLOAT32", "{%d, %d}" % (row, col1)) # input tensor 1 33 input1_values = [x for x in range(row * col1)] 40 for c1 in range(col1): 41 output_values[r * output_col + c1] = input1_values[r * col1 + c1] 43 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/leak/ |
D | LeakDetectorTest.java | 105 Collection<Object> col1 = new ArrayList<>(); in testDump() local 108 mLeakDetector.trackCollection(col1, "tag"); in testDump() 121 Collection<Object> col1 = new ArrayList<>(); in testDisabled() local 124 mLeakDetector.trackCollection(col1, "tag"); in testDisabled()
|
/frameworks/base/libs/hwui/tests/macrobench/ |
D | main.cpp | 78 const char* col1 = info.name.c_str(); in listTests() local 92 printf("%-20s %.*s\n", col1, toPrint, col2); in listTests() 93 col1 = ""; in listTests()
|