Skip to content

Merge remote-tracking branch 'upstream/master' into gold/2021 #1254

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ to program on XPUs.
You can install the library with [conda](https://anaconda.org/intel/dpctl) and
[pip](https://pypi.org/project/dpctl/). It is also available in the [Intel(R)
Distribution for
Python](https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/distribution-for-python.html)
Python](https://www.intel.com/content/www/us/en/developer/tools/oneapi/distribution-for-python.html)
(IDP).

## Inte(R) oneAPI
Expand Down
1 change: 1 addition & 0 deletions conda-recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# by DPC++ compiler conda packages. Will need to be added to DPC++ compiler
# activation scripts.
export LDFLAGS="$LDFLAGS -Wl,-rpath,$PREFIX/lib"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PREFIX/compiler/lib/intel64_lin:$PREFIX/compiler/lib:$PREFIX/lib"

# Intel LLVM must cooperate with compiler and sysroot from conda
echo "--gcc-toolchain=${BUILD_PREFIX} --sysroot=${BUILD_PREFIX}/${HOST}/sysroot -target ${HOST}" > icpx_for_conda.cfg
Expand Down
2 changes: 1 addition & 1 deletion docs/docfiles/boilerplate.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ About
=====

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

Contributing
============
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//=== boolean_advance_indexing.hpp - ------*-C++-*--/===//
//=== boolean_advanced_indexing.hpp - ------*-C++-*--/===//
//
// Data Parallel Control (dpctl)
//
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//=== common.hpp - Common code for elementwise operations ----- *-C++-*--/===//
//=== common_inplace.hpp - Common code for in-place elementwise operations
//----- *-C++-*--/===//
//
// Data Parallel Control (dpctl)
//
Expand All @@ -19,7 +20,7 @@
//===---------------------------------------------------------------------===//
///
/// \file
/// This file defines common code for elementwise tensor operations.
/// This file defines common code for in-place elementwise tensor operations.
//===---------------------------------------------------------------------===//

#pragma once
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===-- take_kernel_impl.cpp - Implementation of take --*-C++-*-/===//
//===-- integer_advanced_indexing.cpp - --*-C++-*-/===//
//
// Data Parallel Control (dpctl)
//
Expand Down
5 changes: 3 additions & 2 deletions dpctl/tensor/libtensor/source/integer_advanced_indexing.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===----------- Implementation of _tensor_impl module ---------*-C++-*-/===//
//===-- integer_advanced_indexing.hpp - --*-C++-*-/===//
//
// Data Parallel Control (dpctl)
//
Expand All @@ -19,7 +19,8 @@
//===----------------------------------------------------------------------===//
///
/// \file
/// This file defines functions of dpctl.tensor._tensor_impl extensions
/// This file declares Python API for implementation functions of
/// dpctl.tensor.take and dpctl.tensor.put
//===----------------------------------------------------------------------===//

#pragma once
Expand Down