Commit 0680523
committed
Added is_in_order property
__repr__ is modified to reflect the in_order property:
```
In [1]: import dpctl
In [2]: dpctl.SyclQueue(property="in_order")
Out[2]: <dpctl.SyclQueue at 0x7f5ac2485230, property=in_order>
In [3]: q = _
In [4]: q.is_in_order
Out[4]: True
In [5]: q2 = dpctl.SyclQueue()
In [6]: q2.is_in_order
Out[6]: False
In [7]: q2
Out[7]: <dpctl.SyclQueue at 0x7f5a9a85a8c0>
```1 parent ba5ac1f commit 0680523
1 file changed
+11
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| 50 | + | |
50 | 51 | | |
51 | 52 | | |
52 | 53 | | |
| |||
729 | 730 | | |
730 | 731 | | |
731 | 732 | | |
| 733 | + | |
| 734 | + | |
| 735 | + | |
| 736 | + | |
| 737 | + | |
732 | 738 | | |
733 | 739 | | |
734 | 740 | | |
735 | 741 | | |
736 | 742 | | |
737 | | - | |
| 743 | + | |
| 744 | + | |
| 745 | + | |
| 746 | + | |
| 747 | + | |
738 | 748 | | |
739 | 749 | | |
740 | 750 | | |
| |||
0 commit comments