summaryrefslogtreecommitdiffstats
path: root/parallel-libs/streamexecutor/lib/Device.cpp
blob: 54f03849c683b42b7930ce875bb2beebab5a517a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//===-- Device.cpp - Device 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 Device class internals.
///
//===----------------------------------------------------------------------===//

#include "streamexecutor/Device.h"

#include <cassert>

#include "streamexecutor/PlatformInterfaces.h"
#include "streamexecutor/Stream.h"

#include "llvm/ADT/STLExtras.h"

namespace streamexecutor {

Device::Device(PlatformDevice *PDevice) : PDevice(PDevice) {}

Device::~Device() = default;

Expected<Stream> Device::createStream() {
  Expected<std::unique_ptr<PlatformStreamHandle>> MaybePlatformStream =
      PDevice->createStream();
  if (!MaybePlatformStream) {
    return MaybePlatformStream.takeError();
  }
  assert((*MaybePlatformStream)->getDevice() == PDevice &&
         "an executor created a stream with a different stored executor");
  return Stream(std::move(*MaybePlatformStream));
}

} // namespace streamexecutor
OpenPOWER on IntegriCloud