From e36a24f3dfd2c2eab84031d688f32a2005e3839a Mon Sep 17 00:00:00 2001 From: Blake Griffith Date: Tue, 10 Jun 2014 15:50:35 -0500 Subject: [PATCH] Remove broken unesed get_dist_matrix method --- distarray/dist/distarray.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/distarray/dist/distarray.py b/distarray/dist/distarray.py index e0aceac0..25294c25 100644 --- a/distarray/dist/distarray.py +++ b/distarray/dist/distarray.py @@ -257,14 +257,6 @@ def tondarray(self): toarray = tondarray - def get_dist_matrix(self): - key = self.context._generate_key() - self.context._execute0( - '%s = %s.get_dist_matrix()' % (key, self.key), - targets=self.targets) - result = self.context._pull(key, targets=self.targets[0]) - return result - def fill(self, value): def inner_fill(arr, value): arr.fill(value)