25 references to MarshalInvoke
Microsoft.ML.Data (17)
Data\Conversion.cs (1)
576return Utils.MarshalInvoke(_getKeyParseMethodInfo, this, key.RawType, key);
Data\DataViewUtils.cs (1)
1244return Utils.MarshalInvoke(_createGetterMethodInfo, this, Schema[col].Type.RawType, col);
DataLoadSave\Database\DatabaseLoaderCursor.cs (1)
173return Utils.MarshalInvoke(_createGetterDelegateMethodInfo, this, _bindings.Infos[col].ColType.RawType, col);
DataLoadSave\Text\TextLoaderParser.cs (4)
81return Utils.MarshalInvoke(_getCreatorOneCoreMethodInfo, this, type.RawType, type); 94return Utils.MarshalInvoke(_getCreatorVecCoreMethodInfo, this, type.RawType, type); 108return Utils.MarshalInvoke(_getCreatorOneCoreMethodInfo, this, key.RawType, key); 114return Utils.MarshalInvoke(_getCreatorVecCoreMethodInfo, this, key.RawType, key);
DataLoadSave\Transpose\TransposeLoader.cs (1)
653return Utils.MarshalInvoke(_getSlotCursorCoreMethodInfo, this, cursorType.RawType, inputCursor);
DataView\AppendRowsDataView.cs (1)
184return Utils.MarshalInvoke(_createTypedGetterMethodInfo, this, colType.RawType, col);
DataView\CacheDataView.cs (1)
1221return Utils.MarshalInvoke(_createGetterDelegateMethodInfo, this, Schema[col].Type.RawType, col);
DataView\DataViewConstructionUtils.cs (1)
302return Utils.MarshalInvoke(del, this, genericType, peek);
DataView\Transposer.cs (2)
250return Utils.MarshalInvoke(_getSlotCursorCoreMethodInfo, this, type, col); 1452return Utils.MarshalInvoke(_getRowCursorMethodInfo, this, _type.GetItemType().RawType, hasZero);
Scorers\MulticlassClassificationScorer.cs (1)
145_getter = Utils.MarshalInvoke(_decodeInitMethodInfo, this, _type.ItemType.RawType, value);
Transforms\ColumnConcatenatingTransformer.cs (2)
678return Utils.MarshalInvoke(_makeIdentityGetterMethodInfo, this, OutputType.RawType, input); 680return Utils.MarshalInvoke(_makeGetterMethodInfo, this, OutputType.ItemType.RawType, input);
Transforms\RowShufflingTransformer.cs (1)
680return Utils.MarshalInvoke(_createGetterDelegateMethodInfo, this, Schema[col].Type.RawType, col);
Microsoft.ML.Parquet (1)
PartitionedFileLoader.cs (1)
590getters[i] = Utils.MarshalInvoke(_createSubGetterDelegateCoreMethodInfo, this, type.RawType, i);
Microsoft.ML.TorchSharp (3)
AutoFormerV2\ObjectDetectionTrainer.cs (1)
756var getter = Microsoft.ML.Internal.Utilities.Utils.MarshalInvoke(_makeLabelAnnotationGetter, this, keyType.ItemType.RawType, _parent.LabelColumn);
NasBert\NasBertTrainer.cs (2)
521var getter = Microsoft.ML.Internal.Utilities.Utils.MarshalInvoke(_makeLabelAnnotationGetter, this, keyType.ItemType.RawType, Parent.LabelColumn); 543var getter = Microsoft.ML.Internal.Utilities.Utils.MarshalInvoke(_makeLabelAnnotationGetter, this, keyType.ItemType.RawType, Parent.LabelColumn);
Microsoft.ML.Transforms (4)
MissingValueReplacing.cs (1)
395return Utils.MarshalInvoke(_getIsNADelegateMethodInfo, this, type.GetItemType().RawType, type);
OptionalColumnTransform.cs (2)
413return Utils.MarshalInvoke(_makeGetterVecMethodInfo, this, vectorType.ItemType.RawType, vectorType.Size); 501return Utils.MarshalInvoke(_makeGetterVecMethodInfo, this, vectorType.ItemType.RawType, vectorType.Size);
UngroupTransform.cs (1)
507var sizeGetter = Utils.MarshalInvoke(_makeSizeGetterMethodInfo, this, rawItemType, info.Index);