NVIDIA Iray API Home  Up
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
mi::neuraylib::ICluster_manager_node Class Referenceabstract

Provides information about a node which is part of a node pool or reserved cluster. More...

Inheritance diagram for mi::neuraylib::ICluster_manager_node:
Inheritance graph
[legend]

Public Member Functions

virtual const char *  get_node_name ()=0
  Returns the node name of the node. More...
 
virtual const char *  get_ip_address ()=0
  Returns the IP address of the node. More...
 
virtual const char *  get_user_name ()=0
  Returns the name of a user which has currently reserved the node, or NULL if the node is free. More...
 
virtual Size  get_cpu_count ()=0
  Returns the number of CPU cores installed in the node. More...
 
virtual Float32  get_cpu_load ()=0
  Returns the current CPU load on the node in percent. More...
 
virtual Size  get_total_main_memory ()=0
  Returns the total amount of main memory in bytes on the node. More...
 
virtual Size  get_free_main_memory ()=0
  Returns the amount of free main memory in bytes on the node. More...
 
virtual Size  get_gpu_count ()=0
  Returns the number of GPUs installed in the node. More...
 
virtual Float32  get_gpu_load ()=0
  Returns the current GPU load on the node in percent. More...
 
virtual Size  get_total_gpu_memory ()=0
  Returns the total amount of GPU memory (per GPU). More...
 
virtual Size  get_free_gpu_memory ()=0
  Returns the amount of free GPU memory (per GPU). More...
 

Additional Inherited Members

- Public Types inherited from mi::base::Interface_declare< 0x6b1cbc68, 0x3af1, 0x4a56, 0x83, 0x68, 0x00, 0x13, 0xd4, 0xec, 0xc2, 0xfa >
typedef Interface_declare< id1,
id2, id3, id4, id5, id6, id7,
id8, id9, id10, id11,
IInterface
Self
  Own type. More...
 
typedef Uuid_t< id1, id2, id3,
id4, id5, id6, id7, id8, id9,
id10, id11 > 
IID
  Declares the interface ID (IID) of this interface. More...
 
- Static Public Member Functions inherited from mi::base::Interface_declare< 0x6b1cbc68, 0x3af1, 0x4a56, 0x83, 0x68, 0x00, 0x13, 0xd4, 0xec, 0xc2, 0xfa >
static bool  compare_iid (const Uuid &iid)
  Compares the interface ID iid against the interface ID of this interface and of its ancestors. More...
 

Detailed Description

Provides information about a node which is part of a node pool or reserved cluster.

See Also
mi::neuraylib::ICluster_manager_cluster::get_cluster_node(), mi::neuraylib::ICluster_pool_information::get_node()

Member Function Documentation

virtual Size mi::neuraylib::ICluster_manager_node::get_cpu_count ( )
pure virtual

Returns the number of CPU cores installed in the node.

virtual Float32 mi::neuraylib::ICluster_manager_node::get_cpu_load ( )
pure virtual

Returns the current CPU load on the node in percent.

virtual Size mi::neuraylib::ICluster_manager_node::get_free_gpu_memory ( )
pure virtual

Returns the amount of free GPU memory (per GPU).

This is an average over all installed GPUs. The assumption is that all GPUs have the same amount of memory and GPU memory usage is equal on all GPUs.

virtual Size mi::neuraylib::ICluster_manager_node::get_free_main_memory ( )
pure virtual

Returns the amount of free main memory in bytes on the node.

virtual Size mi::neuraylib::ICluster_manager_node::get_gpu_count ( )
pure virtual

Returns the number of GPUs installed in the node.

virtual Float32 mi::neuraylib::ICluster_manager_node::get_gpu_load ( )
pure virtual

Returns the current GPU load on the node in percent.

This is an average over all installed GPUs.

virtual const char* mi::neuraylib::ICluster_manager_node::get_ip_address ( )
pure virtual

Returns the IP address of the node.

virtual const char* mi::neuraylib::ICluster_manager_node::get_node_name ( )
pure virtual

Returns the node name of the node.

virtual Size mi::neuraylib::ICluster_manager_node::get_total_gpu_memory ( )
pure virtual

Returns the total amount of GPU memory (per GPU).

The assumption is that all GPUs have the same amount of memory.

virtual Size mi::neuraylib::ICluster_manager_node::get_total_main_memory ( )
pure virtual

Returns the total amount of main memory in bytes on the node.

virtual const char* mi::neuraylib::ICluster_manager_node::get_user_name ( )
pure virtual

Returns the name of a user which has currently reserved the node, or NULL if the node is free.