Skip to content

Commit

Permalink
fix naming mkl debug libs and subst for path
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr-Solovev committed Sep 24, 2024
1 parent e91b16a commit 43ba155
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/daal/src/externals/service_service_mkl.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct MklService

static int serv_get_ncpus()
{
unsigned int ncores = daal::services::internal::_internal_daal_GetSysProcessorCoreCount();
unsigned int ncores = daal::services::internal::_internal_daal_GetProcessorCoreCount();
return (ncores ? ncores : 1);
}

Expand Down
2 changes: 1 addition & 1 deletion dev/make/deps.mkl.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ daaldep.win32e.mkl.thr := $(MKLDIR.libia)/mkl_tbb_thread$d.$a
daaldep.win32e.mkl.seq := $(MKLDIR.libia)/mkl_sequential.$a
daaldep.win32e.mkl.interfaces := $(MKLDIR.libia)/mkl_intel_ilp64.$a
daaldep.win32e.mkl.core := $(MKLDIR.libia)/mkl_core.$a
daaldep.win32e.mkl.sycl := $(MKLGPUDIR.lib)/mkl_sycl.$d.$a
daaldep.win32e.mkl.sycl := $(MKLGPUDIR.lib)/mkl_sycl.$a

daaldep.fbsd32e.mkl.thr := $(MKLDIR.libia)/$(plib)mkl_tbb_thread.$a
daaldep.fbsd32e.mkl.seq := $(MKLDIR.libia)/$(plib)mkl_sequential.$a
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ THR.srcdir := $(CPPDIR.daal)/src/threading
CORE.srcdir := $(CPPDIR.daal)/src/algorithms
EXTERNALS.srcdir := $(CPPDIR.daal)/src/externals

CORE.SERV.srcdir := $(CPPDIR.daal)/src/services
CORE.SERV.srcdir := $(subst \,/,$(CPPDIR.daal)/src/services)
CORE.SERV.COMPILER.srcdir := $(CPPDIR.daal)/src/services/compiler/$(CORE.SERV.COMPILER.$(COMPILER))

CORE.srcdirs := $(CORE.SERV.srcdir) $(CORE.srcdir) \
Expand Down

0 comments on commit 43ba155

Please sign in to comment.