如何在VHDL中做矢量积 [英] How to do a vector product in VHDL

查看:115
本文介绍了如何在VHDL中做矢量积的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将如何在VHDL中制作矢量积?

How would I go about doing a vector product in VHDL?

例如我定义了2个向量,如下所示:

e.g. I have 2 vectors defined like so:

type array_4_8bit is array (0 to 3) of std_logic_vector(7 downto 0);
signal Array_Last4Vals : array_4_8bit;
signal Multiplier : array_4_8bit;
Array_Last4Vals <= [5, 6, 7, 8]; -- will replace these numbers with the corresponding binary numbers
Multiplier <= [1, 2, 3, 4]; -- will replace these numbers with the corresponding binary numbers
product <= Multiplier*Array_Last4Vals;

然后我希望本例中的乘积为[5,12,21,32].

I then want the product to be [5, 12, 21, 32] in this example.

我该怎么做?

推荐答案

VHDL允许为自定义类型重新定义像*这样的中缀运算符,因此您可以声明一个执行矢量乘法的函数,例如:

VHDL allows re-definition of infix operators, like *, for custom types, so you can declare a function that does the vector multiplication like:

function "*"(a, b : array_4_8bit) return array_4_8bit is
  variable result_v : array_4_8bit;
begin
  for idx in result_v'range loop
    result_v(idx) := std_logic_vector(unsigned(a(idx)) * unsigned(b(idx)));
  end loop;
  return result_v;
end function;

上面的假设是向量元素是无符号值,并且每个乘法的结果都被截断为8位.

Assumption above is that he vector elements are unsigned values, and that the result of each multiplication is truncated to 8 bits.

对于生成输入数据,您还可以考虑执行以下操作:

For generation of the input data, you can also consider doing:

type array_4_integer is array (0 to 3) of integer;

function to_array_4_8bit(v : array_4_integer) return array_4_8bit is
  variable result_v : array_4_8bit;
begin
  for idx in result_v'range loop
    result_v(idx) := std_logic_vector(to_unsigned(v(idx), 8));
  end loop;
  return result_v;
end function;

Array_Last4Vals <= to_array_4_8bit((5, 6, 7, 8));
Multiplier <= to_array_4_8bit((1, 2, 3, 4));

这篇关于如何在VHDL中做矢量积的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