Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - need vhdl code

 
Thread Tools Search this Thread
Old 02-20-2009, 04:57 AM   #1
Default need vhdl code


i need vhd for genetic algorithm in evolvable hardware design.


kasthuri.m92@gmail.com
  Reply With Quote
Old 02-20-2009, 05:53 AM   #2
kennheinrich@sympatico.ca
 
Posts: n/a
Default Re: need vhdl code
On Feb 19, 11:57*pm, kasthuri....@gmail.com wrote:
> * i need vhd for genetic algorithm in evolvable hardware design.


Google found 929 results for the search

"genetic algorithm" +"evolvable hardware" +vhdl

Can you be a little bit more specific?


kennheinrich@sympatico.ca
  Reply With Quote
Old 02-20-2009, 08:57 AM   #3
Tricky
 
Posts: n/a
Default Re: need vhdl code
On 20 Feb, 04:57, kasthuri....@gmail.com wrote:
> * i need vhd for genetic algorithm in evolvable hardware design.


library ieee;
use ieee.std_logic_1164.all;

entity evolvable_hardware is
port (
reset : in std_logic;
clk : in std_logic;
d : in std_logic;
q : out std_logic;
);
end entity evolvable_hardware;

architecture evolve of evolvable_hardware is
begin

reg_proc : process(clk)
begin
if reset = '1' then
q <= '0';
elsif rising_edge(clk) then
q <= d;
end if;
end process;

end architecture evolve;




I bet something like this could eventually evolve into an FFT?


Tricky
  Reply With Quote
Old 02-20-2009, 12:03 PM   #4
Jacko
 
Posts: n/a
Default Re: need vhdl code
On 20 Feb, 08:57, Tricky <Trickyh...@gmail.com> wrote:
> On 20 Feb, 04:57, kasthuri....@gmail.com wrote:
>
> > i need vhd for genetic algorithm in evolvable hardware design.

>
> library ieee;
> use ieee.std_logic_1164.all;
>
> entity evolvable_hardware is
> port (
> reset : in std_logic;
> clk : in std_logic;
> d : in std_logic;

dsex : in std_logic;
> q : out std_logic;
> );
> end entity evolvable_hardware;
>
> architecture evolve of evolvable_hardware is
> begin
>
> reg_proc : process(clk)
> begin
> if reset = '1' then
> q <= '0';
> elsif rising_edge(clk) then

if sex_prob = '1' then
q <= dsex;
else
> q <= (d XOR mutate_prob) ;

end if;
> end if;
> end process;
>
> end architecture evolve;
>
> I bet something like this could eventually evolve into an FFT?


What kind of FET?

cheers jacko


Jacko
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46