From c6574cb906477dc2c8c94ae3f58d8e4aa03c6205 Mon Sep 17 00:00:00 2001 From: Aaron Liu Date: Wed, 7 Jul 2021 10:32:52 +0800 Subject: [PATCH] SWDEV-294027 - [Lnx][YC] Add Yellow Carp support Only add Roc path and don't use Pal path. Signed-off-by: Aaron Liu Change-Id: I7117e2dc3c3ad4c8d563e9bbdc721f70ddba51fd --- rocclr/device/device.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rocclr/device/device.cpp b/rocclr/device/device.cpp index 40e124e517..ba90a7f4cc 100644 --- a/rocclr/device/device.cpp +++ b/rocclr/device/device.cpp @@ -187,6 +187,7 @@ std::pair Isa::supportedIsas() { {"gfx1032", "gfx1032", true, true, false, 10, 3, 2, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1033", "gfx1033", true, false, false, 10, 3, 3, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1034", "gfx1034", true, true, false, 10, 3, 4, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, + {"gfx1035", "gfx1035", true, false, false, 10, 3, 5, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, }; return std::make_pair(std::begin(supportedIsas_), std::end(supportedIsas_)); }