dt 2.7 still facing some performance issues

I fiddled around a bit more…

Currently I am building my dt 2.7 with the below script. (nocona due to “icecream” a distcc alike compiler cluster, but I will change to native now…)

That improved many things, however, I am still facing an issue, that most of the time i touch a module for the first time, especially WB, it is sluggish in the first place. When I relieve the slider and touch it again, suddenly the reaction is way more fluent.

nvidia-smi also shows that with a higher GPU utiization.

Anyone can confirm that?

#!/bin/sh

PATH_SCRIPT="/root/darktable"
CFLAGS_SCRIPT="-march=nocona -O2 -mtune=native -mssse3 -mfpmath=sse -pipe"
CXXFLAGS_SCRIPT="${CFLAGS_SCRIPT}"
BUILD="Release"
MAKE="-j15"

cd $PATH_SCRIPT
git pull
git submodule update

cd $PATH_SCRIPT/build
cmake -DCMAKE_BUILD_TYPE=$BUILD CFLAGS=$CFLAGS_SCRIPT CXXFLAGS=$CXXFLAGS_SCRIPT ..
make $MAKE && make install

exit 0