Sergiu Deitsch

Results 182 comments of Sergiu Deitsch

It is probably better to abandon `BENCHMARK_ENABLE_LTO` and let the user specify `CMAKE_INTERPROCEDURAL_OPTIMIZATION` instead.

But you don't just set `-flto`, do you? It looks like much more work is done than that. Either way, it is actually the purpose of the above CMake switch...

Thanks for the feedback. Possibly I missed this information, but I could not find this restriction in the documentation. According to [your previous comment](https://github.com/koel/koel/issues/529#issuecomment-348958601) and PR #673 non-root installations are...

@fieteboerner Do you happen to know why the links in the header and the footer still make requests to the root URL? All other links seem to work.

You don't actually need a reverse proxy. For reference, this is how I integrated Koel into an Nginx server instance: ```nginx location ~ ^/(js|img) { rewrite ^/(.*)$ /music/$1 permanent; }...

How did you come up with expected result? The downsampling factor is 3/5 (in horizontal direction) meaning destination columns 0, 1, 2 are mapped to source columns with indices 0,...

Why do you shift by 0.5 before transforming the coordinates? Do you assume the center of the pixel to be at .5 fraction of the pixel coordinate? I don't know...