Skip to content

set_compute_device_paramSetComputeDeviceParamSetComputeDeviceParamset_compute_device_paramT_set_compute_device_paramπŸ”—

Short descriptionπŸ”—

set_compute_device_paramSetComputeDeviceParamSetComputeDeviceParamset_compute_device_paramT_set_compute_device_param β€” Set parameters of an compute device.

SignatureπŸ”—

set_compute_device_param( compute_device DeviceHandle, string GenParamName, string GenParamValue )void SetComputeDeviceParam( const HTuple& DeviceHandle, const HTuple& GenParamName, const HTuple& GenParamValue )static void HOperatorSet.SetComputeDeviceParam( HTuple deviceHandle, HTuple genParamName, HTuple genParamValue )def set_compute_device_param( device_handle: HHandle, gen_param_name: str, gen_param_value: MaybeSequence[Union[str, int, float]] ) -> None

Herror T_set_compute_device_param( const Htuple DeviceHandle, const Htuple GenParamName, const Htuple GenParamValue )

void HComputeDevice::SetComputeDeviceParam( const HString& GenParamName, const HTuple& GenParamValue ) const

void HComputeDevice::SetComputeDeviceParam( const HString& GenParamName, const HString& GenParamValue ) const

void HComputeDevice::SetComputeDeviceParam( const char* GenParamName, const char* GenParamValue ) const

void HComputeDevice::SetComputeDeviceParam( const wchar_t* GenParamName, const wchar_t* GenParamValue ) const (Windows only)

void HComputeDevice.SetComputeDeviceParam( string genParamName, HTuple genParamValue )

void HComputeDevice.SetComputeDeviceParam( string genParamName, string genParamValue )

DescriptionπŸ”—

set_compute_device_paramSetComputeDeviceParam sets parameters of the compute device DeviceHandledeviceHandledevice_handle for the current HALCON thread.

The following parameters can be set:

  • 'alloc_pinned'"alloc_pinned" If 'true'"true", the output image matrices of all operators (executed on the compute device or not) called in the current HALCON thread are created in page locked (so called β€˜pinned’) memory. This accelerates the transfer between host and device memory. However, too excessive usage of page locked memory may have a negative impact on overall system performance. You should activate page locked memory allocation if the output image of of the next operator call is to be transferred to the device. Page locked memory allocation should be deactivated for all operator calls whose output images are not required on the compute device (see example).

    List of values: 'true'"true", 'false'"false".

    Default: 'true'"true".

  • 'asynchronous_execution'"asynchronous_execution" If 'true'"true", operators executed on the compute device do not wait for the device computations to finish but return after initiating the computations. All device computations are synchronized as soon as the output of a compute device operation is used on the CPU (e.g., by disp_imageDispImage).

    List of values: 'true'"true", 'false'"false".

    Default: 'true'"true".

  • 'buffer_cache_capacity'"buffer_cache_capacity" Maximum size (in bytes) of the compute device buffer cache.

    Default: 1/3 of the available device memory

  • 'image_cache_capacity'"image_cache_capacity" Maximum size (in bytes) of the compute device image cache.

    Default: 1/3 of the available device memory

  • 'pinned_mem_cache_capacity'"pinned_mem_cache_capacity" Maximum size (in bytes) of the page locked (pinned) memory cache.

    Default: 3200000032000000 (32MByte)

Execution informationπŸ”—

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: local (may only be called from the same thread in which the window, model, or tool instance was created).

  • Processed without parallelization.

ParametersπŸ”—

DeviceHandledeviceHandledevice_handle (input_control) compute_device β†’ (handle)HTuple (HHandle)HComputeDevice, HTuple (IntPtr)HHandleHtuple (handle)

Compute device handle.

GenParamNamegenParamNamegen_param_name (input_control) string β†’ (string)HTuple (HString)HTuple (string)strHtuple (char*)

Name of the parameter to set.

Default: 'buffer_cache_capacity'"buffer_cache_capacity"
List of values: 'alloc_pinned', 'asynchronous_execution', 'buffer_cache_capacity', 'image_cache_capacity', 'pinned_mem_cache_capacity'"alloc_pinned", "asynchronous_execution", "buffer_cache_capacity", "image_cache_capacity", "pinned_mem_cache_capacity"

GenParamValuegenParamValuegen_param_value (input_control) string(-array) β†’ (string / integer / real)HTuple (HString / Hlong / double)HTuple (string / int / long / double)MaybeSequence[Union[str, int, float]]Htuple (char* / Hlong / double)

New parameter value.

ExampleπŸ”—

(HDevelop)

activate_compute_device (DeviceHandle)
read_image (Image, 'fuse')
set_compute_device_param (DeviceHandle, 'alloc_pinned', 'true')
* filter on compute device, output image is page locked
derivate_gauss (Image, DerivGauss, 3, 'gradient')
* filter result on the CPU, output image should not be page locked
set_compute_device_param (DeviceHandle, 'alloc_pinned', 'false')
median_image (DerivGauss, ImageMedian, 'circle', 1, 'mirrored')

ResultπŸ”—

The operator set_compute_device_paramSetComputeDeviceParam returns the value 2 (H_MSG_TRUE) if the parameters are correct. Otherwise an exception will be raised.

Combinations with other operatorsπŸ”—

Combinations

Possible predecessors

activate_compute_deviceActivateComputeDevice

See also

get_compute_device_paramGetComputeDeviceParam

ModuleπŸ”—

Foundation