示例#1
0
    def get_matrix_and_derivatives(self, x):
        """Produces the circuit matrix and partials for this gate."""
        alpha, l = self.partition_input(x)
        l = utils.softmax(l, 10)

        Hv = []

        stride = self.working_sigmav.shape[1]
        for i in range(self.working_sigmav.shape[0]):
            Hv.append(
                utils.dot_product(alpha[i * stride:(i + 1) * stride],
                                  self.working_sigmav[i]))

        H = utils.dot_product(l, Hv)

        # Partials of H with respect to function variables
        alpha_der = np.array([
            l[i] * self.working_sigmav[i]
            for i in range(self.get_location_count())
        ])
        alpha_der = alpha_der.reshape(
            (-1, alpha_der.shape[-2], alpha_der.shape[-1]))

        # Partials of H with respect to location variables
        L = np.tile(l, (self.working_sigmav.shape[0], 1))
        L = np.identity(self.working_sigmav.shape[0]) - L
        L = 10 * (np.diag(l) @ L)

        l_der = np.array([utils.dot_product(Lr, Hv) for Lr in L])

        _, dav = utils.dexpmv(H, alpha_der)
        _, dlv = utils.dexpmv(H, l_der)

        return sp.linalg.expm(H), np.concatenate([dav, dlv])
示例#2
0
    def test_dexpmv_single(self):
        n = 2
        paulis = get_norder_paulis(n)
        H = dot_product(np.random.random(4**n), paulis)

        for p in paulis:
            F0, dF0 = dexpm_exact(H, p)
            F1, dF1 = dexpmv(H, p)

            self.assertTrue(np.allclose(F0, F1))
            self.assertTrue(np.allclose(dF0, dF1))
示例#3
0
文件: fixedgate.py 项目: BQSKit/qfast
    def get_matrix_and_derivatives ( self, x ):
        """Produces the circuit matrix and partials for this gate."""
        H = utils.dot_product( x, self.sigmav )
        P = self.perm_matrix
        U = np.kron( sp.linalg.expm( H ), self.I )
        PUP = P @ U @ P.T

        _, dav = utils.dexpmv( H, self.sigmav )
        dav = np.kron( dav, self.I )
        dav = P @ dav @ P.T
        return PUP, dav
示例#4
0
    def test_dexpmv_vector(self):
        n = 2
        paulis = get_norder_paulis(n)
        H = dot_product(np.random.random(4**n), paulis)

        dFs0 = []
        for p in paulis:
            _, dF = dexpm_exact(H, p)
            dFs0.append(dF)

        dFs0 = np.array(dFs0)

        _, dFs1 = dexpmv(H, paulis)

        self.assertTrue(np.allclose(dFs0, dFs1))
示例#5
0
    def get_matrix_and_derivatives ( self, x ):
        """Produces the circuit matrix and partials for this gate."""
        alpha, l = self.partition_input( x )
        l = utils.softmax( l, 10 )

        H = utils.dot_product( alpha, self.sigmav )
        P = utils.dot_product( l, self.working_perms )
        U = np.kron( sp.linalg.expm( H ), self.I )
        PU = P @ U
        UP = U @ P.T
        PUP =  PU @ P.T

        _, dav = utils.dexpmv( H, self.sigmav )
        dav = np.kron( dav, self.I )
        dav = P @ dav @ P.T
        dlv = self.working_perms @ UP + PU @ self.working_perms.transpose( ( 0, 2, 1 ) ) - 2*PUP
        dlv = np.array( [ x*y for x, y in zip( 10*l, dlv ) ] )
        return PUP, np.concatenate( [ dav, dlv ] )
示例#6
0
 def get_matrix_and_derivatives ( self, x ):
     """Produces the circuit matrix and partials for this gate."""
     H = utils.dot_product( x, self.sigmav )
     return utils.dexpmv( H, self.sigmav )