Skip to content

v0.2.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@joseph-wakeling-sociomantic joseph-wakeling-sociomantic released this 02 Nov 16:46
· 87 commits to v0.x.x since this release

https://github.com/sociomantic-tsunami/dmxnet/milestone/2

Migration Instructions

  • Integration tests have moved from test/ to integrationtest/.

  • Travis config now uses the beaver dlang functionality provided
    in beaver 0.2.x.

Features

  • -debug=MXNetHandleManualFree

    When this new debug option is enabled, the library will report to
    stderr whenever a MXNet handle is freed by the Handle class
    destructor instead of by an explicit call to the freeHandle
    method. This can be used to track down leaks of MXNet-allocated
    resources in an application using dmxnet.

  • mxnet.Handle.debugReport

    This private function has been added to provide a standard means
    of writing debug error messages to stderr. All existing debug
    messages in the mxnet.Handle module are now provided by calls
    to this function.

  • mxnet.Symbol.Dot

    The new Dot class wraps the dot atomic symbol provided
    by the C++ MXNet library. This represents a generalized dot
    product of its inputs.

  • mxnet.NDArray.NDArray

    Some small documentation improvements have been added to the
    opSubAssign and opMulAssign methods.

  • mxnet.Symbol.SoftmaxOutput

    Improved and extended documentation has been provided for the
    SoftmaxOutput class.