Class TensorsInfo
Definition
- Assembly:
- Tizen.MachineLearning.Inference.dll
The TensorsInfo class manages each Tensor information such as Name, Type and Dimension.
C#
Copy
public class TensorsInfo : IDisposable, IEquatable<TensorsInfo>
- Inheritance
-
objectTensors
Info
- Implements
-
System.
IDisposable System.IEquatable<T><TensorsInfo >
Constructors
Declaration
C#
Copy
public TensorsInfo()
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the feature is not supported. |
Properties
Declaration
C#
Copy
public int Count { get; }
Property Value
Type | Description |
---|---|
int |
Methods
AddTensorInfo(string, TensorType, int[])
Add a Tensor information to the TensorsInfo instance. Note that we support up to 16 tensors in TensorsInfo.
Declaration
C#
Copy
public void AddTensorInfo(string name, TensorType type, int[] dimension)
Parameters
Type | Name | Description |
---|---|---|
string | name | Name of Tensor. |
Tensor |
type | Data element type of Tensor. |
int[] | dimension | Dimension of Tensor. Note that we support up to 4th ranks. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the number of Tensor already exceeds the size limits (i.e. Tensor.SizeLimit) |
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
AddTensorInfo(TensorType, int[])
Add a Tensor information to the TensorsInfo instance. Note that we support up to 16 tensors in TensorsInfo.
Declaration
C#
Copy
public void AddTensorInfo(TensorType type, int[] dimension)
Parameters
Type | Name | Description |
---|---|---|
Tensor |
type | Data element type of Tensor. |
int[] | dimension | Dimension of Tensor. Note that we support up to 4th ranks. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the number of Tensor already exceeds the size limits (i.e. Tensor.SizeLimit) |
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public void Dispose()
Dispose(bool)
Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
Declaration
C#
Copy
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | Object to compare |
Returns
Type | Description |
---|---|
bool | True if the given object is the same object or its contents are the same |
Overrides
Declaration
C#
Copy
public bool Equals(TensorsInfo other)
Parameters
Type | Name | Description |
---|---|---|
Tensors |
other | TensorsInfo instance to compare |
Returns
Type | Description |
---|---|
bool | True if the given object is the same object or its contents are the same |
Declaration
C#
Copy
protected ~TensorsInfo()
Declaration
C#
Copy
public int[] GetDimension(int idx)
Parameters
Type | Name | Description |
---|---|---|
int | idx | The index of the tensor. |
Returns
Type | Description |
---|---|
int[] | The tensor dimension. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | The hash code |
Overrides
Declaration
C#
Copy
public string GetTensorName(int idx)
Parameters
Type | Name | Description |
---|---|---|
int | idx | The index of the tensor. |
Returns
Type | Description |
---|---|
string | The tensor name |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public TensorsData GetTensorsData()
Returns
Type | Description |
---|---|
Tensors |
TensorsData instance |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to TensorsInfo's information is invalid. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public int GetTensorSize(int idx)
Parameters
Type | Name | Description |
---|---|---|
int | idx | The index of the tensor information in the list |
Returns
Type | Description |
---|---|
int | The byte size of tensor |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public TensorType GetTensorType(int idx)
Parameters
Type | Name | Description |
---|---|---|
int | idx | The index of the tensor. |
Returns
Type | Description |
---|---|
Tensor |
The tensor type |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public void SetDimension(int idx, int[] dimension)
Parameters
Type | Name | Description |
---|---|---|
int | idx | The index of the tensor to be updated. |
int[] | dimension | The tensor dimension to be set. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public void SetTensorName(int idx, string name)
Parameters
Type | Name | Description |
---|---|---|
int | idx | The index of the tensor to be updated. |
string | name | The tensor name to be set. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |
Declaration
C#
Copy
public void SetTensorType(int idx, TensorType type)
Parameters
Type | Name | Description |
---|---|---|
int | idx | The index of the tensor to be updated. |
Tensor |
type | The tensor type to be set. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the feature is not supported. |