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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