| 12 | namespace NCB { |
| 13 | |
| 14 | THolder<IFeatureValuesHolder> TExternalFloatValuesHolder::CloneWithNewSubsetIndexing( |
| 15 | const TCloningParams& cloningParams, |
| 16 | NPar::ILocalExecutor* localExecutor |
| 17 | ) const { |
| 18 | Y_UNUSED(localExecutor); |
| 19 | return MakeHolder<TExternalFloatValuesHolder>( |
| 20 | GetId(), |
| 21 | SrcData->CloneWithNewSubsetIndexing(cloningParams.SubsetIndexing), |
| 22 | QuantizedFeaturesInfo |
| 23 | ); |
| 24 | } |
| 25 | |
| 26 | IDynamicBlockIteratorBasePtr TExternalFloatValuesHolder::GetBlockIterator(ui32 offset) const { |
| 27 | const auto floatFeatureIdx = QuantizedFeaturesInfo->GetPerTypeFeatureIdx<EFeatureType::Float>(*this); |
no test coverage detected