Created by: GaoWei8
PR types
New features
PR changes
OPs
Describe
支持padding数据的cudnn接口
需要approve list
- 使用 const_cast。const_cast<Tensor *>(state_out)是因为cudnn接口只接受非const指针,因此先将state_out转换为非const Tensor,自动调用非const data()函数。@Xreki
- 使用@unittest.skipIf(not core.is_compiled_with_cuda()。此op仅有cudnn版本,仅在GPU上实现。@kolinwei