[gmx-developers] hidden compiler flags in 4.6?

Mark Abraham mark.j.abraham at gmail.com
Fri Feb 8 17:34:03 CET 2013


On Tue, Feb 5, 2013 at 8:58 PM, Szilárd Páll <szilard.pall at cbr.su.se> wrote:

>
> Note that I'm not talking about some magic override, but simply the
> ability to go to the flags and remove e.g. the "-ip" icc flag which I know
> that it can in some cases cause performance regression.
>

In a fresh release-4-6 build tree, if you use

CC=icc cmake .. -DGMXC_CFLAGS_RELEASE="-no-ip"

you get

cd /nethome/mark/git/another-r46/build-cmake-amd2/src/gmxlib &&
/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64/icc  -Dgmx_EXPORTS
-DTMPI_SET_AFFINITY -DHAVE_CONFIG_H -DHAVE_RDTSCP -DTMPI_EXPORTS -msse2
-std=gnu99 -Wall   -ip -funroll-all-loops -no-ip -O3 -DNDEBUG -fPIC
-I/nethome/mark/git/another-r46/build-cmake-amd2/src
-I/nethome/mark/git/another-r46/build-cmake-amd2/include
-I/nethome/mark/git/another-r46/include
-I/nethome/mark/git/another-r46/src/gmxlib   -openmp -o
CMakeFiles/gmx.dir/rmpbc.c.o   -c
/nethome/mark/git/another-r46/src/gmxlib/rmpbc.c

which seems to do roughly what you want, from a one-shot, because we have
partially segmented the sets of flags GROMACS adds, and prepend them for
each run of cmake. In this case, GMXC_CFLAGS_RELEASE is the magic name for
the C flags we add for the Release build type. Because we prepend the flags
to the initial value (which is initially unset by GROMACS), the value
passed in from the command line is there at the end. Then, because GROMACS
no longer caches the flags we generate, things can be changed later.

Note that CMake caches that command-line initial value itself, so that the
next call to cmake will also result in -no-ip. Then when you want some
other set of flags, without touching the cache you can do

CC=icc cmake .. -DGMXC_CFLAGS_RELEASE=""

and this reverts to the out-of-the-box functionality (or you could try a
new set of flags if you wanted).

Your original example where -m and -x conflict and lead to warnings is
irritating, but not a deal-breaker. Using GMX_SKIP_DEFAULT_CFLAGS provides
a two-step approach to fixing that. Obviously, make knows how to tell the
compiler the right things to do (e.g. src/buildinfo.h has the full CFLAGS
in it), so a *make* target that printed out the CFLAGS (whole and/or in
parts) might be a useful thing.

There's currently no way to say "cmake
-DUSE_MY_FLAGS_ONLY_IM_SUPER_SMART=-blahblah". I'm not philosophically
opposed to having one, but since compilers normally act on the last of a
series of inconsistent flags, the above approaches seem workable if we
document them in an advanced section of the installation guide. I think
there are probably more not-competent-enough users who'd wrongly try to use
it (or use it wrongly) and run into problems than smart-enough users/admins
with a real need case.

Is there anything you want to be able to do that these kinds of workflows
do not support?

In my eyes, reviewing and changing flags is much more important than the
> consistency of acceleration flags across cmake reruns, that's why I find it
> unfortunate that the build system got crippled in an attempt to fix that
> issue. Of course, I am biased, but putting aside the fact that I will
> suffer from this build system "behaviour regression", I think many
> sysadmins and other advanced users will also be scratching their heads.
>

If so, gmx-users must have some filters on it ;-)

 and adding or overriding should be possible through a single command-line
>>> invocation.
>>>
>>> More concretely IMO what we need is:
>>> - A summary printed or at least some read-only advanced variables so
>>> that one does not need to run e.g "mdrun -version" to know what flags are
>>> used;
>>>
>> I was (and still am) all for the summary. I really liked Teemu's start of
>> it. But it got cut because of time. Not sure it would be a good idea to
>> print just the flags without having a full summary. I think having
>> read-only variables is very confusing.
>>
>
> I see your point, but you have yet to reply to my criticism on the fact
> that *it is impossible to at least check what flags are being used* and
> that is a major flaw.
>

CMake printing a summary seems awkward to me. If it's written as a status
message, you can't see it with ccmake, and if it's written as a warning
ccmake users will get in the habit of skipping real warnings. If using
cmake, we'd want logic to only print such summary information for the final
iteration - not sure if that's possible/easy enough to do.

However, a make target to print the configuration seems to address most of
the issue. It replaces some of the use cases for inspecting config.log one
might have with autoconf build systems. Yes, you'd have to run a normal
cmake to find out the default (whether by a CMake summary or this make
target I propose), then decide how to modify it, then apply it using some
of the above mechanisms. If you magically know already what the defaults
will be, you can skip the first stage already and jump straight to using
GMX_SKIP_DEFAULT_CFLAGS. What do you think?


> - An intuitive and consistent way to add/change the flags, what the user
>>> wants is simple, but currently requires a set of strange steps: enable
>>> skipping GROMACS flags, copy the printed flags, remove cache, re-run cmake
>>> with the copied flags.
>>>
>> No need to remove the cache.
>>
>
> Fine, remove that step, but you've to add two more instead:
> - check default CMake flags;
> - re-add those when setting flags manually
>
> Again, I would very much appreciate of you or others developers would
> actually comment on the issue in question: the usability concerns around
> this rather long, complicated, and error-prone set of steps required just
> to change a flag -Foo to -Bar.
>

I was turned off by the tone of the original email. I imagine that has
something to do with the low response rate so far. We've all been wrong at
some point. Let's start discussions by asking questions like "is there
supposed to be a way for a user to add/replace/find out about a compiler
flag?" If there isn't (or it isn't a good solution) then discussion can
move forward happily to solving the problem. If there is an existing
solution, people are going to be happier to mention it if they don't feel
like they have to defend their previous actions, or confront the asker by
telling them they were wrong :-)

Mark
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://maillist.sys.kth.se/pipermail/gromacs.org_gmx-developers/attachments/20130208/771004f2/attachment.html>


More information about the gromacs.org_gmx-developers mailing list