-
Notifications
You must be signed in to change notification settings - Fork 30
Feature/elementwise functions real imag conj #1217
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
ndgrigorian
merged 3 commits into
feature/elementwise-functions-sin-exp
from
feature/elementwise-functions-real-imag-conj
Jun 2, 2023
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
194 changes: 194 additions & 0 deletions
194
dpctl/tensor/libtensor/include/kernels/elementwise_functions/conj.hpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
//=== conj.hpp - Unary function CONJ ------ | ||
//*-C++-*--/===// | ||
// | ||
// Data Parallel Control (dpctl) | ||
// | ||
// Copyright 2020-2023 Intel Corporation | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
//===---------------------------------------------------------------------===// | ||
/// | ||
/// \file | ||
/// This file defines kernels for elementwise evaluation of CONJ(x) function. | ||
//===---------------------------------------------------------------------===// | ||
|
||
#pragma once | ||
#include <CL/sycl.hpp> | ||
#include <cmath> | ||
#include <complex> | ||
#include <cstddef> | ||
#include <cstdint> | ||
#include <type_traits> | ||
|
||
#include "kernels/elementwise_functions/common.hpp" | ||
|
||
#include "utils/offset_utils.hpp" | ||
#include "utils/type_dispatch.hpp" | ||
#include "utils/type_utils.hpp" | ||
#include <pybind11/pybind11.h> | ||
|
||
namespace dpctl | ||
{ | ||
namespace tensor | ||
{ | ||
namespace kernels | ||
{ | ||
namespace conj | ||
{ | ||
|
||
namespace py = pybind11; | ||
namespace td_ns = dpctl::tensor::type_dispatch; | ||
|
||
using dpctl::tensor::type_utils::is_complex; | ||
|
||
template <typename argT, typename resT> struct ConjFunctor | ||
{ | ||
|
||
// is function constant for given argT | ||
using is_constant = typename std::false_type; | ||
// constant value, if constant | ||
// constexpr resT constant_value = resT{}; | ||
// is function defined for sycl::vec | ||
using supports_vec = typename std::false_type; | ||
// do both argTy and resTy support sugroup store/load operation | ||
using supports_sg_loadstore = typename std::negation< | ||
std::disjunction<is_complex<resT>, is_complex<argT>>>; | ||
|
||
resT operator()(const argT &in) | ||
{ | ||
if constexpr (is_complex<argT>::value) { | ||
return std::conj(in); | ||
} | ||
else { | ||
if constexpr (!std::is_same_v<argT, bool>) | ||
static_assert(std::is_same_v<resT, argT>); | ||
return in; | ||
} | ||
} | ||
}; | ||
|
||
template <typename argTy, | ||
typename resTy = argTy, | ||
unsigned int vec_sz = 4, | ||
unsigned int n_vecs = 2> | ||
using ConjContigFunctor = elementwise_common:: | ||
UnaryContigFunctor<argTy, resTy, ConjFunctor<argTy, resTy>, vec_sz, n_vecs>; | ||
|
||
template <typename argTy, typename resTy, typename IndexerT> | ||
using ConjStridedFunctor = elementwise_common:: | ||
UnaryStridedFunctor<argTy, resTy, IndexerT, ConjFunctor<argTy, resTy>>; | ||
|
||
template <typename T> struct ConjOutputType | ||
{ | ||
using value_type = typename std::disjunction< // disjunction is C++17 | ||
// feature, supported by DPC++ | ||
td_ns::TypeMapResultEntry<T, bool, int8_t>, | ||
td_ns::TypeMapResultEntry<T, std::uint8_t>, | ||
td_ns::TypeMapResultEntry<T, std::uint16_t>, | ||
td_ns::TypeMapResultEntry<T, std::uint32_t>, | ||
td_ns::TypeMapResultEntry<T, std::uint64_t>, | ||
td_ns::TypeMapResultEntry<T, std::int8_t>, | ||
td_ns::TypeMapResultEntry<T, std::int16_t>, | ||
td_ns::TypeMapResultEntry<T, std::int32_t>, | ||
td_ns::TypeMapResultEntry<T, std::int64_t>, | ||
td_ns::TypeMapResultEntry<T, sycl::half>, | ||
td_ns::TypeMapResultEntry<T, float>, | ||
td_ns::TypeMapResultEntry<T, double>, | ||
td_ns::TypeMapResultEntry<T, std::complex<float>>, | ||
td_ns::TypeMapResultEntry<T, std::complex<double>>, | ||
td_ns::DefaultResultEntry<void>>::result_type; | ||
}; | ||
|
||
template <typename T1, typename T2, unsigned int vec_sz, unsigned int n_vecs> | ||
class conj_contig_kernel; | ||
|
||
template <typename argTy> | ||
sycl::event conj_contig_impl(sycl::queue exec_q, | ||
size_t nelems, | ||
const char *arg_p, | ||
char *res_p, | ||
const std::vector<sycl::event> &depends = {}) | ||
{ | ||
return elementwise_common::unary_contig_impl< | ||
argTy, ConjOutputType, ConjContigFunctor, conj_contig_kernel>( | ||
exec_q, nelems, arg_p, res_p, depends); | ||
} | ||
|
||
template <typename fnT, typename T> struct ConjContigFactory | ||
{ | ||
fnT get() | ||
{ | ||
if constexpr (std::is_same_v<typename ConjOutputType<T>::value_type, | ||
void>) { | ||
fnT fn = nullptr; | ||
return fn; | ||
} | ||
else { | ||
fnT fn = conj_contig_impl<T>; | ||
return fn; | ||
} | ||
} | ||
}; | ||
|
||
template <typename fnT, typename T> struct ConjTypeMapFactory | ||
{ | ||
/*! @brief get typeid for output type of std::conj(T x) */ | ||
std::enable_if_t<std::is_same<fnT, int>::value, int> get() | ||
{ | ||
using rT = typename ConjOutputType<T>::value_type; | ||
return td_ns::GetTypeid<rT>{}.get(); | ||
} | ||
}; | ||
|
||
template <typename T1, typename T2, typename T3> class conj_strided_kernel; | ||
|
||
template <typename argTy> | ||
sycl::event | ||
conj_strided_impl(sycl::queue exec_q, | ||
size_t nelems, | ||
int nd, | ||
const py::ssize_t *shape_and_strides, | ||
const char *arg_p, | ||
py::ssize_t arg_offset, | ||
char *res_p, | ||
py::ssize_t res_offset, | ||
const std::vector<sycl::event> &depends, | ||
const std::vector<sycl::event> &additional_depends) | ||
{ | ||
return elementwise_common::unary_strided_impl< | ||
argTy, ConjOutputType, ConjStridedFunctor, conj_strided_kernel>( | ||
exec_q, nelems, nd, shape_and_strides, arg_p, arg_offset, res_p, | ||
res_offset, depends, additional_depends); | ||
} | ||
|
||
template <typename fnT, typename T> struct ConjStridedFactory | ||
{ | ||
fnT get() | ||
{ | ||
if constexpr (std::is_same_v<typename ConjOutputType<T>::value_type, | ||
void>) { | ||
fnT fn = nullptr; | ||
return fn; | ||
} | ||
else { | ||
fnT fn = conj_strided_impl<T>; | ||
return fn; | ||
} | ||
} | ||
}; | ||
|
||
} // namespace conj | ||
} // namespace kernels | ||
} // namespace tensor | ||
} // namespace dpctl |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.