Merge pull request #1008 from FluxML/tb/cuindex

Remove unused imports.
This commit is contained in:
Dhairya Gandhi 2020-01-29 18:52:53 +05:30 committed by GitHub
commit 620cffc45c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -1,6 +1,5 @@
import ..Flux: Flux, relu
using CuArrays.CUDAnative
using CuArrays: @cuindex, cudims
CuRNN{T} = Flux.RNNCell{<:Union{typeof(tanh),typeof(relu)},<:CuArray{T,2},<:CuArray{T,1}}
CuGRU{T} = Flux.GRUCell{<:CuArray{T,2},<:CuArray{T,1}}