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
SELECT /*+ keep_table_function_result */ <column> FROM <table> GROUP BY <column> brings different results, when using CPU-only configurations and GPU-used configurations.
SQL with CPU-only Config:
CREATETABLEt0(c0 bigint);
INSERT INTO t0(c0) VALUES(1);
INSERT INTO t0(c0) VALUES(2);
INSERT INTO t0(c0) VALUES(NULL);
ALTER SESSION SET EXECUTOR_DEVICE='CPU';
SELECT/*+ keep_table_function_result */t0.c0FROM t0 ORDER BYt0.c0DESC;
Result:
c0
NULL
2
1
SQL with GPU-used Config:
ALTER SESSION SET EXECUTOR_DEVICE='GPU';
SELECT/*+ keep_table_function_result */t0.c0FROM t0 ORDER BYt0.c0DESC;
Describe:
SELECT /*+ keep_table_function_result */ <column> FROM <table> GROUP BY <column> brings different results, when using CPU-only configurations and GPU-used configurations.
SQL with CPU-only Config:
Result:
SQL with GPU-used Config:
Result:
Environment:
Docker Deployment
https://hub.docker.com/layers/heavyai/heavyai-ee-cuda/latest/images/sha256-5af3ad3a00cbc5ce09c299b8b81cda96521a27373dbb1e59209c02358cfd9b1f?context=explore
Docker DIGEST: sha256:5af3ad3a00cbc5ce09c299b8b81cda96521a27373dbb1e59209c02358cfd9b1f
HeavyDB Version: 7.1.0-20230821-eae9ec17da
HeavyDB license: Free Edition
The text was updated successfully, but these errors were encountered: