Searched refs:col1 (Results 1 – 7 of 7) sorted by relevance
/frameworks/ml/nn/runtime/test/specs/V1_2/ |
D | concat_float16_3.mod.py | 21 col1 = 60 variable 23 output_col = col1 + col2 25 input1 = Input("input1", "TENSOR_FLOAT16", "{%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]
|
/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/ml/nn/runtime/test/specs/V1_3/ |
D | concat_quant8_signed.mod.py | 107 col1 = 60 variable 109 output_col = col1 + col2 111 input1 = Input("input1", "TENSOR_QUANT8_ASYMM_SIGNED", "{%d, %d}, 0.5f, -128" % (row, col1)) 118 input1_values = [(x % 128) for x in range(row * col1)] 125 for c1 in range(col1): 126 output_values[r * output_col + c1] = input1_values[r * col1 + c1] 128 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 | 103 Collection<Object> col1 = new ArrayList<>(); in testDump() local 106 mLeakDetector.trackCollection(col1, "tag"); in testDump() 119 Collection<Object> col1 = new ArrayList<>(); in testDisabled() local 122 mLeakDetector.trackCollection(col1, "tag"); in testDisabled()
|
/frameworks/base/libs/hwui/tests/macrobench/ |
D | main.cpp | 80 const char* col1 = info.name.c_str(); in listTests() local 94 printf("%-20s %.*s\n", col1, toPrint, col2); in listTests() 95 col1 = ""; in listTests()
|