23 references to MarshalInvoke
Microsoft.ML.Data (14)
Commands\TypeInfoCommand.cs (1)
95
var info = Utils.
MarshalInvoke
(_kindReportMethodInfo, this, types[i].RawType, ch, types[i]);
Data\DataViewUtils.cs (1)
542
Utils.
MarshalInvoke
(_createInPipeMethodInfo, this, column.Type.RawType, input, activeToCol[c]);
DataDebuggerPreview.cs (1)
48
setters[i] = Utils.
MarshalInvoke
(_makeSetterMethodInfo, this, data.Schema[i].Type.RawType, cursor, i);
DataLoadSave\Binary\BinarySaver.cs (1)
895
value = Utils.
MarshalInvoke
(_loadValueMethodInfo, this, type.RawType, stream, codec);
DataView\DataViewConstructionUtils.cs (1)
290
return Utils.
MarshalInvoke
(_createKeyGetterDelegateMethodInfo, this, keyRawType, peek, colType);
Prediction\Calibrator.cs (1)
703
getters[column.Index] = Utils.
MarshalInvoke
(_getPredictorGetterMethodInfo, this, type.RawType, predictorRow, column.Index);
Scorers\FeatureContributionCalculation.cs (1)
211
return Utils.
MarshalInvoke
(_getValueGetterMethodInfo, this, typeSrc.RawType, input, colSrc);
Transforms\FeatureContributionCalculationTransformer.cs (1)
210
return Utils.
MarshalInvoke
(_getValueGetterMethodInfo, this, _featureColumnType.RawType, input, ColMapNewToOld[iinfo]);
Transforms\SlotsDroppingTransformer.cs (2)
787
return Utils.
MarshalInvoke
(_makeVecGetterMethodInfo, this, vectorType.ItemType.RawType, input, iinfo);
821
return Utils.
MarshalInvoke
(_getSrcGetterMethodInfo, this, typeDst.RawType, row, iinfo);
Transforms\TransformBase.cs (1)
708
return Utils.
MarshalInvoke
(_getSrcGetterMethodInfo, this, typeDst.RawType, row, iinfo);
Transforms\ValueToKeyMappingTransformer.cs (1)
762
return Utils.
MarshalInvoke
(_makeGetterMethodInfo, this, type.RawType, input, iinfo);
Transforms\ValueToKeyMappingTransformerImpl.cs (2)
1100
TypedMap.ItemType.GetKeyCountAsInt32(_host) == 0 || !Utils.
MarshalInvoke
(_addMetadataCoreMethodInfo, this, srcMetaType.ItemType.RawType, srcMetaType.ItemType, builder))
1181
TypedMap.ItemType.GetKeyCountAsInt32(_host) == 0 || !Utils.
MarshalInvoke
(_writeTextTermsCoreMethodInfo, this, srcMetaType.ItemType.RawType, srcMetaType.ItemType, writer))
Microsoft.ML.Parquet (1)
PartitionedFileLoader.cs (1)
595
getters[i] = Utils.
MarshalInvoke
(_createGetterDelegateCoreMethodInfo, this, type.RawType, idx, type);
Microsoft.ML.Transforms (8)
HashJoiningTransform.cs (1)
493
return Utils.
MarshalInvoke
(mi, this, itemType.RawType, input, iinfo);
MissingValueDroppingTransformer.cs (1)
223
return Utils.
MarshalInvoke
(_makeVecGetterMethodInfo, this, _srcTypes[iinfo].GetItemType().RawType, input, iinfo);
MissingValueIndicatorTransformer.cs (2)
250
=> Utils.
MarshalInvoke
(_composeGetterOneMethodInfo, this, _infos[iinfo].InputType.RawType, input, iinfo);
272
=> Utils.
MarshalInvoke
(_composeGetterVecMethodInfo, this, _infos[iinfo].InputType.GetItemType().RawType, input, iinfo);
MissingValueReplacing.cs (3)
362
slotIsDefault[slot] = Utils.
MarshalInvoke
(_computeDefaultSlotsMethodInfo, this, types[slot].GetItemType().RawType, types[slot], (Array)repValues[slot]);
637
=> Utils.
MarshalInvoke
(_composeGetterOneMethodInfo, this, _infos[iinfo].TypeSrc.RawType, input, iinfo);
663
=> Utils.
MarshalInvoke
(_composeGetterVecMethodInfo, this, _infos[iinfo].TypeSrc.GetItemType().RawType, input, iinfo);
OptionalColumnTransform.cs (1)
397
getters[iinfo] = Utils.
MarshalInvoke
(_getSrcGetterMethodInfo, this, _bindings.ColumnTypes[iinfo].GetItemType().RawType, input, iinfo);