Skip to content
New issue

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

CUDA Build Failure Report #380

Closed
xlxie opened this issue Aug 10, 2018 · 1 comment
Closed

CUDA Build Failure Report #380

xlxie opened this issue Aug 10, 2018 · 1 comment

Comments

@xlxie
Copy link

xlxie commented Aug 10, 2018

Configuration:
CUDA9.2, PG 10.4, pg-strom 2.0

SQL: TPCH-13
select
c_count,
count(*) as custdist
from
(
select
c_custkey,
count(o_orderkey)
from
customer left outer join orders on
c_custkey = o_custkey
and o_comment not like '%express%packages%'
group by
c_custkey
) as c_orders (c_custkey, c_count)
group by
c_count
order by
custdist desc,
c_count desc;

Data set:
TPCH, 100GB

Error Message:
ERROR: build failure:
/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(716): error: identifier "ItemIdData" is undefined

/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(716): error: identifier "lpp_array" is undefined

/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(716): error: expected an expression

/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(839): error: identifier "ItemIdSetUnused" is undefined

/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(1270): error: identifier "ItemIdData" is undefined

/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(1270): error: identifier "lpp_array" is undefined

/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(1270): error: expected an expression

/usr/local/pg10/share/postgresql/extension/cuda_gpupreagg.h(1345): error: identifier "ItemIdSetUnused" is undefined

8 errors detected in the compilation of "pg-strom".

@kaigai
Copy link
Contributor

kaigai commented Dec 30, 2020

Not certain whether it can be reproduced on the latest revision.

@kaigai kaigai closed this as completed Dec 30, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants