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
|
/* ************************************************************************
* Copyright (C) 2020-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 cop-
* ies 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 IM-
* PLIED, 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 CONNE-
* CTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* ************************************************************************ */
#include "client_utility.hpp"
#include "rocblas_device_malloc.hpp"
int main()
{
rocblas_handle handle;
CHECK_ROCBLAS_ERROR(rocblas_create_handle(&handle));
// Free all memory in the handle
CHECK_ROCBLAS_ERROR(rocblas_set_device_memory_size(handle, 0));
size_t sizes[] = {512, 1025, 10 * 1024 * 1024};
if(rocblas_is_device_memory_size_query(handle))
{
rocblas_cerr << "rocblas_is_device_memory_size_query() incorrectly returned true"
<< std::endl;
return 1;
}
CHECK_ROCBLAS_ERROR(rocblas_start_device_memory_size_query(handle));
if(!rocblas_is_device_memory_size_query(handle))
{
rocblas_cerr << "rocblas_is_device_memory_size_query() incorrectly returned false"
<< std::endl;
return 1;
}
CHECK_ALLOC_QUERY(rocblas_set_optimal_device_memory_size(handle, sizes[0], sizes[1], sizes[2]));
size_t max;
CHECK_ROCBLAS_ERROR(rocblas_stop_device_memory_size_query(handle, &max));
CHECK_ROCBLAS_ERROR(rocblas_set_device_memory_size(handle, max));
for(size_t size : sizes)
{
try
{
rocblas_device_malloc mem(handle, size);
if(!mem)
{
rocblas_cerr << "rocblas_device_malloc failed" << std::endl;
return 1;
}
void* ptr = static_cast<void*>(mem);
hipMemset(ptr, 0, size);
rocblas_device_malloc_base& ref = mem;
}
catch(...)
{
rocblas_cerr << "exception thrown for malloc size " << size << std::endl;
return 1;
}
rocblas_device_malloc mem2 = rocblas_device_malloc(handle, size);
rocblas_device_malloc_base& ref2 = mem2;
rocblas_device_malloc mem3 = std::move(mem2);
}
try
{
rocblas_device_malloc mem(handle, sizes[0], sizes[1], sizes[2]);
if(!mem)
{
rocblas_cerr << "rocblas_device_malloc failed" << std::endl;
return 1;
}
for(size_t i = 0; i < 3; ++i)
{
void* ptr = mem[i];
if(!ptr)
{
rocblas_cerr << "nullptr returned from rocblas_device_malloc[" << i << "]"
<< std::endl;
return 1;
}
hipMemset(ptr, 0, sizes[i]);
}
rocblas_device_malloc_base& ref = mem;
}
catch(...)
{
rocblas_cerr << "exception thrown for malloc size " << sizes[0] << "," << sizes[1] << ","
<< sizes[2] << std::endl;
return 1;
}
CHECK_ROCBLAS_ERROR(rocblas_destroy_handle(handle));
rocblas_cout << "All tests passed" << std::endl;
}
|