Skip to content

Commit 71c50a4

Browse files
veselypetaPetr Vesely
authored andcommitted
[UR] Remove BY_COUNTS_LIST_END
1 parent 863b826 commit 71c50a4

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

include/ur.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,6 @@ def __str__(self):
603603
class ur_device_partition_v(IntEnum):
604604
EQUALLY = 0x1086 ## Partition Equally
605605
BY_COUNTS = 0x1087 ## Partition by counts
606-
BY_COUNTS_LIST_END = 0x0 ## End of by counts list
607606
BY_AFFINITY_DOMAIN = 0x1088 ## Partition by affinity domain
608607
BY_CSLICE = 0x1089 ## Partition by c-slice
609608

include/ur_api.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,6 @@ typedef enum ur_device_affinity_domain_flag_t {
10471047
typedef enum ur_device_partition_t {
10481048
UR_DEVICE_PARTITION_EQUALLY = 0x1086, ///< Partition Equally
10491049
UR_DEVICE_PARTITION_BY_COUNTS = 0x1087, ///< Partition by counts
1050-
UR_DEVICE_PARTITION_BY_COUNTS_LIST_END = 0x0, ///< End of by counts list
10511050
UR_DEVICE_PARTITION_BY_AFFINITY_DOMAIN = 0x1088, ///< Partition by affinity domain
10521051
UR_DEVICE_PARTITION_BY_CSLICE = 0x1089, ///< Partition by c-slice
10531052
/// @cond

scripts/core/device.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -497,9 +497,6 @@ etors:
497497
- name: BY_COUNTS
498498
desc: "Partition by counts"
499499
value: "0x1087"
500-
- name: BY_COUNTS_LIST_END
501-
desc: "End of by counts list"
502-
value: "0x0"
503500
- name: BY_AFFINITY_DOMAIN
504501
desc: "Partition by affinity domain"
505502
value: "0x1088"

source/common/ur_params.hpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3411,10 +3411,6 @@ inline std::ostream &operator<<(std::ostream &os,
34113411
os << "UR_DEVICE_PARTITION_BY_COUNTS";
34123412
break;
34133413

3414-
case UR_DEVICE_PARTITION_BY_COUNTS_LIST_END:
3415-
os << "UR_DEVICE_PARTITION_BY_COUNTS_LIST_END";
3416-
break;
3417-
34183414
case UR_DEVICE_PARTITION_BY_AFFINITY_DOMAIN:
34193415
os << "UR_DEVICE_PARTITION_BY_AFFINITY_DOMAIN";
34203416
break;

0 commit comments

Comments
 (0)