mw66
mw66
https://github.com/AntonMeep/profdump/blob/master/dub.json#L19 ``` "silly": {"path": "../silly"}, ``` Why this relative path? is it intended?
It's for GSoC / SAoC.
> 4. Tasks should use wait-free gc-free channels to send data (and other tasks too). https://forum.dlang.org/post/[email protected] lock-free queue? https://www.liblfds.org/mediawiki/index.php?title=r7.1.1:Queue_(unbounded,_many_producer,_many_consumer) Java uses the same algorithm for ConcurrentLinkedQueue (in C implementation). I...
that liblfds queue is mpmc, i.e. it's correct *even* under mpmc requests.
No, it's mpmc and lock free. liblfds stands for: lib-lock-free-data-structure. https://www.liblfds.org/mediawiki/index.php?title=r7.1.1:Queue_(unbounded,_many_producer,_many_consumer)#Lock-free_Specific_Behaviour
It has CAS, but not the 'lock' in the usual sense, the implementation is based on: https://www.cs.rochester.edu/~scott/papers/1996_PODC_queues.pdf
> > 1. Tasks should have a small stack size with automatic growth like in go lang. > > That one is going to be a real pain. Go has...
> > 1. Tasks should have a small stack size with automatic growth like in go lang. > > That one is going to be a real pain. Go has...
related issue: https://github.com/mavlink/qgroundcontrol/issues/10578 so can only use v4.1.7 for now.
@Zhazhan my 3rd question: 3) https://github.com/ant-research/Pyraformer/blob/master/preprocess_elect.py#L58 ``` x_input[count, 1:, 0] = data[window_start:window_end-1, series] ``` so, the `x_input[:, :, 0]` is the raw input sequence data, but in: https://github.com/ant-research/Pyraformer/blob/master/data_loader.py#L440-L445 ``` cov...