File: cm_group_space.cpp

package info (click to toggle)
intel-media-driver 18.4.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 77,144 kB
  • sloc: cpp: 784,288; ansic: 95,944; asm: 42,125; python: 353; sh: 156; makefile: 15
file content (159 lines) | stat: -rw-r--r-- 6,236 bytes parent folder | download | duplicates (2)
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
/*
* Copyright (c) 2017, 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      cm_group_space.cpp 
//! \brief     Contains Class CmThreadGroupSpace definitions 
//!

#include "cm_group_space.h"
#include "cm_device_rt.h"
#include "cm_kernel.h"
#include "cm_mem.h"

namespace CMRT_UMD
{
int32_t CmThreadGroupSpace::Create(CmDeviceRT* device, uint32_t index, uint32_t threadSpaceWidth, uint32_t threadSpaceHeight, uint32_t threadSpaceDepth,  uint32_t groupSpaceWidth, uint32_t groupSpaceHeight, uint32_t groupSpaceDepth, CmThreadGroupSpace* & threadGroupSpace)
{
    CM_HAL_MAX_VALUES* halMaxValues = nullptr;
    CM_HAL_MAX_VALUES_EX* halMaxValuesEx = nullptr;
    device->GetHalMaxValues(halMaxValues, halMaxValuesEx);
    if( (threadSpaceWidth == 0) || (threadSpaceHeight == 0) || (threadSpaceDepth == 0) || (groupSpaceWidth == 0)
        || (groupSpaceHeight == 0) || (groupSpaceDepth==0)
        || (threadSpaceHeight > MAX_THREAD_SPACE_HEIGHT_PERGROUP)
        || (threadSpaceWidth > MAX_THREAD_SPACE_WIDTH_PERGROUP)
        || (threadSpaceDepth > MAX_THREAD_SPACE_DEPTH_PERGROUP)
        || (threadSpaceHeight * threadSpaceWidth  * threadSpaceDepth > halMaxValuesEx->maxUserThreadsPerThreadGroup))
    {
        CM_ASSERTMESSAGE("Error: Exceed thread group size limitation.");
        return CM_INVALID_THREAD_GROUP_SPACE;
    }

    int32_t result = CM_SUCCESS;
    threadGroupSpace = new (std::nothrow) CmThreadGroupSpace(device, index, threadSpaceWidth, threadSpaceHeight, threadSpaceDepth, groupSpaceWidth, groupSpaceHeight, groupSpaceDepth);
    if( threadGroupSpace )
    {
        result = threadGroupSpace->Initialize( );
        if( result != CM_SUCCESS )
        {
            CmThreadGroupSpace::Destroy( threadGroupSpace);
        }
    }
    else
    {
        CM_ASSERTMESSAGE("Error: Failed to create CmThreadGroupSpace due to out of system memory.");
        result = CM_OUT_OF_HOST_MEMORY;
    }
    return result;
}

int32_t CmThreadGroupSpace::Destroy( CmThreadGroupSpace* &threadGroupSpace )
{
    CmSafeDelete( threadGroupSpace );
    threadGroupSpace = nullptr;
    return CM_SUCCESS;
}

int32_t CmThreadGroupSpace::GetThreadGroupSpaceSize(uint32_t & threadSpaceWidth,
                                                uint32_t & threadSpaceHeight,
                                                uint32_t & threadSpaceDepth,
                                                uint32_t & groupSpaceWidth,
                                                uint32_t & groupSpaceHeight,
                                                uint32_t & groupSpaceDepth) const
{
    threadSpaceWidth = m_threadSpaceWidth;
    threadSpaceHeight = m_threadSpaceHeight;
    threadSpaceDepth = m_threadSpaceDepth;
    groupSpaceWidth = m_groupSpaceWidth;
    groupSpaceHeight = m_groupSpaceHeight;
    groupSpaceDepth = m_groupSpaceDepth;

    return CM_SUCCESS;
}

CmThreadGroupSpace::CmThreadGroupSpace( CmDeviceRT* device,
                                        uint32_t index,
                                        uint32_t threadSpaceWidth,
                                        uint32_t threadSpaceHeight,
                                        uint32_t threadSpaceDepth,
                                        uint32_t groupSpaceWidth,
                                        uint32_t groupSpaceHeight,
                                        uint32_t groupSpaceDepth) :
                                        m_device(device),
                                        m_threadSpaceWidth(threadSpaceWidth),
                                        m_threadSpaceHeight(threadSpaceHeight),
                                        m_threadSpaceDepth(threadSpaceDepth),
                                        m_groupSpaceWidth(groupSpaceWidth),
                                        m_groupSpaceHeight(groupSpaceHeight),
                                        m_groupSpaceDepth(groupSpaceDepth),
                                        m_indexInThreadGroupSpaceArray(index)
{
}

CmThreadGroupSpace::CmThreadGroupSpace(CmDeviceRT* device,
    uint32_t index,
    uint32_t threadSpaceWidth,
    uint32_t threadSpaceHeight,
    uint32_t groupSpaceWidth,
    uint32_t groupSpaceHeight) :
    m_device(device),
    m_threadSpaceWidth(threadSpaceWidth),
    m_threadSpaceHeight(threadSpaceHeight),
    m_threadSpaceDepth(0),
    m_groupSpaceWidth(groupSpaceWidth),
    m_groupSpaceHeight(groupSpaceHeight),
    m_groupSpaceDepth(0),
    m_indexInThreadGroupSpaceArray(index)
{
}
CmThreadGroupSpace::~CmThreadGroupSpace( void )
{
}

int32_t CmThreadGroupSpace::Initialize( void )
{
    return CM_SUCCESS;
}

uint32_t CmThreadGroupSpace::GetIndexInTGsArray( void )
{
    return m_indexInThreadGroupSpaceArray;
}

#if CM_LOG_ON
std::string CmThreadGroupSpace::Log()
{
    std::ostringstream oss;

    oss << "Thread Group Space "
        << " TsWidth :"<< m_threadSpaceWidth
        << " TsHeight :" << m_threadSpaceHeight
        << " TsDepth :" << m_threadSpaceDepth
        << " GroupSpaceWidth :" <<m_groupSpaceWidth
        << " GroupSpaceHeight :" <<m_groupSpaceHeight
        << " GroupSpaceDepth :" << m_groupSpaceDepth
        << std::endl;

    return oss.str();

}
#endif
}