/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test
examples/cpu/gmres/debug.h
25 строк
467 B
Dmitry Babokin
Remove the phrase "All rights reserved."
01 апр 2023, 03:48
01 апр 2023, 03:48
33bd2b4
Код
Авторство
О чём код?
/* Copyright (c) 2012-2023, Intel Corporation SPDX-License-Identifier: BSD-3-Clause */ #ifndef __DEBUG_H__ #define __DEBUG_H__ #include <cassert> /**************************************************************\ | Macros \**************************************************************/ #define DEBUG #ifdef DEBUG #define ASSERT(expr) assert(expr) #define DEBUG_PRINT(...) printf(__VA_ARGS__) #else #define ASSERT(expr) #define DEBUG_PRINT(...) #endif #endif