mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-30 11:47:48 +00:00
13 lines
263 B
C++
13 lines
263 B
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#ifndef STATIC_ASSERT
|
|
#ifndef NDEBUG
|
|
#define STATIC_ASSERT(...) static_assert(__VA_ARGS__)
|
|
#else
|
|
#define STATIC_ASSERT(...)
|
|
#endif
|
|
#endif
|