amplify.client.NECClientParameters

class NECClientParameters

A parameter class of NEC SAC service client.

__init__(*args, **kwargs)

Methods

__init__(*args, **kwargs)

Attributes

beta_list

The list of the beta values in each sweeps of VA.

beta_range

The beta parameter of VA in the form of [start, end, steps].

dense

The matrix mode of VA.

num_reads

The number of sampling.

num_results

The number of results to be returned.

num_sweeps

The number of sweeps in VA annealing.

timeout

The timeout value of job execution.

ve_num

The number of VEs used in VA annealing.

vector_mode

The annealing mode of VA.

property beta_list

The list of the beta values in each sweeps of VA.

Type:

list[float]

property beta_range

The beta parameter of VA in the form of [start, end, steps].

Type:

list

property dense

The matrix mode of VA. If set to True, VA will be executed in dense matrix mode. If set to False, it will be executed in sparse matrix mode. If set to None, matrix mode is automatically determined according to the density of QUBO.

Type:

bool

property num_reads

The number of sampling. It should be set to an integer value between 1 and 20. If it is not specified, the default value of 1 will be used.

Type:

int

property num_results

The number of results to be returned. If set to 1 or None, only the best result will be returned. If set to the same value as num_reads, all results well be returned.

Type:

int

property num_sweeps

The number of sweeps in VA annealing. It should be set to an integer value between 1 and 100000. If it is not specified, the default value of 500 will be used.

Type:

int

property timeout

The timeout value of job execution.

Type:

str

property ve_num

The number of VEs used in VA annealing.

Type:

str

property vector_mode

The annealing mode of VA. speed or accuracy can be set. If set to speed, VA will be executed in speed priority mode. If set to accuracy, it will be executed in accuracy priority mode. If it is not specified, the default value is accuracy.

Type:

str