jon-chuang

Results 411 comments of jon-chuang

@Green-Avocado rust-analyzer.json does not seem to be loaded. I tried restart all language servers, tested with misformatted json to force an error. It failed to even show any change. My...

> No need to import FutureExt because the macro calls it with FutureExt::into_ffi(async move {}) instead. macro does not mean you don't need to import. proc macro only transforms AST....

Is this friendly to adcx/adox?

Kilic's impl produces very good results for these limbs > 6

Goff's method is naive push and pop, so I assume slow. Kilic splits up the inner loop so there is less data movement

Hey @spacejam, thanks for the insightful replies. Some thoughts: - TinyLFU: I suppose maintaining a lightweight count can help during the random eviction process - similar to rejection sampling. A...

Hi Santiago, Perhaps I could look into extending the work on QTesla since I am familiar with RLWE. I suppose I am interested in SIKE as well, but I do...

Some notes: GlobalCollector receives and processes the command, but the callback via `futures::channel::oneshot::channel` fails. Investigating why now. Edit: 1. tested that this does not work by substituting `tokio::sync::oneshot::channel` 2. works...

Yes ```rust let mut rt_ = monoio::RuntimeBuilder::new().build().unwrap(); rt_.block_on(async move { let (root, collector) = Span::root("hi!"); let spans = collector.collect().await; println!("spans: {:?}", spans); }); ``` If you instrument, `commit_collect`, you will...