mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-22 15:19:02 +00:00
Add tests for cl_khr_subgroup_rotate (#1439)
Signed-off-by: Stuart Brady <stuart.brady@arm.com>
This commit is contained in:
@@ -251,7 +251,9 @@ enum class ShuffleOp
|
||||
shuffle,
|
||||
shuffle_up,
|
||||
shuffle_down,
|
||||
shuffle_xor
|
||||
shuffle_xor,
|
||||
rotate,
|
||||
clustered_rotate,
|
||||
};
|
||||
|
||||
enum class ArithmeticOp
|
||||
@@ -317,6 +319,8 @@ static const char *const operation_names(ShuffleOp operation)
|
||||
case ShuffleOp::shuffle_up: return "shuffle_up";
|
||||
case ShuffleOp::shuffle_down: return "shuffle_down";
|
||||
case ShuffleOp::shuffle_xor: return "shuffle_xor";
|
||||
case ShuffleOp::rotate: return "rotate";
|
||||
case ShuffleOp::clustered_rotate: return "clustered_rotate";
|
||||
default: log_error("Unknown operation request"); break;
|
||||
}
|
||||
return "";
|
||||
|
||||
Reference in New Issue
Block a user