forked from adapteva/epiphany-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
541 lines (457 loc) · 17 KB
/
ChangeLog
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
2015-01-29 Ola Jeppsson <[email protected]>
* scripts/build_and_test_all.sh: Disable some tests that might be
problematic.
2015-01-27 Ola Jeppsson <[email protected]>
* cpu/mutex/src/e_mutex_test.c (int main): Set flag on core0
to start computation. Update expected clock cycles.
* cpu/mutex/src/e_mutex_test0.c: Wait on go flag before
starting.
* cpu/mutex/src/mutex_test.c: Likewise.
2015-01-26 Ola Jeppsson <[email protected]>
* apps/matmul-16/host/src/matmul_host.c (int main): Also clock
CPUTIME. Compare this value to monotonic time to detect if the
system is under high load. If that is the case, and monotonic
time was too slow, do not indicate failure unless we were
allocated enough CPU time. Just print a warning.
2015-01-26 Ola Jeppsson <[email protected]>
* apps/e-bandwidth-test/src/e-bandwidth-test-host.c (int
SRAM_speed): Use clock_gettime() instead gettimeofday() for
better accuracy.
* apps/fft2d/host/src/fft2d_host.c (int main): Likewise.
* apps/fft2d/host/src/fftw.c: Likewise.
* apps/matmul-16/host/src/matmul_host.c (void
matmul_strassen): Likewise.
* apps/matmul-64/host/src/matmul_host.c: Likewise.
* apps/e-bandwidth-test/build.sh: Link host binary with -lrt.
* apps/fft2d/build.sh: Likewise.
2015-01-25 Ola Jeppsson <[email protected]>
* scripts/build_and_test_all.sh: Improve testing and output.
2015-01-25 Ola Jeppsson <[email protected]>
* labs/hardware_barrier/src/emain.c (int main): Add
synchronization point between first E core and host so that
the host can read out the core iteration counters in a
race-free manner.
* labs/hardware_barrier/src/main.c: Likewise.
* labs/hardware_barrier/src/hwb_isr.s: Remove.
* labs/hardware_barrier/build.sh: Remove all references to
hwb_isr.s.
2015-01-25 Ola Jeppsson <[email protected]>
* cpu/mutex/src/mutex_test.c (int main): Update allowed clock
cycle range for new ESDK. Use exit status to report errors.
2015-01-25 Ola Jeppsson <[email protected]>
* apps/matmul-16/test.sh: Forward program's exit status.
2015-01-25 Ola Jeppsson <[email protected]>
* apps/matmul-16/host/src/matmul_host.c (int main): Return
with non-zero exit status on detected performance regressions.
2015-01-25 Ola Jeppsson <[email protected]>
* apps/e-bandwidth-test/src/e-bandwidth-test-host.c (int main):
Return with non-zero exit code on detected errors.
(int SRAM_speed): Report performance regressions.
(int EPI_speed): Return error if Epiphany test did not run to
completion
2015-01-25 Ola Jeppsson <[email protected]>
* softcache/basic_math/Makefile: Fix cross compilation paths.
* softcache/math_example/Makefile: Likewise.
2015-01-24 Ola Jeppsson <[email protected]>
* dma/dma_slave/src/dma_slave_test.c (int main): Go back to
wait time before previous commit.
2015-01-24 Ola Jeppsson <[email protected]>
* dma/dma_2d/src/dma_2d_test.c (int main): Fix missing err
check.
* dma/dma_slave/src/dma_slave_test.c: Slightly increase wait.
2015-01-24 Ola Jeppsson <[email protected]>
* dma/dma_2d/src/dma_2d_test.c (int main): Indicate error with
return code.
* dma/dma_chain/src/dma_chain_test.c: Likewise
* dma/dma_interrupt/src/dma_int_test.c: Likewise
* dma/dma_message_read/src/dma_message_a.c: Likewise
* dma/dma_message_write/src/dma_message_test.c: Likewise
* dma/dma_slave/src/dma_slave_test.c: Likewise
2015-01-16 Ola Jeppsson <[email protected]>
* labs/mem_protect/src/mpf_isr.s: Remove.
* labs/mem_protect/src/emain.c (void mpf_isr): Replace above
assembler page fault handler with C version.
(int main): Simplify. Do not test stack page.
* labs/mem_protect/src/main.c: Simplify.
* labs/mem_protect/build.sh: Don't link with removed assembly
mpf isr. Use linker script that will place stack in local core
SRAM.
2015-01-16 Ola Jeppsson <[email protected]>
* labs/hardware_barrier/src/main.c (int main): Exit with
failure code on detected failure.
2015-01-15 Ola Jeppsson <[email protected]>
* README.md: Add descriptions for missing directories.
2015-01-15 Ola Jeppsson <[email protected]>
* softcache/basic_math/Makefile: Adjustment of paths and cross
compiling.
* softcache/math_example/Makefile: Likewise.
* softcache/basic_math/.gitignore: New file.
* softcache/basic_math/build.sh: New file.
* softcache/basic_math/test.sh: New file.
* softcache/math_example/.gitignore: New file.
* softcache/math_example/build.sh: New file.
* softcache/math_example/test.sh: New file.
2015-01-15 Ola Jeppsson <[email protected]>
* softcache/README.md: New file.
* softcache/basic_math/Makefile: New file.
* softcache/basic_math/cachemanager.S: New file.
* softcache/basic_math/e_math_test.c: New file.
* softcache/basic_math/fast.ldf: New file.
* softcache/basic_math/fast_cacheman.ldf: New file.
* softcache/basic_math/math_test.c: New file.
* softcache/math_example/Makefile: New file.
* softcache/math_example/cachemanager.S: New file.
* softcache/math_example/e_math_example.c: New file.
* softcache/math_example/fast.ldf: New file.
* softcache/math_example/fast_cacheman.ldf: New file.
* softcache/math_example/math_example.c: New file.
2015-01-15 Ola Jeppsson <[email protected]>
* apps/hello-world/src/hello_world.c (int main): Attach to shm
segment if it already exists, instead of failing
2015-01-15 Ola Jeppsson <[email protected]>
* apps/hello-world/src/hello_world.c (int main): Print to
stdout instead of stderr.
2015-01-13 Ola Jeppsson <[email protected]>
* test/e-standby-test/src/e-standby-test.c (int main): Call
e_reset_system().
(int my_reset_system): Rename to my_config_system(). Update
for new ESYS API. Let e_reset_system() handle reset.
* test/e-standby-test/test.sh: Do not redirect stdout.
2015-01-13 Ola Jeppsson <[email protected]>
* apps/e-init/src/e-init.c (int main): Update for new ESYS API.
* apps/e-init/test.sh: Do not redirect stdout.
2015-01-13 Ola Jeppsson <[email protected]>
* errata/noc_fifo/build.sh: Link with e-loader.
2015-01-13 Ola Jeppsson <[email protected]>
* apps/e-dump-mem/src/e-dump-mem.c (int main): Call
e_reset_system().
* apps/e-dump-regs/src/e-dump-regs.c (int main): Likewise.
* io/link_lowpower_mode/src/link_lowpower_mode.c (int main):
Likewise.
* labs/clockgating_mode/src/clockgating_mode.c (int main):
Likewise.
* test/e-mem-test/src/e-mem-test.c (int main): Likewise.
* test/e-regfile-test/src/e-regfile-test.c (int main):
Likewise.
* test/e-mem-test/src/e-mem-test.c (int my_reset_system):
Remove.
* test/e-regfile-test/src/e-regfile-test.c (int
my_reset_system): Likewise.
2014-11-04 Ola Jeppsson <[email protected]>
* cpu/arithmode/test.sh: Fix path in test script.
2014-10-31 Ola Jeppsson <[email protected]>
* scripts/build_and_test_all.sh: Fix segfault on exit in trap
handler. Don't try to test examples when cross compiling.
2014-10-31 Ola Jeppsson <[email protected]>
* Create 2014.11 branch
2014-10-31 Ola Jeppsson <[email protected]>
* apps/eprime/build.sh: Fix cross compilation
* apps/fft2d/build.sh: Fix build failure caused by missing directory
2014-10-30 Ola Jeppsson <[email protected]>
* dma/dma_2d/test.sh:
* dma/dma_interrupt/test.sh:
* dma/dma_message_read/test.sh:
* dma/dma_message_write/test.sh:
* dma/dma_slave/test.sh:
Fix path problems
2014-10-29 Ola Jeppsson <[email protected]>
* dma/dma_slave/src/e_dma_slave_test.c:
* dma/dma_slave/src/e_dma_slave_test1.c:
Reset DMA engines on init.
* dma/dma_slave/src/dma_slave_test.c:
Tell transmitter the coordinate of the receiver core before
starting it
* emesh/emesh_bandwidth_all2one/test.sh:
Fix path problems.
* apps/fft2d/host/Release/matprt.m:
Don't track.
2014-10-22 Ola Jeppsson <[email protected]>
* Many 'test.sh' and a few 'run.sh':
Return example's exit code
* scripts/build_and_test_all.sh:
Limit built examples to current working directory
2014-10-20 Ola Jeppsson <[email protected]>
* scripts/build_and_test_all.sh:
Yet another build/test script. This one seems to find more
examples to build than the others, but its test failure
detection is probably worse.
2014-10-20 Ola Jeppsson <[email protected]>
* apps/shm_test/src/shm_test.c:
* emesh/emesh_bandwidth_all2one/src/mesh_one.c:
* emesh/emesh_traffic/src/mesh_traffic.c:
* io/link_lowpower_mode/src/link_lowpower_mode.c:
* test/e-main/src/e-main.c:
* test/e-test/src/e-test.c:
Minor changes. Make them compile.
2014-10-20 Ola Jeppsson <[email protected]>
* apps/dotproduct/run.sh:
* apps/e-bandwidth-test/test.sh:
* apps/e-dump-mem/test.sh:
* apps/e-dump-regs/test.sh:
* apps/e-fill-mem/test.sh:
* apps/e-init/test.sh:
* apps/e-mem-sync/test.sh:
* apps/eprime/run.sh:
* apps/erm/run.sh:
* apps/erm_example/run.sh:
* apps/fft2d/run.sh:
* apps/fft2d/test.sh:
* apps/hello-world/run.sh:
* apps/matmul-16/run.sh:
* apps/matmul-16/test.sh:
* apps/matmul-64/run.sh:
* apps/shm_test/run.sh:
* apps/shm_test/test.sh:
* archive/e-test/e-test:
* cpu/arithmode/run.sh:
* cpu/arithmode/test.sh:
* cpu/assembly/run.sh:
* cpu/basic_math/run.sh:
* cpu/complex_numbers/run.sh:
* cpu/ctimer/run.sh:
* cpu/interrupt-demo/run.sh:
* cpu/interrupts/run.sh:
* cpu/mutex/run.sh:
* cpu/nested_interrupts/run.sh:
* cpu/register_test/run.sh:
* cpu/remote_call/run.sh:
* dma/dma_2d/run.sh:
* dma/dma_2d/test.sh:
* dma/dma_chain/run.sh:
* dma/dma_chain/test.sh:
* dma/dma_interrupt/run.sh:
* dma/dma_interrupt/test.sh:
* dma/dma_message_read/run.sh:
* dma/dma_message_read/test.sh:
* dma/dma_message_write/run.sh:
* dma/dma_message_write/test.sh:
* dma/dma_slave/run.sh:
* dma/dma_slave/test.sh:
* emesh/emesh_bandwidth_all2one/run.sh:
* emesh/emesh_bandwidth_all2one/test.sh:
* emesh/emesh_bandwidth_bisection/run.sh:
* emesh/emesh_bandwidth_neighbour/run.sh:
* emesh/emesh_read_latency/run.sh:
* emesh/emesh_traffic/run.sh:
* io/link_lowpower_mode/run.sh:
* labs/clockgating_mode/run.sh:
* labs/hardware_barrier/run.sh:
* labs/hardware_loops/run.sh:
* labs/mem_protect/run.sh:
* test/e-loopback-test/test.sh:
* test/e-main/run.sh:
* test/e-main/test.sh:
* test/e-matmul-test/test.sh:
* test/e-mem-test/test.sh:
* test/e-read-buf/test.sh:
* test/e-read-word/test.sh:
* test/e-regfile-test/test.sh:
* test/e-reset/test.sh:
* test/e-standby-test/test.sh:
* test/e-test/e-test:
* test/e-test/test.sh:
* test/e-write-buf/test.sh:
* test/e-write-word/test.sh:
Don't run tests as super user (sudo).
Remove unnecessary environment variables.
2014-10-16 Ben Chaco <[email protected]>
* cpu/arithmode/run.sh:
* cpu/arithmode/test.sh:
* dma/dma_message_read/test.sh:
* dma/dma_message_write/test.sh:
* dma/dma_slave/test.sh:
* dma/dma_2d/test.sh:
* dma/dma_chain/test.sh:
* dma/dma_interrupt/test.sh:
* scripts/DMA.E16:
Initial import of test scripts for testing
* dma/dma_message_read/src/dma_message_a.c (int main):
* dma/dma_message_read/src/e_dma_message_a.c:
Use SHM API rather than hardcoded shared DRAM address
2014-10-14 Ola Jeppsson <[email protected]>
* apps/e-dump-regs/src/e-dump-regs.c:
* apps/eprime/build.sh:
* apps/fft2d/build.sh:
* apps/fft2d/host/src/fft2d_host.c:
* apps/matmul-16/host/Debug/objects.mk:
* apps/matmul-16/host/Release/objects.mk:
* apps/matmul-64/host/Debug/objects.mk:
* apps/matmul-64/host/Release/objects.mk:
* archive/chip_testing/e_test/src/e_test.c:
* archive/chip_testing/makefile:
* archive/e-test/src/e-test.c:
* cpu/ctimer/build.sh:
* cpu/interrupts/src/interrupt_test.c:
* cpu/nested_interrupts/src/interrupt_test.c:
* dma/dma_chain/src/dma_chain_test.c:
* test/e-main/bin/e_task.dump:
* test/e-main/src/e-main.c:
* test/e-mem-test/src/e-mem-test.c:
* test/e-regfile-test/src/e-regfile-test.c:
* test/e-standby-test/src/e-standby-test.c:
* test/e-test/src/e-test.c:
Minor build fixes against ESDK 2014.08rc
2014-08-07 Ben Chaco <[email protected]>
* apps/clear_shmtable/src/clear_shmtable.c:
Added clear_shmtable app
* apps/shm_test/build.sh:
* apps/shm_test/src/e_shm_test.c:
* apps/shm_test/src/shm_test.c:
* apps/shm_test/test.sh:
Updated shm_test to exercize the trace library.
* apps/e-bandwidth-test/src/e-bandwidth-test-host.c:
* test/e-main/src/e-main.c:
* test/e-mem-test/src/e-mem-test.c:
* test/e-test/src/e-test.c:
* apps/e-bandwidth-test/src/e-bandwidth-test-host.c:
Added #include for e-loader.h which is no longer included from
the epiphany-hal.h wrapper header.
2014-07-24 Ben Chaco <[email protected]>
* apps/clear_shmtable/build.sh:
* apps/clear_shmtable/src/clear_shmtable.c:
* apps/dotproduct/build.sh:
* apps/e-bandwidth-test/build.sh:
* apps/e-dump-mem/build.sh:
* apps/e-dump-regs/build.sh:
* apps/e-fill-mem/build.sh:
* apps/e-init/build.sh:
* apps/e-mem-sync/build.sh:
* apps/e-toggle-led/build.sh:
* apps/erm/build.sh:
* apps/erm_example/build.sh:
* apps/fft2d/build.sh:
* apps/hello-world/build.sh:
* apps/hello-world/src/e_hello_world.c:
* apps/hello-world/src/hello_world.c:
* apps/shm_test/build.sh:
* apps/shm_test/src/e_shm_test.c:
* apps/shm_test/src/shm_test.c:
* archive/e-test/build.sh:
* cpu/arithmode/build.sh:
* cpu/assembly/build.sh:
* cpu/basic_math/build.sh:
* cpu/complex_numbers/build.sh:
* cpu/ctimer/build.sh:
* cpu/interrupt-demo/build.sh:
* cpu/interrupts/build.sh:
* cpu/mutex/build.sh:
* cpu/nested_interrupts/build.sh:
* cpu/register_test/build.sh:
* cpu/remote_call/build.sh:
* dma/dma_2d/build.sh:
* dma/dma_chain/build.sh:
* dma/dma_interrupt/build.sh:
* dma/dma_message_read/build.sh:
* dma/dma_message_write/build.sh:
* dma/dma_slave/build.sh:
* emesh/emesh_bandwidth_all2one/build.sh:
* emesh/emesh_bandwidth_bisection/build.sh:
* emesh/emesh_bandwidth_neighbour/build.sh:
* emesh/emesh_read_latency/build.sh:
* emesh/emesh_traffic/build.sh:
* io/link_lowpower_mode/build.sh:
* labs/clockgating_mode/build.sh:
* labs/hardware_barrier/build.sh:
* labs/hardware_loops/build.sh:
* labs/mem_protect/build.sh:
* scripts/LIST.E16:
* scripts/build_all.sh:
* test/e-extmem-test/build.sh:
* test/e-main/build.sh:
* test/e-matmul-test/build.sh:
* test/e-mem-test/build.sh:
* test/e-read-buf/build.sh:
* test/e-read-word/build.sh:
* test/e-regfile-test/build.sh:
* test/e-reset/build.sh:
* test/e-test/build.sh:
* test/e-write-buf/build.sh:
* test/e-write-word/build.sh:
Updates for Epiphany Shared Memory API. Link libpthread. Changed
ELIBS and EINCS in scripts to allow easilly adding new include or
library paths. Added apps/shm_test and updated apps/hello-world to
use the shared memory API.
2014-06-12 Ben Chaco <[email protected]>
* apps/dotproduct/build.sh:
* apps/e-bandwidth-test/build.sh:
* apps/e-dump-mem/build.sh:
* apps/e-dump-regs/build.sh:
* apps/e-fill-mem/build.sh:
* apps/e-toggle-led/build.sh:
* apps/erm_example/build.sh:
* apps/hello-world/build.sh:
* cpu/arithmode/build.sh:
* cpu/assembly/build.sh:
* cpu/basic_math/build.sh:
* cpu/ctimer/build.sh:
* cpu/interrupt-demo/build.sh:
* cpu/interrupts/build.sh:
* cpu/mutex/build.sh:
* cpu/nested_interrupts/build.sh:
* cpu/register_test/build.sh:
* cpu/remote_call/build.sh:
* dma/dma_2d/build.sh:
* dma/dma_chain/build.sh:
* dma/dma_interrupt/build.sh:
* dma/dma_message_read/build.sh:
* dma/dma_message_write/build.sh:
* dma/dma_slave/build.sh:
* emesh/emesh_bandwidth_all2one/build.sh:
* emesh/emesh_bandwidth_all2one/test.sh:
* emesh/emesh_bandwidth_bisection/build.sh:
* emesh/emesh_bandwidth_neighbour/build.sh:
* emesh/emesh_read_latency/build.sh:
* emesh/emesh_traffic/build.sh:
* io/link_lowpower_mode/build.sh:
* labs/clockgating_mode/build.sh:
* labs/hardware_barrier/build.sh:
* labs/hardware_loops/build.sh:
* labs/mem_protect/build.sh:
* test/e-mem-test/build.sh:
* test/e-main/build.sh:
* test/e-read-buf/build.sh:
* test/e-read-word/build.sh:
* test/e-regfile-test/build.sh:
* test/e-reset/build.sh:
* test/e-test/build.sh:
* test/e-write-buf/build.sh:
* test/e-write-word/build.sh:
Uncommented the linking of libe-loader.so
* apps/e-bandwidth-test/src/e-bandwidth-test-host.c:
Check return values from e-hal function calls
* apps/e-bandwidth-test/test.sh:
* apps/e-dump-mem/test.sh:
* apps/e-dump-regs/test.sh:
* apps/e-fill-mem/test.sh:
* apps/e-init/test.sh:
* apps/e-mem-sync/test.sh:
* apps/erm/src/main.c:
* apps/fft2d/test.sh:
* apps/matmul-16/test.sh:
* scripts/build_all.sh:
* test/e-main/test.sh:
* test/e-matmul-test/test.sh:
* test/e-mem-test/test.sh:
* test/e-read-buf/test.sh:
* test/e-read-word/test.sh:
* test/e-regfile-test/test.sh:
* test/e-reset/test.sh:
* test/e-test/test.sh:
* test/e-write-buf/test.sh:
* test/e-write-word/test.sh:
Removed execution with root privs (sudo)
2014-06-05 Ben Chaco <[email protected]>
* scripts/LIST.E16:
Updated paths so that they are relative to the epiphany-examples root
* scripts/TestEpiphany.pl:
Changed env var from EPIPHANY_TEST_HOME to EPIPHANY_TESTS
2014-05-23 Ben Chaco <[email protected]>
* scripts/LIST:
Updated paths so that they are relative to the epiphany-examples root
* scripts/TestEpiphany.pl:
Fixed Usage -d option is required. Test path prefix comes from EPIPHANY_TEST_HOME env var.
* jenkins:
* jenkins/setup.sh:
Added jenkins directory for configuring Epiphany Tests as a nightly Jenkins project
* README.md:
Updated to describe how to run the TestEpiphany.pl test harness script