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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
|
/*
* 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.
*/
#ifndef CMRTLIB_AGNOSTIC_SHARE_CM_QUEUE_BASE_H_
#define CMRTLIB_AGNOSTIC_SHARE_CM_QUEUE_BASE_H_
#include "cm_include.h"
#include <cstdint>
#include <cstddef>
class CmTask;
class CmEvent;
class CmThreadSpace;
class CmThreadGroupSpace;
class CmBuffer;
class CmSurface2D;
class CmKernel;
class CmVebox;
enum CM_QUEUE_TYPE
{
CM_QUEUE_TYPE_NONE = 0,
CM_QUEUE_TYPE_RENDER = 1,
CM_QUEUE_TYPE_COMPUTE = 2
};
enum CM_QUEUE_SSEU_USAGE_HINT_TYPE
{
CM_QUEUE_SSEU_USAGE_HINT_DEFAULT = 0,
CM_QUEUE_SSEU_USAGE_HINT_VME = 1
};
struct CM_QUEUE_CREATE_OPTION
{
CM_QUEUE_TYPE QueueType : 3;
bool RAMode : 1;
unsigned int Reserved0 : 3;
bool UserGPUContext : 1; // Is the user-provided GPU Context already created externally
unsigned int GPUContext : 8; // user-provided GPU Context ordinal
CM_QUEUE_SSEU_USAGE_HINT_TYPE SseuUsageHint : 3;
unsigned int Reserved1 : 1;
unsigned int Reserved2 : 12;
};
const CM_QUEUE_CREATE_OPTION CM_DEFAULT_QUEUE_CREATE_OPTION = { CM_QUEUE_TYPE_RENDER, false, 0, false, 0, CM_QUEUE_SSEU_USAGE_HINT_DEFAULT, 0, 0 };
//!
//! \brief CM task queue management.
//!
class CmQueue
{
public:
//!
//! \brief Enqueue a task for execution with per-task thread space.
//! \details This function enqueues a task represented by the CmTask object.
//! The kernels in the CmTask object may be run concurrently.
//! Tasks get executed according to the order they get enqueued.
//! This is a non-blocking call. It returns immediately without waiting
//! for GPU to start or finish execution. A CmEvent is generated each time
//! a task is enqueued. The CmEvent can be used to check the status of task.
//! The generated event needs to be managed and released by user.
//! Since event is not useful in some cases, runtime provides the capability
//! to avoid generating event.
//! If thread space is valid, the dependency defined by thread space will be honored.
//! \param [in] task
//! pointer to task to submit
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \param [in] threadSpace
//! pointer to thread space which can define the thread dependency within the task.
//! This is a per task thread space. If this task has multiple kernels, each kernel
//! will have the thread space of same dimension, same dependency etc. If it is nullptr,
//! there is no thread dependency and the maximum thread space width will be asssumed
//! to calculate the coordinates for each thread. For each kernel , the per kernel thread space
//! that is defined by calling CmKernel::AssociateThreadSpace() overwrites the per task thread space.
//! \retval CM_SUCCESS if the task is successfully enqueued.
//! \retval CM_OUT_OF_HOST_MEMORY if out of host memory
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t Enqueue(CmTask *task,
CmEvent *&event,
const CmThreadSpace *threadSpace = nullptr) = 0;
//!
//! \brief Destroy the CmEvent generated by Enqueue.
//! \details Destroy the event object previously generated by Enqueue.
//! The CmEvent object can be destroyed even before the corresponding task flushed or finished.
//! If this happens, there is no way the app can get the task status.
//! \param [in] event
//! reference to pointer to event
//! \retval CM_SUCCESS if event destroyed successfully
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t DestroyEvent(CmEvent *&event) = 0;
//!
//! \brief Enqueue the task with thread group space.
//! \details
//! \param [in]task
//! pointer to task to submit
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \param [in] threadGroupSpace
//! pointer to thread group space which defines the dimensions of the task.
//! pThreadGroupSpace can not be NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued.
//! \retval CM_INVALID_ARG_VALUE if input task is not valid
//! \retval CM_EXCEED_MAX_KERNEL_PER_ENQUEUE if the task's kernel number exceeds limitation.
//! \retval CM_INVALID_THREAD_GROUP_SPACE if the thread group space specification is invalid.
//! \retval CM_THREAD_ARG_NOT_ALLOWED if user has per thread arguments
//!
CM_RT_API virtual int32_t
EnqueueWithGroup(CmTask *task,
CmEvent *&event,
const CmThreadGroupSpace *threadGroupSpace = nullptr) = 0;
//!
//! \brief Enqueues the kernel to copy from system(CPU) memory to video(GPU) memory.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy from host
//! system memory to video surface.
//! This is a non-blocking call. A CmEvent is generated each time a task is enqueued.
//! The CmEvent can be used to check the status.
//! The host memory sysMem must be 16-Byte aligned and surface's width in bytes must be 16-Byte aligned as well.
//! \param [in] surface
//! surface as copy destination, surface's width in bytes must be 16-Byte aligned
//! \param [in] sysMem
//! host memory as copy source, must be 16-Byte aligned
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_WIDTH if surface's width in bytes is not 16-Byte aligned
//! or more than CM_MAX_GPUCOPY_SURFACE_WIDTH_IN_BYTE.
//! \retval CM_GPUCOPY_INVALID_SYSMEM if sysMem is not 16-Byte aligned.
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_GPUCOPY_INVALID_SIZE if surface's height is more than CM_MAX_GPUCOPY_SURFACE_HEIGHT
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyCPUToGPU(CmSurface2D *surface,
const unsigned char *sysMem,
CmEvent *&event) = 0;
//!
//! \brief Enqueues the kernel to copy from video(GPU) memory to system(CPU) memory.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy from surface to system memory.
//! This is a non-blocking call. A CmEvent is generated each time a task is enqueued.
//! The CmEvent can be used to check the status or other data regarding the task execution.
//! The host memory sysMem must be 16-Byte aligned and surface's width in bytes must be 16-Byte aligned as well.
//! \param [in] surface
//! surface as copy source, surface's width in bytes must be 16-Byte aligned
//! \param [in] sysMem
//! host memory as copy destination, must be 16-Byte aligned
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_WIDTH if surface's width in bytes is not 16-Byte aligned
//! or more than CM_MAX_GPUCOPY_SURFACE_WIDTH_IN_BYTE.
//! \retval CM_GPUCOPY_INVALID_SYSMEM if sysMem is not 16-Byte aligned.
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_GPUCOPY_INVALID_SIZE if surface's height is more than CM_MAX_GPUCOPY_SURFACE_HEIGHT
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyGPUToCPU(CmSurface2D *surface,
unsigned char *sysMem,
CmEvent *&event) = 0;
//!
//! \brief Enqueues the kernel to initialize a 2D surface.
//! \details This function enqueues a task, which contains a pre-defined kernel to initialize a surface 2d
//! This is a non-blocking call. A CmEvent is generated each time a task is enqueued.
//! The CmEvent can be used to check the status or other data regarding the task execution.
//! \param [in] surface
//! surface to initialize
//! \param [in] initValue
//! value to fill the surface
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueInitSurface2D(CmSurface2D *surface,
const uint32_t initValue,
CmEvent *&event) = 0;
//!
//! \brief Enqueue the kernel to copy memory between surfaces.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy memory between surfaces.
//! This is a non-blocking call. A CmEvent is generated each time a task is enqueued.
//! The CmEvent can be used to check the status or other data regarding the task execution.
//! The input and output surfaces should have the same width, height and format.
//! \param [in] inputSurface
//! surface as copy source
//! \param [in] outputSurface
//! surface as copy destination
//! \param [in] option
//! If it is "CM_FASTCOPY_OPTION_NONBLOCKING", it returns immediately without waiting for GPU to start or finish.\n
//! If it is "CM_FASTCOPY_OPTION_BLOCKING", this function will return until copy is finished indeed.\n
//! If it is "CM_FASTCOPY_OPTION_DISABLE_TURBO_BOOST", mdf turbo boost is disabled.
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_SURFACES if the input and output surfaces have different
//! width, height and format.
//! \retval CM_GPUCOPY_INVALID_SIZE if surface's height is more than CM_MAX_GPUCOPY_SURFACE_HEIGHT
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyGPUToGPU(CmSurface2D *outputSurface,
CmSurface2D *inputSurface,
uint32_t option,
CmEvent *&event) = 0;
//!
//! \brief Enqueues the kernel to copy memory between host memories.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy memory from src to dest memory.
//! Both pDstSysMem and pSrcSysMem need to be 16-Byte aligned. The maximum size is determined by sytem's memory
//! and it should be less than CM_MAX_1D_SURF_WIDTH bytes which is 1G bytes now. If the copy size is less than
//! 1K bytes, the event will not be generated and it is a blocking call.
//! For the size larger than 1K bytes, this is a non-blocking call.
//! A CmEvent is generated to check the status or other data regarding the task execution.
//! To avoid generating event, user can set the event as CM_NO_EVENT and pass it to this function
//! \param [in] dstSysMem
//! destination memory, must be 16-Byte aligned
//! \param [in] srcSysMem
//! source memory, must be 16-Byte aligned
//! \param [in] size
//! size of memory to copy in bytes
//! \param [in] option
//! If it is "CM_FASTCOPY_OPTION_NONBLOCKING", it returns immediately without waiting for GPU to start or finish.\n
//! If it is "CM_FASTCOPY_OPTION_BLOCKING", this function will return until copy is finished indeed.\n
//! If it is "CM_FASTCOPY_OPTION_DISABLE_TURBO_BOOST", mdf turbo boost is disabled.
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_SYSMEM if pDstSysMem or pSrcSysMem is not 16-Byte aligned.
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyCPUToCPU(unsigned char *dstSysMem,
unsigned char *srcSysMem,
uint32_t size,
uint32_t option,
CmEvent *&event) = 0;
//!
//! \brief Enqueue the kernel to copy memory from system memory to video memory with width and height stride.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy from system memory to a surface.
//! Depending on user "opiton", this is a non-blocking or blocking call.
//! A CmEvent is generated each time a task is enqueued. The CmEvent can be used to check the status or other data
//! regarding the task execution. To avoid generating event, user can set the event as CM_NO_EVENT and pass it to
//! this function. The host memory sysMem's width stride must be 16-Byte aligned, and height stride has no any
//! alignment restriction.
//! \param [in] surface
//! surface as copy destination
//! \param [in] sysMem
//! system memory as copy source must be 16-Byte aligned
//! \param [in] widthStride
//! width stride of memory stored in host memory, in bytes, must be 16-Byte aligned
//! \param [in] heightStride
//! height stride of memory stored in host memory, in bytes.
//! \param [in] option
//! If it is "CM_FASTCOPY_OPTION_NONBLOCKING", it returns immediately without waiting for GPU to start or finish.\n
//! If it is "CM_FASTCOPY_OPTION_BLOCKING", this function will return until copy is finished indeed.\n
//! If it is "CM_FASTCOPY_OPTION_DISABLE_TURBO_BOOST", mdf turbo boost is disabled.
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_WIDTH if surface's width in bytes is not 16-Byte aligned
//! or more than CM_MAX_GPUCOPY_SURFACE_WIDTH_IN_BYTE.
//! \retval CM_GPUCOPY_INVALID_SYSMEM if sysMem is not 16-Byte aligned.
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_GPUCOPY_INVALID_SIZE if surface's height is more than CM_MAX_GPUCOPY_SURFACE_HEIGHT
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyCPUToGPUFullStride(CmSurface2D *surface,
const unsigned char *sysMem,
const uint32_t widthStride,
const uint32_t heightStride,
const uint32_t option,
CmEvent *& event) = 0;
//!
//! \brief Enqueue the kernel to copy memory from video memory to system memory with width and height stride.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy from surface to system memory.
//! Depending on user "opiton", this is a non-blocking or blocking call.
//! A CmEvent is generated each time a task is enqueued. The CmEvent can be used to check the status or other data
//! regarding the task execution. To avoid generating event, user can set the event as CM_NO_EVENT and pass it to
//! this function. The host memory sysMem's width stride must be 16-Byte aligned, and height stride has no any
//! alignment restriction.
//! \param [in] surface
//! surface as copy source
//! \param [in] sysMem
//! system memory as copy destination, must be 16-Byte aligned
//! \param [in] widthStride
//! width stride of memory stored in host memory, in bytes, must be 16-Byte aligned
//! \param [in] heightStride
//! height stride of memory stored in host memory, in bytes,
//! \param [in] option
//! If it is "CM_FASTCOPY_OPTION_NONBLOCKING", it returns immediately without waiting for GPU to start or finish.\n
//! If it is "CM_FASTCOPY_OPTION_BLOCKING", this function will return until copy is finished indeed.\n
//! If it is "CM_FASTCOPY_OPTION_DISABLE_TURBO_BOOST", mdf turbo boost is disabled.
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_STRIDE if stride is not 16-Byte aligned or less than surfaces width in bytes.
//! \retval CM_GPUCOPY_INVALID_SYSMEM if sysMem is not 16-Byte aligned.
//! \retval CM_GPUCOPY_INVALID_SIZE if surface's height is more than CM_MAX_GPUCOPY_SURFACE_HEIGHT
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyGPUToCPUFullStride(CmSurface2D *surface,
unsigned char *sysMem,
const uint32_t widthStride,
const uint32_t heightStride,
const uint32_t option,
CmEvent *& event) = 0;
//!
//! \brief Enqueue the kernel to copy memory from system memory to video memory with width and height stride.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy from system memory to a surface.
//! Depending on user "opiton", this is a non-blocking or blocking call.
//! A CmEvent is generated each time a task is enqueued. The CmEvent can be used to check the status or other data
//! regarding the task execution. To avoid generating event, user can set the event as CM_NO_EVENT and pass it to
//! this function. The host memory sysMem's width stride must be 16-Byte aligned, and height stride has no any
//! alignment restriction.
//! \param [in] surface
//! surface as copy destination
//! \param [in] sysMem
//! system memory as copy source must be 16-Byte aligned
//! \param [in] widthStride
//! width stride of memory stored in host memory, in bytes, must be 16-Byte aligned
//! \param [in] heightStride
//! height stride of memory stored in host memory, in bytes.
//! \param [in] option
//! If it is "CM_FASTCOPY_OPTION_NONBLOCKING", it returns immediately without waiting for GPU to start or finish.\n
//! If it is "CM_FASTCOPY_OPTION_BLOCKING", this function will return until copy is finished indeed.\n
//! If it is "CM_FASTCOPY_OPTION_DISABLE_TURBO_BOOST", mdf turbo boost is disabled.
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_WIDTH if surface's width in bytes is not 16-Byte aligned
//! or more than CM_MAX_GPUCOPY_SURFACE_WIDTH_IN_BYTE.
//! \retval CM_GPUCOPY_INVALID_SYSMEM if sysMem is not 16-Byte aligned.
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_GPUCOPY_INVALID_SIZE if surface's height is more than CM_MAX_GPUCOPY_SURFACE_HEIGHT
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyCPUToGPUFullStrideDup(CmSurface2D *surface,
const unsigned char *sysMem,
const uint32_t widthStride,
const uint32_t heightStride,
const uint32_t option,
CmEvent *& event) = 0;
//!
//! \brief Enqueue the kernel to copy memory from video memory to system memory with width and height stride.
//! \details This function enqueues a task, which contains a pre-defined kernel to copy from surface to system memory.
//! Depending on user "opiton", this is a non-blocking or blocking call.
//! A CmEvent is generated each time a task is enqueued. The CmEvent can be used to check the status or other data
//! regarding the task execution. To avoid generating event, user can set the event as CM_NO_EVENT and pass it to
//! this function. The host memory sysMem's width stride must be 16-Byte aligned, and height stride has no any
//! alignment restriction.
//! \param [in] surface
//! surface as copy source
//! \param [in] sysMem
//! system memory as copy destination, must be 16-Byte aligned
//! \param [in] widthStride
//! width stride of memory stored in host memory, in bytes, must be 16-Byte aligned
//! \param [in] heightStride
//! height stride of memory stored in host memory, in bytes,
//! \param [in] option
//! If it is "CM_FASTCOPY_OPTION_NONBLOCKING", it returns immediately without waiting for GPU to start or finish.\n
//! If it is "CM_FASTCOPY_OPTION_BLOCKING", this function will return until copy is finished indeed.\n
//! If it is "CM_FASTCOPY_OPTION_DISABLE_TURBO_BOOST", mdf turbo boost is disabled.
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_INVALID_STRIDE if stride is not 16-Byte aligned or less than surfaces width in bytes.
//! \retval CM_GPUCOPY_INVALID_SYSMEM if sysMem is not 16-Byte aligned.
//! \retval CM_GPUCOPY_INVALID_SIZE if surface's height is more than CM_MAX_GPUCOPY_SURFACE_HEIGHT
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueCopyGPUToCPUFullStrideDup(CmSurface2D *surface,
unsigned char *sysMem,
const uint32_t widthStride,
const uint32_t heightStride,
const uint32_t option,
CmEvent *& event) = 0;
//!
//! \brief Enqueue a task for execution with hints.
//! \details This API is designed to saturate the EUs when running a large dependency kernel.
//! At least two kernels must exist in the task. The ideal case is at least one large dependency kernel
//! running with smaller kernels. The idea is to get the smaller kernels for free during the time it already
//! takes to execute the large dependency kernel. Each task can have up to CAP_KERNEL_COUNT_PER_TASK kernels.
//! The 0th bit of the hints indicates to use media object or media walker. Currently, only media object is valid.
//! The next bits indicate whether the next kernel is in the same or different kernel group.
//! For example, if the 1th bit is set then the second kernel is in a different kernel group from the first kernel,
//! if it is not set it is in the same kernel group. The kernels are interleaved between different kernel groups
//! and run concurrently. Within a kernel group, the kernels are dispatched in order. The kernel groups are dispatched
//! to separate sub-slices. The assumption is made that the kernel groups are comparable in kernel execution time.
//! There can be no dependency between different kernels; all kernels in the task should be independent of one another.
//! Additionally, pKernel->AssociateThreadSpace(CmThreadSpace*& pTS) must be called for each kernel.
//! A CmEvent is generated to check the status or other data regarding the task execution.
//! To avoid generating event, user can set the event as CM_NO_EVENT and pass it to this function.
//! \param [in] task
//! pointer to task to submit
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \param [in] hints
//! Hints about work load from host to driver.
//! \retval CM_SUCCESS if the task is successfully enqueued.
//! \retval CM_OUT_OF_HOST_MEMORY if out of host memory
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueWithHints(CmTask *task,
CmEvent *&event,
uint32_t hints = 0) = 0;
//!
//! \brief Enqueue a vebox task to vebox engine.
//! \details This call submits a VEBOX task to VEBOX engine for execution.
//! Before this function is called, user need call CmDevice::CreateVebox() to create a CmVebox object,
//! and call the APIs in CmVebox class to set up VEBOX state and surfaces.
//! \param [in] vebox
//! Pointer to a CmVebox object.
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued.
//! \retval CM_OUT_OF_HOST_MEMORY if out of host memory
//! \retval CM_INVALID_ARG_VALUE if input pVebox is not valid
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueVebox(CmVebox *vebox, CmEvent *&event) = 0;
//!
//! \brief Enqueue a task for execution with per-task thread space in a fast path.
//! \details This function enqueues a task represented by the CmTask object.
//! The kernels in the CmTask object may be run concurrently.
//! Tasks get executed according to the order they get enqueued.
//! This is a non-blocking call. It returns immediately without waiting
//! for GPU to start or finish execution. A CmEvent is generated each time
//! a task is enqueued. The CmEvent can be used to check the status of task.
//! The generated event needs to be managed and released by user.
//! Since event is not useful in some cases, runtime provides the capability
//! to avoid generating event.
//! If thread space is valid, the dependency defined by thread space will be honored.
//! \param [in] task
//! pointer to task to submit
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \param [in] threadSpace
//! pointer to thread space which can define the thread dependency within the task.
//! This is a per task thread space. If this task has multiple kernels, each kernel
//! will have the thread space of same dimension, same dependency etc. If it is nullptr,
//! there is no thread dependency and the maximum thread space width will be asssumed
//! to calculate the coordinates for each thread. For each kernel , the per kernel thread space
//! that is defined by calling CmKernel::AssociateThreadSpace() overwrites the per task thread space.
//! \retval CM_SUCCESS if the task is successfully enqueued.
//! \retval CM_OUT_OF_HOST_MEMORY if out of host memory
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueFast(CmTask *task,
CmEvent *&event,
const CmThreadSpace *threadSpace = nullptr) = 0;
//!
//! \brief Destroy the CmEvent generated by EnqueueFast.
//! \details Destroy the event object previously generated by EnqueueFast.
//! The CmEvent object can be destroyed even before the corresponding task flushed or finished.
//! If this happens, there is no way the app can get the task status.
//! \param [in] event
//! reference to pointer to event
//! \retval CM_SUCCESS if event destroyed successfully
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t DestroyEventFast(CmEvent *&event) = 0;
//!
//! \brief Enqueue the task with thread group space in a fast path.
//! \details
//! \param [in]task
//! pointer to task to submit
//! \param [in,out] event
//! reference to pointer of event generated. If it is set as CM_NO_EVENT,
//! its value returned by runtime is NULL.
//! \param [in] threadGroupSpace
//! pointer to thread group space which defines the dimensions of the task.
//! pThreadGroupSpace can not be NULL.
//! \retval CM_SUCCESS if the task is successfully enqueued.
//! \retval CM_INVALID_ARG_VALUE if input task is not valid
//! \retval CM_EXCEED_MAX_KERNEL_PER_ENQUEUE if the task's kernel number exceeds limitation.
//! \retval CM_INVALID_THREAD_GROUP_SPACE if the thread group space specification is invalid.
//! \retval CM_THREAD_ARG_NOT_ALLOWED if user has per thread arguments
//!
CM_RT_API virtual int32_t EnqueueWithGroupFast(CmTask *task,
CmEvent *&event,
const CmThreadGroupSpace *threadGroupSpace = nullptr) = 0;
//!
//! \brief Enqueue the kernel to copy memory from video memory buffer/1D surface to system memory.
//! \details This function enqueues a task that contains a pre-defined kernel to copy from
//! video memory buffer/1D surface to system memory. This is a non-blocking call.
//! Buffer read copy task need to wait a CM wait_event to check dependent condition ready
//! status before actual copy starts.
//! Also a Cm notification event is generated each time a task is enqueued.
//! The CmEvent can be used to check the status or other data regarding the task execution.
//! \param [in] buffer
//! CM Buffer as 1D surface is copy source
//! \param [in] offset
//! data copy starting address offset within CM buffer
//! \param [in] sysMem
//! system memory as copy destination, better to be 16-Byte aligned
//! \param [in] sysMemSize
//! data byte count to copy into system memory
//! \param [in] wait_event
//! a wait conditional event before read copy starts
//! \param [in,out] event
//! reference to pointer of CM event generated to notify buffer read copy task status change
//! \param [in] option
//! If it is none-zero, CPU worker thread will be used for buffer read copy
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueReadBuffer(CmBuffer* buffer,
size_t offset,
const unsigned char* sysMem,
uint64_t sysMemSize,
CmEvent* wait_event,
CmEvent*& event,
unsigned option = 0) = 0;
//!
//! \brief Enqueue the kernel to copy memory from to system memory to video memory buffer/1D surface
//! \details This function enqueues a task, which contains a pre-defined kernel to copy from system
//! memory to 1D surface.This is a non-blocking call.
//! Buffer write copy task need to wait an CM wait_event to check condition ready status
//! before actual copy starts.
//! Also a Cm notification event is generated each time a task is enqueued.
//! The CmEvent can be used to check the status or other data regarding the task execution.
//! \param [in] buffer
//! CM Buffer as 1D surface is copy destination
//! \param [in] offset
//! data copy starting address offset within CM buffer
//! \param [in] sysMem
//! system memory as copy source, better to be 16-Byte aligned
//! \param [in] sysMemSize
//! data byte count to copy from system memory
//! \param [in] wait_event
//! a wait conditional event before write copy starts
//! \param [in,out] event
//! reference to pointer of CM event generated to notify buffer write copy task status change
//! \param [in] option
//! If it is none-zero, CPU worker thread will be used for buffer copy
//! \retval CM_SUCCESS if the task is successfully enqueued
//! \retval CM_GPUCOPY_OUT_OF_RESOURCE if runtime runs out of resources
//! \retval CM_FAILURE otherwise
//!
CM_RT_API virtual int32_t EnqueueWriteBuffer(CmBuffer* buffer,
size_t offset,
const unsigned char* sysMem,
uint64_t sysMemSize,
CmEvent* wait_event,
CmEvent*& event,
unsigned option = 0) = 0;
//!
//! \brief [Only In Emu Mode] set the resident group number and parallel thread number
//! \details
//! \param [in] residentGroupNum
//! number of resident groups running on device
//! \param [in] parallelThreadNum
//! number of threads run in parallel
//! \retval CM_SUCCESS if the parameter is successfully set.
//! \retval CM_NOT_IMPLEMENTED if in sim or emu mode
//!
CM_RT_API virtual int32_t SetResidentGroupAndParallelThreadNum(uint32_t residentGroupNum, uint32_t parallelThreadNum) = 0;
protected:
virtual ~CmQueue() = default;
};
#endif // #ifndef CMRTLIB_AGNOSTIC_SHARE_CM_QUEUE_BASE_H_
|