21 lines
488 B
C++
21 lines
488 B
C++
|
|
/*************************************************************************
|
||
|
|
* Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved.
|
||
|
|
*
|
||
|
|
* See LICENSE.txt for license information
|
||
|
|
************************************************************************/
|
||
|
|
#ifndef TEST_ALLREDUCE_HPP
|
||
|
|
#define TEST_ALLREDUCE_HPP
|
||
|
|
|
||
|
|
#include "CorrectnessTest.hpp"
|
||
|
|
|
||
|
|
namespace CorrectnessTests
|
||
|
|
{
|
||
|
|
class AllReduceAbortTest : public CorrectnessTest
|
||
|
|
{
|
||
|
|
protected:
|
||
|
|
public:
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|