-
Notifications
You must be signed in to change notification settings - Fork 357
/
Copy pathbenchmark_snappy_chunked.cu
54 lines (51 loc) · 1.64 KB
/
benchmark_snappy_chunked.cu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* SPDX-FileCopyrightText: Copyright (c) 2021-2024 NVIDIA CORPORATION & AFFILIATES.
* All rights reserved. SPDX-License-Identifier: LicenseRef-NvidiaProprietary
*
* NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
* property and proprietary rights in and to this material, related
* documentation and any modifications thereto. Any use, reproduction,
* disclosure or distribution of this material and related documentation
* without an express license agreement from NVIDIA CORPORATION or
* its affiliates is strictly prohibited.
*/
#include "benchmark_template_chunked.cuh"
#include "nvcomp/snappy.h"
static bool handleCommandLineArgument(
const std::string& arg,
const char* const* additionalArgs,
size_t& additionalArgsUsed)
{
// Snappy has no options.
return false;
}
void run_benchmark(
const std::vector<std::vector<char>>& data,
const bool warmup,
const size_t count,
const bool csv_output,
const bool tab_separator,
const size_t duplicate_count,
const size_t num_files,
const bool compressed_inputs,
const bool single_output_buffer)
{
run_benchmark_template(
nvcompBatchedSnappyCompressGetTempSize,
nvcompBatchedSnappyCompressGetMaxOutputChunkSize,
nvcompBatchedSnappyCompressAsync,
nvcompBatchedSnappyDecompressGetTempSize,
nvcompBatchedSnappyDecompressAsync,
nvcompBatchedSnappyGetDecompressSizeAsync,
inputAlwaysValid,
nvcompBatchedSnappyDefaultOpts,
data,
warmup,
count,
csv_output,
tab_separator,
duplicate_count,
num_files,
compressed_inputs,
single_output_buffer);
}