Skip to content

Commit a873743

Browse files
Add missing includes, comment which enties include is for
1 parent e3f7439 commit a873743

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

dpctl/tensor/libtensor/source/triul_ctor.cpp

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@
2222
/// This file defines functions of dpctl.tensor._tensor_impl extensions
2323
//===--------------------------------------------------------------------===//
2424

25-
#include <cstddef>
26-
#include <stdexcept>
25+
#include <algorithm> // for std::copy
26+
#include <cstddef> // for std::size_t
27+
#include <memory> // for std::make_shared
28+
#include <stdexcept> // for std::runtime_error
29+
#include <utility> // for std::pair, std::move
30+
#include <vector> // for std::vector, std::begin, std::end
31+
2732
#include <sycl/sycl.hpp>
28-
#include <utility>
29-
#include <vector>
3033

3134
#include "dpctl4pybind11.hpp"
3235
#include <pybind11/pybind11.h>

0 commit comments

Comments
 (0)