File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 24
24
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
25
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
26
27
+ from __future__ import absolute_import
27
28
import numpy as np
28
29
cimport numpy as cnp
29
30
try :
Original file line number Diff line number Diff line change 31
31
def configuration (parent_package = '' ,top_path = None ):
32
32
from numpy .distutils .misc_util import Configuration
33
33
from numpy .distutils .system_info import get_info
34
- config = Configuration ('' , parent_package , top_path )
34
+ config = Configuration ('mkl_fft ' , parent_package , top_path )
35
35
36
36
pdir = dirname (__file__ )
37
37
wdir = join (pdir , 'src' )
@@ -50,7 +50,8 @@ def configuration(parent_package='',top_path=None):
50
50
'Cython is required to build the initial .c file.' )
51
51
52
52
config .add_extension (
53
- '_pydfti' ,
53
+ name = '_pydfti' ,
54
+ # module_name = 'mkl_fft._pydfti',
54
55
sources = [
55
56
join (wdir , 'mklfft.c.src' ),
56
57
join (wdir , 'multi_iter.c' ),
You can’t perform that action at this time.
0 commit comments