Skip to content

Commit

Permalink
x64: brgemm gru: fixed LDA for gemm iter part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
akharito committed Feb 14, 2023
1 parent c67f46b commit 2089770
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
9 changes: 5 additions & 4 deletions src/cpu/x64/rnn/brgemm_cell_common_fwd.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2021-2022 Intel Corporation
* Copyright 2021-2023 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -583,7 +583,8 @@ brgemm_gru_t<src_t, weights_t, scratch_t, gemm_acc_t>::brgemm_gru_t(
, C_cell_(scratch_cell)
, Dl_(d_layer)
, LDAl_(rnn_.src_layer_ld(cell_position))
, LDAi_(rnn_.src_iter_ld(cell_position))
, LDAi_p1_(rnn_.src_iter_ld(cell_position))
, LDAi_p2_(rnn_.dst_iter_part2_ld(cell_position))
, max_nthr_(rnn_.nthr)
, n_blocking_((rnn_.unfused_post_gemm) ? rnn_.N_blocks * rnn_.n_gates
: rnn_.N_blocks)
Expand Down Expand Up @@ -687,8 +688,8 @@ void brgemm_gru_t<src_t, weights_t, scratch_t, gemm_acc_t>::kernel(
dim_t mb = start;
const auto m = mb * rnn_.m_block;
const auto *const Al_m = Al_ + m * LDAl_;
const auto *const Ai_m = Ai_ + m * LDAi_;
const auto *const Ai2_m = Dl_ + m * LDAl_;
const auto *const Ai_m = Ai_ + m * LDAi_p1_;
const auto *const Ai2_m = Dl_ + m * LDAi_p2_;

for (dim_t nb_i = 0; nb_i < n_blocking_; nb_i++) {
const auto nb
Expand Down
5 changes: 3 additions & 2 deletions src/cpu/x64/rnn/brgemm_cell_common_fwd.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2021-2022 Intel Corporation
* Copyright 2021-2023 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -177,7 +177,8 @@ class brgemm_gru_t {
scratch_t *const C_cell_;
src_t *const Dl_;
const dim_t LDAl_;
const dim_t LDAi_;
const dim_t LDAi_p1_;
const dim_t LDAi_p2_;
const dim_t max_nthr_;
const dim_t n_blocking_;
const dim_t m_blocking_;
Expand Down
4 changes: 4 additions & 0 deletions tests/benchdnn/inputs/rnn/harness_gru_regression
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# int8 SIC != SLC
--reset
--trivial-strides=true --prop=FWD_I --alg=VANILLA_GRU --activation=UNDEF
--direction=left2right --cfg=u8u8u8f32 l1t47mb100sic128slc256dhc128dic128
2 changes: 2 additions & 0 deletions tests/benchdnn/inputs/rnn/test_gru_all
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@
--batch=test_gru_bfloat16

--batch=test_gru_bf32_bfloat16

--batch=harness_gru_regression

0 comments on commit 2089770

Please sign in to comment.