|
| virtual int64 | GetRowCount ()=0 |
| | Returns the number of rows in the tensor data. More...
|
| |
| virtual void | SetValues (const float *buffer, int64 bufferCount)=0 |
| | Sets the data of the tensor, specified in row major order. More...
|
| |
| virtual void | ZeroData ()=0 |
| | Zeros out all tensor data. More...
|
| |
| virtual const char * | GetName () const =0 |
| | Returns the name of the graph node. More...
|
| |
| virtual int | GetOutputDimension () const =0 |
| | Returns the dimension of a single row of this node's output. The Output property's length will be a multiple of this value. More...
|
| |
| virtual ObjectPtr< IMatrix > | Execute ()=0 |
| | Synchronously execute the graph. The returned matrix is read-only. More...
|
| |
| virtual ObjectPtr< IMatrix > | GetLastExecutionResult ()=0 |
| | Get the results of last execution of the graph. The returned matrix is read-only. More...
|
| |
| virtual ObjectId | GetId () const =0 |
| | Returns the ID of this object. More...
|
| |
| virtual void | AddRef () const =0 |
| | Increments the internal reference count on this object. It is not common to use this method directly. More...
|
| |
| virtual void | Release () const =0 |
| | Decrements the internal reference count on this object. It is not common to use this method directly. More...
|
| |
| virtual int | GetRefCount () const =0 |
| | Returns the number of references to this object. More...
|
| |
| virtual void * | QueryInterface (ObjectClassId id)=0 |
| | Queries the object for an interface and returns a pointer to that interface if found. More...
|
| |
| void | operator= (IObject const &x)=delete |
| |
Input node into the AI graph. Allows for specifying a tensor input.