Changeset 59
- Timestamp:
- Feb 2, 2010, 3:06:02 AM (15 years ago)
- Location:
- anr
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
anr/anr.sty
r52 r59 81 81 82 82 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 83 \newcount\taskcnt\taskcnt= -183 \newcount\taskcnt\taskcnt=0 84 84 \newcount\subtaskcnt 85 85 \newcount\livrablecnt -
anr/anr.tex
r52 r59 203 203 \end{itemize}} 204 204 205 \subsubsection{Task 0: \textit{Project management}}205 \subsubsection{Task 1: \textit{Project management}} 206 206 \input{task-0} 207 207 208 \subsubsection{Task 1: \textit{\Backbone}}208 \subsubsection{Task 2: \textit{\Backbone}} 209 209 \input{task-1} 210 210 211 \subsubsection{Task 2: \textit{System generation}}211 \subsubsection{Task 3: \textit{System generation}} 212 212 \input{task-2} 213 213 214 \subsubsection{Task 3: \textit{HAS front-end}}214 \subsubsection{Task 4: \textit{HAS front-end}} 215 215 \input{task-3} 216 216 217 \subsubsection{Task 4: \textit{HAS back-end}}217 \subsubsection{Task 5: \textit{HAS back-end}} 218 218 \input{task-4} 219 219 220 \subsubsection{Task 5: \textit{PC/FPGA communication middleware}}220 \subsubsection{Task 6: \textit{PC/FPGA communication middleware}} 221 221 \input{task-5} 222 222 223 \subsubsection{Task 6: \textit{Industrial demonstrators}}223 \subsubsection{Task 7: \textit{Industrial demonstrators}} 224 224 \input{task-6} 225 225 -
anr/gantt.l
r54 r59 29 29 30 30 char* task_names[] = { 31 0, 31 32 "Project management", 32 33 "Backbone infrastructure", … … 39 40 0 40 41 }; 41 struct partner_def { char *key, *name, *f ile; } partner_table[] = {42 { "UNKNOW" , "relax", 0,},43 { "irisa" , "irisa", "table_irisa.tex" },44 { "lip" , "lip", "table_lip.tex" },45 { "tima" , "tima", "table_tima.tex" },46 { "ubs" , "ubs", "table_ubs.tex" },47 { "upmc" , "upmc", "table_upmc.tex" },48 { "altera" , "altera", "table_altera.tex" },49 { "xilinx" , "xilinx", "table_xilinx.tex" },50 { "bull" , "bull", "table_bull.tex" },51 { "thales" , "thales", "table_thales.tex" },52 { "zied" , "zied", "table_zied.tex" },53 { "navtel" , "navtel", "table_navtel.tex" },54 { 0 , 0, 0},42 struct partner_def { char *key, *name, *fnfull, *fnshort; } partner_table[] = { 43 { "UNKNOW" ,"relax" ,0 ,0 }, 44 { "irisa" ,"irisa" ,"table_irisa_full.tex" ,"table_irisa_short.tex" }, 45 { "lip" ,"lip" ,"table_lip_full.tex" ,"table_lip_short.tex" }, 46 { "tima" ,"tima" ,"table_tima_full.tex" ,"table_tima_short.tex" }, 47 { "ubs" ,"ubs" ,"table_ubs_full.tex" ,"table_ubs_short.tex" }, 48 { "upmc" ,"upmc" ,"table_upmc_full.tex" ,"table_upmc_short.tex" }, 49 { "altera" ,"altera" ,"table_altera_full.tex" ,"table_altera_short.tex" }, 50 { "xilinx" ,"xilinx" ,"table_xilinx_full.tex" ,"table_xilinx_short.tex" }, 51 { "bull" ,"bull" ,"table_bull_full.tex" ,"table_bull_short.tex" }, 52 { "thales" ,"thales" ,"table_thales_full.tex" ,"table_thales_short.tex" }, 53 { "zied" ,"zied" ,"table_zied_full.tex" ,"table_zied_short.tex" }, 54 { "navtel" ,"navtel" ,"table_navtel_full.tex" ,"table_navtel_short.tex" }, 55 { 0 ,0 ,0 ,0 }, 55 56 }; 56 57 … … 612 613 } 613 614 614 void do_partner_table (int partner)615 void do_partner_table_full(int partner) 615 616 { 616 617 struct partner_def* part = partner_table+partner; 617 if ( (curr->os=fopen(part->f ile,"w"))==0 ) {618 fprintf(stderr,"can not open %s file for writing.\n",part->f ile);619 fprintf(stderr,"generation of %s partner table is skipped.\n",part->f ile);618 if ( (curr->os=fopen(part->fnfull,"w"))==0 ) { 619 fprintf(stderr,"can not open %s file for writing.\n",part->fnfull); 620 fprintf(stderr,"generation of %s partner table is skipped.\n",part->fnfull); 620 621 return; 621 622 } … … 674 675 } 675 676 if ( an!=(an1+an2+an3) ) { 676 fprintf(stderr,"bad computation in %s table.\n",part->f ile);677 fprintf(stderr,"bad computation in %s table.\n",part->fnfull); 677 678 } 678 679 fprintf(curr->os,"\\hline\n"); … … 685 686 } 686 687 688 void do_partner_table_short(int partner) 689 { 690 struct partner_def* part = partner_table+partner; 691 if ( (curr->os=fopen(part->fnshort,"w"))==0 ) { 692 fprintf(stderr,"can not open %s file for writing.\n",part->fnshort); 693 fprintf(stderr,"generation of %s partner table is skipped.\n",part->fnshort); 694 return; 695 } 696 fprintf(curr->os,"\\begin{center}\\begin{small}\\begin{tabular}{|c|l||r|r|r||r|}\\hline\n"); 697 fprintf(curr->os, 698 " & title & \\multicolumn{3}{c||}{years } & total \\\\\\cline{3-5}\n"); 699 fprintf(curr->os, 700 " & & \\multicolumn{1}{c|}{1} & \\multicolumn{1}{c|}{2} & " 701 "\\multicolumn{1}{c||}{3} & \\\\\\hline\\hline\n"); 702 int tn,stn,dn,v=0; 703 double an1=0,an2=0,an3=0,an=0; 704 double tsk1,tsk2,tsk3,tsk; 705 int newlineadded=1; 706 for (tn=0 ; tn<T_MAX ; tn++) { 707 if (curr->ls[tn][0][0][0]==0) break; 708 tsk1=tsk2=tsk3=tsk=0; 709 for (stn=0; stn<S_MAX; stn++) { 710 for (dn=0; dn<D_MAX; dn++) { 711 Tlivrable* top=curr->ls[tn][stn][dn][v]; 712 if (top==0) continue; 713 Tlivrable* last=top->vers[top->nbvers-1]; 714 if (last->partner!=partner) continue; 715 double sum1,sum2,sum3,sum=0; 716 sum1 = last->hman[0]; sum +=sum1; 717 sum2 = last->hman[1]; sum +=sum2; 718 sum3 = last->hman[2]; sum +=sum3; 719 an1 += sum1 ; tsk1 += sum1 ; 720 an2 += sum2 ; tsk2 += sum2 ; 721 an3 += sum3 ; tsk3 += sum3 ; 722 an += sum ; tsk += sum ; 723 newlineadded=0; 724 char label[1000]; 725 gen_label_base(label,last); 726 if ( (sum1!=0 && sum1>last->nbma[0] ) || (sum1==0 && last->nbma[0]!=0) ) 727 fprintf(stderr,"ERROR: %s:%s probleme sur l'an 1 (in table=%2.1f, in gantt=%2.1f\n", 728 part->name,label,sum1,last->nbma[0]); 729 if ( (sum2!=0 && sum2>last->nbma[1]) || (sum2==0 && last->nbma[1]!=0) ) 730 fprintf(stderr,"ERROR: %s:%s probleme sur l'an 2 (in table=%2.1f, in gantt=%2.1f\n", 731 part->name,label,sum2,last->nbma[1]); 732 if ( (sum3!=0 && sum3>last->nbma[2]) || (sum3==0 && last->nbma[2]!=0) ) 733 fprintf(stderr,"ERROR: %s:%s probleme sur l'an 3 (in table=%2.1f, in gantt=%2.1f\n", 734 part->name,label,sum3,last->nbma[2]); 735 } 736 } 737 if (tsk!=0) 738 fprintf(curr->os,"Task-%d & %s & %2.1f & %2.1f & %2.1f & %2.1f \\\\\\hline\n", 739 curr->ls[tn][0][0][0]->tn, 740 task_names[curr->ls[tn][0][0][0]->tn],tsk1,tsk2,tsk3,tsk); 741 742 } 743 if ( an!=(an1+an2+an3) ) { 744 fprintf(stderr,"bad computation in %s table.\n",part->fnshort); 745 } 746 fprintf(curr->os,"\\hline\n"); 747 fprintf(curr->os," & %s & %2.1f & %2.1f & %2.1f & %2.1f \\\\\\hline\n", 748 "total",an1,an2,an3,an); 749 750 fprintf(curr->os,"\\end{tabular}\\end{small}\\end{center}\n"); 751 fclose(curr->os); 752 curr->os=0; 753 } 754 687 755 int main() 688 756 { 689 int tnplus[10] = { 0, 6, 7, -1 };690 int tnmoins[10] = { 0, 6, 7, -1 };757 int tnplus[10] = { 1, 7, 8, -1 }; 758 int tnmoins[10] = { 1, 7, 8, -1 }; 691 759 692 760 yylex(); … … 700 768 prepare2(curr); 701 769 prepare3(curr); 702 do_partner_table (4);703 do_partner_table (5);770 do_partner_table_full(4); do_partner_table_short(4); 771 do_partner_table_full(5); do_partner_table_short(5); 704 772 705 773 return 0; -
anr/task-0.tex
r52 r59 29 29 organization of the project at all the levels. 30 30 \begin{livrable} 31 \itemL{0}{12}{d}{\Supmc}{First progress report}{1:0:0} 32 \itemL{12}{24}{d}{\Supmc}{Second progress report}{0:1:0} 33 \itemL{24}{36}{d}{\Supmc}{Final report}{0:0:1} 34 \itemL{0}{36}{}{\Supmc}{Global management}{1:1:1} 31 \itemL{0}{36}{d}{\Supmc}{Global management}{1:1:1} 35 32 This deliverable corresponds to the global management of the project at all the 36 33 levels: progress monitoring, record keeping, meeting organization, review 37 organization .34 organization, the writting of the 3 review reports. 38 35 \end{livrable} 39 36 \item This \ST consists of the project management at the partner level. -
anr/task-2.tex
r57 r59 38 38 This milestone extends CSG (\csgPrototypingOnly) to 39 39 FPGA-SoC generation for the XILINX and ALTERA architectural template. 40 \itemL{24}{36}{x}{\Supmc}{CSG}{6:6: 5}40 \itemL{24}{36}{x}{\Supmc}{CSG}{6:6:6} 41 41 Maintenance work of CSG. 42 42 \end{livrable} -
anr/task-5.tex
r57 r59 26 26 This will allow us at least to be inspired by GPU communication schemes and may be to reuse 27 27 parts of the GPU softwares. 28 29 28 30 29 \end{objectif} … … 63 62 Maintenance work of HPC API for both Linux PC and MUTEK OS. 64 63 \end{livrable} 65 \item This \ST deals with the implementation of hardware required by the COACH66 architectural template for using the PCI/X IP of \altera and \xilinx.64 \item This \ST deals with the implementation of hardware and SystemC modules 65 required by the COACH architectural template for using the PCI/X IP of \altera and \xilinx. 67 66 \begin{livrable} 68 67 \itemL{9}{18}{h}{\Stima}{HPC hardware \xilinx}{3:9:0} … … 72 71 \setMacroInAuxFile{hpcAvalonBridge} 73 72 The synthesizable VHDL description of an AVALON/VCI bridge and its corresponding SystemC model. 73 \itemL{9}{24}{h}{\Supmc}{PCI/X traffic generator}{1:1:0} 74 The SystemC description of a component that generates PCI/X traffic. It is 75 required to prototype FPGA-SoC dedicated to HPC. 74 76 \end{livrable} 77 75 78 \item This \ST consists in integrating dynamic partial reconfiguration of \xilinx FPGA in the CSG design flow. 76 79 It also includes appropriate SoC-FPGA OS drivers and a modification of the profiling library. 77 78 80 \begin{livrable} 79 \itemL{18}{36}{x}{\S tima}{CSG support for \ganttlf dynamic reconfiguration}{0:8:12}80 Extension of the \xilinx architectural template ({\csgAllArch}) 81 in order tointegrate dynamic partial reconfiguration regions.82 Modification of CSG software to support the extended \xilinx template.81 \itemL{18}{36}{x}{\Supmc}{CSG support for \ganttlf dynamic reconfiguration}{0:0:2} 82 Extension of the \xilinx architectural template ({\csgAllArch}) in order to 83 integrate dynamic partial reconfiguration regions. 84 Modification of CSG software to support the extended \xilinx template. 83 85 \itemL{18}{30}{x}{\Stima}{dynamic reconfiguration \ganttlf DNA drivers}{0:2:3} 84 86 \setMacroInAuxFile{hpcDynconfDriver} 85 The drivers required by the DNA OS in order to manage dynamic partial reconfiguration inside the SoC-FPGA. 87 The drivers required by the DNA OS in order to manage dynamic partial 88 reconfiguration inside the SoC-FPGA. 86 89 \itemL{30}{36}{x}{\Supmc}{dynamic reconfiguration \ganttlf MUTEK drivers}{0:0:1} 87 90 Port of the {\hpcDynconfDriver} drivers on the MUTEK OS. 88 91 \itemL{24}{36}{x}{\Stima}{HPC profiler for \ganttlf dynamic reconfiguration}{0:0:6} 89 Extension of the HPC partionning helper in order to integrate dynamic partial reconfiguration dedicated features 90 (reconfiguration time of regions, variable number of coprocessors) 91 \end{livrable} 92 Extension of the HPC partionning helper in order to integrate dynamic partial 93 reconfiguration dedicated features (reconfiguration time of regions, variable 94 number of coprocessors). 95 \end{livrable} 92 96 \item This \ST is the delivery of 2 PCI/X \mustbecompleted{FIXME: Stratix4} FPGA board 93 97 with its PCI/X IP. These boards are dedicated to the COACH HPC development.
Note: See TracChangeset
for help on using the changeset viewer.