算法中的Strassen矩阵乘法

Introduction

介绍

Strassen in 1969 which gives an overview that how we can find the multiplication of two 2*2 dimension matrix by the brute-force algorithm. But by using divide and conquer technique the overall complexity for multiplication two matrices is reduced. This happens by decreasing the total number if multiplication performed at the expenses of a slight increase in the number of addition.

Strassen在1969年概述了如何用蛮力算法找到两个2 * 2维矩阵的乘法。 但是通过使用分而治之技术,两个矩阵相乘的整体复杂度降低了。 如果以乘法数略有增加为代价执行乘法,则会通过减少总数来实现。

For multiplying the two 2*2 dimension matrices Strassen's used some formulas in which there are seven multiplication and eighteen addition, subtraction, and in brute force algorithm, there is eight multiplication and four addition. The utility of Strassen's formula is shown by its asymptotic superiority when order n of matrix reaches infinity. Let us consider two matrices A and B, n*n dimension, where n is a power of two. It can be observed that we can contain four n/2*n/2 submatrices from A, B and their product C. C is the resultant matrix of A and B.

为了将两个2 * 2维矩阵相乘, 斯特拉森使用了一些公式,其中有七个乘法和十八个加法,减法,在蛮力算法中,有八个乘法和四个加法。 Strassen公式的效用由矩阵阶数n达到无穷大时的渐近优越性表示。 让我们考虑两个矩阵ABn * n维,其中n是2的幂。 可以观察到,我们可以包含来自AB及其乘积C的四个n / 2 * n / 2个子矩阵。 CAB的合成矩阵。

Strassen矩阵乘法的过程 (Procedure of Strassen matrix multiplication)

There are some procedures:

有一些过程:

  1. Divide a matrix of order of 2*2 recursively till we get the matrix of 2*2.

    递归除以2 * 2的矩阵,直到得到2 * 2的矩阵。

  2. Use the previous set of formulas to carry out 2*2 matrix multiplication.

    使用前面的一组公式进行2 * 2矩阵乘法。

  3. In this eight multiplication and four additions, subtraction are performed.

    在这八个乘法和四个加法中,执行减法。

  4. Combine the result of two matrixes to find the final product or final matrix.

    合并两个矩阵的结果以找到最终乘积或最终矩阵。

Stassen矩阵乘法的公式 (Formulas for Stassen’s matrix multiplication)

In Strassen’s matrix multiplication there are seven multiplication and four addition, subtraction in total.

Strassen的矩阵乘法中,总共有七个乘法和四个加减法。

    1.	D1 =  (a11 + a22) (b11 + b22)
2.	D2 =  (a21 + a22).b11
3.	D3 =  (b12 – b22).a11
4.	D4 =  (b21 – b11).a22
5.	D5 =  (a11 + a12).b22
6.	D6 =  (a21 – a11) . (b11 + b12)
7.	D7 =  (a12 – a22) . (b21 + b22)
C11 = d1 + d4 – d5 + d7
C12 = d3 + d5
C21 = d2 + d4
C22 = d1 + d3 – d2 – d6

Strassen矩阵乘法的算法 (Algorithm for Strassen’s matrix multiplication)

Algorithm Strassen(n, a, b, d)

算法Strassen(n,a,b,d)

begin 
If n = threshold then compute
C = a * b is a conventional matrix.
Else
Partition a into four sub matrices  a11, a12, a21, a22.
Partition b into four sub matrices b11, b12, b21, b22.
Strassen ( n/2, a11 + a22, b11 + b22, d1)
Strassen ( n/2, a21 + a22, b11, d2)
Strassen ( n/2, a11, b12 – b22, d3)
Strassen ( n/2, a22, b21 – b11, d4)
Strassen ( n/2, a11 + a12, b22, d5)
Strassen (n/2, a21 – a11, b11 + b22, d6)
Strassen (n/2, a12 – a22, b21 + b22, d7)
C = d1+d4-d5+d7     d3+d5
d2+d4           d1+d3-d2-d6  
end if
return (C)
end.

Strassen矩阵乘法代码 (Code for Strassen matrix multiplication)

