Skip to content

Commit

Permalink
[native] Advance velox.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta committed Jul 18, 2024
1 parent e789515 commit a38da7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,9 @@ class TaskManagerTest : public testing::Test {
void writeToFile(
const std::string& filePath,
const std::vector<RowVectorPtr>& vectors) {
dwio::common::WriterOptions options;
options.schema = rowType_;
options.memoryPool = rootPool_.get();
auto options = std::make_shared<dwio::common::WriterOptions>();
options->schema = rowType_;
options->memoryPool = rootPool_.get();
auto sink = std::make_unique<dwio::common::LocalFileSink>(
filePath, dwio::common::FileSink::Options{});
auto writer = dwio::common::getWriterFactory(dwio::common::FileFormat::DWRF)
Expand Down
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 56 files
+0 −4 .github/workflows/linux-build.yml
+1 −1 .github/workflows/preliminary_checks.yml
+6 −6 velox/common/caching/tests/AsyncDataCacheTest.cpp
+14 −9 velox/common/time/CpuWallTimer.h
+97 −40 velox/connectors/hive/HiveDataSink.cpp
+11 −5 velox/connectors/hive/HiveDataSink.h
+8 −2 velox/docs/functions/presto/math.rst
+1 −2 velox/docs/monitoring/metrics.rst
+11 −2 velox/dwio/common/Options.h
+13 −1 velox/dwio/common/WriterFactory.h
+66 −62 velox/dwio/dwrf/test/ColumnWriterTest.cpp
+2 −2 velox/dwio/dwrf/writer/Writer.cpp
+1 −1 velox/dwio/dwrf/writer/Writer.h
+3 −3 velox/dwio/parquet/writer/Writer.cpp
+1 −1 velox/dwio/parquet/writer/Writer.h
+1 −3 velox/dwio/parquet/writer/arrow/Encoding.cpp
+15 −6 velox/exec/AssignUniqueId.cpp
+1 −1 velox/exec/Driver.cpp
+4 −4 velox/exec/GroupingSet.cpp
+1 −1 velox/exec/GroupingSet.h
+3 −3 velox/exec/HashBuild.cpp
+55 −35 velox/exec/HashTable.cpp
+71 −52 velox/exec/HashTable.h
+7 −10 velox/exec/RowNumber.cpp
+6 −1 velox/exec/TableScan.cpp
+2 −6 velox/exec/TopNRowNumber.cpp
+4 −1 velox/exec/benchmarks/HashJoinListResultBenchmark.cpp
+4 −1 velox/exec/benchmarks/HashJoinPrepareJoinTableBenchmark.cpp
+7 −3 velox/exec/benchmarks/HashTableBenchmark.cpp
+4 −4 velox/exec/fuzzer/PrestoQueryRunner.cpp
+1 −0 velox/exec/fuzzer/PrestoQueryRunner.h
+54 −34 velox/exec/tests/AssignUniqueIdTest.cpp
+22 −12 velox/exec/tests/HashTableTest.cpp
+50 −0 velox/exec/tests/TableScanTest.cpp
+4 −2 velox/exec/tests/utils/PlanBuilder.cpp
+6 −1 velox/exec/tests/utils/PlanBuilder.h
+6 −2 velox/exec/tests/utils/QueryAssertions.cpp
+32 −0 velox/experimental/wave/common/Buffer.cpp
+24 −0 velox/experimental/wave/common/Buffer.h
+50 −9 velox/experimental/wave/common/GpuArena.cpp
+18 −2 velox/experimental/wave/common/GpuArena.h
+3 −2 velox/experimental/wave/dwio/FormatData.cpp
+9 −6 velox/experimental/wave/dwio/ReadStream.cpp
+3 −41 velox/experimental/wave/exec/ExprKernel.cu
+12 −0 velox/experimental/wave/exec/ExprKernel3.cu
+1 −1 velox/experimental/wave/exec/Wave.cpp
+27 −0 velox/experimental/wave/exec/WaveCore.cuh
+24 −9 velox/experimental/wave/exec/tests/TableScanTest.cpp
+12 −5 velox/experimental/wave/vector/WaveVector.cpp
+6 −1 velox/expression/CastExpr-inl.h
+27 −0 velox/expression/tests/CastExprTest.cpp
+17 −0 velox/functions/prestosql/Probability.h
+5 −1 velox/functions/prestosql/aggregates/PrestoHasher.cpp
+4 −2 velox/functions/prestosql/aggregates/tests/ChecksumAggregateTest.cpp
+2 −0 velox/functions/prestosql/registration/ProbabilityTrigonometricFunctionsRegistration.cpp
+29 −0 velox/functions/prestosql/tests/ProbabilityTest.cpp

0 comments on commit a38da7a

Please sign in to comment.