https://github.com/Microsoft/CNTK
Raw File
Tip revision: ab4bee2b7a16a3e47379db140d5c55e31882ad7b authored by liqfu on 08 November 2018, 02:36:20 UTC
Support RNN ops in a Scan loop
Tip revision: ab4bee2
dllmain.cpp
// dllmain.cpp : Defines the entry point for the DLL application.
#include "stdafx.h"

BOOL APIENTRY DllMain(HMODULE /*hModule*/,
                      DWORD ul_reason_for_call,
                      LPVOID /*lpReserved*/
                      )
{
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
    }
    return TRUE;
}
back to top