FP16
FP16 copied to clipboard
Add missing standard lib includes to tests
The tests were using std::setw, std::hex, etc. without including the relevant standard library headers. This worked because of transitive includes from googletest, but that's not something we should rely on:
- In general it's considered a bad practice
- Whenever we want to upgrade our googletest dependency this is going to be a blocker