| 5519 | dspark_weights_note_metadata_error(dw, "target layer is outside the target model"); |
| 5520 | } |
| 5521 | if (i != 0 && layer <= prev) { |
| 5522 | dspark_weights_note_metadata_error(dw, "target layers are not strictly increasing"); |
| 5523 | } |
| 5524 | prev = layer; |
| 5525 | } |
| 5526 | } |
| 5527 | |
| 5528 | static void dspark_weights_validate_block_layout( |
| 5529 | ds4_dspark_weights *dw, |
no test coverage detected