HomeSort by relevance Sort by last modified time
    Searched refs:KernelFormat (Results 1 - 9 of 9) sorted by null

  /external/gemmlowp/internal/
block_params.h 45 template <typename KernelFormat>
47 FindL2BlockSizes<KernelFormat>(rows, cols, depth, num_threads, &l2_rows,
49 FindL1BlockSizes<KernelFormat>(l2_rows, l2_cols, l2_depth, &l1_rows,
53 template <typename KernelFormat>
76 RoundUp<KernelFormat::kCols>(CeilQuotient(cols, min_l2_cols_blocks));
83 l2_rows = RoundUp<KernelFormat::kRows>(rows);
91 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l2_rows_blocks));
99 template <typename KernelFormat>
107 assert(rows % KernelFormat::kRows == 0);
108 assert(cols % KernelFormat::kCols == 0)
    [all...]
single_thread_gemm.h 46 template <typename KernelFormat, typename InputScalar, typename OutputScalar,
72 block_params.Init<KernelFormat>(rows, cols, depth, 1);
74 PackedSideBlock<typename KernelFormat::Lhs> packed_lhs(
76 PackedSideBlock<typename KernelFormat::Rhs> packed_rhs(
multi_thread_gemm.h 394 template <typename KernelFormat, typename InputScalar, typename OutputScalar,
399 typedef PackedSideBlock<typename KernelFormat::Lhs> PackedLhs;
400 typedef PackedSideBlock<typename KernelFormat::Rhs> PackedRhs;
424 block_params.Init<KernelFormat>(rows, cols, depth, 1);
560 template <typename KernelFormat, typename InputScalar, typename OutputScalar,
583 HowManyThreads<KernelFormat::kRows>(context, rows, cols, depth);
585 return SingleThreadGemm<KernelFormat, InputScalar, OutputScalar,
608 block_params.Init<KernelFormat>(rows, cols, depth, workers_count);
610 PackedSideBlock<typename KernelFormat::Rhs> packed_rhs(
626 next_start_row = std::min(rows, RoundUp<KernelFormat::kRows>
    [all...]
kernel_SSE.h 33 typedef KernelFormat<
206 typedef KernelFormat<
kernel_default.h 67 typedef ReferenceKernel<KernelFormat<KernelSideFormat<CellFormat<4, 4>, 2>,
kernel_neon.h 35 typedef KernelFormat<KernelSideFormat<CellFormat<4, 2>, 3>,
268 typedef KernelFormat<
648 typedef KernelFormat<KernelSideFormat<CellFormat<4, 2>, 3>,
    [all...]
kernel.h 77 // so we call them both 'sides'. A KernelFormat thus is just a pair
89 // KernelFormat<
150 // KernelFormat describes fully the input data layout that a kernel expects.
153 struct KernelFormat {
compute.h 32 typedef KernelFormat<KernelLhsFormat, KernelRhsFormat> Format;
  /external/gemmlowp/test/
test.cc     [all...]

Completed in 68 milliseconds