mxnet-0.2.0.0: MXNet interface in Haskell.

Copyright(c) 2016 Tao He
LicenseMIT
Maintainersighingnow@gmail.com
Safe HaskellNone
LanguageHaskell2010

MXNet.Core.Base.Executor

Description

Symbol module.

Synopsis

Documentation

newtype Executor a Source #

Type alias for variable.

Constructors

Executor 

makeExecutor :: DType a => ExecutorHandle -> IO (Executor a) Source #

Make an executor using the given handler.

forward Source #

Arguments

:: DType a 
=> Executor a

The executor handle.

-> Bool

Whether this forward is for evaluation purpose.

-> IO () 

Executor forward method.

backward Source #

Arguments

:: DType a 
=> Executor a

The executor handle.

-> IO () 

Executor backward method.