feature: add AssertHandler

- initial implementation to support assert() on GPU

Related-To: NEO-5753

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2023-03-07 16:39:25 +00:00
committed by Compute-Runtime-Automation
parent 49b01a8ea4
commit 37dbec305d
25 changed files with 298 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2019-2022 Intel Corporation
* Copyright (C) 2019-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -9,7 +9,8 @@
#include <cstddef>
void printToSTDOUT(const char *str);
void printToStdout(const char *str);
void printToStderr(const char *str);
template <class T>
size_t simpleSprintf(char *output, size_t outputSize, const char *format, T value);