Last active
April 20, 2019 01:54
-
-
Save wkcn/a8894ef07b0b5121f1ed7c59cf3cc58f to your computer and use it in GitHub Desktop.
Deleter Thread
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mxnet as mx | |
from mxnet.base import check_call, _LIB | |
from multiprocessing.pool import ThreadPool | |
import time | |
num_workers = 16 | |
old_deleter = mx.nd.NDArray.__del__ | |
del_pool = ThreadPool(num_workers) | |
def deleter_fn(handle): | |
check_call(_LIB.MXNDArrayFree(handle)) | |
small_size = 1000000 | |
def new_deleter(self): | |
global small_size | |
shape = self.shape | |
ctx = self.context | |
size = self.size | |
tic = time.time() | |
flag = 0 | |
if self.size < small_size: | |
check_call(_LIB.MXNDArrayFree(self.handle)) | |
else: | |
flag = 1 | |
del_pool.apply_async(deleter_fn, (self.handle, )) | |
cost = time.time() - tic | |
if cost > 1e-3: | |
print("DEL:", cost, shape, ctx, size, flag) | |
small_size = size | |
mx.nd.NDArray.__del__ = new_deleter | |
if __name__ == '__main__': | |
import time | |
a = mx.nd.array([1,2,3]) | |
del a | |
time.sleep(3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment