mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-12 01:08:27 +00:00
[CK] suppress compiler warnings while building pytorch. (#7760) ## Motivation Recently added compiler flags that are required to suppress false warnings by latest staging compiler are not recognized by older compiler versions and are triggering an avalanche of warnings. Previous attempt to suppress them by using -Wno-unknown-warning-option flag didn't help, because that flag wasn't recognized either and just added more warnings. I've verified that current approach by checking the clang version actually works as intended and makes the warnings go away. ## Technical Details <!-- Explain the changes along with any relevant GitHub links. --> ## Test Plan <!-- Explain any relevant testing done to verify this PR. --> ## Test Result <!-- Briefly summarize test outcomes. --> ## Submission Checklist - [ ] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.
76 lines
2.1 KiB
C++
76 lines
2.1 KiB
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <array>
|
|
#include <type_traits>
|
|
|
|
#if __clang_major__ >= 23
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wlifetime-safety-intra-tu-suggestions"
|
|
#endif
|
|
namespace ck {
|
|
|
|
template <typename T>
|
|
class span
|
|
{
|
|
public:
|
|
using element_type = T;
|
|
using value_type = std::remove_cv_t<element_type>;
|
|
using size_type = std::size_t;
|
|
using difference_type = std::ptrdiff_t;
|
|
using pointer = element_type*;
|
|
using const_pointer = const element_type*;
|
|
using reference = element_type&;
|
|
using const_reference = const element_type&;
|
|
using iterator = pointer;
|
|
using const_iterator = pointer;
|
|
|
|
constexpr span() : span(nullptr, size_type{0}) {}
|
|
|
|
constexpr span(pointer first, size_type count) : ptr_(first), size_(count) {}
|
|
|
|
constexpr span(pointer first, pointer last) : span(first, last - first) {}
|
|
|
|
template <std::size_t N>
|
|
constexpr span(element_type (&arr)[N]) noexcept : span(arr, N)
|
|
{
|
|
}
|
|
|
|
template <std::size_t N>
|
|
constexpr span(std::array<value_type, N>& arr) noexcept : span(arr.data(), N)
|
|
{
|
|
}
|
|
|
|
template <typename Container>
|
|
constexpr span(const Container& container) : span(container.data(), container.size())
|
|
{
|
|
}
|
|
|
|
constexpr iterator begin() const noexcept { return ptr_; }
|
|
constexpr const_iterator cbegin() const noexcept { return begin(); }
|
|
|
|
constexpr iterator end() const noexcept { return begin() + size(); }
|
|
constexpr const_iterator cend() const noexcept { return end(); }
|
|
|
|
constexpr reference front() const { return *begin(); }
|
|
constexpr reference back() const { return *(--end()); }
|
|
|
|
constexpr reference operator[](size_type idx) const { return *(begin() + idx); }
|
|
constexpr pointer data() const noexcept { return ptr_; }
|
|
|
|
constexpr size_type size() const noexcept { return size_; }
|
|
|
|
private:
|
|
pointer ptr_;
|
|
size_type size_;
|
|
};
|
|
|
|
} // namespace ck
|
|
|
|
#if __clang_major__ >= 23
|
|
#pragma clang diagnostic pop
|
|
#endif
|