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
|
/*! \file */
/* ************************************************************************
* Copyright (C) 2024 Advanced Micro Devices, Inc. All rights Reserved.
*
* 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 "rocsparse_reproducibility.hpp"
#include <iostream>
#include <string.h>
bool rocsparse_reproducibility_t::test_data_t::is_same(
const rocsparse_reproducibility_t::test_data_t* that, std::ostream& err) const
{
if(this->m_num_objects != that->m_num_objects)
{
err << "the number of objects is different, this->m_num_objects = " << this->m_num_objects
<< ", that->m_num_objects = " << that->m_num_objects;
return false;
}
bool same = true;
for(uint32_t i = 0; i < this->m_num_objects; ++i)
{
if(this->m_object_names[i] != that->m_object_names[i])
{
err << "test_data_t::is_same: object names are different, this->m_object_names[" << i
<< "] = " << this->m_object_names[i] << ", that->m_objects_names[" << i
<< "] = " << that->m_object_names[i];
same = false;
break;
}
}
if(false == same)
{
return false;
}
for(uint32_t i = 0; i < this->m_num_objects; ++i)
{
if(this->m_object_numbytes[i] != that->m_object_numbytes[i])
{
err << "test_data_t::is_same: object numbytes are different, this->m_object_numbytes["
<< i << "] = " << this->m_object_numbytes[i] << ", that->m_objects_numbytes[" << i
<< "] = " << that->m_object_numbytes[i] << ".";
same = false;
break;
}
}
if(false == same)
{
return false;
}
for(uint32_t i = 0; i < this->m_num_objects; ++i)
{
if(0 != memcmp(this->m_objects[i], that->m_objects[i], this->m_object_numbytes[i]))
{
err << "test_data_t::is_same: objects '" << this->m_object_names[i]
<< "' are binary different";
same = false;
break;
}
}
return same;
}
void rocsparse_reproducibility_t::test_data_t::reset()
{
for(uint32_t i = 0; i < this->m_num_objects; ++i)
{
free(this->m_objects[i]);
this->m_objects[i] = nullptr;
this->m_object_numbytes[i] = 0;
}
this->m_num_objects = 0;
}
uint32_t rocsparse_reproducibility_t::test_data_t::get_num_objects() const
{
return this->m_num_objects;
}
const char* rocsparse_reproducibility_t::test_data_t::get_object_name(uint32_t object_index) const
{
return this->m_object_names[object_index].c_str();
}
const void* rocsparse_reproducibility_t::test_data_t::get_object(uint32_t object_index) const
{
return this->m_objects[object_index];
}
size_t rocsparse_reproducibility_t::test_data_t::get_object_numbytes(uint32_t object_index) const
{
return this->m_object_numbytes[object_index];
}
void* rocsparse_reproducibility_t::test_data_t::add(const std::string& name, size_t numbytes)
{
if(this->m_num_objects == s_maxsize)
{
std::cerr << "max 32 objects " << std::endl;
exit(1);
}
void* p = malloc(numbytes);
this->m_object_numbytes[this->m_num_objects] = numbytes;
this->m_objects[this->m_num_objects] = p;
this->m_object_names[this->m_num_objects] = name;
++this->m_num_objects;
return p;
}
|