(self, value: int | float)
| 269 | assert write_to == value_size, "Must use up all the input values by this point." |
| 270 | |
| 271 | def push_scalar(self, value: int | float) -> None: |
| 272 | assert self.scalar_array, "Can only push scalar to a scalar array (CircularTensor of 1-dimension)" |
| 273 | self.write_batch.append(value) |
no outgoing calls