Skip to content

Commit

Permalink
fix serialize call
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Dec 11, 2024
1 parent 9ca348c commit 43c12b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ucp/benchmarks/cudf_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def sizeof_cudf_dataframe(df):


async def send_df(ep, df):
header, frames = df.serialize()
header, frames = df.device_serialize()
header["frame_ifaces"] = [f.__cuda_array_interface__ for f in frames]
header = pickle.dumps(header)
header_nbytes = np.array([len(header)], dtype=np.uint64)
Expand Down

0 comments on commit 43c12b3

Please sign in to comment.