teak-llvm/parallel-libs/streamexecutor/lib/Platform.cpp
Jason Henline 20cf1eb161 [StreamExecutor] Add Platform and PlatformManager
Summary: Abstractions for a StreamExecutor platform

Reviewers: jlebar

Subscribers: jprice, parallel_libs-commits

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

llvm-svn: 279779
2016-08-25 21:33:07 +00:00

22 lines
619 B
C++

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