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
Using SELECT DISTINCT <column> FROM <table> WHERE CAST(<column> AS INT) != 1 brings different results , when set EXECUTOR_DEVICE 'CPU' and 'GPU'.
SQL:
CREATETABLEt0(c0 DECIMAL(2) NULL, c1 DOUBLE);
INSERT INTO t0(c1) VALUES(0.20684618710775926),(1.7976931348623157E308);
ALTER SESSION SET EXECUTOR_DEVICE='CPU';
SELECT DISTINCTt0.c1FROM t0 WHERE CAST(t0.c1ASINT) !=1;
Result:
c1
0.2068461871077593
SQL:
ALTER SESSION SET EXECUTOR_DEVICE='GPU';
SELECT DISTINCTt0.c1FROM t0 WHERE CAST(t0.c1ASINT) !=1;
The text was updated successfully, but these errors were encountered:
qwebug
changed the title
[Logic Bug] SELECT DISTINCT <column> FROM <table> WHERE CAST(<column> AS INT) != 1 Brings Errors
[GPU Logic Bug] SELECT DISTINCT <column> FROM <table> WHERE CAST(<column> AS INT) != 1 Brings Errors
May 5, 2024
Describe:
Using SELECT DISTINCT <column> FROM <table> WHERE CAST(<column> AS INT) != 1 brings different results , when set EXECUTOR_DEVICE 'CPU' and 'GPU'.
SQL:
Result:
SQL:
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: