-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchanges
More file actions
2144 lines (1542 loc) · 80.6 KB
/
changes
File metadata and controls
2144 lines (1542 loc) · 80.6 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
----------
jsemer Date: Tue Nov 2 13:14:14 EDT 2010 CSN: CSN-leap-debug-3
Tue Nov 2 17:14:14 UTC 2010
Directory admin/packages
leap-debug Locally Added -
leap-examples Locally Removed 2
Fix misnamed administrative file.
----------
jsemer Date: Tue Nov 2 15:19:32 EDT 2010 CSN: CSN-leap-debug-4
Tue Nov 2 19:19:32 UTC 2010
Directory config/pm/leap
tests/ Locally Added 0
Directory config/pm/leap/tests
alu_test/ Locally Added 0
Directory config/pm/leap/tests/alu_test
alu_test_hybrid_htg.apm Locally Added 0
alu_test_hybrid_exe.apm Locally Added 0
Directory config/pm/leap/tests
bram_test/ Locally Added 0
Directory config/pm/leap/tests/bram_test
bram_test_hybrid_htg.apm Locally Added 0
bram_test_hybrid_exe.apm Locally Added 0
Directory config/pm/leap/tests
context_test/ Locally Added 0
Directory config/pm/leap/tests/context_test
traffic_light_synth_exe.apm Locally Added 0
Directory config/pm/leap/tests
pipeline_test/ Locally Added 0
Directory config/pm/leap/tests/pipeline_test
pipeline_test_shared_rule_htg.apm Locally Added 0
pipeline_test_shared_rule_routed_exe.apm Locally Added 0
pipeline_test_shared_rule_routed_htg.apm Locally Added 0
pipeline_test_private_rule_exe.apm Locally Added 0
pipeline_test_private_rule_htg.apm Locally Added 0
pipeline_test_duplicate_modules_exe.apm Locally Added 0
pipeline_test_duplicate_modules_htg.apm Locally Added 0
pipeline_test_stage_ctrl_unguarded_exe.apm Locally Added 0
pipeline_test_stage_ctrl_unguarded_htg.apm Locally Added 0
pipeline_test_stage_ctrl_exe.apm Locally Added 0
pipeline_test_stage_ctrl_htg.apm Locally Added 0
pipeline_test_shared_rule_exe.apm Locally Added 0
Directory config/pm/leap/tests
fp_test/ Locally Added 0
Directory config/pm/leap/tests/fp_test
fp_test_cvt_i_to_s.apm Locally Added 0
Directory config/pm/leap/tests
chantest/ Locally Added 0
Directory config/pm/leap/tests/chantest
chantest08_hybrid_exe.apm Locally Added 0
chantest16_hybrid_acp_nallatech.apm Locally Added 0
chantest08_hybrid_acp_nallatech.apm Locally Added 0
chantest16_hybrid_exe.apm Locally Added 0
Directory config/pm/leap/tests
interconnect_test/ Locally Added 0
Directory config/pm/leap/tests/interconnect_test
interconnect_test_hybrid_exe.apm Locally Added 0
Directory config/pm/leap/tests
clock_test/ Locally Added 0
Directory config/pm/leap/tests/clock_test
clock_test_mem_exe.apm Locally Added 0
clock_test_exe.apm Locally Added 0
clock_test_mem_acp.apm Locally Added 0
clock_test_acp.apm Locally Added 0
clock_test_mem_synth_exe.apm Locally Added 0
clock_test_mem_synth_acp.apm Locally Added 0
clock_test_synth_exe.apm Locally Added 0
clock_test_synth_acp.apm Locally Added 0
Directory config/pm/leap/tests
mem_test/ Locally Added 0
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_nopvt_exe.apm Locally Added 0
mem_test_hybrid_nopvt_htg.apm Locally Added 0
mem_test_hybrid_nopvt_acp.apm Locally Added 0
mem_test_hybrid_exe.apm Locally Added 0
mem_test_hybrid_htg.apm Locally Added 0
mem_test_hybrid_acp.apm Locally Added 0
Directory config/pm/leap
debuggers/ Locally Added 0
Directory config/pm/leap/debuggers
sram/ Locally Added 0
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Added 0
nallatech_fake_sram_debugger.apm Locally Added 0
sram_debugger_htg.apm Locally Added 0
Directory config/pm/leap/debuggers
jtag/ Locally Added 0
Directory config/pm/leap/debuggers/jtag
jtag_htg_debugger.apm Locally Added 0
Directory modules
apps/ Locally Added 0
Directory modules/apps
tests/ Locally Added 0
Directory modules/apps/tests
alu_test/ Locally Added 0
Directory modules/apps/tests/alu_test
alu-test-streamid.dic Locally Added 0
alu-test.awb Locally Added 0
alu-test.bsv Locally Added 0
alu-test-streams.dic Locally Added 0
Directory modules/apps/tests
bram_test/ Locally Added 0
Directory modules/apps/tests/bram_test
bram-test.awb Locally Added 0
bram-test.bsv Locally Added 0
bram-test.dic Locally Added 0
Directory modules/apps/tests
channel-integrity-test/ Locally Added 0
Directory modules/apps/tests/channel-integrity-test
chan-test.bsv Locally Added 0
chan-test-server.h Locally Added 0
chan-test-16.awb Locally Added 0
chan-test.rrr Locally Added 0
chan-test-16.cpp Locally Added 0
chan-test.awb Locally Added 0
chan-test-server-16.cpp Locally Added 0
chan-test-16.h Locally Added 0
chan-test-16.bsv Locally Added 0
chan-test-server-16.h Locally Added 0
chan-test.txt Locally Added 0
chan-test.cpp Locally Added 0
chan-test-server.cpp Locally Added 0
chan-test.h Locally Added 0
chan-test-16.rrr Locally Added 0
Directory modules/apps/tests
fp_test/ Locally Added 0
Directory modules/apps/tests/fp_test
fp-test-streamid.dic Locally Added 0
fp-test.awb Locally Added 0
fp-test.bsv Locally Added 0
fp-test-streams.dic Locally Added 0
Directory modules/apps/tests
shared_pipeline_test/ Locally Added 0
Directory modules/apps/tests/shared_pipeline_test
private-rule/ Locally Added 0
Directory modules/apps/tests/shared_pipeline_test/private-rule
pipeline-private-rule.awb Locally Added 0
pipeline-private-rule.bsv Locally Added 0
Directory modules/apps/tests/shared_pipeline_test
shared-pipeline-test.bsv Locally Added 0
duplicate-modules/ Locally Added 0
Directory modules/apps/tests/shared_pipeline_test/duplicate-modules
pipeline-duplicate-modules.awb Locally Added 0
pipeline-duplicate-modules.bsv Locally Added 0
Directory modules/apps/tests/shared_pipeline_test
shared-tree/ Locally Added 0
Directory modules/apps/tests/shared_pipeline_test/shared-tree
pipeline-shared-tree.bsv Locally Added 0
pipeline-shared-tree.awb Locally Added 0
Directory modules/apps/tests/shared_pipeline_test
shared-pipeline-test.dic Locally Added 0
stage-ctrl/ Locally Added 0
Directory modules/apps/tests/shared_pipeline_test/stage-ctrl
pipeline-stage-ctrl.awb Locally Added 0
pipeline-stage-ctrl.bsv Locally Added 0
stage-controller.bsv Locally Added 0
Directory modules/apps/tests/shared_pipeline_test
common/ Locally Added 0
Directory modules/apps/tests/shared_pipeline_test/common
pipetest-common.awb Locally Added 0
pipetest-common.bsv Locally Added 0
Directory modules/apps/tests/shared_pipeline_test
shared-rule/ Locally Added 0
Directory modules/apps/tests/shared_pipeline_test/shared-rule
pipeline-shared-rule.awb Locally Added 0
pipeline-shared-rule.bsv Locally Added 0
Directory modules/apps/tests/shared_pipeline_test
shared-pipeline-test.awb Locally Added 0
Directory modules/apps/tests
interconnect_test/ Locally Added 0
Directory modules/apps/tests/interconnect_test
interconnect-test.awb Locally Added 0
interconnect-test.bsv Locally Added 0
interconnect-test-streams.dic Locally Added 0
interconnect-test-streamid.dic Locally Added 0
Directory modules/apps/tests
clock_test/ Locally Added 0
Directory modules/apps/tests/clock_test
clock.rrr Locally Added 0
clock_test.h Locally Added 0
clock_function_pipeline/ Locally Added 0
Directory modules/apps/tests/clock_test/clock_function_pipeline
PipelineMem.dic Locally Added 0
synth_pipeline/ Locally Added 0
Directory modules/apps/tests/clock_test/clock_function_pipeline/synth_pipeline
PipelineMem.dic Locally Added 0
stage1_mem.awb Locally Added 0
stage1_mem.bsv Locally Added 0
stage1.awb Locally Added 0
pipeline.awb Locally Added 0
stage2.awb Locally Added 0
stage1.bsv Locally Added 0
pipeline.bsv Locally Added 0
stage2.bsv Locally Added 0
Directory modules/apps/tests/clock_test/clock_function_pipeline
pipeline_mem.awb Locally Added 0
pipeline_mem.bsv Locally Added 0
pipeline.awb Locally Added 0
pipeline.bsv Locally Added 0
Directory modules/apps/tests/clock_test
clock_test_system.awb Locally Added 0
clock_test.cpp Locally Added 0
System.bsv Locally Added 0
Directory modules/apps/tests
mem_test/ Locally Added 0
Directory modules/apps/tests/mem_test
mem-test.awb Locally Added 0
mem-test.bsv Locally Added 0
mem-test.dic Locally Added 0
Directory modules/apps
debuggers/ Locally Added 0
Directory modules/apps/debuggers
platform-debugger.bsv Locally Added 0
platform-debugger.dic Locally Added 0
platform-debugger.txt Locally Added 0
platform-debugger.cpp Locally Added 0
platform-debugger.rrr Locally Added 0
platform-debugger.h Locally Added 0
platform-debugger.awb Locally Added 0
Moved a number of tests/debuggers from leap to here.
----------
jsemer Date: Tue Nov 9 17:10:39 EST 2010 CSN: CSN-leap-debug-5
Tue Nov 9 22:10:39 UTC 2010
Directory config/pm/leap/tests/alu_test
alu_test_hybrid_htg.apm Locally Modified 4
alu_test_hybrid_exe.apm Locally Modified 4
Directory config/pm/leap/tests/bram_test
bram_test_hybrid_htg.apm Locally Modified 4
bram_test_hybrid_exe.apm Locally Modified 4
Directory config/pm/leap/tests/context_test
traffic_light_synth_exe.apm Locally Modified 4
Directory config/pm/leap/tests/pipeline_test
pipeline_test_shared_rule_htg.apm Locally Modified 4
pipeline_test_shared_rule_routed_exe.apm Locally Modified 4
pipeline_test_shared_rule_routed_htg.apm Locally Modified 4
pipeline_test_private_rule_exe.apm Locally Modified 4
pipeline_test_duplicate_modules_exe.apm Locally Modified 4
pipeline_test_private_rule_htg.apm Locally Modified 4
pipeline_test_duplicate_modules_htg.apm Locally Modified 4
pipeline_test_stage_ctrl_unguarded_exe.apm Locally Modified 4
pipeline_test_stage_ctrl_unguarded_htg.apm Locally Modified 4
pipeline_test_stage_ctrl_exe.apm Locally Modified 4
pipeline_test_stage_ctrl_htg.apm Locally Modified 4
pipeline_test_shared_rule_exe.apm Locally Modified 4
Directory config/pm/leap/tests/chantest
chantest08_hybrid_exe.apm Locally Modified 4
chantest16_hybrid_acp_nallatech.apm Locally Modified 4
chantest08_hybrid_acp_nallatech.apm Locally Modified 4
chantest16_hybrid_exe.apm Locally Modified 4
Directory config/pm/leap/tests/clock_test
clock_test_mem_exe.apm Locally Modified 4
clock_test_exe.apm Locally Modified 4
clock_test_mem_acp.apm Locally Modified 4
clock_test_acp.apm Locally Modified 4
clock_test_mem_synth_exe.apm Locally Modified 4
clock_test_mem_synth_acp.apm Locally Modified 4
clock_test_synth_exe.apm Locally Modified 4
clock_test_synth_acp.apm Locally Modified 4
Directory config/pm/leap/tests/interconnect_test
interconnect_test_hybrid_exe.apm Locally Modified 4
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_nopvt_exe.apm Locally Modified 4
mem_test_hybrid_nopvt_htg.apm Locally Modified 4
mem_test_hybrid_exe.apm Locally Modified 4
mem_test_hybrid_htg.apm Locally Modified 4
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 4
nallatech_fake_sram_debugger.apm Locally Modified 4
sram_debugger_htg.apm Locally Modified 4
Directory config/pm/leap/debuggers/jtag
jtag_htg_debugger.apm Locally Modified 4
Changed path to default benchmark.
----------
pellauer Date: Tue Jan 18 14:55:57 EST 2011 CSN: CSN-leap-debug-6
Tue Jan 18 19:55:57 UTC 2011
Directory config/pm/leap/tests/alu_test
alu_test_hybrid_htg.apm Locally Modified 5
alu_test_hybrid_exe.apm Locally Modified 5
Directory config/pm/leap/tests/bram_test
bram_test_hybrid_htg.apm Locally Modified 5
bram_test_hybrid_exe.apm Locally Modified 5
Directory config/pm/leap/tests/context_test
traffic_light_synth_exe.apm Locally Modified 5
Directory config/pm/leap/tests/fp_test
fp_test_cvt_i_to_s.apm Locally Modified 5
Directory config/pm/leap/tests/pipeline_test
pipeline_test_shared_rule_htg.apm Locally Modified 5
pipeline_test_shared_rule_routed_exe.apm Locally Modified 5
pipeline_test_shared_rule_routed_htg.apm Locally Modified 5
pipeline_test_private_rule_exe.apm Locally Modified 5
pipeline_test_duplicate_modules_exe.apm Locally Modified 5
pipeline_test_private_rule_htg.apm Locally Modified 5
pipeline_test_duplicate_modules_htg.apm Locally Modified 5
pipeline_test_stage_ctrl_unguarded_exe.apm Locally Modified 5
pipeline_test_stage_ctrl_unguarded_htg.apm Locally Modified 5
pipeline_test_stage_ctrl_exe.apm Locally Modified 5
pipeline_test_stage_ctrl_htg.apm Locally Modified 5
pipeline_test_shared_rule_exe.apm Locally Modified 5
Directory config/pm/leap/tests/chantest
chantest08_hybrid_exe.apm Locally Modified 5
chantest16_hybrid_acp_nallatech.apm Locally Modified 5
chantest08_hybrid_acp_nallatech.apm Locally Modified 5
chantest16_hybrid_exe.apm Locally Modified 5
Directory config/pm/leap/tests/clock_test
clock_test_mem_exe.apm Locally Modified 5
clock_test_exe.apm Locally Modified 5
clock_test_mem_acp.apm Locally Modified 5
clock_test_acp.apm Locally Modified 5
clock_test_mem_synth_exe.apm Locally Modified 5
clock_test_mem_synth_acp.apm Locally Modified 5
clock_test_synth_exe.apm Locally Modified 5
clock_test_synth_acp.apm Locally Modified 5
Directory config/pm/leap/tests/interconnect_test
interconnect_test_hybrid_exe.apm Locally Modified 5
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_nopvt_exe.apm Locally Modified 5
mem_test_hybrid_nopvt_htg.apm Locally Modified 5
mem_test_hybrid_nopvt_acp.apm Locally Modified 5
mem_test_hybrid_exe.apm Locally Modified 5
mem_test_hybrid_htg.apm Locally Modified 5
mem_test_hybrid_acp.apm Locally Modified 5
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 5
nallatech_fake_sram_debugger.apm Locally Modified 5
sram_debugger_htg.apm Locally Modified 5
Directory config/pm/leap/debuggers/jtag
jtag_htg_debugger.apm Locally Modified 5
* Update .apm files to v2.2 using "awb-shell update model"
----------
jsemer Date: Wed Feb 16 12:07:47 EST 2011 CSN: CSN-leap-debug-7
Wed Feb 16 17:07:47 UTC 2011
Directory config/pm/leap/tests/alu_test
alu_test_hybrid_htg.apm Locally Modified 6
alu_test_hybrid_exe.apm Locally Modified 6
Directory config/pm/leap/tests/bram_test
bram_test_hybrid_htg.apm Locally Modified 6
bram_test_hybrid_exe.apm Locally Modified 6
Directory config/pm/leap/tests/context_test
traffic_light_synth_exe.apm Locally Modified 6
Directory config/pm/leap/tests/fp_test
fp_test_cvt_i_to_s.apm Locally Modified 6
Directory config/pm/leap/tests/pipeline_test
pipeline_test_shared_rule_htg.apm Locally Modified 6
pipeline_test_shared_rule_routed_exe.apm Locally Modified 6
pipeline_test_shared_rule_routed_htg.apm Locally Modified 6
pipeline_test_private_rule_exe.apm Locally Modified 6
pipeline_test_duplicate_modules_exe.apm Locally Modified 6
pipeline_test_private_rule_htg.apm Locally Modified 6
pipeline_test_duplicate_modules_htg.apm Locally Modified 6
pipeline_test_stage_ctrl_unguarded_exe.apm Locally Modified 6
pipeline_test_stage_ctrl_unguarded_htg.apm Locally Modified 6
pipeline_test_stage_ctrl_exe.apm Locally Modified 6
pipeline_test_stage_ctrl_htg.apm Locally Modified 6
pipeline_test_shared_rule_exe.apm Locally Modified 6
Directory config/pm/leap/tests/chantest
chantest08_hybrid_exe.apm Locally Modified 6
chantest16_hybrid_acp_nallatech.apm Locally Modified 6
chantest08_hybrid_acp_nallatech.apm Locally Modified 6
chantest16_hybrid_exe.apm Locally Modified 6
Directory config/pm/leap/tests/clock_test
clock_test_mem_exe.apm Locally Modified 6
clock_test_exe.apm Locally Modified 6
clock_test_mem_acp.apm Locally Modified 6
clock_test_acp.apm Locally Modified 6
clock_test_mem_synth_exe.apm Locally Modified 6
clock_test_mem_synth_acp.apm Locally Modified 6
clock_test_synth_exe.apm Locally Modified 6
clock_test_synth_acp.apm Locally Modified 6
Directory config/pm/leap/tests/interconnect_test
interconnect_test_hybrid_exe.apm Locally Modified 6
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_nopvt_exe.apm Locally Modified 6
mem_test_hybrid_nopvt_htg.apm Locally Modified 6
mem_test_hybrid_nopvt_acp.apm Locally Modified 6
mem_test_hybrid_exe.apm Locally Modified 6
mem_test_hybrid_htg.apm Locally Modified 6
mem_test_hybrid_acp.apm Locally Modified 6
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 6
nallatech_fake_sram_debugger.apm Locally Modified 6
sram_debugger_htg.apm Locally Modified 6
Directory config/pm/leap/debuggers/jtag
jtag_htg_debugger.apm Locally Modified 6
Updated stale models.
----------
mpellaue Date: Tue Apr 5 15:48:04 EDT 2011 CSN: CSN-leap-debug-8
Tue Apr 5 19:48:04 UTC 2011
Directory config/pm/leap/tests/alu_test
alu_test_hybrid_htg.apm Locally Modified 7
alu_test_hybrid_exe.apm Locally Modified 7
Directory config/pm/leap/tests/bram_test
bram_test_hybrid_htg.apm Locally Modified 7
bram_test_hybrid_exe.apm Locally Modified 7
Directory config/pm/leap/tests/context_test
traffic_light_synth_exe.apm Locally Modified 7
Directory config/pm/leap/tests/fp_test
fp_test_cvt_i_to_s.apm Locally Modified 7
Directory config/pm/leap/tests/pipeline_test
pipeline_test_shared_rule_htg.apm Locally Modified 7
pipeline_test_shared_rule_routed_exe.apm Locally Modified 7
pipeline_test_shared_rule_routed_htg.apm Locally Modified 7
pipeline_test_private_rule_exe.apm Locally Modified 7
pipeline_test_duplicate_modules_exe.apm Locally Modified 7
pipeline_test_private_rule_htg.apm Locally Modified 7
pipeline_test_duplicate_modules_htg.apm Locally Modified 7
pipeline_test_stage_ctrl_unguarded_exe.apm Locally Modified 7
pipeline_test_stage_ctrl_unguarded_htg.apm Locally Modified 7
pipeline_test_stage_ctrl_exe.apm Locally Modified 7
pipeline_test_stage_ctrl_htg.apm Locally Modified 7
pipeline_test_shared_rule_exe.apm Locally Modified 7
Directory config/pm/leap/tests/chantest
chantest08_hybrid_exe.apm Locally Modified 7
chantest16_hybrid_acp_nallatech.apm Locally Modified 7
chantest08_hybrid_acp_nallatech.apm Locally Modified 7
chantest16_hybrid_exe.apm Locally Modified 7
Directory config/pm/leap/tests/clock_test
clock_test_mem_exe.apm Locally Modified 7
clock_test_exe.apm Locally Modified 7
clock_test_mem_acp.apm Locally Modified 7
clock_test_acp.apm Locally Modified 7
clock_test_mem_synth_exe.apm Locally Modified 7
clock_test_mem_synth_acp.apm Locally Modified 7
clock_test_synth_exe.apm Locally Modified 7
clock_test_synth_acp.apm Locally Modified 7
Directory config/pm/leap/tests/interconnect_test
interconnect_test_hybrid_exe.apm Locally Modified 7
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_nopvt_exe.apm Locally Modified 7
mem_test_hybrid_nopvt_htg.apm Locally Modified 7
mem_test_hybrid_nopvt_acp.apm Locally Modified 7
mem_test_hybrid_exe.apm Locally Modified 7
mem_test_hybrid_htg.apm Locally Modified 7
mem_test_hybrid_acp.apm Locally Modified 7
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 7
nallatech_fake_sram_debugger.apm Locally Modified 7
sram_debugger_htg.apm Locally Modified 7
Directory config/pm/leap/debuggers/jtag
jtag_htg_debugger.apm Locally Modified 7
* Change all models to use the Build Pipeline (if not already doing so).
* Change all models to get full Soft Services, not just Soft Connections.
----------
mcadler Date: Wed May 18 17:36:32 EDT 2011 CSN: CSN-leap-debug-9
Wed May 18 21:36:32 UTC 2011
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 8
Directory modules/apps/tests/alu_test
alu-test.bsv Locally Modified 8
Directory modules/apps/tests/bram_test
bram-test.bsv Locally Modified 8
Directory modules/apps/tests/fp_test
fp-test.bsv Locally Modified 8
Directory modules/apps/tests/interconnect_test
interconnect-test.bsv Locally Modified 8
Directory modules/apps/tests/shared_pipeline_test
shared-pipeline-test.bsv Locally Modified 8
Directory modules/apps/tests/mem_test
mem-test.bsv Locally Modified 8
Update to new streams ring interface.
----------
mcadler Date: Wed May 25 22:12:22 EDT 2011 CSN: CSN-leap-debug-10
Thu May 26 02:12:22 UTC 2011
Directory config/pm/leap/debuggers/sram
sram_debugger_htg.apm Locally Modified 9
Update package dependence.
----------
mcadler Date: Thu Jun 2 15:31:40 EDT 2011 CSN: CSN-leap-debug-11
Thu Jun 2 19:31:40 UTC 2011
Directory config/pm/leap/debuggers/sram
sram_debugger_htg.apm Locally Modified 10
Update clock PLL parameters.
----------
mpellaue Date: Thu Aug 25 18:12:33 EDT 2011 CSN: CSN-leap-debug-12
Thu Aug 25 22:12:33 UTC 2011
Directory config/pm/leap/tests/alu_test
alu_test_hybrid_htg.apm Locally Modified 11
alu_test_hybrid_exe.apm Locally Modified 11
Directory config/pm/leap/tests/bram_test
bram_test_hybrid_htg.apm Locally Modified 11
bram_test_hybrid_exe.apm Locally Modified 11
Directory config/pm/leap/tests/context_test
traffic_light_synth_exe.apm Locally Modified 11
Directory config/pm/leap/tests/fp_test
fp_test_cvt_i_to_s.apm Locally Modified 11
Directory config/pm/leap/tests/pipeline_test
pipeline_test_shared_rule_htg.apm Locally Modified 11
pipeline_test_shared_rule_routed_exe.apm Locally Modified 11
pipeline_test_shared_rule_routed_htg.apm Locally Modified 11
pipeline_test_private_rule_exe.apm Locally Modified 11
pipeline_test_duplicate_modules_exe.apm Locally Modified 11
pipeline_test_private_rule_htg.apm Locally Modified 11
pipeline_test_duplicate_modules_htg.apm Locally Modified 11
pipeline_test_stage_ctrl_unguarded_exe.apm Locally Modified 11
pipeline_test_stage_ctrl_unguarded_htg.apm Locally Modified 11
pipeline_test_stage_ctrl_exe.apm Locally Modified 11
pipeline_test_stage_ctrl_htg.apm Locally Modified 11
pipeline_test_shared_rule_exe.apm Locally Modified 11
Directory config/pm/leap/tests/chantest
chantest08_hybrid_exe.apm Locally Modified 11
chantest16_hybrid_acp_nallatech.apm Locally Modified 11
chantest08_hybrid_acp_nallatech.apm Locally Modified 11
chantest16_hybrid_exe.apm Locally Modified 11
Directory config/pm/leap/tests/clock_test
clock_test_mem_exe.apm Locally Modified 11
clock_test_exe.apm Locally Modified 11
clock_test_mem_acp.apm Locally Modified 11
clock_test_acp.apm Locally Modified 11
clock_test_mem_synth_exe.apm Locally Modified 11
clock_test_mem_synth_acp.apm Locally Modified 11
clock_test_synth_exe.apm Locally Modified 11
clock_test_synth_acp.apm Locally Modified 11
Directory config/pm/leap/tests/interconnect_test
interconnect_test_hybrid_exe.apm Locally Modified 11
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_nopvt_exe.apm Locally Modified 11
mem_test_hybrid_nopvt_htg.apm Locally Modified 11
mem_test_hybrid_nopvt_acp.apm Locally Modified 11
mem_test_hybrid_exe.apm Locally Modified 11
mem_test_hybrid_htg.apm Locally Modified 11
mem_test_hybrid_acp.apm Locally Modified 11
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 11
nallatech_fake_sram_debugger.apm Locally Modified 11
sram_debugger_htg.apm Locally Modified 11
Directory config/pm/leap/debuggers/jtag
jtag_htg_debugger.apm Locally Modified 11
Update stale .apm files.
----------
mcadler Date: Tue Oct 4 15:03:50 EDT 2011 CSN: CSN-leap-debug-13
Tue Oct 4 19:03:50 UTC 2011
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 12
Directory modules/apps/debuggers
platform-debugger.bsv Locally Modified 12
platform-debugger.cpp Locally Modified 12
platform-debugger.rrr Locally Modified 12
Updates to SRAM debugger:
- Generalize banks specification in RRR interface.
- Add the ability to trigger pipelined read requests in order to test for
read errors and read-clock calibration problems.
----------
mcadler Date: Thu Dec 1 14:35:26 EST 2011 CSN: CSN-leap-debug-14
Thu Dec 1 19:35:26 UTC 2011
Directory config/pm/leap/debuggers/sram
sram_debugger_nallatech_acp.apm Locally Modified 13
nallatech_fake_sram_debugger.apm Locally Modified 13
sram_debugger_htg.apm Locally Modified 13
Update platforms for LEAP changes: moved platform and soft services to FPGA
environment.
----------
mcadler Date: Sat Dec 10 16:49:40 EST 2011 CSN: CSN-leap-debug-15
Sat Dec 10 21:49:40 UTC 2011
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_exe.apm Locally Modified 14
Update model configuration.
----------
mcadler Date: Wed Dec 14 23:32:22 EST 2011 CSN: CSN-leap-debug-16
Thu Dec 15 04:32:22 UTC 2011
Directory config/pm/leap/tests/mem_test
mem_test_hybrid_nopvt_exe.apm Locally Modified 15
mem_test_hybrid_nopvt_acp.apm Locally Modified 15
mem_test_hybrid_htg.apm Locally Modified 15
mem_test_hybrid_acp.apm Locally Modified 15
Clean up.
----------
mcadler Date: Wed Feb 8 18:05:54 EST 2012 CSN: CSN-leap-debug-17
Wed Feb 8 23:05:54 UTC 2012
Directory config/pm/leap/tests
stdio_test/ Locally Added 0
Directory config/pm/leap/tests/stdio_test
stdio_test_hybrid_exe.apm Locally Added 0
stdio_test_hybrid_acp.apm Locally Added 0
Directory modules/apps/tests
stdio_test/ Locally Added 0
Directory modules/apps/tests/stdio_test
stdio-test.awb Locally Added 0
stdio-test.bsv Locally Added 0
README Locally Added 0
Add a test harness for the standard I/O service.
----------
jsemer Date: Fri Feb 10 15:29:28 EST 2012 CSN: CSN-leap-debug-18
Fri Feb 10 20:29:28 UTC 2012
Directory config/pm/leap/tests/stdio_test
stdio_test_hybrid_xupv5.apm Locally Added 0
Added an xupv5 version of the stdio test.
----------
mcadler Date: Wed Feb 15 20:25:28 EST 2012 CSN: CSN-leap-debug-19
Thu Feb 16 01:25:28 UTC 2012
Directory modules/apps/tests/stdio_test
stdio-test.bsv Locally Modified 18
Add tests for new features, including a large test of fread because the
marshalling code on the software side and the buffering code in the hardware
is somewhat complicated in order to avoid deadlocks.
----------
mcadler Date: Thu Feb 16 17:02:20 EST 2012 CSN: CSN-leap-debug-20
Thu Feb 16 22:02:20 UTC 2012
Directory config/pm/leap/tests/stdio_test
stdio_test_hybrid_exe.apm Locally Modified 19
Directory modules/apps/tests/stdio_test
stdio-test.bsv Locally Modified 19
- Use the no-memory software platform for StdIO test.
- Tweak file sizes to reduce run time.
----------
mcadler Date: Fri Feb 17 19:32:02 EST 2012 CSN: CSN-leap-debug-21
Sat Feb 18 00:32:02 UTC 2012
Directory modules/apps/tests/alu_test
alu-test-streamid.dic Locally Removed 20
alu-test.awb Locally Modified 20
alu-test.bsv Locally Modified 20
alu-test-streams.dic Locally Removed 20
Directory modules/apps/tests/shared_pipeline_test
shared-pipeline-test.bsv Locally Modified 20
shared-pipeline-test.dic Locally Removed 20
shared-pipeline-test.awb Locally Modified 20
Directory modules/apps/tests/mem_test
mem-test.bsv Locally Modified 20
mem-test.dic Locally Modified 20
Use STDIO instead of STREAMS. There are a few more programs to go that I'll
fix later.
----------
kfleming Date: Tue Apr 10 12:18:52 EDT 2012 CSN: CSN-leap-debug-22
Tue Apr 10 16:18:52 UTC 2012
Directory config/pm/leap/tests
mem_perf/ Locally Added 0
Directory config/pm/leap/tests/mem_perf
mem_perf_hybrid_no_pvt_acp.apm Locally Added 0
mem_perf_hybrid_exe.apm Locally Added 0
mem_perf_hybrid_acp.apm Locally Added 0
Directory modules/apps/tests
mem_perf/ Locally Added 0
Directory modules/apps/tests/mem_perf
mem-perf.awb Locally Added 0
mem-perf.bsv Locally Added 0
mem-perf.dic Locally Added 0
Added a new test that measures the performance of scratchpads across
several stride patterns and working set sizes.
----------
mcadler Date: Thu Apr 12 17:07:56 EDT 2012 CSN: CSN-leap-debug-23
Thu Apr 12 21:07:56 UTC 2012
Directory modules/apps/tests/mem_perf
mem-perf.bsv Locally Modified 22
Eliminate STDIO timing from results. Not likely a big factor given the low
I/O rate, but may as well do the right thing.
----------
kfleming Date: Tue Jun 12 22:24:10 EDT 2012 CSN: CSN-leap-debug-24
Wed Jun 13 02:24:10 UTC 2012
Directory modules/apps/tests/mem_perf
mem-perf.bsv Locally Modified 23
Changed the stride pattern for the memory mountain to better expose
the L2 cache.
----------
keflemin Date: Fri Jun 15 17:05:36 EDT 2012 CSN: CSN-leap-debug-25
Fri Jun 15 21:05:36 UTC 2012
Directory config/pm/leap/tests/mem_perf
mem_perf_hybrid_acp.apm Locally Modified 24
Directory modules/apps/tests/mem_perf
mem-perf-alt.bsv Locally Added 0
mem-perf-wrapper.bsv Locally Added 0
mem-perf.awb Locally Modified 24
mem-perf.bsv Locally Modified 24
mem-perf-alt.dic Locally Added 0
mem-perf-wrapper-multi.awb Locally Added 0
mem-perf-wrapper-multi.bsv Locally Added 0
mem-perf-wrapper.awb Locally Added 0
mem-perf-alt.awb Locally Added 0
Added modules for multiple fpga memory performance tests.
----------
kfleming Date: Wed Jun 27 09:51:47 EDT 2012 CSN: CSN-leap-debug-26
Wed Jun 27 13:51:47 UTC 2012
Directory config/pm/leap/tests/mem_perf
mem_perf_hybrid_exe.apm Locally Modified 25
Directory modules/apps/tests/mem_perf
mem-perf.bsv Locally Modified 25
Added a correctness check to mem-perf test
----------
kfleming Date: Thu Jun 28 21:19:57 EDT 2012 CSN: CSN-leap-debug-27
Fri Jun 29 01:19:57 UTC 2012
Directory modules/apps/tests/mem_perf
mem-perf.bsv Locally Modified 26
mem-perf-wrapper-multi.bsv Locally Modified 26
Fixed perf bug in the memory performance test.
----------
kfleming Date: Thu Jul 12 10:22:26 EDT 2012 CSN: CSN-leap-debug-28
Thu Jul 12 14:22:26 UTC 2012
Directory config/pm/leap/tests/mem_perf
mem_perf_hybrid_exe.apm Locally Modified 27
mem_perf_hybrid_acp.apm Locally Modified 27
Directory modules/apps/tests/mem_perf
mem-perf.awb Locally Modified 27
mem-perf.bsv Locally Modified 27
connected_application/ Locally Added 0
Directory modules/apps/tests/mem_perf/connected_application
connected-application-test.cpp Locally Added 0
connected-application-test.h Locally Added 0
connected-application-test.awb Locally Added 0
connected-application-test.bsv Locally Added 0
Directory modules/apps/tests/mem_perf
mem-perf-wrapper-multi.awb Locally Modified 27
mem-perf.rrr Locally Added 0
mem-perf-wrapper.awb Locally Modified 27
Upgrades to the mem-perf test. It can now dump statistics for single experiments.
----------
kfleming Date: Tue Jul 24 13:48:02 EDT 2012 CSN: CSN-leap-debug-29
Tue Jul 24 17:48:02 UTC 2012
Directory modules/apps/tests/mem_perf
mem-perf.bsv Locally Modified 28
Added latency and fifo depth controls to memory performance test.
----------
mcadler Date: Sun Jul 29 14:32:27 EDT 2012 CSN: CSN-leap-debug-30
Sun Jul 29 18:32:27 UTC 2012
Directory modules/apps/tests/channel-integrity-test
chan-test-16.h Locally Modified 29
chan-test.h Locally Modified 29
Update for new --help argument interface.
----------
mcadler Date: Mon Jul 30 13:12:07 EDT 2012 CSN: CSN-leap-debug-31
Mon Jul 30 17:12:07 UTC 2012
Directory modules/apps/tests/mem_perf
mem-perf.bsv Locally Modified 30
Directory modules/apps/tests/mem_perf/connected_application
connected-application-test.cpp Locally Modified 30
Directory modules/apps/tests/mem_perf
mem-perf.rrr Locally Modified 30
- Take advantage of the existing RRR control logic and run the test from
software. Parameters are now passed over RRR and each test then reverts
to waiting for a command. Removed a bunch of hardware control logic.
(Now it is easy to build a shorter test in the software controller when
running in Bluesim.)
- Eliminated 2nd stride 128 test.
- Apply a trivial mix function to data to force a test that values stored
are != the address of the value.
- The printf in the hardware side isn't really necessary anymore, since test
results could be returned via RRR. Left the printf for now.
----------
kfleming Date: Thu Oct 18 20:08:49 EDT 2012 CSN: CSN-leap-debug-32