You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Due to limitations of certain algorithms such cub::ExclusiveScan, and json tree implementation, the input json can not exceed limit 2GiB. (INT_MAX)
The json_read_data_type INTEGRAL benchmark fail to run because of allocation out_of_memory, because the input json_size exceed 2GiB limit.
json_in.size() = 2167967896
total_temp_storage_bytes: 18446744073707336447
Fail: Unexpected error: std::bad_alloc: out_of_memory: RMM failure at:/home/coder/.conda/envs/rapids/include/rmm/mr/device/pool_memory_resource.hpp:277: Maximum pool size exceeded
Steps/Code to reproduce bug ./benchmarks/JSON_READER_NVBENCH --profile --benchmark json_read_data_type --axis data_type=INTEGRAL
Expected behavior
Either >2GiB should be batched multiple times with read_json, or error out that >2GiB sources are not supported.
Describe the bug
Due to limitations of certain algorithms such
cub::ExclusiveScan
, and json tree implementation, the input json can not exceed limit 2GiB. (INT_MAX)The json_read_data_type INTEGRAL benchmark fail to run because of allocation out_of_memory, because the input json_size exceed 2GiB limit.
Steps/Code to reproduce bug
./benchmarks/JSON_READER_NVBENCH --profile --benchmark json_read_data_type --axis data_type=INTEGRAL
Expected behavior
Either >2GiB should be batched multiple times with
read_json
, or error out that >2GiB sources are not supported.Additional context
#16978
The text was updated successfully, but these errors were encountered: