We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SELECT <agg_func> FROM <table> brings different results, when using CPU-only configurations and GPU-used configurations.
CREATE TABLE t0(c0 DOUBLE); INSERT INTO t0(c0) VALUES('Infinity'); ALTER SESSION SET EXECUTOR_DEVICE='CPU'; SELECT SUM(CAST(t0.c0 AS INT)) FROM t0;
EXPR$0 NULL
ALTER SESSION SET EXECUTOR_DEVICE='GPU'; SELECT SUM(CAST(t0.c0 AS INT)) FROM t0;
EXPR$0 2147483647
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:
No branches or pull requests
Describe:
SELECT <agg_func> FROM <table> brings different results, when using CPU-only configurations and GPU-used configurations.
SQL with CPU-only Config:
Result:
EXPR$0 NULL
SQL with GPU-used Config:
Result:
EXPR$0 2147483647
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: