c# Wrapper for CNTK steps

前端 未结 1 812
庸人自扰
庸人自扰 2021-01-24 09:04

I\'m having some issues at running CNTK on c# wrapper. I see rold2007 had success on doing the same thing. There got to be something simple that I missed. Any advice would be gr

1条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-24 09:57

    Your project needs to reference EvalWrapper.dll. In the same directory as the DLL, you need to have a list of other DLLs that are used. See the detailed discussion on the CNTK GitHub page. If you are running a CPU-only build, this is the list of DLLs:

    • EvalDll.dll
    • EvalWrapper.dll
    • libacml_mp_dll.dll
    • libifcoremd.dll
    • libifportmd.dll
    • libiomp5md.dll
    • libmmd.dll
    • Math.dll
    • svml_dispmd.dll

    Update

    CNTK has switched from ACML to Intel MKL as of August 2016 (see Release Notes). After this change, the list of required DLLs is

    • EvalDll.dll
    • EvalDll.lib
    • EvalWrapper.dll
    • Math.dll
    • libiomp5md.dll
    • mkl_cntk_p.dll

    0 讨论(0)
提交回复
热议问题