Wei Wang

Results 4 comments of Wei Wang

可以检查一下学期起始日设置是否正确

Same here. After downgrading to Release v0.20.0, the bug no longer occurs.

I came back to check this issue and now I believe the problem is caused by the error handling mechanism. The issue was introduced by 95d1268 (FFI refactoring). Before this...

In `verify_gpu_code.cc`, errors don't terminate the program but instead return `false`: ```cpp try { /* ... */ } catch (const dmlc::Error& e) { return false; } ``` Before commit #95d1268,...