#include <stdio.h>
int main()
{
int a[2][2],b[2][2],c[2][2],i,j;
int m1,m2,m3,m4,m5,m6,m7;
printf("Enter the 4 elements of first matrix: ");
for(i=0;i<2;i++)
for(j=0;j<2;j++)
scanf("%d",&a[i][j]);
printf("Enter the 4 elements of second matrix: ");
for(i=0;i<2;i++)
for(j=0;j<2;j++)
scanf("%d",&b[i][j]);
printf("\nThe first matrix is\n");
for(i=0;i<2;i++)
{
printf("\n");
for(j=0;j<2;j++)
printf("%d\t",a[i][j]);
}
printf("\nThe second matrix is\n");
for(i=0;i<2;i++)
{
printf("\n");
for(j=0;j<2;j++)
printf("%d\t",b[i][j]);
}
m1= (a[0][0] + a[1][1])*(b[0][0]+b[1][1]);
m2= (a[1][0]+a[1][1])*b[0][0];
m3= a[0][0]*(b[0][1]-b[1][1]);
m4= a[1][1]*(b[1][0]-b[0][0]);
m5= (a[0][0]+a[0][1])*b[1][1];
m6= (a[1][0]-a[0][0])*(b[0][0]+b[0][1]);
m7= (a[0][1]-a[1][1])*(b[1][0]+b[1][1]);
c[0][0]=m1+m4-m5+m7;
c[0][1]=m3+m5;
c[1][0]=m2+m4;
c[1][1]=m1-m2+m3+m6;
printf("\nAfter multiplication using \n");
for(i=0;i<2;i++)
{
printf("\n");
for(j=0;j<2;j++)
printf("%d\t",c[i][j]);
}
return 0;
}

Output:

输出:

    Enter the 4 elements of first matrix:
5 6 1 7
Enter the 4 element of second matrix:
6 2 8 7
The first matrix  is
5       6
1       7
The second matrix is
6       2
8      7
After multiplication 
78         52
62         51

Complexity: The time complexity is O(N2.8074).

复杂度:时间复杂度为O(N 2.8074 )

翻译自: https://www.includehelp.com/algorithms/strassen-matrix-multiplication.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378934.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

零拷贝、mmap、sendfile

目录零拷贝mmapsendFile总结零拷贝 要了解零拷贝&#xff0c;首先得先了解一下传统 IO 的执行流程&#xff0c;这里举个例子&#xff0c;通过传统的 IO 进行网络传输来传输一个文件。 先上一张图&#xff0c;这张图就代表了传统 IO 传输文件的流程。 读取文件的时候&#xf…

网页服务器和mysql服务器_实现Web服务器之间使用同一个MYSQL和相同的网页配置文件的方法...

实现Web服务器之间使用同一个MYSQL和相同的网页配置文件的方法发布时间&#xff1a;2020-04-15 16:42:41来源&#xff1a;亿速云阅读&#xff1a;133作者&#xff1a;三月栏目&#xff1a;数据库亿速云负载均衡(Cloud Load Balancer)是对多台云服务器进行流量分发的服务。亿速云…

传128GB版iPad4售价为799/929美元

外媒9to5mac报道&#xff0c;苹果将推出一款升级版iPad4&#xff0c;外观和iPad 4相同&#xff0c;还是黑白两色的&#xff0c;只加入了新的SKU。 据报道&#xff0c;这款升级版iPad4还有128GB版&#xff0c;随着这条消息传出&#xff0c;不久关于128GB版iPad4的售价信息也传出…

(西工程-金花)小米路由器连接哆点设置WiFi保姆式教程

小米路由器连接电源,用根网线一端插入寝室的网口处,另一端插入小米路由器的WAN口手机或者电脑连接WiFi,我这里是通过手机浏览器打开192.168.31.1进入无线路由器管理页面进行配置小米路由器&#xff0c;配置WiFi的一些基本参数,例如:WiFi名称,密码之类的信息 进入无线路由器管理…

基于MINA框架快速开发网络应用程序

1&#xff0e;MINA框架简介 Netty、Mina、Cindy都是不错的NIO开源框架&#xff0c;后两者都是在Netty的基础上演化出来的。MINA(Multipurpose Infrastructure for Network Applications)是用于开发高性能和高可用性的网络应用程序的基础框架。通过使用MINA框架可以可以省下处理…

Python中@staticmethod和@classmethod之间的区别

classmethod装饰器 (The classmethod Decorator) The classmethod decorator is an inbuilt function decorator that gets evaluated after the function is defined. The result of the evaluation shadows the function definition. The classmethods first argument is alw…

go 声明二维数组_一篇文章了解Go语言中数组Arrays的使用内幕

概述与其他编程语言类似&#xff0c;Go语言也有数组array。Go语言中&#xff0c;数组的行为和其他语言没有什么不同.Go语言中还有一个叫做切片slice的东西&#xff0c;它就像是对数组的引用。在本文中&#xff0c;我们将只研究数组。定义数组是同一类型元素的连续集合&#xff…

ffmpeg 使用ffplay 进行 hls 拉流 分析 1

ffmpeg 使用 ffplay 进行 hls 拉流 分析 1 从使用ffplay 调用 http://192.168.1.100:8080/live/livestream.m3u8 开始&#xff0c;进入到ffmpeg 的分析使用的协议选择相应的解复用器的步骤。 其他协议或者文件方式的使用ffplay也是这个步骤流程的。 目录&#xff1a;一、流程图…

