You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I train in python, and included evaluation of models in a c++ mfc singledoc/view program that was always very fast to open. After including cntk it is slow to open and I noticed that it always loads the cntk.core*.dll on starting. the rest ( math, mkldnn, and mklml) are delay loaded when I enable the cntk feature in the app. I tried to remove all references to cntk in the header files, so it only refers to cntk when I choose the option in the menu to enable it, and put it in the delayload project settings.
Is there any way to stop loading the core dll until it is needed?
The text was updated successfully, but these errors were encountered:
I train in python, and included evaluation of models in a c++ mfc singledoc/view program that was always very fast to open. After including cntk it is slow to open and I noticed that it always loads the cntk.core*.dll on starting. the rest ( math, mkldnn, and mklml) are delay loaded when I enable the cntk feature in the app. I tried to remove all references to cntk in the header files, so it only refers to cntk when I choose the option in the menu to enable it, and put it in the delayload project settings.
Is there any way to stop loading the core dll until it is needed?
The text was updated successfully, but these errors were encountered: