Skip to content

Commit a3cde67

Browse files
authored
Merge pull request #1254 from IntelPython/master
Merge remote-tracking branch 'upstream/master' into gold/2021
2 parents 2826aa2 + 179ce15 commit a3cde67

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ to program on XPUs.
4646
You can install the library with [conda](https://anaconda.org/intel/dpctl) and
4747
[pip](https://pypi.org/project/dpctl/). It is also available in the [Intel(R)
4848
Distribution for
49-
Python](https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/distribution-for-python.html)
49+
Python](https://www.intel.com/content/www/us/en/developer/tools/oneapi/distribution-for-python.html)
5050
(IDP).
5151

5252
## Inte(R) oneAPI

conda-recipe/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# by DPC++ compiler conda packages. Will need to be added to DPC++ compiler
55
# activation scripts.
66
export LDFLAGS="$LDFLAGS -Wl,-rpath,$PREFIX/lib"
7+
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PREFIX/compiler/lib/intel64_lin:$PREFIX/compiler/lib:$PREFIX/lib"
78

89
# Intel LLVM must cooperate with compiler and sysroot from conda
910
echo "--gcc-toolchain=${BUILD_PREFIX} --sysroot=${BUILD_PREFIX}/${HOST}/sysroot -target ${HOST}" > icpx_for_conda.cfg

docs/docfiles/boilerplate.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ About
22
=====
33

44
dpctl is developed by Intel(R) and is part of the `Intel Distribution for
5-
Python <https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/distribution-for-python.html>`_.
5+
Python <https://www.intel.com/content/www/us/en/developer/tools/oneapi/distribution-for-python.html>`_.
66

77
Contributing
88
============

dpctl/tensor/libtensor/include/kernels/boolean_advanced_indexing.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=== boolean_advance_indexing.hpp - ------*-C++-*--/===//
1+
//=== boolean_advanced_indexing.hpp - ------*-C++-*--/===//
22
//
33
// Data Parallel Control (dpctl)
44
//

dpctl/tensor/libtensor/include/kernels/elementwise_functions/common_inplace.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
//=== common.hpp - Common code for elementwise operations ----- *-C++-*--/===//
1+
//=== common_inplace.hpp - Common code for in-place elementwise operations
2+
//----- *-C++-*--/===//
23
//
34
// Data Parallel Control (dpctl)
45
//
@@ -19,7 +20,7 @@
1920
//===---------------------------------------------------------------------===//
2021
///
2122
/// \file
22-
/// This file defines common code for elementwise tensor operations.
23+
/// This file defines common code for in-place elementwise tensor operations.
2324
//===---------------------------------------------------------------------===//
2425

2526
#pragma once

dpctl/tensor/libtensor/source/integer_advanced_indexing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- take_kernel_impl.cpp - Implementation of take --*-C++-*-/===//
1+
//===-- integer_advanced_indexing.cpp - --*-C++-*-/===//
22
//
33
// Data Parallel Control (dpctl)
44
//

dpctl/tensor/libtensor/source/integer_advanced_indexing.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===----------- Implementation of _tensor_impl module ---------*-C++-*-/===//
1+
//===-- integer_advanced_indexing.hpp - --*-C++-*-/===//
22
//
33
// Data Parallel Control (dpctl)
44
//
@@ -19,7 +19,8 @@
1919
//===----------------------------------------------------------------------===//
2020
///
2121
/// \file
22-
/// This file defines functions of dpctl.tensor._tensor_impl extensions
22+
/// This file declares Python API for implementation functions of
23+
/// dpctl.tensor.take and dpctl.tensor.put
2324
//===----------------------------------------------------------------------===//
2425

2526
#pragma once

0 commit comments

Comments
 (0)