Files
compute-runtime/shared/source/helpers/app_resource_helper.h
Daniel Chabrowski 7463e1970b Cleanup headers
Make TUs and headers self-contained, remove unused headers

Signed-off-by: Daniel Chabrowski <daniel.chabrowski@intel.com>
2022-05-18 11:42:06 +02:00

21 lines
403 B
C++

/*
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/memory_manager/allocation_type.h"
#include <cstddef>
namespace NEO {
struct AppResourceHelper {
public:
static const char *getResourceTagStr(AllocationType type);
static void copyResourceTagStr(char *dst, AllocationType type, size_t size);
};
} // namespace NEO