()
| 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, |
| 637 | recurrent_kernel=recurrent_kernel, bias=bias, |
| 638 | mask=mask, time_major=time_major, |
| 639 | go_backwards=go_backwards, activation=activation, |
| 640 | recurrent_activation=recurrent_activation) |
| 641 | |
| 642 | return control_flow_ops.cond( |
| 643 | is_sequence_right_padded(mask, time_major), |
nothing calls this directly
no test coverage detected