bool IsEveryComponentGreaterThanOrEqual(uint16_t x, uint16_t y) {
int rv = x >= y;
auto xg = x & 0x07E0; auto yg = y & 0x07E0; rv &= xg >= yg;
auto xb = x & 0x001F; auto yb = y & 0x001F; rv &= xb >= yb;
return rv != 0;
} "These human-made source images were used by AI ... to generate this image."
Where "this image" is your photo.
On the leaderboard I'd like to see code size vs cycles in a 2D plot with the Pareto front highlighted.