| 1072 | |
| 1073 | |
| 1074 | static void GetObjectWeightsSubsetImpl( |
| 1075 | const TSharedWeights<float> src, |
| 1076 | const TObjectsGroupingSubset& objectsGroupingSubset, |
| 1077 | NPar::ILocalExecutor* localExecutor, |
| 1078 | TSharedWeights<float>* dstSubset |
| 1079 | ) { |
| 1080 | *dstSubset = MakeIntrusive<TWeights<float>>( |
| 1081 | src->GetSubset(objectsGroupingSubset.GetObjectsIndexing(), localExecutor) |
| 1082 | ); |
| 1083 | } |
| 1084 | |
| 1085 | |
| 1086 | void NCB::GetGroupInfosSubset( |