Mesa (master): gallium: Add PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY

Tom Stellard tstellar at kemper.freedesktop.org
Tue Apr 29 23:00:17 UTC 2014


Module: Mesa
Branch: master
Commit: 5fe1a0ebadea1dbcdbd1b7a92969a283dcbb3362
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5fe1a0ebadea1dbcdbd1b7a92969a283dcbb3362

Author: Tom Stellard <thomas.stellard at amd.com>
Date:   Fri Apr 18 17:35:59 2014 +0200

gallium: Add PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY

Bruno Jiménez:
  v2: Updated the docs
  v3: Remove trailing comma

Reviewed-by: Francisco Jerez <currojerez at riseup.net>

---

 src/gallium/docs/source/screen.rst   |    2 ++
 src/gallium/include/pipe/p_defines.h |    3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst
index f5acebb..e22435c 100644
--- a/src/gallium/docs/source/screen.rst
+++ b/src/gallium/docs/source/screen.rst
@@ -313,6 +313,8 @@ pipe_screen::get_compute_param.
   resource.  Value type: ``uint64_t``.
 * ``PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE``: Maximum size of a memory object
   allocation in bytes.  Value type: ``uint64_t``.
+* ``PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY``: Maximum frequency of the GPU
+  clock in MHz. Value type: ``uint32_t``
 
 .. _pipe_bind:
 
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h
index fec17f9..9436e7e 100644
--- a/src/gallium/include/pipe/p_defines.h
+++ b/src/gallium/include/pipe/p_defines.h
@@ -642,7 +642,8 @@ enum pipe_compute_cap
    PIPE_COMPUTE_CAP_MAX_LOCAL_SIZE,
    PIPE_COMPUTE_CAP_MAX_PRIVATE_SIZE,
    PIPE_COMPUTE_CAP_MAX_INPUT_SIZE,
-   PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE
+   PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE,
+   PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY
 };
 
 /**




More information about the mesa-commit mailing list