【发布时间】:2021-07-06 06:53:18
【问题描述】:
我有两个函数导致我的程序出现瓶颈。这是一个基于图的组合优化问题,通过计算每个位串的能量来计算平均能量。
目前,我正在将函数 mwis_objective 映射到整个位串列表。找到elsewhere on stackexchange最好的方法,我已经用过了!
状态向量作为字典传递,但随后被转换为两个 numpy 数组。延迟不是来自这个,而是 mwis_objective 函数本身,尤其是其中的两个 for 循环。
我认为可能还有更好的方法来使用字典,但我对此不太确定:传递 G.edges() 和 G.nodes 的列表是否会加快速度?
不幸的是,它是更广泛程序的一部分,所以我不能使用多线程或类似的东西。
下面是代码:
def compute_mwis_energy_sv(counts, G):
'''
Computes objective value from an inputted dictionary of amplitudes and bit strings and Graph
Optimised using function mapping from https://stackoverflow.com/questions/14372613/efficient-creation-of-numpy-arrays-from-list-comprehension-and-in-general/14372746#14372746
'''
bit_strings = list(counts.keys())
amplitudes = np.array(list(counts.values()))
number_of_mwis_values = len(bit_strings)
objective_values =np.fromiter((mwis_objective(bit_string,G) for bit_string in bit_strings),float,number_of_mwis_values)
probabilities = np.abs(amplitudes)**2
objective = np.sum(probabilities * objective_values)
return objective
def mwis_objective(x,G):
'''
Takes in networkx graph G and a bit string x from the Qasm output and calculates the < psi | C | psi >
Need to take note of the order of the bit string.
'''
array_of_x = np.array(list(x), dtype=int) # this takes the bit string 1001 to a numpy array for faster access
# getting the maximum weight of nodes
node_weights = G.nodes(data='node_weight') # this is how the node weight is stored in my graph attributes
just_weights = np.array([weight[1] for weight in node_weights]) #gets just the node weight and converts it to a np array
scale = np.amax(just_weights) # gets the maximum weight so the node weights are
scaled_weights = just_weights/scale # used as J_i,j must be greater than weight of node; all node weights are scaled to below 0 and J_ij is put as 2
objective = 0
for i,j in G.edges(): # independent set
if array_of_x[i] == 1 and array_of_x[j]==1: # interconnecting nodes are in the same set
objective += 2
for i in G.nodes():
if array_of_x[i] == 1:
objective -=scaled_weights[i]
return objective
这就是典型的 counts 字典的样子,以及生成我用来完成的图表的 networkx 函数:
counts = {'000': (0.3357980114755203-0.3765264103419055j), '001': (-0.45109872283358193+0.08796189074046101j), '010': (0.10490787465961775+0.04222801037227937j), '011': (-0.1929723237399522-0.01534995215062387j), '100': (-0.4510987228335819+0.08796189074046087j), '101': (-0.08891853199461548-0.4236712656325255j), '110': (-0.19297232373995227-0.015349952150623658j), '111': (-0.14362094081740967-0.1650614674350345j)}
def weighted_path_graph(number_of_nodes,graph_weights):
"""
Creates a weighted path graph of default length three with different weights
Graph_weights is a list with the desired node weights
"""
path = nx.path_graph(number_of_nodes)
graph_weights=[1,3,1]
for i in range(0,number_of_nodes):
path.nodes[i]["node_weight"] = graph_weights[i]
return path
编辑:
我找到了一种方法来矢量化目标函数的底部,但仍然停留在边缘列表部分。
weights_to_subtract = array_of_x * scaled_weights
total_weight = np.sum(weights_to_subtract)
objective = objective - total_weight
【问题讨论】: