1. Moved around tests and added them to HIT

Change-Id: I5d75280c42a5af852670ebabc7305ee56721ec7b
Этот коммит содержится в:
Aditya Atluri
2017-02-03 10:53:36 -06:00
родитель 2790e9a448
Коммит 5e3d63c0a3
52 изменённых файлов: 316 добавлений и 411 удалений
+3 -3
Просмотреть файл
@@ -1,5 +1,5 @@
/*
Copyright (c) 2015-2016 Advanced Micro Devices, Inc. All rights reserved.
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
@@ -42,7 +42,7 @@ __device__ int deviceVar;
// TODO-HCC __constant__ not working yet.
__constant__ int constantVar1;
__constant__ __device__ int constantVar2;
__constant__ __device__ int constantVar2;
// Test HOST space:
__host__ void foo() {
@@ -53,7 +53,7 @@ __device__ __noinline__ int sum1_noinline(int a) { return a+1;};
__device__ __forceinline__ int sum1_forceinline(int a) { return a+1;};
__device__ __host__ float PlusOne(float x)
__device__ __host__ float PlusOne(float x)
{
return x + 1.0;
}