Blame autohbw/autohbw_api.h
|
Packit Service |
7f3b24 |
// SPDX-License-Identifier: BSD-2-Clause
|
|
Packit Service |
7f3b24 |
/* Copyright (C) 2015 - 2020 Intel Corporation. */
|
|
Packit |
345191 |
|
|
Packit |
345191 |
///////////////////////////////////////////////////////////////////////////
|
|
Packit |
345191 |
// File : autohbw_api.h
|
|
Packit |
345191 |
// Purpose: Header file to include, to use API calls to AutoHBW
|
|
Packit |
345191 |
// Author : Ruchira Sasanka (ruchira.sasanka AT intel.com)
|
|
Packit |
345191 |
// Date : Jan 30, 2015
|
|
Packit |
345191 |
///////////////////////////////////////////////////////////////////////////
|
|
Packit |
345191 |
|
|
Packit |
345191 |
#ifndef AUTOHBW_API_H
|
|
Packit |
345191 |
#define AUTOHBW_API_H
|
|
Packit |
345191 |
|
|
Packit |
345191 |
#ifdef __cplusplus
|
|
Packit |
345191 |
extern "C" {
|
|
Packit |
345191 |
#endif
|
|
Packit |
345191 |
|
|
Packit |
345191 |
// Temporarily enable HBM allocations
|
|
Packit |
345191 |
void enableAutoHBW();
|
|
Packit |
345191 |
|
|
Packit |
345191 |
// Temporarily disable HBM allocations
|
|
Packit |
345191 |
void disableAutoHBW();
|
|
Packit |
345191 |
|
|
Packit |
345191 |
#ifdef __cplusplus
|
|
Packit |
345191 |
}
|
|
Packit |
345191 |
#endif
|
|
Packit |
345191 |
|
|
Packit |
345191 |
#endif
|