Skip to content

Commit

Permalink
Merge branch 'main' into enh/_data_mgr
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Aug 18, 2024
2 parents 60e1e00 + c4e4931 commit c404cdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/xorbits/_mars/_utils.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def tokenize_cupy(ob):
def tokenize_cudf(ob):
from xoscar.serialization import serialize
header, buffers = serialize(ob)
return iterative_tokenize([header] + [(buf.ptr, buf.size) for buf in buffers])
return iterative_tokenize([header] + [(buf._owner._ptr, buf.size) for buf in buffers])


cdef Tokenizer tokenize_handler = Tokenizer()
Expand Down

0 comments on commit c404cdc

Please sign in to comment.