https://github.com/Microsoft/CNTK
Raw File
Tip revision: 11a877a0296c5cf096cb07a115b7c56ca48ff401 authored by William Darling on 03 November 2016, 15:05:57 UTC
added attention stuff locally -- but not running with blocks LSTM yet
Tip revision: 11a877a
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