Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit fb0490f

Browse files
Vyacheslav-Smirnovshssf
authored andcommitted
Make approved usage for Intel(R) DAAL name (#303)
1 parent 515f7b5 commit fb0490f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

sdc/distributed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ def f(arr):
879879
return self._run_call_rebalance_array(lhs, assign, rhs.args)
880880

881881
# output of mnb.predict is 1D with same size as 1st dimension of input
882-
# TODO: remove ml module and use new DAAL API
882+
# TODO: remove ml module and use new Intel(R) Data Analytics Acceleration Library (Intel(R) DAAL) API
883883
if func_name == 'predict':
884884
getattr_call = guard(get_definition, self.state.func_ir, func_var)
885885
if (getattr_call and self.state.typemap[getattr_call.value.name] == sdc.ml.naive_bayes.mnb_type):

sdc/ml/naive_bayes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def resolve_predict(self, dict, args, kws):
131131
ll.add_symbol('dtor_mnb', daal_wrapper.dtor_mnb)
132132
except ImportError:
133133
if debug_prints(): # pragma: no cover
134-
print("daal import error")
134+
print("Intel(R) Data Analytics Acceleration Library (Intel(R) DAAL) import error")
135135

136136

137137
@lower_builtin(MultinomialNB, types.intp)

sdc/ml/svc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def resolve_predict(self, dict, args, kws):
131131
ll.add_symbol('dtor_svc', daal_wrapper.dtor_svc)
132132
except ImportError:
133133
if debug_prints(): # pragma: no cover
134-
print("daal import error")
134+
print("Intel(R) Data Analytics Acceleration Library (Intel(R) DAAL) import error")
135135

136136

137137
@lower_builtin(SVC, types.intp)

0 commit comments

Comments
 (0)