mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-18 20:09:25 +00:00
* Update copyright messages.
Copyright messages should no longer include a year. This PR updates all 38 source files to the new format.
* Switch to (C) from unicode copyright symbol.
The unicodein comments was causing compilation errors.
[ROCm/composable_kernel commit: 0be0288f58]
22 lines
512 B
C++
22 lines
512 B
C++
// Copyright (C) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <concepts>
|
|
#include <string_view>
|
|
|
|
#include "ck_tile/builder/builder_utils.hpp"
|
|
|
|
namespace ck_tile::builder {
|
|
|
|
static constexpr StringLiteral V0_0_0 = "0.0.0";
|
|
static constexpr StringLiteral V0_1_0 = "0.1.0";
|
|
|
|
static constexpr StringLiteral LATEST_API_VERSION = V0_1_0;
|
|
|
|
template <StringLiteral V>
|
|
concept SupportedVersion = (V == V0_0_0) || (V == V0_1_0);
|
|
|
|
} // namespace ck_tile::builder
|