| 108 | class BundleWriter { |
| 109 | public: |
| 110 | struct Options { |
| 111 | Options() {} |
| 112 | // Alignment, in bytes, for tensor data. |
| 113 | // Must be >= 1. The default size of 1 densely packs tensors. |
| 114 | int data_alignment{1}; |
| 115 | }; |
| 116 | BundleWriter(Env* env, StringPiece prefix, |
| 117 | const Options& options = Options()); |
| 118 |
no outgoing calls