Skip to content

Commit

Permalink
Restructure imports
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jul 11, 2015
1 parent 3919a38 commit 46b11d6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pycuda/gpuarray.py
@@ -1,5 +1,5 @@
from __future__ import division
from __future__ import absolute_import
from __future__ import division, absolute_import

import numpy as np
import pycuda.elementwise as elementwise
from pytools import memoize, memoize_method
Expand All @@ -12,9 +12,7 @@
get_common_dtype as _get_common_dtype_base)
from pycuda.characterize import has_double_support
import six
from six.moves import range
from six.moves import zip
from functools import reduce
from six.moves import range, zip, reduce


def _get_common_dtype(obj1, obj2):
Expand Down

0 comments on commit 46b11d6

Please sign in to comment.