Skip to content

Commit

Permalink
Merge branch 'emma/correct_comment_datapath' into 'main'
Browse files Browse the repository at this point in the history
Update some comments and datapath

See merge request dl/hugectr/hugectr!1532
  • Loading branch information
EmmaQiaoCh committed Apr 18, 2024
2 parents e369846 + 5c566e6 commit 070fe29
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ if (DISABLE_A2A_WARMUP)
endif()

option(DISABLE_CUDF "Disable cudf: disable parquet format related features" OFF)
# this manual definition is a WAR and RMM team will fix it in the future
# Add this manual definition
add_compile_definitions(LIBCUDACXX_ENABLE_EXPERIMENTAL_MEMORY_RESOURCE)
option(USE_CUDART_STATIC "Setup clangformat target" OFF)
if(USE_CUDART_STATIC)
Expand Down
2 changes: 1 addition & 1 deletion HugeCTR/src/hps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ list(APPEND huge_ctr_hps_src
"../io/gcs_filesystem.cpp"
)

# this manual definition is a WAR and RMM team will fix it in the future
# Add this manual definition
add_compile_definitions(LIBCUDACXX_ENABLE_EXPERIMENTAL_MEMORY_RESOURCE)

add_library(huge_ctr_hps SHARED ${huge_ctr_hps_src})
Expand Down
1 change: 0 additions & 1 deletion sbin/build-hadoop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ if [[ "${HDFS_BUILD_MODE}" == "MINIMAL" ]]; then
cd hadoop-hdfs-project/hadoop-hdfs-native-client
fi

# WAR for https://issues.apache.org/jira/browse/YARN-11528
# TODO: remove below lines when the fix released.
sed -i '/scripts/i \
\"resolutions\": { \
Expand Down
1 change: 0 additions & 1 deletion test/utest/data_reader/data_reader_benchmark.cu
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ using namespace HugeCTR;

// const std::string fname = "/40m.limit_preshuffled/train_data.bin";
// const std::string fname = "/criteo_kaggle/dlrm/test_data.bin";
// const std::string fname = "/raid/datasets/criteo/mlperf/40m.limit_preshuffled/train_data.bin";
const std::string fname = "/data_multihot/val_data.bin";

__global__ void gpu_sleep(int64_t num_cycles) {
Expand Down
7 changes: 3 additions & 4 deletions test/utest/embedding_collection/configuration.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,9 @@ InputDataConfiguration synthetic_uniform_dataset = {.fixed_hotness = true,
InputDataConfiguration criteo_dataset = {
.fixed_hotness = true,
.input_data_type = InputDataType::RawFormat,
.raw_format_param = {
.input_file = "/raid/datasets/criteo/mlperf/40m.limit_preshuffled/train_data.bin",
.label_dim = 1,
.dense_dim = 13}};
.raw_format_param = {.input_file = "/datasets/40m.limit_preshuffled/train_data.bin",
.label_dim = 1,
.dense_dim = 13}};

InputDataConfiguration criteo_multi_hot_dataset = {
.fixed_hotness = true,
Expand Down

0 comments on commit 070fe29

Please sign in to comment.