-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Large strings gtest fixture and utilities (#15513)
Creates the base class and utilities for testing APIs to produce large strings. The main purpose of the fixture is to enable the large strings environment variable(s) and to setup large test data that can be reused by multiple tests. Authors: - David Wendt (https://github.com/davidwendt) Approvers: - MithunR (https://github.com/mythrocks) - Nghia Truong (https://github.com/ttnghia) URL: #15513
- Loading branch information
1 parent
117eff6
commit 2eb71b2
Showing
8 changed files
with
351 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright (c) 2024, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include "large_strings_fixture.hpp" | ||
|
||
#include <cudf_test/column_utilities.hpp> | ||
|
||
#include <cudf/concatenate.hpp> | ||
#include <cudf/copying.hpp> | ||
#include <cudf/strings/strings_column_view.hpp> | ||
|
||
#include <vector> | ||
|
||
struct ConcatenateTest : public cudf::test::StringsLargeTest {}; | ||
|
||
TEST_F(ConcatenateTest, ConcatenateVertical) | ||
{ | ||
auto input = this->long_column(); | ||
auto view = cudf::column_view(input); | ||
std::vector<cudf::column_view> input_cols; | ||
std::vector<cudf::size_type> splits; | ||
int const multiplier = 10; | ||
for (int i = 0; i < multiplier; ++i) { // 2500MB > 2GB | ||
input_cols.push_back(view); | ||
splits.push_back(view.size() * (i + 1)); | ||
} | ||
splits.pop_back(); // remove last entry | ||
auto result = cudf::concatenate(input_cols); | ||
auto sv = cudf::strings_column_view(result->view()); | ||
EXPECT_EQ(sv.size(), view.size() * multiplier); | ||
EXPECT_EQ(sv.offsets().type(), cudf::data_type{cudf::type_id::INT64}); | ||
|
||
// verify results in sections | ||
auto sliced = cudf::split(result->view(), splits); | ||
for (auto c : sliced) { | ||
CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(c, input); | ||
} | ||
|
||
// also test with large strings column as input | ||
input_cols.clear(); | ||
input_cols.push_back(input); // regular column | ||
input_cols.push_back(result->view()); // large column | ||
result = cudf::concatenate(input_cols); | ||
sv = cudf::strings_column_view(result->view()); | ||
EXPECT_EQ(sv.size(), view.size() * (multiplier + 1)); | ||
EXPECT_EQ(sv.offsets().type(), cudf::data_type{cudf::type_id::INT64}); | ||
splits.push_back(view.size() * multiplier); | ||
sliced = cudf::split(result->view(), splits); | ||
for (auto c : sliced) { | ||
CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(c, input); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
/* | ||
* Copyright (c) 2024, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include "large_strings_fixture.hpp" | ||
|
||
#include <cudf_test/column_utilities.hpp> | ||
#include <cudf_test/column_wrapper.hpp> | ||
#include <cudf_test/testing_main.hpp> | ||
|
||
#include <cudf/column/column.hpp> | ||
#include <cudf/strings/combine.hpp> | ||
#include <cudf/strings/repeat_strings.hpp> | ||
#include <cudf/strings/strings_column_view.hpp> | ||
|
||
#include <map> | ||
#include <memory> | ||
#include <vector> | ||
|
||
namespace cudf::test { | ||
class LargeStringsData { | ||
public: | ||
using DataPointer = std::unique_ptr<cudf::table>; | ||
|
||
virtual ~LargeStringsData() {} | ||
|
||
void add_table(std::string_view name, std::unique_ptr<cudf::table>&& data) | ||
{ | ||
_data[std::string(name)] = std::move(data); | ||
} | ||
|
||
cudf::table_view get_table(std::string_view name) const | ||
{ | ||
std::string key{name}; | ||
return _data.find(key) != _data.end() ? _data.at(key)->view() : cudf::table_view{}; | ||
} | ||
|
||
void add_column(std::string_view name, std::unique_ptr<cudf::column>&& data) | ||
{ | ||
std::vector<std::unique_ptr<cudf::column>> cols; | ||
cols.emplace_back(std::move(data)); | ||
_data[std::string(name)] = std::make_unique<cudf::table>(std::move(cols)); | ||
} | ||
|
||
cudf::column_view get_column(std::string_view name) const | ||
{ | ||
std::string key{name}; | ||
return _data.find(key) != _data.end() ? _data.at(key)->view().column(0) : cudf::column_view{}; | ||
} | ||
|
||
bool has_key(std::string_view name) const { return _data.find(std::string(name)) != _data.end(); } | ||
|
||
protected: | ||
std::map<std::string, DataPointer> _data; | ||
}; | ||
|
||
cudf::column_view StringsLargeTest::wide_column() | ||
{ | ||
std::string name{"wide1"}; | ||
if (!g_ls_data->has_key(name)) { | ||
auto input = | ||
cudf::test::strings_column_wrapper({"the quick brown fox jumps over the lazy dog", | ||
"the fat cat lays next to the other accénted cat", | ||
"a slow moving turtlé cannot catch the bird", | ||
"which can be composéd together to form a more complete", | ||
"The result does not include the value in the sum in"}); | ||
auto counts = cudf::test::fixed_width_column_wrapper<int>({8, 8, 8, 8, 8}); | ||
auto result = cudf::strings::repeat_strings(cudf::strings_column_view(input), counts); | ||
g_ls_data->add_column(name, std::move(result)); | ||
} | ||
return g_ls_data->get_column(name); | ||
} | ||
|
||
cudf::column_view StringsLargeTest::long_column() | ||
{ | ||
std::string name("long1"); | ||
if (!g_ls_data->has_key(name)) { | ||
auto itr = thrust::constant_iterator<std::string_view>( | ||
"abcdefghijklmnopqrstuvwxyABCDEFGHIJKLMNOPQRSTUVWXY"); // 50 bytes | ||
auto input = cudf::test::strings_column_wrapper(itr, itr + 5'000'000); // 250MB | ||
g_ls_data->add_column(name, input.release()); | ||
} | ||
return g_ls_data->get_column(name); | ||
} | ||
|
||
std::unique_ptr<LargeStringsData> StringsLargeTest::get_ls_data() | ||
{ | ||
CUDF_EXPECTS(g_ls_data == nullptr, "invalid call to get_ls_data"); | ||
auto lsd_data = std::make_unique<LargeStringsData>(); | ||
g_ls_data = lsd_data.get(); | ||
return lsd_data; | ||
} | ||
|
||
LargeStringsData* StringsLargeTest::g_ls_data = nullptr; | ||
} // namespace cudf::test | ||
|
||
int main(int argc, char** argv) | ||
{ | ||
::testing::InitGoogleTest(&argc, argv); | ||
auto const cmd_opts = parse_cudf_test_opts(argc, argv); | ||
// hardcoding the CUDA memory resource to keep from exceeding the pool | ||
auto mr = cudf::test::make_cuda(); | ||
rmm::mr::set_current_device_resource(mr.get()); | ||
auto adaptor = make_stream_mode_adaptor(cmd_opts); | ||
|
||
// create object to automatically be destroyed at the end of main() | ||
auto lsd = cudf::test::StringsLargeTest::get_ls_data(); | ||
|
||
return RUN_ALL_TESTS(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright (c) 2024, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include <cudf_test/base_fixture.hpp> | ||
#include <cudf_test/column_utilities.hpp> | ||
|
||
#include <cudf/column/column_view.hpp> | ||
|
||
namespace cudf::test { | ||
class LargeStringsData; | ||
|
||
/** | ||
* @brief Fixture for creating large strings tests | ||
* | ||
* Stores tests strings columns for reuse by specific tests. | ||
* Creating the test input only once helps speed up the overall tests. | ||
* | ||
* Also automatically enables appropriate large strings environment variables. | ||
*/ | ||
struct StringsLargeTest : public cudf::test::BaseFixture { | ||
/** | ||
* @brief Returns a column of long strings | ||
*/ | ||
cudf::column_view wide_column(); | ||
|
||
/** | ||
* @brief Returns a long column of strings | ||
*/ | ||
cudf::column_view long_column(); | ||
|
||
large_strings_enabler g_ls_enabler; | ||
static LargeStringsData* g_ls_data; | ||
|
||
static std::unique_ptr<LargeStringsData> get_ls_data(); | ||
}; | ||
} // namespace cudf::test |
Oops, something went wrong.