Nadav Bar
Nadav Bar
For example: The Windows.ApplicationModel.AppInfo parameterless constructor is only available when writing a windows store app. If we try to call it from the module explicitly, we get the following issue:...
The issue seems with missing definition in Windows.winmd that are present in Windows.Foundation.UniversalApiContract.winmd. The issue is when importing the _UniversalApiContract_ winmd it has collisions with the ones from Windows.winmd.
Currently registered event listener does not keep the event loop alive. As mentioned in issue #36, we might rethink this behavior and change this such that registered event listeners will...
Today for async function we support old style callbacks. In the previous version of NodeRT we used a nifty hack for marking async function on creation time so the promisize...
Currently the generated code uses WideChars when creating new JavaScript strings (e.g using the L".." macro). Moving it to use ansi strings will probably improve performance.
currently the following error message is injected to the code: # error please initialize array below with ...=ref new ::Platform::Array(size); Possibly, the CollectionUtils can be used in order to initialize...
Currently when a windows.uri type is returned from another type, the returned type is of an opaque wrapper, even if the windows.foundation namespace is already loaded. A current workaround is...
The tutorial should show how to take a trained Keras model, save it as a CNTK model using the underlying CNTK backend and then load it using this module and...
The API currently only supports setting a default device. In general we should support setting device for each operation separately in case people want to distribute work across several GPUs.