搜狗输入法输出特殊符号快捷键

https://www.petefreitag.com/cheatsheets/ascii-codes/ 参考上个编码网站大全 详细步骤为&#xff1a;alt长按 &#xff0b; 编码数字 例如&#xff1a;平方的编码为178-----长按alt178 即可&#xff0c;178是数字一个一个挨个按即可 常用的特殊符号如下&#xff1a; 平方&…

echo 12345678 | base64 产生的结果跟12345678真正的base64编码不对

echo "12345678" | base64 产生的结果跟"12345678"真正的base64编码不对 弄了好久才搞清楚&#xff0c;echo 命令是带换行符的&#xff0c;改成echo -n "12345678" | base64就没问题了转载于:https://www.cnblogs.com/senix/archive/2013/01/30/…

[BuildRelease Management]CC.NET架构

一 CC.NET的操作流程 1) 等待Trigger的唤醒&#xff1b; 2&#xff09;从Source Control System查询上次build以后的修改列表&#xff1b; 3&#xff09;如果任何修改被发现或是Trigger触发类型为 force the build &#xff1a; 3.1&#xff09;为build产生一个label number&a…

python 入门到实践期末考试常出现的考试内容_Python编程入门到实践—列表篇(一)...

一、列表是什么&#xff1f;列表由一系列按特定顺序排列的元素组成。可以创建包含字母表中所有字母、数字0-9或所有家庭成员姓名的列表&#xff1b;也可以将任何东西加入列表中&#xff0c;其中的元素之间可以没有任何关系。列表通常包含多个元素&#xff0c;给列表指定一个表示…

c#中将集合写入文本_在C#中将记录插入MySQL数据库

c#中将集合写入文本In the last tutorial (how to connect with MySQL database in C#?), we learned about making the connection with MySQL database in C#. Here, in this tutorial, we will learn how to insert the records in MySQL database in C#? 在上一教程( 如何…

read/fread write/fwrite 的区别

fread就是通过read来实现的&#xff0c;fread是C语言的库&#xff0c;而read是系统调用。 差别在read每次读的数据是调用者要求的大小&#xff0c;比如调用者要求读取10个字节数据&#xff0c;read就会从内核缓冲区&#xff08;操作系统开辟的一段空间用来存储磁盘上的数据&am…

如何在子网中访问上层网络的计算机文件夹

场景 公司路由器A&#xff0c;直接接外部网线&#xff0c;内部ip192.168.11.1&#xff0c;lan口又接了路由器A1&#xff0c;IP为192.168.11.2&#xff0c;A1的lan端口接了一台电脑A&#xff0c;Ip为192.168.0.2&#xff0c;接了另外一个路由A2&#xff0c;Ip为192.168.11.3&…

基于Web的套打方案分析

应用web化&#xff0c;不论对开发商&#xff0c;还是对用户来说&#xff0c;实在是一种很经济的选择&#xff0c;因为基于web的应用&#xff0c;客户端的规则很简单&#xff0c;容易学习&#xff0c;容易维护&#xff0c;容易发布。但对程序员来说&#xff0c;因为浏览器的局限…

day1-Linux操作系统基础

该专栏所有内容笔记均来自传智播客培训班 1.什么是操作系统&#xff08;operate system OS&#xff09; 小议&#xff1a;承上启下作用&#xff0c;向下可以控制硬件&#xff0c;向上能够支持软件的运行。一个可以控制硬件的软件。 小明找小红聊天&#xff0c;小明打开QQ&…

关闭浏览器 清空session_跨境网络小知识之Session

跨境小伙伴们大家好&#xff0c;上一篇为大家介绍了Cookie&#xff0c;今天就为大家介绍下连接cookie的另一端Session&#xff0c;交互过程中&#xff0c;二者缺一不可。与Cookie相对&#xff0c;Session是存储在服务端的&#xff0c;他们之间是通过一个叫做sessionID的东东建立…

我和乘子交替方向法admm_找到最大和交替子序列

我和乘子交替方向法admmProblem statement: 问题陈述&#xff1a; Given a sequence of numbers, you have to find the maximum sum alternating subsequence and print the value. A sequence is an alternating sequence when it will be maintain like (increasing) ->…

Dojo学习笔记(一):Hello Dojo!

欢迎来到Dojo世界&#xff01;在这篇文章中你将会学习到如何加载Dojo以及探索Dojo的一些核心功能。你还会了解Dojo的基于AMD的模块架构&#xff0c;探索如何加载额外的模块来增加功能到您的Web站点或应用程序&#xff0c;并找出在出错的时如何得到帮助。让我们开始吧 开始学习D…