gru_cpu_kernel.h 18.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
G
guosheng 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#pragma once
#include <type_traits>
Y
Yi Wang 已提交
17 18
#include "paddle/fluid/operators/math/detail/activation_functions.h"
#include "paddle/fluid/operators/math/gru_compute.h"
G
guosheng 已提交
19 20 21 22 23 24 25 26 27

namespace paddle {
namespace operators {
namespace math {
namespace detail {

#ifndef __NVCC__

template <class OpResetOutput, typename T>
G
guosheng 已提交
28 29 30
void hl_naive_gru_forward_reset_output(OpResetOutput op_reset_output,
                                       T *gate_value, T *reset_output_value,
                                       T *prev_output_value, int frame_size,
31
                                       ActivationType active_gate) {
G
guosheng 已提交
32 33 34 35 36 37 38 39 40 41 42 43
  T r_value_update_gate;
  T r_value_reset_gate;
  T r_value_reset_output;
  T r_prev_out = 0;
  T *update_gate = gate_value;
  T *reset_gate = gate_value + frame_size;

  for (int i = 0; i < frame_size; i++) {
    r_value_update_gate = update_gate[i];
    r_value_reset_gate = reset_gate[i];
    if (prev_output_value) {
      r_prev_out = prev_output_value[i];
G
guosheng 已提交
44 45
    }

46 47
    op_reset_output(&r_value_update_gate, &r_value_reset_gate, &r_prev_out,
                    &r_value_reset_output, active_gate);
G
guosheng 已提交
48

G
guosheng 已提交
49 50 51
    update_gate[i] = r_value_update_gate;
    reset_gate[i] = r_value_reset_gate;
    reset_output_value[i] = r_value_reset_output;
G
guosheng 已提交
52 53 54 55
  }
}

template <class OpFinalOutput, typename T>
G
guosheng 已提交
56 57 58
void hl_naive_gru_forward_final_output(OpFinalOutput op_final_output,
                                       T *gate_value, T *prev_output_value,
                                       T *output_value, int frame_size,
Q
Qiao Longfei 已提交
59 60
                                       ActivationType active_node,
                                       bool origin_mode) {
G
guosheng 已提交
61 62 63 64 65 66 67 68 69 70 71 72
  T r_value_update_gate;
  T r_value_frame_state;
  T r_prev_out = 0;
  T r_output;
  T *update_gate = gate_value;
  T *frame_state = gate_value + frame_size * 2;

  for (int i = 0; i < frame_size; i++) {
    r_value_update_gate = update_gate[i];
    r_value_frame_state = frame_state[i];
    if (prev_output_value) {
      r_prev_out = prev_output_value[i];
G
guosheng 已提交
73 74
    }

75
    op_final_output(&r_value_update_gate, &r_value_frame_state, &r_prev_out,
Q
Qiao Longfei 已提交
76
                    &r_output, active_node, origin_mode);
G
guosheng 已提交
77

G
guosheng 已提交
78 79
    frame_state[i] = r_value_frame_state;
    output_value[i] = r_output;
G
guosheng 已提交
80 81 82 83
  }
}

template <class OpResetOutput, typename T>
G
guosheng 已提交
84 85 86
void hl_avx_gru_forward_reset_output(OpResetOutput op_reset_output,
                                     T *gate_value, T *reset_output_value,
                                     T *prev_output_value, int frame_size,
87
                                     ActivationType active_gate) {
G
guosheng 已提交
88
#ifdef __AVX__
89 90
  __m256 r_value_update_gate, r_value_update_gate_last = _mm256_set1_ps(0.0f);
  __m256 r_value_reset_gate, r_value_reset_gate_last = _mm256_set1_ps(0.0f);
G
guosheng 已提交
91
  __m256 r_value_reset_output;
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  __m256 r_prev_out = _mm256_set1_ps(0.0f),
         r_prev_out_last = _mm256_set1_ps(0.0f);
  T *update_gate = gate_value;
  T *reset_gate = gate_value + frame_size;
  int block = 8;
  const int n = frame_size;
  const int rest = n % block;
  const int end = n - rest;
  int i = 0;

  if (rest > 0) {
    i = n - block;
    r_value_update_gate_last =
        _mm256_loadu_ps((const float *)(update_gate + i));
    r_value_reset_gate_last = _mm256_loadu_ps((const float *)(reset_gate + i));
    if (prev_output_value) {
      r_prev_out_last = _mm256_loadu_ps((const float *)(prev_output_value + i));
    }
  }
G
guosheng 已提交
111

112 113 114
  for (i = 0; i < end; i += block) {
    r_value_update_gate = _mm256_loadu_ps((const float *)(update_gate + i));
    r_value_reset_gate = _mm256_loadu_ps((const float *)(reset_gate + i));
G
guosheng 已提交
115
    if (prev_output_value) {
116
      r_prev_out = _mm256_loadu_ps((const float *)(prev_output_value + i));
G
guosheng 已提交
117 118
    }

119 120
    op_reset_output(&r_value_update_gate, &r_value_reset_gate, &r_prev_out,
                    &r_value_reset_output, active_gate);
G
guosheng 已提交
121

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
    _mm256_storeu_ps(reinterpret_cast<float *>(update_gate + i),
                     r_value_update_gate);
    _mm256_storeu_ps(reinterpret_cast<float *>(reset_gate + i),
                     r_value_reset_gate);
    _mm256_storeu_ps(reinterpret_cast<float *>(reset_output_value + i),
                     r_value_reset_output);
  }

  if (rest > 0) {
    i = n - block;

    op_reset_output(&r_value_update_gate_last, &r_value_reset_gate_last,
                    &r_prev_out_last, &r_value_reset_output, active_gate);

    _mm256_storeu_ps(reinterpret_cast<float *>(update_gate + i),
                     r_value_update_gate_last);
    _mm256_storeu_ps(reinterpret_cast<float *>(reset_gate + i),
                     r_value_reset_gate_last);
    _mm256_storeu_ps(reinterpret_cast<float *>(reset_output_value + i),
                     r_value_reset_output);
G
guosheng 已提交
142 143 144 145 146
  }
#endif
}

template <class OpFinalOutput, typename T>
G
guosheng 已提交
147 148 149
void hl_avx_gru_forward_final_output(OpFinalOutput op_final_output,
                                     T *gate_value, T *prev_output_value,
                                     T *output_value, int frame_size,
Q
Qiao Longfei 已提交
150 151
                                     ActivationType active_node,
                                     bool origin_mode) {
G
guosheng 已提交
152
#ifdef __AVX__
153 154 155 156
  __m256 r_value_update_gate, r_value_update_gate_last = _mm256_set1_ps(0.0f);
  __m256 r_value_frame_state, r_value_frame_state_last = _mm256_set1_ps(0.0f);
  __m256 r_prev_out = _mm256_set1_ps(0.0f),
         r_prev_out_last = _mm256_set1_ps(0.0f);
G
guosheng 已提交
157
  __m256 r_output;
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
  T *update_gate = gate_value;
  T *frame_state = gate_value + frame_size * 2;
  int block = 8;
  const int n = frame_size;
  const int rest = n % block;
  const int end = n - rest;
  int i = 0;

  if (rest > 0) {
    i = n - block;
    r_value_update_gate_last =
        _mm256_loadu_ps((const float *)(update_gate + i));
    r_value_frame_state_last =
        _mm256_loadu_ps((const float *)(frame_state + i));
    if (prev_output_value) {
      r_prev_out_last = _mm256_loadu_ps((const float *)(prev_output_value + i));
    }
  }
G
guosheng 已提交
176

177 178 179
  for (i = 0; i < end; i += block) {
    r_value_update_gate = _mm256_loadu_ps((const float *)(update_gate + i));
    r_value_frame_state = _mm256_loadu_ps((const float *)(frame_state + i));
G
guosheng 已提交
180
    if (prev_output_value) {
181
      r_prev_out = _mm256_loadu_ps((const float *)(prev_output_value + i));
G
guosheng 已提交
182 183
    }

184
    op_final_output(&r_value_update_gate, &r_value_frame_state, &r_prev_out,
Q
Qiao Longfei 已提交
185
                    &r_output, active_node, origin_mode);
G
guosheng 已提交
186

187 188 189 190 191 192 193 194
    _mm256_storeu_ps(reinterpret_cast<float *>(frame_state + i),
                     r_value_frame_state);
    _mm256_storeu_ps(reinterpret_cast<float *>(output_value + i), r_output);
  }

  if (rest > 0) {
    i = n - block;
    op_final_output(&r_value_update_gate_last, &r_value_frame_state_last,
Q
Qiao Longfei 已提交
195
                    &r_prev_out_last, &r_output, active_node, origin_mode);
196 197 198 199

    _mm256_storeu_ps(reinterpret_cast<float *>(frame_state + i),
                     r_value_frame_state_last);
    _mm256_storeu_ps(reinterpret_cast<float *>(output_value + i), r_output);
G
guosheng 已提交
200
  }
201

G
guosheng 已提交
202 203 204 205
#endif
}

template <class OpResetOutput, typename T>
G
guosheng 已提交
206
inline void forward_reset_output(OpResetOutput op_reset_output,
207 208
                                 GRUMetaValue<T> value, int frame_size,
                                 int batch_size, ActivationType active_gate) {
G
guosheng 已提交
209
  for (int b = 0; b < batch_size; b++) {
210 211
    if (OpResetOutput::avx && (frame_size > static_cast<int>(8 - 1)) &&
        (sizeof(T) == 4)) {
G
guosheng 已提交
212
      hl_avx_gru_forward_reset_output(
G
guosheng 已提交
213 214
          op_reset_output, value.gate_value, value.reset_output_value,
          value.prev_out_value, frame_size, active_gate);
G
guosheng 已提交
215 216
    } else {
      hl_naive_gru_forward_reset_output(
G
guosheng 已提交
217 218
          op_reset_output, value.gate_value, value.reset_output_value,
          value.prev_out_value, frame_size, active_gate);
G
guosheng 已提交
219 220
    }

G
guosheng 已提交
221 222 223 224
    value.gate_value += frame_size * 3;
    value.reset_output_value += frame_size;
    if (value.prev_out_value) {
      value.prev_out_value += frame_size;
G
guosheng 已提交
225 226 227 228 229
    }
  }
}

template <class OpFinalOutput, typename T>
G
guosheng 已提交
230
inline void forward_final_output(OpFinalOutput op_final_output,
231
                                 GRUMetaValue<T> value, int frame_size,
Q
Qiao Longfei 已提交
232 233
                                 int batch_size, ActivationType active_node,
                                 bool origin_mode) {
G
guosheng 已提交
234
  for (int b = 0; b < batch_size; b++) {
235 236
    if (OpFinalOutput::avx && (frame_size > static_cast<int>(8 - 1)) &&
        (sizeof(T) == 4)) {
G
guosheng 已提交
237 238
      hl_avx_gru_forward_final_output(op_final_output, value.gate_value,
                                      value.prev_out_value, value.output_value,
Q
Qiao Longfei 已提交
239
                                      frame_size, active_node, origin_mode);
G
guosheng 已提交
240
    } else {
G
guosheng 已提交
241 242
      hl_naive_gru_forward_final_output(
          op_final_output, value.gate_value, value.prev_out_value,
Q
Qiao Longfei 已提交
243
          value.output_value, frame_size, active_node, origin_mode);
G
guosheng 已提交
244 245
    }

G
guosheng 已提交
246 247 248 249
    value.gate_value += frame_size * 3;
    value.output_value += frame_size;
    if (value.prev_out_value) {
      value.prev_out_value += frame_size;
G
guosheng 已提交
250 251 252 253 254
    }
  }
}

template <class OpStateGrad, typename T>
G
guosheng 已提交
255 256 257 258
void hl_naive_gru_backward_state_grad(OpStateGrad op_state_grad, T *gate_value,
                                      T *gate_grad, T *prev_out_value,
                                      T *prev_out_grad, T *output_grad,
                                      int frame_size,
Q
Qiao Longfei 已提交
259 260
                                      ActivationType active_node,
                                      bool origin_mode) {
G
guosheng 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
  T r_update_gate_value;
  T r_update_gate_grad;
  T r_frame_state_value;
  T r_frame_state_grad;
  T r_out_grad;
  T r_prev_out_value = 0;
  T r_prev_out_grad = 0;
  T *update_gate_value = gate_value;
  T *update_gate_grad = gate_grad;
  T *frame_state_value = gate_value + frame_size * 2;
  T *frame_state_grad = gate_grad + frame_size * 2;

  for (int i = 0; i < frame_size; i++) {
    r_update_gate_value = update_gate_value[i];
    r_frame_state_value = frame_state_value[i];
    r_out_grad = output_grad[i];
    if (prev_out_value) {
      r_prev_out_value = prev_out_value[i];
G
guosheng 已提交
279
    }
G
guosheng 已提交
280 281
    if (prev_out_grad) {
      r_prev_out_grad = prev_out_grad[i];
G
guosheng 已提交
282 283
    }

284 285
    op_state_grad(&r_update_gate_value, &r_update_gate_grad,
                  &r_frame_state_value, &r_frame_state_grad, &r_prev_out_value,
Q
Qiao Longfei 已提交
286
                  &r_prev_out_grad, &r_out_grad, active_node, origin_mode);
G
guosheng 已提交
287

G
guosheng 已提交
288 289 290 291
    update_gate_grad[i] = r_update_gate_grad;
    frame_state_grad[i] = r_frame_state_grad;
    if (prev_out_grad) {
      prev_out_grad[i] = r_prev_out_grad;
G
guosheng 已提交
292 293 294 295 296
    }
  }
}

template <class OpResetGrad, typename T>
G
guosheng 已提交
297 298 299 300
void hl_naive_gru_backward_reset_grad(OpResetGrad op_reset_grad, T *gate_value,
                                      T *gate_grad, T *prev_out_value,
                                      T *prev_out_grad, T *reset_output_grad,
                                      int frame_size,
Q
Qiao Longfei 已提交
301
                                      ActivationType active_gate) {
G
guosheng 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
  T r_update_gate_value;
  T r_update_gate_grad;
  T r_reset_gate_value;
  T r_reset_gate_grad;
  T r_reset_output_grad = 0;
  T r_prev_out_value = 0;
  T r_prev_out_grad = 0;
  T *update_gate_value = gate_value;
  T *update_gate_grad = gate_grad;
  T *reset_gate_value = gate_value + frame_size;
  T *reset_gate_grad = gate_grad + frame_size;

  for (int i = 0; i < frame_size; i++) {
    r_update_gate_value = update_gate_value[i];
    r_update_gate_grad = update_gate_grad[i];
    r_reset_gate_value = reset_gate_value[i];

    if (prev_out_value && prev_out_grad) {
      r_reset_output_grad = reset_output_grad[i];
G
guosheng 已提交
321
    }
G
guosheng 已提交
322 323
    if (prev_out_value) {
      r_prev_out_value = prev_out_value[i];
G
guosheng 已提交
324
    }
G
guosheng 已提交
325 326
    if (prev_out_grad) {
      r_prev_out_grad = prev_out_grad[i];
G
guosheng 已提交
327 328
    }

329 330
    op_reset_grad(&r_update_gate_value, &r_update_gate_grad,
                  &r_reset_gate_value, &r_reset_gate_grad, &r_prev_out_value,
Q
Qiao Longfei 已提交
331
                  &r_prev_out_grad, &r_reset_output_grad, active_gate);
G
guosheng 已提交
332

G
guosheng 已提交
333 334 335 336
    update_gate_grad[i] = r_update_gate_grad;
    reset_gate_grad[i] = r_reset_gate_grad;
    if (prev_out_grad) {
      prev_out_grad[i] = r_prev_out_grad;
G
guosheng 已提交
337 338 339 340 341
    }
  }
}

template <class OpStateGrad, typename T>
G
guosheng 已提交
342 343 344
void hl_avx_gru_backward_state_grad(OpStateGrad op_state_grad, T *gate_value,
                                    T *gate_grad, T *prev_out_value,
                                    T *prev_out_grad, T *output_grad,
Q
Qiao Longfei 已提交
345 346
                                    int frame_size, ActivationType active_node,
                                    bool origin_mode) {
G
guosheng 已提交
347
#ifdef __AVX__
G
guosheng 已提交
348 349 350 351 352 353 354
  __m256 r_update_gate_value;
  __m256 r_update_gate_grad;
  __m256 r_frame_state_value;
  __m256 r_frame_state_grad;
  __m256 r_out_grad;
  __m256 r_prev_out_value = _mm256_set1_ps(0.0f);
  __m256 r_prev_out_grad = _mm256_set1_ps(0.0f);
355 356 357 358 359 360
  __m256 *update_gate_value = reinterpret_cast<__m256 *>(gate_value);
  __m256 *update_gate_grad = reinterpret_cast<__m256 *>(gate_grad);
  __m256 *frame_state_value =
      reinterpret_cast<__m256 *>(gate_value + frame_size * 2);
  __m256 *frame_state_grad =
      reinterpret_cast<__m256 *>(gate_grad + frame_size * 2);
G
guosheng 已提交
361 362 363 364

  for (int i = 0; i < frame_size / 8; i++) {
    r_update_gate_value = update_gate_value[i];
    r_frame_state_value = frame_state_value[i];
365
    r_out_grad = (reinterpret_cast<__m256 *>(output_grad))[i];
G
guosheng 已提交
366
    if (prev_out_value) {
367
      r_prev_out_value = (reinterpret_cast<__m256 *>(prev_out_value))[i];
G
guosheng 已提交
368
    }
G
guosheng 已提交
369
    if (prev_out_grad) {
370
      r_prev_out_grad = (reinterpret_cast<__m256 *>(prev_out_grad))[i];
G
guosheng 已提交
371 372
    }

373 374
    op_state_grad(&r_update_gate_value, &r_update_gate_grad,
                  &r_frame_state_value, &r_frame_state_grad, &r_prev_out_value,
Q
Qiao Longfei 已提交
375
                  &r_prev_out_grad, &r_out_grad, active_node, origin_mode);
G
guosheng 已提交
376

G
guosheng 已提交
377 378 379
    update_gate_grad[i] = r_update_gate_grad;
    frame_state_grad[i] = r_frame_state_grad;
    if (prev_out_grad) {
380
      (reinterpret_cast<__m256 *>(prev_out_grad))[i] = r_prev_out_grad;
G
guosheng 已提交
381 382 383 384 385 386
    }
  }
#endif
}

template <class OpResetGrad, typename T>
G
guosheng 已提交
387 388 389
void hl_avx_gru_backward_reset_grad(OpResetGrad op_reset_grad, T *gate_value,
                                    T *gate_grad, T *prev_out_value,
                                    T *prev_out_grad, T *reset_output_grad,
Q
Qiao Longfei 已提交
390 391
                                    int frame_size,
                                    ActivationType active_gate) {
G
guosheng 已提交
392
#ifdef __AVX__
G
guosheng 已提交
393 394 395 396 397 398 399
  __m256 r_update_gate_value;
  __m256 r_update_gate_grad;
  __m256 r_reset_gate_value;
  __m256 r_reset_gate_grad;
  __m256 r_reset_output_grad = _mm256_set1_ps(0.0f);
  __m256 r_prev_out_value = _mm256_set1_ps(0.0f);
  __m256 r_prev_out_grad = _mm256_set1_ps(0.0f);
400 401 402 403 404
  __m256 *update_gate_value = reinterpret_cast<__m256 *>(gate_value);
  __m256 *update_gate_grad = reinterpret_cast<__m256 *>(gate_grad);
  __m256 *reset_gate_value =
      reinterpret_cast<__m256 *>(gate_value + frame_size);
  __m256 *reset_gate_grad = reinterpret_cast<__m256 *>(gate_grad + frame_size);
G
guosheng 已提交
405 406 407 408 409 410 411

  for (int i = 0; i < frame_size / 8; i++) {
    r_update_gate_value = update_gate_value[i];
    r_update_gate_grad = update_gate_grad[i];
    r_reset_gate_value = reset_gate_value[i];

    if (prev_out_value && prev_out_grad) {
412
      r_reset_output_grad = (reinterpret_cast<__m256 *>(reset_output_grad))[i];
G
guosheng 已提交
413
    }
G
guosheng 已提交
414
    if (prev_out_value) {
415
      r_prev_out_value = (reinterpret_cast<__m256 *>(prev_out_value))[i];
G
guosheng 已提交
416
    }
G
guosheng 已提交
417
    if (prev_out_grad) {
418
      r_prev_out_grad = (reinterpret_cast<__m256 *>(prev_out_grad))[i];
G
guosheng 已提交
419 420
    }

421 422
    op_reset_grad(&r_update_gate_value, &r_update_gate_grad,
                  &r_reset_gate_value, &r_reset_gate_grad, &r_prev_out_value,
Q
Qiao Longfei 已提交
423
                  &r_prev_out_grad, &r_reset_output_grad, active_gate);
G
guosheng 已提交
424

G
guosheng 已提交
425 426 427
    update_gate_grad[i] = r_update_gate_grad;
    reset_gate_grad[i] = r_reset_gate_grad;
    if (prev_out_grad) {
428
      (reinterpret_cast<__m256 *>(prev_out_grad))[i] = r_prev_out_grad;
G
guosheng 已提交
429 430 431 432 433 434
    }
  }
#endif
}

template <class OpStateGrad, typename T>
G
guosheng 已提交
435
inline void backward_state_grad(OpStateGrad op_state_grad,
436
                                GRUMetaValue<T> value, GRUMetaGrad<T> grad,
G
guosheng 已提交
437
                                int frame_size, int batch_size,
Q
Qiao Longfei 已提交
438
                                ActivationType active_node, bool origin_mode) {
G
guosheng 已提交
439 440
  for (int b = 0; b < batch_size; b++) {
    if (OpStateGrad::avx && !(frame_size & (8 - 1)) && (sizeof(T) == 4)) {
Q
Qiao Longfei 已提交
441 442 443 444
      hl_avx_gru_backward_state_grad(op_state_grad, value.gate_value,
                                     grad.gate_grad, value.prev_out_value,
                                     grad.prev_out_grad, grad.output_grad,
                                     frame_size, active_node, origin_mode);
G
guosheng 已提交
445
    } else {
Q
Qiao Longfei 已提交
446 447 448 449
      hl_naive_gru_backward_state_grad(op_state_grad, value.gate_value,
                                       grad.gate_grad, value.prev_out_value,
                                       grad.prev_out_grad, grad.output_grad,
                                       frame_size, active_node, origin_mode);
G
guosheng 已提交
450 451
    }

G
guosheng 已提交
452 453 454
    value.gate_value += frame_size * 3;
    if (value.prev_out_value) {
      value.prev_out_value += frame_size;
G
guosheng 已提交
455 456
    }

G
guosheng 已提交
457 458 459 460
    grad.gate_grad += frame_size * 3;
    grad.output_grad += frame_size;
    if (grad.prev_out_grad) {
      grad.prev_out_grad += frame_size;
G
guosheng 已提交
461 462 463 464 465
    }
  }
}

template <class OpResetGrad, typename T>
G
guosheng 已提交
466
inline void backward_reset_grad(OpResetGrad op_reset_grad,
467
                                GRUMetaValue<T> value, GRUMetaGrad<T> grad,
G
guosheng 已提交
468
                                int frame_size, int batch_size,
Q
Qiao Longfei 已提交
469
                                ActivationType active_gate) {
G
guosheng 已提交
470 471
  for (int b = 0; b < batch_size; b++) {
    if (OpResetGrad::avx && !(frame_size & (8 - 1)) && (sizeof(T) == 4)) {
Q
Qiao Longfei 已提交
472 473 474
      hl_avx_gru_backward_reset_grad(
          op_reset_grad, value.gate_value, grad.gate_grad, value.prev_out_value,
          grad.prev_out_grad, grad.reset_output_grad, frame_size, active_gate);
G
guosheng 已提交
475 476
    } else {
      hl_naive_gru_backward_reset_grad(
G
guosheng 已提交
477
          op_reset_grad, value.gate_value, grad.gate_grad, value.prev_out_value,
Q
Qiao Longfei 已提交
478
          grad.prev_out_grad, grad.reset_output_grad, frame_size, active_gate);
G
guosheng 已提交
479 480
    }

G
guosheng 已提交
481 482 483
    value.gate_value += frame_size * 3;
    if (value.prev_out_value) {
      value.prev_out_value += frame_size;
G
guosheng 已提交
484 485
    }

G
guosheng 已提交
486 487 488 489
    grad.gate_grad += frame_size * 3;
    grad.reset_output_grad += frame_size;
    if (grad.prev_out_grad) {
      grad.prev_out_grad += frame_size;
G
guosheng 已提交
490 491 492 493 494 495 496 497 498 499
    }
  }
}

#endif

}  // namespace detail
}  // namespace math
}  // namespace operators
}  // namespace paddle