Skip to content

Commit 3fd4cd1

Browse files
committed
Update build
1 parent da48930 commit 3fd4cd1

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

cpp/src/cudf_compact/cudf_compact.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#include <cudf/table/table.hpp>
1212
#include <cudf/types.hpp>
1313
#include <cudf/utilities/default_stream.hpp>
14-
#include <cudf/utilities/logger.hpp>
1514
#include <cudf/utilities/type_dispatcher.hpp>
1615
#include <rmm/cuda_stream_view.hpp>
1716
#include <rmm/mr/device/device_memory_resource.hpp>
@@ -368,8 +367,6 @@ CompactionResult mergeSortedS3Files(CompactionInput const &details, std::size_t
368367
schema_idx++;
369368
}
370369

371-
cudf::logger().set_level(spdlog::level::debug);
372-
373370
// chunk-size is in GB
374371
// TODO read from config/options
375372
size_t const chunk_size = gpuChunk * 1024ul * 1024ul;

java/compaction/compaction-gpu/docker/Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
FROM rapidsai/base:24.12-cuda12.5-py3.12 AS base
33

44
USER root
5-
# Install tools
6-
RUN apt-get update && apt-get install -y pcp && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y tzdata htop dstat less nano sudo software-properties-common wget unzip && apt-get clean
5+
# Install tools. Install pcp first to avoid setup script issues
6+
RUN apt-get update && apt-get install -y pcp && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y tzdata htop dstat less nano sudo software-properties-common wget unzip\
7+
&& apt-get remove pkgconf\
8+
&& apt-get autoremove\
9+
&& apt-get clean
710

811
# Use shell form for redirection and enable sudo
912
ARG USERNAME=rapids
@@ -71,6 +74,8 @@ RUN git clone https://github.com/include-what-you-use/include-what-you-use.git -
7174
USER $USERNAME
7275
WORKDIR /home/rapids
7376

77+
RUN mamba install -y pkgconf
78+
7479
FROM build AS devcontainer
7580
USER root
7681
# This is to enable persistent BASH history

0 commit comments

Comments
 (0)