Top-level initialization
| 49 | |
| 50 | /// Top-level initialization |
| 51 | Status Manifest::initialize() { |
| 52 | |
| 53 | if (!operations_.empty()) { |
| 54 | operations_.clear(); |
| 55 | } |
| 56 | |
| 57 | // initialize procedurally generated cutlass op in manifest object |
| 58 | initialize_all(*this); |
| 59 | |
| 60 | // initialize manually instanced reference op in manifest object |
| 61 | initialize_reference_operations(*this); |
| 62 | |
| 63 | // initialize manually instanced reduction reference op in manifest object |
| 64 | initialize_all_reduction_op(*this); |
| 65 | |
| 66 | return Status::kSuccess; |
| 67 | } |
| 68 | |
| 69 | /// Used for initialization |
| 70 | void Manifest::reserve(size_t operation_count) { |