Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate accumulate_into_selected from ANN utils into linalg::reduce_rows_by_keys #909

Merged
merged 8 commits into from
Oct 19, 2022
Merged
1 change: 1 addition & 0 deletions cpp/bench/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ if(BUILD_BENCH)
bench/linalg/add.cu
bench/linalg/map_then_reduce.cu
bench/linalg/matrix_vector_op.cu
bench/linalg/reduce_rows_by_key.cu
Nyrio marked this conversation as resolved.
Show resolved Hide resolved
bench/linalg/reduce.cu
bench/main.cpp
)
Expand Down
3 changes: 2 additions & 1 deletion cpp/bench/common/benchmark.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ struct using_pool_memory_res {
rmm::mr::set_current_device_resource(&pool_res_);
}

using_pool_memory_res() : using_pool_memory_res(size_t(1) << size_t(30), size_t(16) << size_t(30))
using_pool_memory_res() : orig_res_(rmm::mr::get_current_device_resource()), pool_res_(&cuda_res_)
{
rmm::mr::set_current_device_resource(&pool_res_);
}

~using_pool_memory_res() { rmm::mr::set_current_device_resource(orig_res_); }
Expand Down
88 changes: 88 additions & 0 deletions cpp/bench/linalg/reduce_rows_by_key.cu
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
/*
* Copyright (c) 2022, 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 <common/benchmark.hpp>
#include <raft/linalg/reduce_rows_by_key.cuh>
#include <raft/random/rng.cuh>

#include <rmm/device_uvector.hpp>

namespace raft::bench::linalg {

struct rrbk_params {
int64_t rows, cols;
int64_t keys;
};

template <typename T, typename KeyT>
struct reduce_rows_by_key : public fixture {
reduce_rows_by_key(const rrbk_params& p)
: params(p),
in(p.rows * p.cols, stream),
out(p.keys * p.cols, stream),
keys(p.rows, stream),
workspace(p.rows, stream)
{
raft::random::RngState rng{42};
raft::random::uniformInt(rng, keys.data(), p.rows, (KeyT)0, (KeyT)p.keys, stream);
}

void run_benchmark(::benchmark::State& state) override
{
loop_on_state(state, [this]() {
raft::linalg::reduce_rows_by_key(in.data(),
params.cols,
keys.data(),
workspace.data(),
params.rows,
params.cols,
params.keys,
out.data(),
stream,
false);
});
}

protected:
rrbk_params params;
rmm::device_uvector<T> in, out;
rmm::device_uvector<KeyT> keys;
rmm::device_uvector<char> workspace;
}; // struct reduce_rows_by_key

const std::vector<rrbk_params> kInputSizes{
{10000, 128, 64},
{100000, 128, 64},
{1000000, 128, 64},
{10000000, 128, 64},
{10000, 128, 256},
{100000, 128, 256},
{1000000, 128, 256},
{10000000, 128, 256},
{10000, 128, 1024},
{100000, 128, 1024},
{1000000, 128, 1024},
{10000000, 128, 1024},
{10000, 128, 4096},
{100000, 128, 4096},
{1000000, 128, 4096},
{10000000, 128, 4096},
};

RAFT_BENCH_REGISTER((reduce_rows_by_key<float, uint32_t>), "", kInputSizes);
RAFT_BENCH_REGISTER((reduce_rows_by_key<double, uint32_t>), "", kInputSizes);

} // namespace raft::bench::linalg
Loading