6bef7b2b86
Change-Id: I1746e80aceeeaa4fc5df65c858f4816d99010186
[ROCm/hip commit: f8a08e2429]
50 خطوط
1.6 KiB
C++
50 خطوط
1.6 KiB
C++
/*
|
|
Copyright (c) 2015-2017 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_common.cpp
|
|
* TEST: %t
|
|
* HIT_END
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "hip/hip_runtime.h"
|
|
#include "test_common.h"
|
|
|
|
int main(void) {
|
|
hipDeviceProp_t prop;
|
|
int dev;
|
|
|
|
hipGetDevice(&dev);
|
|
printf("ID of current HIP device: %d\n", dev);
|
|
|
|
memset(&prop, 0, sizeof(hipDeviceProp_t));
|
|
prop.major = 1;
|
|
prop.minor = 3;
|
|
hipChooseDevice(&dev, &prop);
|
|
printf("ID of hip device closest to revision 1.3: %d\n", dev);
|
|
|
|
hipSetDevice(dev);
|
|
|
|
passed();
|
|
}
|