Richard Lawrence

Results 31 comments of Richard Lawrence

this merge would be pretty great since it's still an issue for some folks like me.

That seems like an unnecessarily specific use case. I guess you can say that about the whole tool. Fixing the documentation is a higher priority than refactoring the arguments, but...

Do mind explaining why you picked the multithreading programming model rather than async/await programming model?

@volfco I created a similar multithreading solution but instead of making a whole new session object for each worker, I just created a new channel object for each worker, and...

It turns out we still need the builtin LLVM; ROOT keeps patching their internal LLVM even though they promised not to.

I managed to implement your no-no solution. It works great, until it hangs my filesystem and then shortly after, my whole desktop. I used `Arc` to move the notifier from...

I was testing my file system and I found that if I did a rename operation followed immediately by query to see the result of the rename operation then I...

I wouldn't say that rust is making this easier; I don't think rust really ever makes anything easier. But, I've been working on this file system for a few weeks,...

Broken for sycl ``` lammps/src/KOKKOS/fix_cmap_kokkos.cpp:886:38: error: SYCL kernel cannot use a non-const static data variable 886 | for (k = 0; k < 16; k++) xx += wt[in][k]*x[k] ```

I wanted the mock kernel to have a maximally similar interface as the filesystem interface, so the user doesn't have to learn anything new. Like this ``` struct MockKernel{ fs:...