mxnet
Variables
mshadow::expr::type Namespace Reference

type of expressions More...

Variables

const int kRValue = 0
 this expression directly correspnds to a data class, can be used to assign data More...
 
const int kMapper = 1
 expression contains element-wise tensor operations, map a expression to same shape More...
 
const int kChainer = 3
 expression that can be chained with other expressiones Usually it have function Eval(i,j) defined, which pulls the result (i, j) from input expression and output the result at certain position. More...
 
const int kComplex = 7
 othercase: e.g dot product More...
 

Detailed Description

type of expressions

Variable Documentation

const int mshadow::expr::type::kChainer = 3

expression that can be chained with other expressiones Usually it have function Eval(i,j) defined, which pulls the result (i, j) from input expression and output the result at certain position.

const int mshadow::expr::type::kComplex = 7

othercase: e.g dot product

const int mshadow::expr::type::kMapper = 1

expression contains element-wise tensor operations, map a expression to same shape

const int mshadow::expr::type::kRValue = 0

this expression directly correspnds to a data class, can be used to assign data