3 writes to Name
Microsoft.ML.OnnxConverter (3)
OnnxMl.cs (2)
1103
Name
= other.Name;
1133
Name
= input.ReadString();
OnnxUtils.cs (1)
56
value.
Name
= name;
15 references to Name
Microsoft.ML.OnnxConverter (10)
OnnxMl.cs (10)
1021
if (
Name
!= other.
Name
) return false;
1031
if (
Name
.Length != 0) hash ^=
Name
.GetHashCode();
1050
if (
Name
.Length != 0)
1053
output.WriteString(
Name
);
1075
if (
Name
.Length != 0)
1077
size += 1 + pb::CodedOutputStream.ComputeStringSize(
Name
);
1101
if (other.
Name
.Length != 0)
1103
Name = other.
Name
;
Microsoft.ML.Tests (5)
OnnxConversionTest.cs (5)
1630
string[] inputNames = onnxModel.Graph.Input.Select(valueInfoProto => valueInfoProto.
Name
).ToArray();
1631
string[] outputNames = onnxModel.Graph.Output.Select(valueInfoProto => valueInfoProto.
Name
).ToArray();
1740
Assert.Equal("Target1.output", model.Graph.Output[0].
Name
);
1800
string[] inputNames = onnxProtoBufModel.Graph.Input.Select(valueInfoProto => valueInfoProto.
Name
).ToArray();
1801
string[] outputNames = onnxProtoBufModel.Graph.Output.Select(valueInfoProto => valueInfoProto.
Name
).ToArray();