Skip to content

Commit

Permalink
[VL] Daily Update Velox Version (2024_03_13)
Browse files Browse the repository at this point in the history
Signed-off-by: glutenperfbot <glutenperfbot@intel-internal.com>
  • Loading branch information
glutenperfbot authored and yma11 committed Mar 13, 2024
1 parent fd8ff2d commit d9d8e4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions cpp/velox/memory/VeloxMemoryManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,11 @@ class ListenableArbitrator : public velox::memory::MemoryArbitrator {
return true;
}

uint64_t shrinkCapacity(const std::vector<std::shared_ptr<velox::memory::MemoryPool>>& pools, uint64_t targetBytes)
override {
uint64_t shrinkCapacity(
const std::vector<std::shared_ptr<velox::memory::MemoryPool>>& pools,
uint64_t targetBytes,
bool allowSpill = true,
bool allowAbort = false) override {
facebook::velox::exec::MemoryReclaimer::Stats status;
GLUTEN_CHECK(pools.size() == 1, "Should shrink a single pool at a time");
std::lock_guard<std::recursive_mutex> l(mutex_); // FIXME: Do we have recursive locking for this mutex?
Expand Down
2 changes: 1 addition & 1 deletion ep/build-velox/src/get_velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -exu

VELOX_REPO=https://github.com/oap-project/velox.git
VELOX_BRANCH=2024_03_12
VELOX_BRANCH=2024_03_13
VELOX_HOME=""

#Set on run gluten on HDFS
Expand Down

0 comments on commit d9d8e4d

Please sign in to comment.