| 1965 | } |
| 1966 | |
| 1967 | void shape_transform_descriptor::dimension::sub::add_split_axis(std::size_t i) |
| 1968 | { |
| 1969 | assert(axis.empty() or hidden_axis.empty()); |
| 1970 | if(not axis.empty()) |
| 1971 | axis.push_back(i); |
| 1972 | if(not hidden_axis.empty()) |
| 1973 | hidden_axis.push_back(i); |
| 1974 | } |
| 1975 | |
| 1976 | void shape_transform_descriptor::dimension::sub::expose() |
| 1977 | { |
no test coverage detected