Source code for sqaod.cpu.bipartite_graph_bf_searcher

from __future__ import print_function
import numpy as np
import sqaod
from sqaod.common.bipartite_graph_bf_searcher_base import BipartiteGraphBFSearcherBase
from . import cpu_bg_bf_searcher as cext


[docs]class BipartiteGraphBFSearcher(BipartiteGraphBFSearcherBase) : def __init__(self, b0, b1, W, optimize, dtype, prefdict) : self._cobj = cext.new(dtype) BipartiteGraphBFSearcherBase.__init__(self, cext, dtype, b0, b1, W, optimize, prefdict)
[docs]def bipartite_graph_bf_searcher(b0 = None, b1 = None, W = None, optimize = sqaod.minimize, dtype = np.float64, **prefs) : """ factory function for sqaod.cpu.BipartiteGraphAnnealer. Args: numpy.ndarray b0, b1, W : QUBO optimize : specify optimize direction, `sqaod.maximize or sqaod.minimize <preference.html#sqaod-maximize-sqaod-minimize>`_. prefs : `preference <preference.html>`_ as \*\*kwargs Returns: sqaod.cpu.BipartiteGraphBFSearcher: annealer instance """ return BipartiteGraphBFSearcher(b0, b1, W, optimize, dtype, prefs)
if __name__ == '__main__' : N0 = 14 N1 = 5 np.random.seed(0) W = np.random.random((N1, N0)) - 0.5 b0 = np.random.random((N0)) - 0.5 b1 = np.random.random((N1)) - 0.5 bf = bipartite_graph_bf_searcher(b0, b1, W) bf.set_preferences(tile_size_0=256, tile_size_1=256) bf.search() E = bf.get_E() x = bf.get_x() print(E.shape, E) print(x) print(bf.get_preferences())