https://github.com/Microsoft/CNTK
Raw File
Tip revision: 5e871a19fe531b951a0f81bdad85ecab92638df6 authored by liqfu on 01 August 2018, 23:29:26 UTC
treat sequence axis as static axis for ONNX RNN model import
Tip revision: 5e871a1
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