But the code in this file is actually the following case: ``` #include <iostream>
using namespace std;
int main() {
cout << static_cast<float>(1)/2 << endl;
cout << static_cast<float>(1)/static_cast<float>(2) << endl;
return 0;
}
output is:
0.5
0.5
```
[ Full content available at:
https://github.com/apache/incubator-mxnet/pull/12261 ]
This message was relayed via gitbox.apache.org for [email protected]
