shrealist

Results 4 comments of shrealist

When importing, add the following code, and it will pass. ``` import numba.core.serialize as serialize def dumps(obj): with io.BytesIO() as buf: p = pickle._Pickler(buf, protocol=4) p.dump(obj) pickled = buf.getvalue() return...

Modify the dumps function on line 52 of numba/core/serialize.py: ``` def dumps(obj): pickler = NumbaPickler with io.BytesIO() as buf: p = pickle._Pickler(buf, protocol=4) p.dump(obj) pickled = buf.getvalue() return pickled ```...

I looked further into the cause and found the following situation: ``` root [9] gROOT->GetType("int") (TDataType *) 0x1d30a8e1320 root [10] gROOT->GetType("const int") (TDataType *) nullptr ``` This might be helpful...

I'd like to address the issue regarding the use of std::span as opposed to a list or vector in our current context. While it's true that using a tuple or...