| 1345 | |
| 1346 | |
| 1347 | void NCB::TExclusiveFeatureBundlesData::GetSubsetWithScheduling( |
| 1348 | const TFeaturesArraySubsetIndexing* subsetIndexing, |
| 1349 | |
| 1350 | // needed only for sparse features |
| 1351 | const TMaybe<TFeaturesArraySubsetInvertedIndexing>& subsetInvertedIndexing, |
| 1352 | TResourceConstrainedExecutor* resourceConstrainedExecutor, |
| 1353 | TExclusiveFeatureBundlesData* subsetData |
| 1354 | ) const { |
| 1355 | subsetData->FlatFeatureIndexToBundlePart = FlatFeatureIndexToBundlePart; |
| 1356 | subsetData->MetaData = MetaData; |
| 1357 | |
| 1358 | ::GetSubsetWithScheduling( |
| 1359 | MakeConstArrayRef(SrcData), |
| 1360 | subsetIndexing, |
| 1361 | subsetInvertedIndexing, |
| 1362 | resourceConstrainedExecutor, |
| 1363 | &(subsetData->SrcData) |
| 1364 | ); |
| 1365 | } |
| 1366 | |
| 1367 | |
| 1368 | void NCB::TExclusiveFeatureBundlesData::Save( |
no test coverage detected