Add the check of lod in sequence_softmax's kernel
Created by: Xreki
该问题来自用户。用户尝试训练PaddlePaddle/book中的08.machine_translation模型,在手动交换配置中一个elementwise_add
两个输入的顺序后,即将L62的
mixed_state = fluid.layers.elementwise_add(encoder_proj,
decoder_state_expand)
改成
mixed_state = fluid.layers.elementwise_add(decoder_state_expand,
encoder_proj)
后,训练出现
Segmentation fault