conduition

Results 70 comments of conduition

Hmm. Turns out the performance disparity in my code was unrelated to midstate caching. The source of the speedup between my lib and the `slh-dsa` crate must actually be coming...

i'm not sure what drugs I was taking yesterday, but the benchmarks i'm running today paint a clear picture. Here's rust crypto's `slh-dsa` crate, benchmarked with the `Sha2_128s` parameter set....

@tarcieri rather than beating around the bush i invited you and @tjade273 to my repo as collaborators so you can inspect my benchmarks.

+1 to this. Reproducible with: ``` cargo new program && cd program cargo add slh-dsa && cargo check ``` ``` error[E0405]: cannot find trait `CryptoRngCore` in crate `signature::rand_core` ``` ```...

Found a workaround: ``` cargo add signature@=2.3.0-pre.4 ``` by default cargo is installing `[email protected]` and up, which causes the compilation error because newer versions of `signature` uses `[email protected]`, whereas `slh-dsa`...

Here is the full diff showing my local changes, debug statements included. ```diff diff --git a/inc/state/logicaldevice.inl b/inc/state/logicaldevice.inl index 46383fc..e219c34 100644 --- a/inc/state/logicaldevice.inl +++ b/inc/state/logicaldevice.inl @@ -467,6 +467,8 @@ namespace vuda...

Here is the debugging output. I get this same output both on my dev machine and on a GPU cloud node I rented. ``` dev_a before cudaMalloc: (nil) dev_b before...

The oldest SDK version available from lunar G is 1.3, which i just tried. Specifically I used `1.3.268.0` (released Oct 2023). It still segfaults the exact same way. If there...

As for my environment, I'm on vanilla Debian 12, no fancy extras, with `build-essential` installed along with the basic deps required by the Vulkan SDK. I'm compiling with `g++`. I've...

That branch appears to fix the fatal compilation errors, but I still get the segmentation fault in the `simple` example, exactly as described earlier. Most of the other samples also...