// Copyright (c) Advanced Micro Devices, Inc., or its affiliates. // SPDX-License-Identifier: MIT #pragma once namespace ck { template struct constant { using value_type = decltype(v); using type = constant; // using injected-class-name static constexpr value_type value = v; __host__ __device__ constexpr operator value_type() const noexcept { return value; } __host__ __device__ constexpr value_type operator()() const noexcept { return value; } }; template struct integral_constant : constant { static constexpr T value = v; typedef T value_type; typedef integral_constant type; }; template __host__ __device__ constexpr auto operator+(integral_constant, integral_constant) { return integral_constant{}; } template __host__ __device__ constexpr auto operator-(integral_constant, integral_constant) { static_assert(Y <= X, "wrong!"); return integral_constant{}; } template __host__ __device__ constexpr auto operator*(integral_constant, integral_constant) { return integral_constant{}; } template __host__ __device__ constexpr auto operator/(integral_constant, integral_constant) { static_assert(Y > 0, "wrong!"); return integral_constant{}; } template __host__ __device__ constexpr auto operator%(integral_constant, integral_constant) { static_assert(Y > 0, "wrong!"); return integral_constant{}; } template using bool_constant = integral_constant; using true_type = bool_constant; using false_type = bool_constant; } // namespace ck