MCPcopy Create free account
hub / github.com/apache/arrow / verify_cuda_recordbatch

Function verify_cuda_recordbatch

python/pyarrow/tests/test_table.py:3694–3703  ·  view source on GitHub ↗
(batch, expected_schema)

Source from the content-addressed store, hash-verified

3692
3693
3694def verify_cuda_recordbatch(batch, expected_schema):
3695 batch.validate()
3696 assert batch.device_type == pa.DeviceAllocationType.CUDA
3697 assert batch.is_cpu is False
3698 assert batch.num_columns == len(expected_schema.names)
3699 assert batch.column_names == expected_schema.names
3700 assert str(batch) in repr(batch)
3701 for c in batch.columns:
3702 assert c.device_type == pa.DeviceAllocationType.CUDA
3703 assert batch.schema == expected_schema
3704
3705
3706def test_recordbatch_non_cpu(cuda_context, cpu_recordbatch, cuda_recordbatch,

Callers 2

test_recordbatch_non_cpuFunction · 0.85
test_table_non_cpuFunction · 0.85

Calls 2

lenFunction · 0.85
validateMethod · 0.45

Tested by

no test coverage detected