Marten Richter

Results 99 comments of Marten Richter

Hi Miles, I am sorry for answering so late, but I was for sometime on vacation and then I first wanted to test my rescanOrtho implementation before posting it here....

Hi, the patch actually does not really solve our problem. I have tracked it down and it appears to be a problem of the construction of Itensor datastructures. If tensors...

Hi Miles, Sandra has written a minimal example. I have attached the file. If itensor calculates correctly, it should output a value of 4 every time. The example may look...

Hi Miles, so my first result. Adding: ``` // check if the scale is within reasonable range if (LogNum(30,1.).magnitudeLessThan(L.scale_)) { // it is very likely, that the scale factor and...

Hi, I have just realized, that computeScalefac in the implementation of the tensor data should do the same as my code does. So I have to figure out, why C.scalefac...

Hi, we have now changed `if(std::fabs(scalefac) < 1E-11) return NAN;` to `if (std::fabs(scalefac) < std::numeric_limits::epsilon()) return NAN;`. So far the unit tests as well as the minimal example works, also...

Hi, the last changes were not reliable. Attached is a patch, that avoids using an inversion of the scalefac and set the scale explicitly to zero, if a too small...

It does not occur on Linux with node version "v18.18.0." Also, it failed in a GitHub action on Windows, which uses node version v18.18.0.

Sure: https://github.com/fails-components/webtransport the code in question is here: https://github.com/fails-components/webtransport/blob/9e2309936d7f4273f1c903873c30789305037572/transports/http3-quiche/src/napialarmfactory.h#L137 You can run the tests in the root directory with: ``` npm install npm dobuild npm run test:node ```` make sure...

I have tested it to 18.20.1 on windows, and it fails as with the earlier versions. (For linux it was never an issue). I have also copied the code directly...