()
| 628 | mask = array_ops.stop_gradient(mask) |
| 629 | |
| 630 | def input_right_padded(): |
| 631 | return cudnn_gru(inputs=inputs, init_h=init_h, kernel=kernel, |
| 632 | recurrent_kernel=recurrent_kernel, bias=bias, mask=mask, |
| 633 | time_major=time_major, go_backwards=go_backwards) |
| 634 | |
| 635 | def input_not_right_padded(): |
| 636 | return standard_gru(inputs=inputs, init_h=init_h, kernel=kernel, |
nothing calls this directly
no test coverage detected