From 622dfa539fa53c3eca434cff40af37ced69d533f Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Wed, 9 Aug 2017 15:45:01 +0200 Subject: [PATCH] Remove wrong info in README (replaces #97). --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00c8234..1fe08e0 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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