Skip to content

Commit

Permalink
Remove wrong info in README (replaces #97).
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Aug 9, 2017
1 parent 3826289 commit 622dfa5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,7 @@ the previous section):
```julia
module MyCudaModule

import CUDAdrv: CuModule, CuModuleFile, unload,
CuFunction, cudacall
import CUDAdrv: CuModule, CuModuleFile, CuFunction, cudacall
using CUDArt

export function1
Expand All @@ -274,7 +273,7 @@ function mdinit(devlist)
end
end

mdclose() = (for md in mdlist; unload(md); end; empty!(mdlist); empty!(ptxdict))
mdclose() = (empty!(mdlist); empty!(ptxdict))

function init(f::Function, devlist)
local ret
Expand Down

0 comments on commit 622dfa5

Please sign in to comment.