# f32
--reset

# RNN
--alg=VANILLA_RNN
--direction=left2right,right2left,concat,sum
--activation=RELU,TANH,LOGISTIC
--prop=FWD_D,BWD_DW --batch=rnn_small

# LSTM, GRU
--direction=left2right
--activation=TANH
--prop=FWD_D,BWD_DW
--alg=VANILLA_LSTM         --batch=rnn_small
--alg=VANILLA_GRU,LBR_GRU  --batch=rnn_gru_small

# LSTM int8
--alg=VANILLA_LSTM
--direction=left2right
--activation=TANH
--allow-unimpl=true
--prop=FWD_D

--cfg=u8u8u8f32,u8u8u8u8     --scaling=common --batch=rnn_small
--cfg=f32u8f32f32,f32u8f32u8 --scaling=per_oc --batch=rnn_small

