llvm-project/polly/test/ScheduleOptimizer
Roman Gareev 113fa82c3c [Polly] Check the properties of accesses to operands of a matrix-matrix
multiplication

The following code modifies elements of the array D.

    for (i = 0; i < _PB_NI; i++)
      for (j = 0; j < _PB_NJ; j++)
      {
        for (k = 0; k < _PB_NK; k++)
        {
          double Mul = A[i][k] * B[k][j];
          D[i][j][k] += Mul;
          C[i][j] += Mul;
        }
      }

Nevertheless, the code is recognised as a matrix-matrix multiplication, since
the second and third dimensions of D are accessed with non-zero strides.

This fixes the typo, which was made during the translation to C++ bindings
(https://reviews.llvm.org/D35845).

Reviewed By: Michael Kruse <llvm@meinersbur.de>

Differential Revision: https://reviews.llvm.org/D110491
2021-09-28 22:58:57 +05:00
..
ManualOptimization [Polly] Fix wrong redirect in test case. 2021-09-24 14:53:00 -05:00
2012-03-16-Empty-Domain.ll
2012-04-16-Trivially-vectorizable-loops.ll
2013-04-11-Empty-Domain-two.ll
SIMDInParallelFor.ll
computeout.ll [Polly] Remove -polly-opt-fusion option. 2021-09-23 15:43:08 -05:00
ensure-correct-tile-sizes.ll [Polly] Don't generate inter-iteration noalias metadata. 2021-09-20 22:20:17 -05:00
focaltech_test_detail_threshold-7bc17e.ll [Polly] Port IslScheduleOptimizer to the NewPM. 2021-02-09 23:56:21 -06:00
full_partial_tile_separation.ll
kernel_gemm___%for.body---%for.end24.jscop
kernel_gemm___%for.body---%for.end24.jscop.transformed
kernel_gemm___%for.cond1.preheader---%for.end18.jscop.transformed
line-tiling-2.ll
line-tiling.ll
mat_mul_pattern_data_layout.ll [Polly][Matmul] Re-pack A in every iteration. 2021-06-09 15:19:52 -05:00
mat_mul_pattern_data_layout_2.ll [Polly] Don't generate inter-iteration noalias metadata. 2021-09-20 22:20:17 -05:00
one-dimensional-band.ll
outer_coincidence.ll
pattern-matching-based-opts-after-delicm.ll Revert "[NFC] remove explicit default value for strboolattr attribute in tests" 2021-05-24 19:43:40 +02:00
pattern-matching-based-opts.ll
pattern-matching-based-opts_2.ll
pattern-matching-based-opts_3.ll [Polly] Don't generate inter-iteration noalias metadata. 2021-09-20 22:20:17 -05:00
pattern-matching-based-opts_4.ll [Polly][Matmul] Re-pack A in every iteration. 2021-06-09 15:19:52 -05:00
pattern-matching-based-opts_5.ll [Polly] Don't generate inter-iteration noalias metadata. 2021-09-20 22:20:17 -05:00
pattern-matching-based-opts_6.ll [Polly][Matmul] Re-pack A in every iteration. 2021-06-09 15:19:52 -05:00
pattern-matching-based-opts_7.ll [Polly][Matmul] Re-pack A in every iteration. 2021-06-09 15:19:52 -05:00
pattern-matching-based-opts_8.ll [Polly][Matmul] Re-pack A in every iteration. 2021-06-09 15:19:52 -05:00
pattern-matching-based-opts_9.ll [Polly][Matmul] Re-pack A in every iteration. 2021-06-09 15:19:52 -05:00
pattern-matching-based-opts_11.ll
pattern-matching-based-opts_12.ll [Polly][Matmul] Re-pack A in every iteration. 2021-06-09 15:19:52 -05:00
pattern-matching-based-opts_13.ll [Polly] Don't generate inter-iteration noalias metadata. 2021-09-20 22:20:17 -05:00
pattern-matching-based-opts_14.ll [Polly] Don't generate inter-iteration noalias metadata. 2021-09-20 22:20:17 -05:00
pattern-matching-based-opts_15.ll [Polly] Check the properties of accesses to operands of a matrix-matrix 2021-09-28 22:58:57 +05:00
pattern_matching_based_opts_splitmap.ll
pattern_matching_based_opts_splitmap___%for.body---%for.end23.jscop
pattern_matching_based_opts_splitmap___%for.body---%for.end23.jscop.transformed
prevectorization-without-tiling.ll Revert "[NFC] remove explicit default value for strboolattr attribute in tests" 2021-05-24 19:43:40 +02:00
prevectorization.ll Revert "[NFC] remove explicit default value for strboolattr attribute in tests" 2021-05-24 19:43:40 +02:00
rectangular-tiling.ll
statistics.ll
tile_after_fusion.ll [Polly] Remove -polly-opt-fusion option. 2021-09-23 15:43:08 -05:00
vec-addr-space.ll Revert "[NFC] remove explicit default value for strboolattr attribute in tests" 2021-05-24 19:43:40 +02:00