Method
__init__
(self, value: _ods_ir.Value, type: _ods_ir.Type)
Source from the content-addressed store, hash-verified
| 1156 | value: _ods_ir.Value |
| 1157 | |
| 1158 | def __init__(self, value: _ods_ir.Value, type: _ods_ir.Type): |
| 1159 | view_type = StridedViewType(type) |
| 1160 | if isinstance(value, _ods_ir.Value) is False: |
| 1161 | raise Exception("StridedView value is not IR Value") |
| 1162 | super().__init__(value) |
| 1163 | self.view_type = view_type |
| 1164 | self.value = value |
| 1165 | |
| 1166 | @property |
| 1167 | def tile_shape(self): |
Callers
nothing calls this directly
Tested by
no test coverage detected