Error running a large matrix on Amazon Braket with D-wave

0

I'm running a size matrix (419x419) as QUBO in Amazon Braket to find a solution using 'braket.ocean_plugin' ('BraketSampler') and dwave.system.composites'.However, when running for about 15 minutes, the error message appears: ValueError: no embedding found. The link of an image with the complete error: Link

Could someone help me understand what is happening and how this error could be resolved? I appreciate all the help.

已提問 2 年前檢視次數 275 次
1 個回答
0

The embedding composite from dwave.system.composites uses a heuristic algorithm to attempt to find an embedding, which maps logical qubits in the problem to sets of physical qubits on the target processor. For the Advantage system QPUs from D-Wave, it is not possible to find an embedding for a fully connected problem (like would be created from a matrix with no zero entries) that is larger than about 120 qubits. If a larger problem is submitted, the composite will continually try to find an embedding without succeeding until it gives up.

If your problem has many zeros in the matrix, then it may be possible that the embedding composite is able to find an embedding if the zeros are removed from the problem first. If there are no zeros left in the problem and the embedding is still failing, then you will need to use a hybrid method, such as qbsolv, to decompose the problem into smaller subproblems.

AWS
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南