discord9

Results 25 comments of discord9

I think current version can pass most test for now...except for the following: related to WeakRef, seems to access deallocated object in some rare case(one time in several million times),...

@DimitrisJim Sorry but it seems this time test_weakref trigger a panic on gc thread, and cause the entire program to halt(presumably poisoned) could you please help me terminate this workflow?

@DimitrisJim I think the weakref bug should be fixed by now,and this version should be ready for CI test, although the `test_weakref` alone can take more than fifty minutes to...

oh once again I forgot about conditional compilation flag, hey but at least the major cpython test are oked! __Edited__: `test_weakref passed (2 hour 2 min)`, that is taking very...

The wasm test can't pass, I guess rebase off the newest main branch might solve it? _Edited_: other test are oked, but I have no clue what's going wrong with...

My guess is that the main overhead is checking if need to pause(is checked on every deref), going to test it out. Maybe a cleverer way is to pause only...

> I've slightly taken a peak at the paper this is based on, I'm guessing the two improvements it mentions have been implemented, right? I.e, using the buffered flag to...

> I am really sorry for late review. I am not understanding how this gc is working - and I seem to not have enough time to get it before...

> i rebased it on main branch I will fix the CI

Yeah python itself support type annotation, and during coding coprocessor, I remember adding support using those type annotation for RecordBatch, I think a ```python def a() -> i64: return 1...