Kay Hayen

Results 1287 comments of Kay Hayen

Wall clock time of the overall recording in best resolution is probably OK.

I found "time.clock_gettime" and we could use it with CLOCK_PROCESS_CPUTIME_ID, but there is nothing for Python2 like that. Any ideas there?

I mean, beyond ctypes / cffi binding it.

I am using clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1); and then something to calculate the differences. I am going to make a pull request later with that kind of thing I suppose, while I...

Just for the record. I am trying to match CPython runs of a program against Nuitka runs of a program, in order to find parts of the program where CPython...

I had a regression after updating incbin to latest version, attempting to create a reproducer. I am having issues with LTO and incbin I believe. Not sure how to provide...

In a similar fashion, versioned Python requirements are ignored too. I was looking into parsing code like this: > pylint == 1.9.5 ; python_version == '2.7' > pylint == 2.4.4...

Yes it does, but good point, didn't think of that.

But ccache is not part of the equation, it doesn't work without it either.

I think it's really that some LTO support is missing from the clang linker, much like it did for gcc some time ago. The linking side seems to not support...