MCPcopy Create free account
hub / github.com/apache/singa / operator*

Method operator*

include/half.hpp:1886–1891  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1884 /// \param b second operand
1885 /// \return \a a * \a b
1886 friend f31 operator*(f31 a, f31 b)
1887 {
1888 uint32 m = multiply64(a.m, b.m);
1889 int i = m >> 31;
1890 return f31(m<<(1-i), a.exp + b.exp + i);
1891 }
1892
1893 /// Division operator.
1894 /// \param a first operand

Callers

nothing calls this directly

Calls 2

multiply64Function · 0.85
f31Class · 0.85

Tested by

no test coverage detected