mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 11:35:51 -04:00

Summary: Add the Stream class and a few of the operations it supports. Reviewers: jlebar, tra Subscribers: jprice, parallel_libs-commits Differential Revision: https://reviews.llvm.org/D23333 llvm-svn: 278829
22 lines
703 B
C++
22 lines
703 B
C++
//===-- PackedKernelArgumentArray.cpp - Packed argument array impl --------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// Implementation details for classes from PackedKernelArgumentArray.h.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "streamexecutor/PackedKernelArgumentArray.h"
|
|
|
|
namespace streamexecutor {
|
|
|
|
PackedKernelArgumentArrayBase::~PackedKernelArgumentArrayBase() = default;
|
|
|
|
} // namespace streamexecutor
|