mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-15 18:42:06 +00:00
Our copyright were were mostly correct, but we inconsistently used (C) instead of (c) like the rest of the CK code. This PR fixes that (using lowercase c) and adds a missing copyright header to one file.
[ROCm/composable_kernel commit: f38c3de9f9]
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
|