-
Notifications
You must be signed in to change notification settings - Fork 14
[Bench] Reduce input cols number for fetch #590
Conversation
b389f3d
to
46afee5
Compare
70cab96
to
3904660
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Please fix some minors and it's good to go.
@@ -0,0 +1,68 @@ | |||
#include "RelAlgExecutionUnit.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The license header is missing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added, check please, I am not sure that I am using correct one. We need to align it along all project.
@@ -0,0 +1,21 @@ | |||
#pragma once |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The license header is missing.
executor_->getDataMgr()->getGpuMgr()->getPlatform() == GpuMgrPlatform::L0; | ||
|
||
if (!is_l0) | ||
return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We always use brackets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
f7300b5
to
1188220
Compare
Should we add someone else to review? |
22e4b41
to
1a007e1
Compare
To estimate output size of result query to allocate buffer we are running `count*` before some actual queries. This estimation requires only query body argumnets without `select` arguments, so this commit changes input_cols for `count*` query. Resolves: #574 Signed-off-by: Dmitrii Makarenko <[email protected]>
1a007e1
to
1159aaf
Compare
To estimate output size of result query to allocate buffer we are running
count*
before some actual queries. This estimation requires only query body argumnets withoutselect
arguments, so this commit changes input_cols forcount*
query.Resolves: #574
Signed-off-by: Dmitrii Makarenko [email protected]