diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-16 11:48:05 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-16 11:48:05 -0600 |
commit | 8bff2fccc9774e3f3af3c0f8ea345037051cf40e (patch) | |
tree | 695135b46934cea5efe85ffbc1ec2cc3e3d6b6f2 /src/gallium/drivers/cell/ppu/cell_context.c | |
parent | 5191429b15a3e7a7ef7cda499de8074c2c0df94f (diff) |
cell: CELL_NUM_SPUS env var
Diffstat (limited to 'src/gallium/drivers/cell/ppu/cell_context.c')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_context.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_context.c b/src/gallium/drivers/cell/ppu/cell_context.c index 097dbcfdc8..4dad490ce1 100644 --- a/src/gallium/drivers/cell/ppu/cell_context.c +++ b/src/gallium/drivers/cell/ppu/cell_context.c @@ -160,6 +160,10 @@ cell_create_context(struct pipe_screen *screen, printf("Cell: found %d Cell(s) with %u SPUs\n", cell->num_cells, cell->num_spus); } + if (getenv("CELL_NUM_SPUS")) { + cell->num_spus = atoi(getenv("CELL_NUM_SPUS")); + assert(cell->num_spus > 0); + } cell_start_spus(cell); |