| 40 | { |
| 41 | |
| 42 | std::string SelectName(const char * name, const ImageBase& Img) |
| 43 | { |
| 44 | std::string Name = name; |
| 45 | |
| 46 | if (IsFlushImage(Img)) |
| 47 | Name += "_flush"; // Use faster version |
| 48 | |
| 49 | return Name; |
| 50 | } |
| 51 | |
| 52 | double ReduceSum(std::vector<float>& buffer) |
| 53 | { |
nothing calls this directly
no test coverage detected