nschaeff

Results 15 comments of nschaeff

I'm particularly interested in the last one: GenGEigsComplexShift

Here is a patch that provides full diff between two commits for git. It is used like : diffuse -c commit1..commit2 # shows the full diff between git commit1 and...

Same thing for mercurial (a bit more tricky, hopefully it does not break anything!) ```diff --- a/src/diffuse/vcs/hg.py +++ b/src/diffuse/vcs/hg.py @@ -66,6 +66,12 @@ class Hg(VcsInterface): args.append(utils.safeRelativePath(self.root, name, prefs, 'hg_cygwin')) #...

There is already one: https://github.com/MightyCreak/diffuse/pull/212

Any chance to have this merge in the near future? What is missing?

Thanks a lot! Without changing the batch size, I can increase the stride just a little (+8 works well) and VkFFT delivers the transform in 1.1ms. Rule of thumb that...

It would also fix issue #166 for sqrt for free.

For cbrt, you can't just use an fma to compute the error with respect to cbrt(hi), so it is a bit more involved. But once we have the error, the...

Breaking news: I just learned from one of the authors, that the algorithm I propose for sqrt has been published and analyzed by serious people. It is algorithm 8 from...