Searched refs:c_elements (Results 1 – 9 of 9) sorted by relevance
/external/u-boot/arch/arm/mach-omap2/omap5/ |
D | dra7xx_iodelay.c | 113 u32 c_elements, f_elements; in get_cfg_reg() local 122 c_elements = g_delay_coarse + a_delay_coarse; in get_cfg_reg() 126 total_delay = c_elements * cpde + f_elements * fpde; in get_cfg_reg() 128 c_elements = total_delay / cpde; in get_cfg_reg() 132 reg = (c_elements << CFG_X_COARSE_DLY_SHIFT) & CFG_X_COARSE_DLY_MASK; in get_cfg_reg()
|
/external/XNNPACK/bench/ |
D | q8-gemm.cc | 66 const size_t c_elements = mc * nc; in GEMMBenchmark() local 69 sizeof(uint8_t) * (w_elements + c_elements)); in GEMMBenchmark() 74 std::vector<uint8_t> c(c_elements * num_buffers); in GEMMBenchmark() 165 const size_t c_elements = mc * nc; in GemmlowpBenchmark() local 168 kElements * sizeof(uint8_t) + bElements * sizeof(int32_t) + c_elements * sizeof(uint8_t)); in GemmlowpBenchmark() 174 std::vector<uint8_t> c(c_elements * num_buffers); in GemmlowpBenchmark() 189 …rixMap<uint8_t, gemmlowp::MapOrder::RowMajor> CM(c.data() + buffer_index * c_elements, mc, nc, nc); in GemmlowpBenchmark()
|
D | f16-gemm.cc | 59 const size_t c_elements = mc * nc; in GEMMBenchmark() local 62 sizeof(uint16_t) * (w_elements + c_elements)); in GEMMBenchmark() 67 std::vector<uint16_t> c(c_elements * num_buffers); in GEMMBenchmark()
|
D | f16-spmm.cc | 55 const size_t c_elements = mc * nc; in SpMMBenchmark() local 60 …sizeof(uint16_t) * (w_elements + c_elements) + sizeof(uint32_t) * (dmap_elements + nmap_elements)); in SpMMBenchmark() 127 std::vector<float, AlignedAllocator<float, 64>> c(num_buffers * c_elements); in SpMMBenchmark() 151 c.data() + buffer_index * c_elements, in SpMMBenchmark()
|
D | f32-dwconv.cc | 84 const size_t c_elements = output_size * channels; in DWConvBenchmark() local 87 sizeof(float) * (w_elements + c_elements) + sizeof(void*) * i_elements); in DWConvBenchmark() 122 std::vector<float> c(c_elements * num_buffers); in DWConvBenchmark() 139 c.data() + buffer_index * c_elements + y * output_width * channels, in DWConvBenchmark()
|
D | f32-im2col-gemm.cc | 71 const size_t c_elements = output_size * group_output_channels; in Im2ColGEMMBenchmark() local 74 sizeof(float) * (w_elements + c_elements)); in Im2ColGEMMBenchmark() 86 std::vector<float> c(c_elements * num_buffers); in Im2ColGEMMBenchmark()
|
D | f32-spmm.cc | 53 const size_t c_elements = mc * nc; in SpMMBenchmark() local 58 … sizeof(float) * (w_elements + c_elements) + sizeof(uint32_t) * (dmap_elements + nmap_elements)); in SpMMBenchmark() 125 std::vector<float, AlignedAllocator<float, 64>> c(num_buffers * c_elements); in SpMMBenchmark() 149 c.data() + buffer_index * c_elements, in SpMMBenchmark()
|
D | f32-gemm.cc | 68 const size_t c_elements = mc * nc; in GEMMBenchmark() local 71 sizeof(float) * (w_elements + c_elements)); in GEMMBenchmark() 76 std::vector<float> c(c_elements * num_buffers); in GEMMBenchmark() 143 const size_t c_elements = mc * nc; in PPMM1PBenchmark() local 146 sizeof(float) * (w_elements + c_elements)); in PPMM1PBenchmark() 151 std::vector<float> c(c_elements * num_buffers); in PPMM1PBenchmark() 220 const size_t c_elements = mc * nc; in PPMM2PBenchmark() local 223 sizeof(float) * (w_elements + c_elements)); in PPMM2PBenchmark() 228 std::vector<float> c(c_elements * num_buffers); in PPMM2PBenchmark()
|
D | f32-igemm.cc | 81 const size_t c_elements = output_height * output_width * output_pixel_stride; in IGEMMBenchmark() local 84 sizeof(float) * (w_elements + c_elements) + sizeof(void*) * i_elements); in IGEMMBenchmark() 121 std::vector<float> c(c_elements * num_buffers); in IGEMMBenchmark() 142 …c.data() + buffer_index * c_elements + m * group_output_channels + n, group_output_channels * size… in IGEMMBenchmark()
|