Constructor Trilu
Trilu(string, string, TriluMode)
Initializes and returns an instance of Trilu layer with no k offset value.
Declaration
public Trilu(string name, string input, TriluMode mode)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name to use for the output tensor of the layer. |
| string | input | The name to use for the input tensor of the layer. |
| TriluMode | mode | The lower or upper mode for the operation. |
Trilu(string, string, string, TriluMode)
Initializes and returns an instance of Trilu layer with k offset value.
Declaration
public Trilu(string name, string input, string k, TriluMode mode)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name to use for the output tensor of the layer. |
| string | input | The name to use for the input tensor of the layer. |
| string | k | The name to use for the scalar k offset tensor of the layer. |
| TriluMode | mode | The lower or upper mode for the operation. |