March Geraldine Brooks

The Sydney Morning Herald: ‘You may find me chained to a tree’: Geraldine Brooks reveals her next act

‘You may find me chained to a tree’: Geraldine Brooks reveals her next act

AOL: Geraldine Brooks' 'Horse' and biography of George Floyd win Dayton literary awards

NEW YORK (AP) — Geraldine Brooks' “Horse,” a novel about race and forgotten history, and Robert Samuels' and Toluse Olorunnipa's “His Name Is George Floyd: One Man’s Life and the Struggle for Racial ...

Geraldine Brooks' 'Horse' and biography of George Floyd win Dayton literary awards

AOL: Biography of George Floyd, Geraldine Brooks’ ‘Horse’ win Dayton literary awards

FOX8 Cleveland: Geraldine Brooks’ ‘Horse’ and biography of George Floyd win Dayton literary awards

March Geraldine Brooks 7

This is an archived article and the information in the article may be outdated. Please look at the time stamp on the story to see when it was last updated. NEW YORK (AP) — Geraldine Brooks’ “Horse,” a ...

Geraldine Brooks’ ‘Horse’ and biography of George Floyd win Dayton literary awards

As far as I know, the compilation option for MSVC that tells the compiler to use special available instruction is /arch. On clang/linux, we can use -march=native to automatically detect the archite...

March Geraldine Brooks 10
For -O0, whether -march=native or -march= is the default still specifies the same family, so both are perfectly compatibly with -O0; and whenever another optimization level is specified, -march=native is beneficial to performance. So, for me, the fact that -O0 is the default doesn't matter for -march 's default.
March Geraldine Brooks 11

-march=foo implies -mtune=foo unless you also specify a different -mtune. This is one reason why using -march is better than just enabling options like -mavx without doing anything about tuning. Caveat: -march=native on a CPU that GCC doesn't specifically recognize will still enable new instruction sets that GCC can detect, but will leave -mtune=generic. Use a new enough GCC that knows about ...