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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
/*******************************************************************************
*
* MIT License
*
* Copyright (c) 2017 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*******************************************************************************/
#include <miopen/binary_cache.hpp>
#include <miopen/bz2.hpp>
#include <miopen/kern_db.hpp>
#include <miopen/temp_file.hpp>
#include <algorithm>
#include <vector>
#include "test.hpp"
#include "random.hpp"
#include <gtest/gtest.h>
#if MIOPEN_ENABLE_SQLITE
std::vector<char> random_bytes(size_t length)
{
auto randchar = []() -> char {
const char charset[] = "0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
const size_t max_index = (sizeof(charset) - 1);
return charset[prng::gen_0_to_B(max_index)];
};
std::vector<char> v(length, 0);
std::generate_n(v.begin(), length, randchar);
return v;
}
TEST(CPU_Cache_NONE, check_bz2_compress)
{
std::vector<char> to_compress;
bool success = false;
std::vector<char> cmprsd;
EXPECT_TRUE(throws([&]() { cmprsd = miopen::compress(to_compress, &success); }));
to_compress = random_bytes(4096);
// if the following throws the test will fail
cmprsd = miopen::compress(to_compress, nullptr);
ASSERT_TRUE(!(cmprsd.empty()));
cmprsd = miopen::compress(to_compress, &success);
ASSERT_TRUE(success);
ASSERT_TRUE(cmprsd.size() < to_compress.size());
}
TEST(CPU_Cache_NONE, check_bz2_decompress)
{
std::vector<char> empty;
std::vector<char> decompressed;
EXPECT_TRUE(throws([&]() { decompressed = miopen::decompress(empty, 0); }));
auto original = random_bytes(4096);
bool success = false;
std::vector<char> compressed;
compressed = miopen::compress(original, &success);
ASSERT_TRUE(success);
decompressed = miopen::decompress(compressed, original.size());
ASSERT_TRUE(decompressed == original);
EXPECT_TRUE(throws([&]() { decompressed = miopen::decompress(compressed, 10); }));
ASSERT_TRUE(decompressed == miopen::decompress(compressed, original.size() + 10));
}
TEST(CPU_Cache_NONE, check_kern_db)
{
miopen::KernelConfig cfg0;
cfg0.kernel_name = "kernel1";
cfg0.kernel_args = {random_bytes(512).data(), 512};
cfg0.kernel_blob = random_bytes(8192);
miopen::KernDb empty_db(miopen::DbKinds::KernelDb, "", false);
EXPECT_TRUE(empty_db.RemoveRecordUnsafe(cfg0)); // for empty file, remove should succeed
EXPECT_FALSE(empty_db.FindRecordUnsafe(cfg0)); // no record in empty database
EXPECT_FALSE(empty_db.StoreRecordUnsafe(cfg0)); // storing in an empty database should fail
{
miopen::TempFile temp_file("tmp-kerndb");
miopen::KernDb clean_db(miopen::DbKinds::KernelDb, temp_file, false);
EXPECT_TRUE(clean_db.StoreRecordUnsafe(cfg0));
auto readout = clean_db.FindRecordUnsafe(cfg0);
EXPECT_TRUE(readout);
EXPECT_TRUE(readout.get() == cfg0.kernel_blob);
EXPECT_TRUE(clean_db.RemoveRecordUnsafe(cfg0));
EXPECT_FALSE(clean_db.FindRecordUnsafe(cfg0));
}
{
miopen::TempFile temp_file("tmp-kerndb");
miopen::KernDb err_db(
miopen::DbKinds::KernelDb,
temp_file,
false,
[](const std::vector<char>&, bool* success) {
*success = false;
return std::vector<char>{};
},
[](const std::vector<char>&, unsigned int) -> std::vector<char> {
throw;
}); // error compressing
// Even if compression fails, it should still work
EXPECT_TRUE(err_db.StoreRecordUnsafe(cfg0));
// In which case decompresion should not be called
EXPECT_TRUE(err_db.FindRecordUnsafe(cfg0));
EXPECT_TRUE(err_db.RemoveRecordUnsafe(cfg0));
}
}
#endif
TEST(CPU_Cache_NONE, check_cache_file)
{
auto p = miopen::GetCacheFile("gfx", "base", "args");
EXPECT_TRUE(p.filename() == miopen::make_object_file_name("base"));
}
|