Flip input for biLSTM

I want to create a bidirectional LSTM from LSTM without using the option bidirectional=True .
So the way to do that is to send the input to LSTM then flip the input and send it back to another LSTM.
My question is: if data dimension is (batch_size, 1, seq_len), what is the correct flip dimension? 0 or 2? and why?