MCPcopy Create free account
hub / github.com/apache/singa / Div

Function Div

src/core/tensor/tensor.cc:1164–1168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1162
1163template <typename SType>
1164Tensor Div(const SType alpha, const Tensor &in) {
1165 Tensor out(in.shape(), in.device(), in.data_type());
1166 Div(alpha, in, &out);
1167 return out;
1168}
1169template Tensor Div<float>(const float, const Tensor &);
1170
1171template <typename SType>

Callers 5

DivColumnFunction · 0.70
DivRowFunction · 0.70
ApplyMethod · 0.50
ApplyMethod · 0.50
ApplyMethod · 0.50

Calls 7

CheckDataTypeAndLangFunction · 0.85
shapeMethod · 0.80
deviceMethod · 0.80
data_typeMethod · 0.80
langMethod · 0.80
ExecMethod · 0.80
blockMethod · 0.45

Tested by

no test coverage detected