From e79853f3aaa1e5c098783f0904ea8760fe636be8 Mon Sep 17 00:00:00 2001 From: ami-GS <1991.daiki@gmail.com> Date: Fri, 18 Aug 2017 20:26:41 +0900 Subject: [PATCH] change to imported function --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index ec8ef83..3c87390 100644 --- a/utils.py +++ b/utils.py @@ -2,7 +2,7 @@ from daal.data_management import HomogenNumericTable, BlockDescriptor_Float64, readOnly def getArrayFromNT(table, nrows=0): - bd = BlockDescriptor() + bd = BlockDescriptor_Float64() if nrows == 0: nrows = table.getNumberOfRows() table.getBlockOfRows(0, nrows, readOnly, bd)