Otherwise applications (like the OpenCL CTS) will try to allocate more memory than what the GPU is actually able to provide.
Signed-off-by: Karol Herbst <kher...@redhat.com> --- src/gallium/drivers/nouveau/nv50/nv50_screen.c | 7 +++++-- src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/gallium/drivers/nouveau/nv50/nv50_screen.c b/src/gallium/drivers/nouveau/nv50/nv50_screen.c index ad35bd8cd42..5942458b0b2 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_screen.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_screen.c @@ -472,6 +472,7 @@ nv50_screen_get_compute_param(struct pipe_screen *pscreen, enum pipe_compute_cap param, void *data) { struct nv50_screen *screen = nv50_screen(pscreen); + struct nouveau_device *dev = screen->base.device; #define RET(x) do { \ if (data) \ @@ -489,7 +490,8 @@ nv50_screen_get_compute_param(struct pipe_screen *pscreen, case PIPE_COMPUTE_CAP_MAX_THREADS_PER_BLOCK: RET((uint64_t []) { 512 }); case PIPE_COMPUTE_CAP_MAX_GLOBAL_SIZE: /* g0-15[] */ - RET((uint64_t []) { 1ULL << 32 }); + // TODO what to do if vram_size is 0? + RET((uint64_t []) { MIN2(1ULL << 32, dev->vram_size) }); case PIPE_COMPUTE_CAP_MAX_LOCAL_SIZE: /* s[] */ RET((uint64_t []) { 16 << 10 }); case PIPE_COMPUTE_CAP_MAX_PRIVATE_SIZE: /* l[] */ @@ -499,7 +501,8 @@ nv50_screen_get_compute_param(struct pipe_screen *pscreen, case PIPE_COMPUTE_CAP_SUBGROUP_SIZE: RET((uint32_t []) { 32 }); case PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE: - RET((uint64_t []) { 1ULL << 40 }); + // TODO what to do if vram_size is 0? + RET((uint64_t []) { dev->vram_size }); case PIPE_COMPUTE_CAP_IMAGES_SUPPORTED: RET((uint32_t []) { 0 }); case PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS: diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index f5e1373a37e..57b1c70f7b3 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -533,6 +533,7 @@ nvc0_screen_get_compute_param(struct pipe_screen *pscreen, { struct nvc0_screen *screen = nvc0_screen(pscreen); const uint16_t obj_class = screen->compute->oclass; + struct nouveau_device *dev = screen->base.device; #define RET(x) do { \ if (data) \ @@ -560,7 +561,8 @@ nvc0_screen_get_compute_param(struct pipe_screen *pscreen, RET((uint64_t []) { 512 }); } case PIPE_COMPUTE_CAP_MAX_GLOBAL_SIZE: /* g[] */ - RET((uint64_t []) { 1ULL << 40 }); + // TODO what to do when vram_size is 0? + RET((uint64_t []) { dev->vram_size }); case PIPE_COMPUTE_CAP_MAX_LOCAL_SIZE: /* s[] */ switch (obj_class) { case GM200_COMPUTE_CLASS: @@ -580,7 +582,8 @@ nvc0_screen_get_compute_param(struct pipe_screen *pscreen, case PIPE_COMPUTE_CAP_SUBGROUP_SIZE: RET((uint32_t []) { 32 }); case PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE: - RET((uint64_t []) { 1ULL << 40 }); + // TODO what to do when vram_size is 0? + RET((uint64_t []) { dev->vram_size }); case PIPE_COMPUTE_CAP_IMAGES_SUPPORTED: RET((uint32_t []) { 0 }); case PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS: -- 2.23.0 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev