-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.tgff
5164 lines (3523 loc) · 153 KB
/
a.tgff
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
@HYPERPERIOD 0.01
@COMMUN_QUANT 0 {
0 4E3
1 8E3
2 15E3
3 1E3
}
@TASK_GRAPH 0 {
PERIOD 0.01
TASK src TYPE 45 host 0
TASK can1 TYPE 0 host 1
TASK fp TYPE 1 host 1
TASK can2 TYPE 0 host 1
TASK pulse TYPE 12 host 1
TASK sink TYPE 45 host 2
ARC a0_0 FROM src TO can1 TYPE 0
ARC a0_1 FROM can1 to fp TYPE 0
ARC a0_1 FROM fp TO can2 TYPE 0
ARC a0_2 FROM can2 TO pulse TYPE 0
ARC a0_3 FROM pulse TO sink TYPE 1
HARD_DEADLINE d0_0 ON sink AT 0.03
}
@TASK_GRAPH 1 {
PERIOD 0.01
TASK src TYPE 45 host 2
TASK iir TYPE 7 host 1
TASK idct TYPE 8 host 1
TASK sink TYPE 45 host 0
ARC a1_0 FROM src TO iir TYPE 0
ARC a1_1 FROM iir TO idct TYPE 0
ARC a1_2 FROM idct TO sink TYPE 0
HARD_DEADLINE d1_0 ON sink AT 0.06
SOFT_DEADLINE d1_1 ON sink AT 0.02
}
@TASK_GRAPH 2 {
PERIOD 0.01
TASK src TYPE 45 host 0
TASK fft TYPE 5 host 1
TASK matrix TYPE 10 host 1
TASK ifft TYPE 9 host 1
TASK fir TYPE 6 host 1
TASK angle TYPE 0 host 1
TASK road TYPE 13 host 1
TASK table TYPE 14 host 1
TASK sink TYPE 45 host 2
ARC a2_0 FROM src TO fir TYPE 0
ARC a2_1 FROM fir TO angle TYPE 0
ARC a2_2 FROM src TO fft TYPE 2
ARC a2_3 FROM fft TO matrix TYPE 2
ARC a2_4 FROM matrix TO ifft TYPE 2
ARC a2_5 FROM ifft TO angle TYPE 2
ARC a2_6 FROM angle TO road TYPE 0
ARC a2_7 FROM road TO table TYPE 0
ARC a2_8 FROM table TO sink TYPE 3
HARD_DEADLINE d2_0 ON sink AT 0.06
SOFT_DEADLINE d2_1 ON sink AT 0.02
}
@TASK_GRAPH 3 {
PERIOD 0.005
TASK src TYPE 45 host 2
TASK ptr TYPE 11 host 1
TASK cache TYPE 3 host 1
TASK tooth TYPE 15 host 1
TASK sink TYPE 45 host 0
ARC a3_0 FROM src TO ptr TYPE 3
ARC a3_1 FROM ptr TO cache TYPE 1
ARC a3_2 FROM cache TO tooth TYPE 1
ARC a3_3 FROM tooth TO sink TYPE 3
HARD_DEADLINE d3_0 ON sink AT 0.06
SOFT_DEADLINE d3_1 ON sink AT 0.01
}
# AMD ElanSC520-133 MHz
@CLIENT_PE 0 {
# price buffered preempt_power commun_energy_bit io_energy_bit idle_power
33 1 0.32 0 0 0.032
#------------------------------------------------------------------------------
# type version valid task_time preempt_time code_bits task_power
# Angle to Time Conversion
0 0 1 4.5e-05 150E-6 6.9e+04 0.32
# Basic floating point
1 0 1 0.000115 150E-6 5.8e+04 0.32
# Bit Manipulation
2 0 1 0.00245 150E-6 2.9e+04 0.32
# Cache Buster
3 0 1 1.75e-05 150E-6 2e+04 0.32
# CAN Remote Data Request
4 0 1 9e-06 150E-6 1.4e+04 0.32
# Fast Fourier Transform (Auto/Indust. Version)
5 0 1 0.07 150E-6 7.1e+04 0.32
# Finite Impulse Response Filter (Auto/Indust. Vers)
6 0 1 0.000345 150E-6 1.7e+04 0.32
# Infinite Impulse Response Filter
7 0 1 0.0004 150E-6 8.7e+04 0.32
# Inverse discrete cosine transfom
8 0 1 0.00455 150E-6 7.5e+04 0.32
# Inverse Fast Fourier Transform (Auto/Indust. Vers)
9 0 1 0.065 150E-6 6.9e+04 0.32
# Matrix arithmetic
10 0 1 0.0335 150E-6 9.3e+04 0.32
# Pointer Chasing
11 0 1 0.00165 150E-6 9.6e+03 0.32
# Pulse Width Modulation
12 0 1 2.25e-05 150E-6 1.4e+04 0.32
# Road Speed Calculation
13 0 1 1.6e-05 150E-6 6.9e+03 0.32
# Table Lookup and Interpolation
14 0 1 0.00015 150E-6 6e+04 0.32
# Tooth To Spark
15 0 1 0.00037 150E-6 4.1e+04 0.32
# OSPF/Dijkstra
16 0 1 0.006 150E-6 2.8e+05 0.32
# Route Lookup/Patricia
17 0 1 0.016 150E-6 2.5e+05 0.32
# Packet Flow - 512 kbytes
18 0 1 0.00485 150E-6 2.6e+05 0.32
# Packet Flow - 1 Mbyte
19 0 1 0.01 150E-6 2.6e+05 0.32
# Packet Flow - 2 Mbytes
20 0 1 0.02 150E-6 2.6e+05 0.32
# Autocorrelation - Data1 (pulse)
21 0 1 0.000155 150E-6 4.4e+03 0.32
# Autocorrelation - Data2 (sine)
22 0 1 0.0255 150E-6 4.4e+03 0.32
# Auto-Correlation - Data3 (speech)
23 0 1 0.024 150E-6 4.4e+03 0.32
# Convolutional Encoder - Data1 (xk5r2dt)
24 0 1 0.0034 150E-6 6.3e+03 0.32
# Convolutional Encoder - Data2 (xk4r2dt)
25 0 1 0.00405 150E-6 6.3e+03 0.32
# Convolutional Encoder - Data3 (xk3r2dt)
26 0 1 0.0046 150E-6 6.3e+03 0.32
# Fixed-point Bit Allocation - Data2 (typ)
27 0 1 0.0305 150E-6 5.4e+03 0.32
# Fixed-point Bit Allocation - Data3 (step)
28 0 1 0.00205 150E-6 5.4e+03 0.32
# Fixed Point Bit Allocation - Data6 (pent)
29 0 1 0.02 150E-6 5.4e+03 0.32
# Fixed Point Complex FFT - Data1 (pulse)
30 0 1 0.0065 150E-6 1.3e+05 0.32
# Fixed point Complex FFT - Data2 (spn)
31 0 1 0.0065 150E-6 1.3e+05 0.32
# Fixed Point Complex FFT - Data3 (sine)
32 0 1 0.0065 150E-6 1.3e+05 0.32
# Viterbi GSM Decoder - Data1 (get)
33 0 1 0.0155 150E-6 1.1e+04 0.32
# Viterbi GSM Decoder - Data2 (toggle)
34 0 1 0.0155 150E-6 1.1e+04 0.32
# Viterbi GSM Decoder - Data3 (ones)
35 0 1 0.0155 150E-6 1.1e+04 0.32
# Viterbi GSM Decoder - Data4 (zeros)
36 0 1 0.0155 150E-6 1.1e+04 0.32
# Compress JPEG
37 0 1 1.65 150E-6 2.4e+05 0.32
# Decompress JPEG
38 0 1 1.25 150E-6 2.9e+05 0.32
# High Pass Grey-scale filter
39 0 1 0.265 150E-6 7.6e+03 0.32
# RGB to CYMK Conversion
40 0 1 0.145 150E-6 5.8e+03 0.32
# RGB to YIQ Conversion
41 0 1 0.55 150E-6 7.2e+03 0.32
# Dithering
42 0 1 0.145 150E-6 3.6e+03 0.32
# Image Rotation
43 0 1 0.0305 150E-6 1.2e+04 0.32
# Text Processing
44 0 1 0.0455 150E-6 1.4e+04 0.32
# src-sink
45 0 1 5e-05 150E-6 80 0.32
}
# AMD K6-2 450
@CLIENT_PE 1 {
# price buffered preempt_power commun_energy_bit io_energy_bit idle_power
88 1 2.26 0 0 0.23
#------------------------------------------------------------------------------
# type version valid task_time preempt_time code_bits task_power
# Angle to Time Conversion
0 0 0 0 150E-6 0 2.3
# Basic floating point
1 0 0 0 150E-6 0 2.3
# Bit Manipulation
2 0 0 0 150E-6 0 2.3
# Cache Buster
3 0 0 0 150E-6 0 2.3
# CAN Remote Data Request
4 0 0 0 150E-6 0 2.3
# Fast Fourier Transform (Auto/Indust. Version)
5 0 0 0 150E-6 0 2.3
# Finite Impulse Response Filter (Auto/Indust. Vers)
6 0 0 0 150E-6 0 2.3
# Infinite Impulse Response Filter
7 0 0 0 150E-6 0 2.3
# Inverse discrete cosine transfom
8 0 0 0 150E-6 0 2.3
# Inverse Fast Fourier Transform (Auto/Indust. Vers)
9 0 0 0 150E-6 0 2.3
# Matrix arithmetic
10 0 0 0 150E-6 0 2.3
# Pointer Chasing
11 0 0 0 150E-6 0 2.3
# Pulse Width Modulation
12 0 0 0 150E-6 0 2.3
# Road Speed Calculation
13 0 0 0 150E-6 0 2.3
# Table Lookup and Interpolation
14 0 0 0 150E-6 0 2.3
# Tooth To Spark
15 0 0 0 150E-6 0 2.3
# OSPF/Dijkstra
16 0 1 0.0007 150E-6 6.4e+04 2.3
# Route Lookup/Patricia
17 0 1 0.00295 150E-6 3.2e+05 2.3
# Packet Flow - 512 kbytes
18 0 1 0.0022 150E-6 4.5e+04 2.3
# Packet Flow - 1 Mbyte
19 0 1 0.0043 150E-6 4.5e+04 2.3
# Packet Flow - 2 Mbytes
20 0 1 0.009 150E-6 4.5e+04 2.3
# Autocorrelation - Data1 (pulse)
21 0 0 0 150E-6 0 2.3
# Autocorrelation - Data2 (sine)
22 0 0 0 150E-6 0 2.3
# Auto-Correlation - Data3 (speech)
23 0 0 0 150E-6 0 2.3
# Convolutional Encoder - Data1 (xk5r2dt)
24 0 0 0 150E-6 0 2.3
# Convolutional Encoder - Data2 (xk4r2dt)
25 0 0 0 150E-6 0 2.3
# Convolutional Encoder - Data3 (xk3r2dt)
26 0 0 0 150E-6 0 2.3
# Fixed-point Bit Allocation - Data2 (typ)
27 0 0 0 150E-6 0 2.3
# Fixed-point Bit Allocation - Data3 (step)
28 0 0 0 150E-6 0 2.3
# Fixed Point Bit Allocation - Data6 (pent)
29 0 0 0 150E-6 0 2.3
# Fixed Point Complex FFT - Data1 (pulse)
30 0 0 0 150E-6 0 2.3
# Fixed point Complex FFT - Data2 (spn)
31 0 0 0 150E-6 0 2.3
# Fixed Point Complex FFT - Data3 (sine)
32 0 0 0 150E-6 0 2.3
# Viterbi GSM Decoder - Data1 (get)
33 0 0 0 150E-6 0 2.3
# Viterbi GSM Decoder - Data2 (toggle)
34 0 0 0 150E-6 0 2.3
# Viterbi GSM Decoder - Data3 (ones)
35 0 0 0 150E-6 0 2.3
# Viterbi GSM Decoder - Data4 (zeros)
36 0 0 0 150E-6 0 2.3
# Compress JPEG
37 0 0 0 150E-6 0 2.3
# Decompress JPEG
38 0 0 0 150E-6 0 2.3
# High Pass Grey-scale filter
39 0 0 0 150E-6 0 2.3
# RGB to CYMK Conversion
40 0 0 0 150E-6 0 2.3
# RGB to YIQ Conversion
41 0 0 0 150E-6 0 2.3
# Dithering
42 0 0 0 150E-6 0 2.3
# Image Rotation
43 0 0 0 150E-6 0 2.3
# Text Processing
44 0 0 0 150E-6 0 2.3
# src-sink
45 0 1 5e-05 150E-6 80 2.3
}
# AMD K6-2E 400Mhz/ACR
@CLIENT_PE 2 {
# price buffered preempt_power commun_energy_bit io_energy_bit idle_power
77 1 2.03 0 0 0.2
#------------------------------------------------------------------------------
# type version valid task_time preempt_time code_bits task_power
# Angle to Time Conversion
0 0 1 7.5e-06 150E-6 6.9e+04 2
# Basic floating point
1 0 1 1.45e-05 150E-6 5.8e+04 2
# Bit Manipulation
2 0 1 0.000455 150E-6 2.9e+04 2
# Cache Buster
3 0 1 2.4e-06 150E-6 2e+04 2
# CAN Remote Data Request
4 0 1 1.75e-06 150E-6 1.4e+04 2
# Fast Fourier Transform (Auto/Indust. Version)
5 0 1 0.008 150E-6 7.1e+04 2
# Finite Impulse Response Filter (Auto/Indust. Vers)
6 0 1 4.85e-05 150E-6 1.7e+04 2
# Infinite Impulse Response Filter
7 0 1 6e-05 150E-6 8.7e+04 2
# Inverse discrete cosine transfom
8 0 1 0.000425 150E-6 7.5e+04 2
# Inverse Fast Fourier Transform (Auto/Indust. Vers)
9 0 1 0.0075 150E-6 6.9e+04 2
# Matrix arithmetic
10 0 1 0.0045 150E-6 9.3e+04 2
# Pointer Chasing
11 0 1 0.000245 150E-6 9.6e+03 2
# Pulse Width Modulation
12 0 1 3.35e-06 150E-6 1.4e+04 2
# Road Speed Calculation
13 0 1 2.5e-06 150E-6 6.9e+03 2
# Table Lookup and Interpolation
14 0 1 1.8e-05 150E-6 6e+04 2
# Tooth To Spark
15 0 1 4.25e-05 150E-6 4.1e+04 2
# OSPF/Dijkstra
16 0 1 0.0007 150E-6 3.4e+04 2
# Route Lookup/Patricia
17 0 1 0.0032 150E-6 6.1e+03 2
# Packet Flow - 512 kbytes
18 0 1 0.0012 150E-6 1.8e+04 2
# Packet Flow - 1 Mbyte
19 0 1 0.0029 150E-6 1.8e+04 2
# Packet Flow - 2 Mbytes
20 0 1 0.006 150E-6 1.8e+04 2
# Autocorrelation - Data1 (pulse)
21 0 1 1.4e-05 150E-6 4.4e+03 2
# Autocorrelation - Data2 (sine)
22 0 1 0.00185 150E-6 4.4e+03 2
# Auto-Correlation - Data3 (speech)
23 0 1 0.00175 150E-6 4.4e+03 2
# Convolutional Encoder - Data1 (xk5r2dt)
24 0 1 0.0005 150E-6 8.2e+03 2
# Convolutional Encoder - Data2 (xk4r2dt)
25 0 1 0.0006 150E-6 8.2e+03 2
# Convolutional Encoder - Data3 (xk3r2dt)
26 0 1 0.0007 150E-6 8.2e+03 2
# Fixed-point Bit Allocation - Data2 (typ)
27 0 1 0.00415 150E-6 5.4e+03 2
# Fixed-point Bit Allocation - Data3 (step)
28 0 1 0.00031 150E-6 5.4e+03 2
# Fixed Point Bit Allocation - Data6 (pent)
29 0 1 0.0028 150E-6 5.4e+03 2
# Fixed Point Complex FFT - Data1 (pulse)
30 0 1 0.0007 150E-6 1.3e+05 2
# Fixed point Complex FFT - Data2 (spn)
31 0 1 0.0007 150E-6 1.3e+05 2
# Fixed Point Complex FFT - Data3 (sine)
32 0 1 0.0007 150E-6 1.3e+05 2
# Viterbi GSM Decoder - Data1 (get)
33 0 1 0.00315 150E-6 1.1e+04 2
# Viterbi GSM Decoder - Data2 (toggle)
34 0 1 0.00305 150E-6 1.1e+04 2
# Viterbi GSM Decoder - Data3 (ones)
35 0 1 0.00305 150E-6 1.1e+04 2
# Viterbi GSM Decoder - Data4 (zeros)
36 0 1 0.00295 150E-6 1.1e+04 2
# Compress JPEG
37 0 1 0.28 150E-6 2.4e+05 2
# Decompress JPEG
38 0 1 0.225 150E-6 2.9e+05 2
# High Pass Grey-scale filter
39 0 1 0.055 150E-6 7.6e+03 2
# RGB to CYMK Conversion
40 0 1 0.0385 150E-6 5.8e+03 2
# RGB to YIQ Conversion
41 0 1 0.08 150E-6 7.2e+03 2
# Dithering
42 0 1 0.0255 150E-6 3.6e+03 2
# Image Rotation
43 0 1 0.0105 150E-6 1.2e+04 2
# Text Processing
44 0 1 0.014 150E-6 1.4e+04 2
# src-sink
45 0 1 5e-05 150E-6 80 2
}
# AMD K6-2E+ 500Mhz/ACR
@CLIENT_PE 3 {
# price buffered preempt_power commun_energy_bit io_energy_bit idle_power
99 1 2.78 0 0 0.28
#------------------------------------------------------------------------------
# type version valid task_time preempt_time code_bits task_power
# Angle to Time Conversion
0 0 1 6e-06 150E-6 6.9e+04 2.8
# Basic floating point
1 0 1 1.15e-05 150E-6 5.8e+04 2.8
# Bit Manipulation
2 0 1 0.000365 150E-6 2.9e+04 2.8
# Cache Buster
3 0 1 1.7e-06 150E-6 2e+04 2.8
# CAN Remote Data Request
4 0 1 1.25e-06 150E-6 1.4e+04 2.8
# Fast Fourier Transform (Auto/Indust. Version)
5 0 1 0.0055 150E-6 7.1e+04 2.8
# Finite Impulse Response Filter (Auto/Indust. Vers)
6 0 1 3.85e-05 150E-6 1.7e+04 2.8
# Infinite Impulse Response Filter
7 0 1 4.6e-05 150E-6 8.7e+04 2.8
# Inverse discrete cosine transfom
8 0 1 0.000335 150E-6 7.5e+04 2.8
# Inverse Fast Fourier Transform (Auto/Indust. Vers)
9 0 1 0.005 150E-6 6.9e+04 2.8
# Matrix arithmetic
10 0 1 0.0032 150E-6 9.3e+04 2.8
# Pointer Chasing
11 0 1 0.000195 150E-6 9.6e+03 2.8
# Pulse Width Modulation
12 0 1 2.4e-06 150E-6 1.4e+04 2.8
# Road Speed Calculation
13 0 1 1.8e-06 150E-6 6.9e+03 2.8
# Table Lookup and Interpolation
14 0 1 1.4e-05 150E-6 6e+04 2.8
# Tooth To Spark
15 0 1 3.35e-05 150E-6 4.1e+04 2.8
# OSPF/Dijkstra
16 0 1 0.00055 150E-6 3.4e+04 2.8
# Route Lookup/Patricia
17 0 1 0.0025 150E-6 6.1e+03 2.8
# Packet Flow - 512 kbytes
18 0 1 0.0006 150E-6 1.8e+04 2.8
# Packet Flow - 1 Mbyte
19 0 1 0.0012 150E-6 1.8e+04 2.8
# Packet Flow - 2 Mbytes
20 0 1 0.00345 150E-6 1.8e+04 2.8
# Autocorrelation - Data1 (pulse)
21 0 1 1.1e-05 150E-6 4.4e+03 2.8
# Autocorrelation - Data2 (sine)
22 0 1 0.00145 150E-6 4.4e+03 2.8
# Auto-Correlation - Data3 (speech)
23 0 1 0.0014 150E-6 4.4e+03 2.8
# Convolutional Encoder - Data1 (xk5r2dt)
24 0 1 0.000415 150E-6 6.3e+03 2.8
# Convolutional Encoder - Data2 (xk4r2dt)
25 0 1 0.00049 150E-6 6.3e+03 2.8
# Convolutional Encoder - Data3 (xk3r2dt)
26 0 1 0.00055 150E-6 6.3e+03 2.8
# Fixed-point Bit Allocation - Data2 (typ)
27 0 1 0.0033 150E-6 5.4e+03 2.8
# Fixed-point Bit Allocation - Data3 (step)
28 0 1 0.00025 150E-6 5.4e+03 2.8
# Fixed Point Bit Allocation - Data6 (pent)
29 0 1 0.0022 150E-6 5.4e+03 2.8
# Fixed Point Complex FFT - Data1 (pulse)
30 0 1 0.00055 150E-6 1.3e+05 2.8
# Fixed point Complex FFT - Data2 (spn)
31 0 1 0.00055 150E-6 1.3e+05 2.8
# Fixed Point Complex FFT - Data3 (sine)
32 0 1 0.00055 150E-6 1.3e+05 2.8
# Viterbi GSM Decoder - Data1 (get)
33 0 1 0.0025 150E-6 1.1e+04 2.8
# Viterbi GSM Decoder - Data2 (toggle)
34 0 1 0.00245 150E-6 1.1e+04 2.8
# Viterbi GSM Decoder - Data3 (ones)
35 0 1 0.00245 150E-6 1.1e+04 2.8
# Viterbi GSM Decoder - Data4 (zeros)
36 0 1 0.00235 150E-6 1.1e+04 2.8
# Compress JPEG
37 0 1 0.205 150E-6 2.4e+05 2.8
# Decompress JPEG
38 0 1 0.165 150E-6 2.9e+05 2.8
# High Pass Grey-scale filter
39 0 1 0.039 150E-6 7.6e+03 2.8
# RGB to CYMK Conversion
40 0 1 0.0305 150E-6 5.8e+03 2.8
# RGB to YIQ Conversion
41 0 1 0.06 150E-6 7.2e+03 2.8
# Dithering
42 0 1 0.0195 150E-6 3.6e+03 2.8
# Image Rotation
43 0 1 0.006 150E-6 1.2e+04 2.8
# Text Processing
44 0 1 0.008 150E-6 1.4e+04 2.8
# src-sink
45 0 1 5e-05 150E-6 80 2.8
}
# AMD K6-IIIE+ 550Mhz/ACR
@CLIENT_PE 4 {
# price buffered preempt_power commun_energy_bit io_energy_bit idle_power
125.6 1 3.14 0 0 0.31
#------------------------------------------------------------------------------
# type version valid task_time preempt_time code_bits task_power
# Angle to Time Conversion
0 0 1 5.5e-06 150E-6 6.9e+04 3.1
# Basic floating point
1 0 1 1.05e-05 150E-6 5.8e+04 3.1
# Bit Manipulation
2 0 1 0.00033 150E-6 2.9e+04 3.1
# Cache Buster
3 0 1 1.55e-06 150E-6 2e+04 3.1
# CAN Remote Data Request
4 0 1 1.15e-06 150E-6 1.4e+04 3.1
# Fast Fourier Transform (Auto/Indust. Version)
5 0 1 0.005 150E-6 7.1e+04 3.1
# Finite Impulse Response Filter (Auto/Indust. Vers)
6 0 1 3.5e-05 150E-6 1.7e+04 3.1
# Infinite Impulse Response Filter
7 0 1 4.2e-05 150E-6 8.7e+04 3.1
# Inverse discrete cosine transfom
8 0 1 0.000305 150E-6 7.5e+04 3.1
# Inverse Fast Fourier Transform (Auto/Indust. Vers)
9 0 1 0.00465 150E-6 6.9e+04 3.1
# Matrix arithmetic
10 0 1 0.0029 150E-6 9.3e+04 3.1
# Pointer Chasing
11 0 1 0.000175 150E-6 9.6e+03 3.1
# Pulse Width Modulation
12 0 1 2.2e-06 150E-6 1.4e+04 3.1
# Road Speed Calculation
13 0 1 1.65e-06 150E-6 6.9e+03 3.1
# Table Lookup and Interpolation
14 0 1 1.3e-05 150E-6 6e+04 3.1
# Tooth To Spark
15 0 1 3e-05 150E-6 4.1e+04 3.1
# OSPF/Dijkstra
16 0 1 0.00049 150E-6 3.4e+04 3.1
# Route Lookup/Patricia
17 0 1 0.0023 150E-6 6.1e+03 3.1
# Packet Flow - 512 kbytes
18 0 1 0.00055 150E-6 1.8e+04 3.1
# Packet Flow - 1 Mbyte
19 0 1 0.0011 150E-6 1.8e+04 3.1
# Packet Flow - 2 Mbytes
20 0 1 0.0022 150E-6 1.8e+04 3.1
# Autocorrelation - Data1 (pulse)
21 0 1 1e-05 150E-6 4.4e+03 3.1
# Autocorrelation - Data2 (sine)
22 0 1 0.00135 150E-6 4.4e+03 3.1
# Auto-Correlation - Data3 (speech)
23 0 1 0.00125 150E-6 4.4e+03 3.1
# Convolutional Encoder - Data1 (xk5r2dt)
24 0 1 0.00038 150E-6 6.3e+03 3.1
# Convolutional Encoder - Data2 (xk4r2dt)
25 0 1 0.000445 150E-6 6.3e+03 3.1
# Convolutional Encoder - Data3 (xk3r2dt)
26 0 1 0.000495 150E-6 6.3e+03 3.1
# Fixed-point Bit Allocation - Data2 (typ)
27 0 1 0.003 150E-6 5.4e+03 3.1
# Fixed-point Bit Allocation - Data3 (step)
28 0 1 0.000225 150E-6 5.4e+03 3.1
# Fixed Point Bit Allocation - Data6 (pent)
29 0 1 0.002 150E-6 5.4e+03 3.1
# Fixed Point Complex FFT - Data1 (pulse)
30 0 1 0.0005 150E-6 1.3e+05 3.1
# Fixed point Complex FFT - Data2 (spn)
31 0 1 0.0005 150E-6 1.3e+05 3.1
# Fixed Point Complex FFT - Data3 (sine)
32 0 1 0.0005 150E-6 1.3e+05 3.1
# Viterbi GSM Decoder - Data1 (get)
33 0 1 0.0023 150E-6 1.1e+04 3.1
# Viterbi GSM Decoder - Data2 (toggle)
34 0 1 0.00225 150E-6 1.1e+04 3.1
# Viterbi GSM Decoder - Data3 (ones)
35 0 1 0.0022 150E-6 1.1e+04 3.1
# Viterbi GSM Decoder - Data4 (zeros)
36 0 1 0.00215 150E-6 1.1e+04 3.1
# Compress JPEG
37 0 0 0 150E-6 0 3.1
# Decompress JPEG
38 0 0 0 150E-6 0 3.1
# High Pass Grey-scale filter
39 0 0 0 150E-6 0 3.1
# RGB to CYMK Conversion
40 0 0 0 150E-6 0 3.1
# RGB to YIQ Conversion
41 0 0 0 150E-6 0 3.1
# Dithering
42 0 1 0.0175 150E-6 3.6e+03 3.1
# Image Rotation
43 0 1 0.0055 150E-6 1.2e+04 3.1
# Text Processing
44 0 1 0.007 150E-6 1.4e+04 3.1
# src-sink
45 0 1 5e-05 150E-6 80 3.1
}
# Analog Devices 21065L - 60 MHz
@CLIENT_PE 5 {
# price buffered preempt_power commun_energy_bit io_energy_bit idle_power
10 1 0.1814 0 0 0.018
#------------------------------------------------------------------------------
# type version valid task_time preempt_time code_bits task_power
# Angle to Time Conversion
0 0 0 0 150E-6 0 0.18
# Basic floating point
1 0 0 0 150E-6 0 0.18
# Bit Manipulation
2 0 0 0 150E-6 0 0.18
# Cache Buster
3 0 0 0 150E-6 0 0.18
# CAN Remote Data Request
4 0 0 0 150E-6 0 0.18
# Fast Fourier Transform (Auto/Indust. Version)
5 0 0 0 150E-6 0 0.18
# Finite Impulse Response Filter (Auto/Indust. Vers)
6 0 0 0 150E-6 0 0.18
# Infinite Impulse Response Filter
7 0 0 0 150E-6 0 0.18
# Inverse discrete cosine transfom
8 0 0 0 150E-6 0 0.18
# Inverse Fast Fourier Transform (Auto/Indust. Vers)
9 0 0 0 150E-6 0 0.18
# Matrix arithmetic
10 0 0 0 150E-6 0 0.18
# Pointer Chasing
11 0 0 0 150E-6 0 0.18
# Pulse Width Modulation
12 0 0 0 150E-6 0 0.18
# Road Speed Calculation
13 0 0 0 150E-6 0 0.18
# Table Lookup and Interpolation
14 0 0 0 150E-6 0 0.18
# Tooth To Spark
15 0 0 0 150E-6 0 0.18
# OSPF/Dijkstra
16 0 0 0 150E-6 0 0.18
# Route Lookup/Patricia
17 0 0 0 150E-6 0 0.18
# Packet Flow - 512 kbytes
18 0 0 0 150E-6 0 0.18
# Packet Flow - 1 Mbyte
19 0 0 0 150E-6 0 0.18
# Packet Flow - 2 Mbytes
20 0 0 0 150E-6 0 0.18
# Autocorrelation - Data1 (pulse)
21 0 1 3.85e-05 150E-6 2.3e+03 0.18
# Autocorrelation - Data2 (sine)
22 0 1 0.0041 150E-6 2.3e+03 0.18
# Auto-Correlation - Data3 (speech)
23 0 1 0.00405 150E-6 2.3e+03 0.18
# Convolutional Encoder - Data1 (xk5r2dt)
24 0 1 0.006 150E-6 8.4e+02 0.18
# Convolutional Encoder - Data2 (xk4r2dt)
25 0 1 0.007 150E-6 8.4e+02 0.18
# Convolutional Encoder - Data3 (xk3r2dt)
26 0 1 0.0075 150E-6 8.4e+02 0.18
# Fixed-point Bit Allocation - Data2 (typ)
27 0 1 0.0315 150E-6 2.8e+03 0.18
# Fixed-point Bit Allocation - Data3 (step)
28 0 1 0.00185 150E-6 2.8e+03 0.18
# Fixed Point Bit Allocation - Data6 (pent)
29 0 1 0.0175 150E-6 2.8e+03 0.18
# Fixed Point Complex FFT - Data1 (pulse)
30 0 1 0.0035 150E-6 5.4e+03 0.18
# Fixed point Complex FFT - Data2 (spn)
31 0 1 0.00355 150E-6 5.4e+03 0.18
# Fixed Point Complex FFT - Data3 (sine)
32 0 1 0.0035 150E-6 5.4e+03 0.18
# Viterbi GSM Decoder - Data1 (get)
33 0 1 0.018 150E-6 3.6e+03 0.18
# Viterbi GSM Decoder - Data2 (toggle)
34 0 1 0.018 150E-6 3.6e+03 0.18
# Viterbi GSM Decoder - Data3 (ones)
35 0 1 0.018 150E-6 3.6e+03 0.18
# Viterbi GSM Decoder - Data4 (zeros)
36 0 1 0.018 150E-6 3.6e+03 0.18
# Compress JPEG
37 0 0 0 150E-6 0 0.18
# Decompress JPEG
38 0 0 0 150E-6 0 0.18
# High Pass Grey-scale filter
39 0 0 0 150E-6 0 0.18
# RGB to CYMK Conversion
40 0 0 0 150E-6 0 0.18
# RGB to YIQ Conversion
41 0 0 0 150E-6 0 0.18
# Dithering
42 0 0 0 150E-6 0 0.18
# Image Rotation
43 0 0 0 150E-6 0 0.18
# Text Processing
44 0 0 0 150E-6 0 0.18
# src-sink
45 0 1 5e-05 150E-6 80 0.18
}
# IBM PowerPC 405GP - 266 Mhz
@CLIENT_PE 6 {
# price buffered preempt_power commun_energy_bit io_energy_bit idle_power
65 1 0.4 0 0 0.04
#------------------------------------------------------------------------------
# type version valid task_time preempt_time code_bits task_power
# Angle to Time Conversion
0 0 1 4.6e-06 150E-6 3.9e+04 0.4
# Basic floating point
1 0 1 9e-06 150E-6 1.4e+05 0.4
# Bit Manipulation
2 0 1 0.00046 150E-6 5.5e+04 0.4
# Cache Buster
3 0 1 1.2e-06 150E-6 2.9e+04 0.4
# CAN Remote Data Request
4 0 1 9e-07 150E-6 6.6e+04 0.4
# Fast Fourier Transform (Auto/Indust. Version)
5 0 1 0.00405 150E-6 1.8e+05 0.4
# Finite Impulse Response Filter (Auto/Indust. Vers)
6 0 1 2.05e-05 150E-6 5.3e+04 0.4
# Infinite Impulse Response Filter
7 0 1 4.25e-05 150E-6 7e+04 0.4