586165ebc2
Enable NV printf DTests as many as possible. Fix the bugs due to behavour difference between Hip-Rocclr and Cuda. Add hipLimitPrintfFifoSize. Change-Id: I3fe6dbc35a7a140a9919df197b7885df83d28049
65 lines
2.0 KiB
C++
65 lines
2.0 KiB
C++
/*
|
|
Copyright (c) 2020 - 2021 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.
|
|
*/
|
|
|
|
/* HIT_START
|
|
* BUILD: %t %s
|
|
* TEST: %t
|
|
* HIT_END
|
|
*/
|
|
|
|
#include "test_common.h"
|
|
#include "printf_common.h"
|
|
|
|
__global__ void test_kernel() {
|
|
printf("%*d\n", 16, 42);
|
|
#ifdef __HIP_PLATFORM_AMD__
|
|
printf("%.*d\n", 8, 42);
|
|
printf("%*.*d\n", -16, 8, 42);
|
|
printf("%*.*f %s * %.*s\n", 16, 8, 123.456, "hello", 5, "worldxyz");
|
|
#else
|
|
// In Cuda, printf doesn't support %.*, %*.*
|
|
printf("%.8d\n", 42);
|
|
printf("%-16.8d\n", 42);
|
|
printf("%16.8f %s * %.5s\n", 123.456, "hello", "worldxyz");
|
|
#endif
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
std::string reference(R"here( 42
|
|
00000042
|
|
00000042
|
|
123.45600000 hello * world
|
|
)here");
|
|
|
|
CaptureStream capture(stdout);
|
|
|
|
capture.Begin();
|
|
hipLaunchKernelGGL(test_kernel, dim3(1), dim3(1), 0, 0);
|
|
hipStreamSynchronize(0);
|
|
capture.End();
|
|
|
|
std::string device_output = capture.getData();
|
|
|
|
HIPASSERT(device_output == reference);
|
|
passed();
|
|
}
|