1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
/*
* Copyright (c) 2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file mos_gpucontextmgr.h
//! \brief Container class for the gpu context manager
//!
#ifndef __MOS_GPU_CONTEXT_MGR_H__
#define __MOS_GPU_CONTEXT_MGR_H__
#include "mos_os.h"
#include "mos_gpucontext.h"
//!
//! \class GpuContextMgr
//!
class GpuContextMgr
{
public:
//!
//! \brief Constructor
//!
GpuContextMgr(GT_SYSTEM_INFO *gtSystemInfo, OsContext *osContext);
//!
//! \brief Copy constructor
//!
GpuContextMgr(const GpuContextMgr&) = delete;
//!
//! \brief Copy assignment operator
//!
GpuContextMgr& operator=(const GpuContextMgr&) = delete;
//!
//! \brief Destructor
//!
virtual ~GpuContextMgr();
//!
//! \brief Static entrypoint, get gpu context manager object
//! \return GpuContextMgr*
//! gpu context manager specific object if success, else nullptr
//!
static GpuContextMgr* GetObject(
GT_SYSTEM_INFO *gtSystemInfo,
OsContext *osContext);
//!
//! \brief Clean up the gpu context manager
//! \details This function mainly celar all allocated gpu context in
//! apu context array
//!
void CleanUp();
//!
//! \brief Create GPU context
//! \param [in] gpuNode
//! Reqired gpu node
//! \param [in] cmdBufMgr
//! Command buffer manager
//! \param [in] mosGpuCtx
//! Required gpu context type
//! \return GpuContext*
//! Gpu context pointer if success, otherwise nullptr
//!
GpuContext* CreateGpuContext(
const MOS_GPU_NODE gpuNode,
CmdBufMgr *cmdBufMgr,
MOS_GPU_CONTEXT mosGpuCtx);
//!
//! \brief Get GPU context base on gpu context handle
//! \detail Gpu context manager maintain an array, gpu context handle
//! as its index.
//! \param [in] gpuContextHandle
//! Reqired gpu context's handle
//! \return GpuContext*
//! Gpu context pointer if success, otherwise nullptr
//!
GpuContext* GetGpuContext(GPU_CONTEXT_HANDLE gpuContextHandle);
//!
//! \brief Destroy specified gpu context
//! \param [in] gpuContext
//! Gpu context need to be destroyed
//!
void DestroyGpuContext(GpuContext *gpuContext);
//!
//! \brief Destroy all gpu context instance
//! \detail Destroy all gpu context maintained in m_gpuContextArray
//!
void DestroyAllGpuContexts();
//!
//! \brief Determine whether gpu context reuse is needed
//! \detail Implementation to be added after reuse scheme is nailed down
//! \return bool
//! True if needed, otherwise false
//!
bool ContextReuseNeeded();
//!
//! \brief Select one gpu context to be reused
//! \detail Implementation to be added after reuse scheme is nailed down
//! \return GpuContext*
//! Gpu context pointer if success, otherwise nullptr
//!
GpuContext* SelectContextToReuse();
//!
//! \brief Get os context used in manager
//! \return OsContext*
//! Os context pointer if success, otherwise nullptr
//!
OsContext* GetOsContext() { return m_osContext; }
//!
//! \brief Get Gpu context number
//! \return uint32_t
//! Number of all Gpu contexts, include the node which was already destroyed
//!
uint32_t GetGpuContextNumber()
{
return m_gpuContextArray.size();
}
//!
//! \brief Get the validity flag
//! \return bool
//! Get the validity flag of GpuContextMgr
//!
bool IsInitialized()
{
return m_initialized;
}
//! \brief Indicate whether new gpu context is inserted into the first slot w/ null ctx handle
//! or always at the end of the gpucontext array
bool m_noCycledGpuCxtMgmt = false;
protected:
//! \brief Gt system info
//! \detail reserve to reuse gpu context
GT_SYSTEM_INFO m_gtSystemInfo = {};
//! \brief Os Context
OsContext *m_osContext = nullptr;
//! \brief Gpu context array mutex
PMOS_MUTEX m_gpuContextArrayMutex = nullptr;
//! \brief Gpu context count
uint32_t m_gpuContextCount = 0;
//! \brief Maintained gpu context array
std::vector<GpuContext *> m_gpuContextArray;
//! \brief Flag to indicate gpu context mgr initialized or not
bool m_initialized = false;
};
#endif // #ifndef __MOS_GPU_CONTEXT_MGR_H__
|