Re: Finding the execution time
- From: "a_Conan" <hailconan@xxxxxxxxx>
- Date: 2 Sep 2005 06:29:41 -0700
Hi Nicolas, yes my algorithm depends to multiple calculations separated
in functions and procedures such as:
..
..
..
for i in 1 to M loop--start from the second row
for k in 0 to (N - i) loop
Matrix_out(i, k) := Matrix_in(i, i + k);
end loop;
for k in 0 to (i - 1) loop
Matrix_out(i, N - k) := Matrix_in(i, i - k - 1);
end loop;
end loop;
..
..
..
every function can call others as need.
suppose my clock frequency is 50MHz. so how can I find the exe-time.
I will use FPGA.
.
- Follow-Ups:
- Re: Finding the execution time
- From: Nicolas Matringe
- Re: Finding the execution time
- References:
- Finding the execution time
- From: a_Conan
- Re: Finding the execution time
- From: Nicolas Matringe
- Finding the execution time
- Prev by Date: Re: Finding the execution time
- Next by Date: Re: Finding the execution time
- Previous by thread: Re: Finding the execution time
- Next by thread: Re: Finding the execution time
- Index(es):
Relevant Pages
|
Loading