teak-llvm/parallel-libs/streamexecutor/lib/PlatformDevice.cpp
Jason Henline 19eeb37b8c [SE] Rename PlatformInterfaces to PlatformDevice
Summary:
The only interface that we ever plan to have in this file is
PlatformDevice, so it makes sense to rename the file to reflect that.

Reviewers: jprice

Subscribers: parallel_libs-commits

Differential Revision: https://reviews.llvm.org/D24269

llvm-svn: 280737
2016-09-06 19:27:00 +00:00

22 lines
635 B
C++

//===-- PlatformDevice.cpp - Platform interface implementations -----------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation file for PlatformDevice.h.
///
//===----------------------------------------------------------------------===//
#include "streamexecutor/PlatformDevice.h"
namespace streamexecutor {
PlatformDevice::~PlatformDevice() = default;
} // namespace streamexecutor