b34dd95124
Remove __HCC__, __HCC_ONLY__, __HCC_CPP__, __HCC_C__, __HCC_OR_HIP_CLANG__, __HIP_ROCclr__ and their guarded codes. Remove Hcc codes from directed_tests and samples. Remove __HIP_PLATFORM_HCC__ and __HIP_PLATFORM_NVCC__ from some files where they are not necessary. Add deprecation notice. Change-Id: I1ae467eafd749d6c25bca204c1724b026be21fce
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
/*
|
|
Copyright (c) 2020 - present 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 EXCLUDE_HIP_PLATFORM nvidia
|
|
* TEST: %t EXCLUDE_HIP_PLATFORM nvidia
|
|
* HIT_END
|
|
*/
|
|
|
|
#include "test_common.h"
|
|
#include "printf_common.h"
|
|
|
|
__global__ void test_kernel() {
|
|
printf("%#o\n", 042);
|
|
printf("%#x\n", 0x42);
|
|
printf("%#X\n", 0x42);
|
|
printf("%#08x\n", 0x42);
|
|
printf("%#f\n", -123.456);
|
|
printf("%#F\n", 123.456);
|
|
printf("%#e\n", 123.456);
|
|
printf("%#E\n", -123.456);
|
|
printf("%#g\n", -123.456);
|
|
printf("%#G\n", 123.456);
|
|
printf("%#a\n", 123.456);
|
|
printf("%#A\n", -123.456);
|
|
printf("%#.8x\n", 0x42);
|
|
printf("%#16.8x\n", 0x42);
|
|
printf("%-#16.8x\n", 0x42);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
std::string reference(R"here(042
|
|
0x42
|
|
0X42
|
|
0x000042
|
|
-123.456000
|
|
123.456000
|
|
1.234560e+02
|
|
-1.234560E+02
|
|
-123.456
|
|
123.456
|
|
0x1.edd2f1a9fbe77p+6
|
|
-0X1.EDD2F1A9FBE77P+6
|
|
0x00000042
|
|
0x00000042
|
|
0x00000042
|
|
)here");
|
|
|
|
CaptureStream captured(stdout);
|
|
hipLaunchKernelGGL(test_kernel, dim3(1), dim3(1), 0, 0);
|
|
hipStreamSynchronize(0);
|
|
auto CapturedData = captured.getCapturedData();
|
|
std::string device_output = gulp(CapturedData);
|
|
|
|
HIPASSERT(device_output == reference);
|
|
passed();
|
|
}
|