Jay Krell

Results 33 comments of Jay Krell

I added those NtWow64ReadVirtualMemory64 functions, way back when. At the time, whether we had 32bit tlist or 64bit tlist first in %PATH% varied and I wanted whatever was first to...

> We can't reliably get the return address of a native function while it's running. Really? Do you mean on its thread, it called you/interpreter, or cross thread? On Windows,...

On Windows, it is just RtlLookupFunctionEntry + RtVirtualUnwind. The data is always there and you don't have to parse it. Stack walkability is not optional. Not quite always PE/COFF, as...

I didn't see your PR when I read the issue so went ahead and made one, very similar. I made the existing Makefile work on Unix and Microsoft nmake. https://github.com/ggerganov/llama.cpp/pull/36

@teknium1 > Any chance we could publish binaries for windows? Here https://github.com/jaykrell/llama.cpp/releases/tag/1 but perhaps that is kinda rude of me. I'll delete if there are objections.

Aside: For VirtualAlloc to turn around and do a heap allocation, is imho bogus. It breaks the layering of the system.

The I/O can also fail. i.e. if the network goes down. mmap is great and horrible at the same time. I am curious. If you do this via host mmap...

Ok. Serious question then: instead of `= default` should I use `{ }`? Or is that going to "too old" compiler?

Since you specifically said `C++03` I suspect I should go with `{ }`.

> I think you should squash the 3 commits into a single one, as it's not desirable to have not-quite-correct versions in the history. Note: I am not speaking with...