Update ChangeLog and version files for release
[official-gcc.git] / liboffloadmic / ChangeLog
blobeee7298da1cc5347edec821ce6b262225e3bbd40
1 2016-04-27  Release Manager
3         * GCC 6.1.0 released.
5 2016-01-20  Ilya Verbin  <ilya.verbin@intel.com>
7         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_run): Pass extra NULL
8         to GOMP_OFFLOAD_async_run.
10 2016-01-19  Martin Jambor  <mjambor@suse.cz>
12         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_async_run): New
13         unused parameter.
14         (GOMP_OFFLOAD_run): Likewise.
16 2015-12-14  Ilya Verbin  <ilya.verbin@intel.com>
18         * plugin/libgomp-plugin-intelmic.cpp (unregister_main_image): Remove.
19         (register_main_image): Do not call unregister_main_image at exit.
20         (GOMP_OFFLOAD_fini_device): Allow for OpenMP.  Unregister main image.
22 2015-11-19  Ilya Verbin  <ilya.verbin@intel.com>
24         * plugin/libgomp-plugin-intelmic.cpp (struct TargetImageDesc): New.
25         (ImgDescMap): New typedef.
26         (image_descriptors): New static var.
27         (init): Allocate image_descriptors.
28         (offload): Remove vars2 argument.  Pass NULL to __offload_offload1
29         instead of vars2.
30         (unregister_main_image): New static function.
31         (register_main_image): Call unregister_main_image at exit.
32         (GOMP_OFFLOAD_init_device): Print device number, fix offload args.
33         (GOMP_OFFLOAD_fini_device): Likewise.
34         (get_target_table): Remove vd1g and vd2g, don't pass them to offload.
35         (offload_image): Remove declaration of the struct TargetImage.
36         Free table.  Insert new descriptor into image_descriptors.
37         (GOMP_OFFLOAD_unload_image): Call __offload_unregister_image, free
38         the corresponding descriptor, and remove it from address_table and
39         image_descriptors.
40         (GOMP_OFFLOAD_alloc): Print device number, remove vd1g.
41         (GOMP_OFFLOAD_free): Likewise.
42         (GOMP_OFFLOAD_host2dev): Print device number, remove vd1g and vd2g.
43         (GOMP_OFFLOAD_dev2host): Likewise.
44         (GOMP_OFFLOAD_run): Print device number, remove vd1g.
45         * plugin/offload_target_main.cpp (__offload_target_table_p1): Remove
46         vd2, don't pass it to __offload_target_enter.
47         (__offload_target_table_p2): Likewise.
48         (__offload_target_alloc): Likewise.
49         (__offload_target_free): Likewise.
50         (__offload_target_host2tgt_p1): Likewise.
51         (__offload_target_host2tgt_p2): Likewise.
52         (__offload_target_tgt2host_p1): Likewise.
53         (__offload_target_tgt2host_p2): Likewise.
54         (__offload_target_run): Likewise.
55         (__offload_target_tgt2tgt): Remove vd1g, don't pass it to
56         __offload_target_enter.
58 2015-11-14  Ilya Verbin  <ilya.verbin@intel.com>
60         * runtime/offload_host.cpp (task_completion_callback): New
61         variable.
62         (offload_proxy_task_completed_ooo): Call task_completion_callback.
63         (__offload_register_task_callback): New function.
64         * runtime/offload_host.h (__offload_register_task_callback): New
65         declaration.
66         * plugin/libgomp-plugin-intelmic.cpp (offload): Add async_data
67         argument, handle async offloading.
68         (register_main_image): Call register_main_image.
69         (GOMP_OFFLOAD_init_device, get_target_table, GOMP_OFFLOAD_alloc,
70         GOMP_OFFLOAD_free, GOMP_OFFLOAD_host2dev, GOMP_OFFLOAD_dev2host,
71         GOMP_OFFLOAD_dev2dev): Adjust offload callers.
72         (GOMP_OFFLOAD_async_run): New function.
73         (GOMP_OFFLOAD_run): Implement using GOMP_OFFLOAD_async_run.
75 2015-10-26  Ilya Verbin  <ilya.verbin@intel.com>
76             Aleksander Ivanushenko  <aleksander.ivanushenko@intel.com>
78         * runtime/offload_host.cpp (OffloadDescriptor::setup_misc_data): Use
79         calloc instead of malloc.
80         (__offload_fini_library): Set mic_engines_total to zero.
82 2015-10-13  Ilya Verbin  <ilya.verbin@intel.com>
84         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_dev2dev): New
85         function.
86         * plugin/offload_target_main.cpp (__offload_target_tgt2tgt): New
87         static function, register it in liboffloadmic.
89 2015-10-08  Ilya Verbin  <ilya.verbin@intel.com>
91         * runtime/offload_engine.cpp (Engine::init_process): Use strdup instead
92         of sizeof+malloc+sprintf, check for return value.
93         * runtime/offload_env.cpp (MicEnvVar::get_env_var_kind): Check for
94         strdup return value.
95         * runtime/offload_host.cpp (__offload_init_library_once): Check for
96         strdup return value.  Fix size calculation of COI_HOST_THREAD_AFFINITY.
97         * runtime/emulator/coi_device.cpp (COIProcessWaitForShutdown): Check for
98         malloc return value.
100 2015-09-29  Ilya Verbin  <ilya.verbin@intel.com>
102         * plugin/libgomp-plugin-intelmic.cpp (OFFLOAD_ACTIVE_WAIT_ENV): New
103         define.
104         (init): Set OFFLOAD_ACTIVE_WAIT env var to 0, if it is not set.
105         * runtime/emulator/coi_common.h (PIPE_HOST_PATH): Replace with ...
106         (PIPE_HOST2TGT_NAME): ... this.
107         (PIPE_TARGET_PATH): Replace with ...
108         (PIPE_TGT2HOST_NAME): ... this.
109         (MALLOCN): New define.
110         (READN): Likewise.
111         (WRITEN): Likewise.
112         (enum cmd_t): Replace CMD_RUN_FUNCTION with CMD_PIPELINE_RUN_FUNCTION.
113         Add CMD_PIPELINE_CREATE, CMD_PIPELINE_DESTROY.
114         * runtime/emulator/coi_device.cpp (engine_dir): New static variable.
115         (pipeline_thread_routine): New static function.
116         (COIProcessWaitForShutdown): Use global engine_dir instead of mic_dir.
117         Rename pipe_host and pipe_target to pipe_host2tgt and pipe_tgt2host.
118         If cmd is CMD_PIPELINE_CREATE, create a new thread for the pipeline.
119         Remove cmd == CMD_RUN_FUNCTION case.
120         * runtime/emulator/coi_device.h (COIERRORN): New define.
121         * runtime/emulator/coi_host.cpp: Include set, map, queue.
122         Replace typedefs with enums and structs.
123         (struct Function): Remove name, add num_buffers, bufs_size,
124         bufs_data_target, misc_data_len, misc_data, return_value_len,
125         return_value, completion_event.
126         (struct Callback): New.
127         (struct Process): Remove pipeline.  Add pipe_host2tgt and pipe_tgt2host.
128         (struct Pipeline): Remove pipe_host and pipe_target.  Add thread,
129         destroy, is_destroyed, pipe_host2tgt_path, pipe_tgt2host_path,
130         pipe_host2tgt, pipe_tgt2host, queue, process.
131         (max_pipeline_num): New static variable.
132         (pipelines): Likewise.
133         (max_event_num): Likewise.
134         (non_signalled_events): Likewise.
135         (errored_events): Likewise.
136         (callbacks): Likewise.
137         (cleanup): Do not check tmp_dirs before free.
138         (start_critical_section): New static function.
139         (finish_critical_section): Likewise.
140         (pipeline_is_destroyed): Likewise.
141         (maybe_invoke_callback): Likewise.
142         (signal_event): Likewise.
143         (get_event_result): Likewise.
144         (COIBufferCopy): Rename arguments according to headers.  Add asserts.
145         Use process' main pipes, instead of pipeline's pipes.  Signal completion
146         event.
147         (COIBufferCreate): Rename arguments according to headers.  Add asserts.
148         Use process' main pipes, instead of pipeline's pipes.
149         (COIBufferCreateFromMemory): Rename arguments according to headers.
150         Add asserts.
151         (COIBufferDestroy): Rename arguments according to headers.  Add asserts.
152         Use process' main pipes, instead of pipeline's pipes.
153         (COIBufferGetSinkAddress): Rename arguments according to headers.
154         Add asserts.
155         (COIBufferMap): Rename arguments according to headers.  Add asserts.
156         Signal completion event.
157         (COIBufferRead): Likewise.
158         (COIBufferSetState): Likewise.
159         (COIBufferUnmap): Likewise.
160         (COIBufferWrite): Likewise.
161         (COIEngineGetCount): Add assert.
162         (COIEngineGetHandle): Rename arguments according to headers.
163         Add assert.
164         (COIEventWait): Rename arguments according to headers.  Add asserts.
165         Implement waiting for events with zero or infinite timeout.
166         (COIEventRegisterCallback): New function.
167         (pipeline_thread_routine): New static function.
168         (COIPipelineCreate): Create a new thread for the pipeline.
169         (COIPipelineDestroy): Exit pipeline thread.
170         (COIPipelineRunFunction): Add the function into pipeline's queue,
171         instead running it here.  Wait for it's completion in case of
172         synchronous execution.
173         (COIProcessCreateFromMemory): Rename arguments according to headers.
174         Add asserts.  Create process' main pipes, instead of pipeline's pipes.
175         (COIProcessDestroy): Rename arguments according to headers.
176         Add asserts.  Destroy all undestroyed pipelines.
177         (COIProcessGetFunctionHandles): Rename arguments according to headers.
178         Add asserts.  Use process' main pipes, instead of pipeline's pipes.
179         Remove useless function names.
180         (COIProcessLoadLibraryFromMemory): Add asserts.  Use process' main
181         pipes, instead of pipeline's pipes.
182         (COIProcessUnloadLibrary): Likewise.
183         (COIEngineGetInfo): Add assert.
184         * runtime/emulator/coi_host.h (COIERRORN): New define.
186 2015-09-28  Ilya Verbin  <ilya.verbin@intel.com>
188         PR other/67652
189         * runtime/offload_engine.cpp (Engine::init_process): Fix sizeof.
191 2015-09-08  Ilya Verbin  <ilya.verbin@intel.com>
193         * Makefile.am (liboffloadmic_host_la_DEPENDENCIES): Remove libcoi_host
194         and libmyo-client.  liboffloadmic_host loads them dynamically.
195         * Makefile.in: Regenerate.
196         * doc/doxygen/header.tex: Merge from upstream, version 20150803
197         <https://openmprtl.org/sites/default/files/liboffload_oss_20150803.tgz>.
198         * runtime/cean_util.cpp: Likewise.
199         * runtime/cean_util.h: Likewise.
200         * runtime/coi/coi_client.cpp: Likewise.
201         * runtime/coi/coi_client.h: Likewise.
202         * runtime/coi/coi_server.cpp: Likewise.
203         * runtime/coi/coi_server.h: Likewise.
204         * runtime/compiler_if_host.cpp: Likewise.
205         * runtime/compiler_if_host.h: Likewise.
206         * runtime/compiler_if_target.cpp: Likewise.
207         * runtime/compiler_if_target.h: Likewise.
208         * runtime/dv_util.cpp: Likewise.
209         * runtime/dv_util.h: Likewise.
210         * runtime/liboffload_error.c: Likewise.
211         * runtime/liboffload_error_codes.h: Likewise.
212         * runtime/liboffload_msg.c: Likewise.
213         * runtime/liboffload_msg.h: Likewise.
214         * runtime/mic_lib.f90: Likewise.
215         * runtime/offload.h: Likewise.
216         * runtime/offload_common.cpp: Likewise.
217         * runtime/offload_common.h: Likewise.
218         * runtime/offload_engine.cpp: Likewise.
219         * runtime/offload_engine.h: Likewise.
220         * runtime/offload_env.cpp: Likewise.
221         * runtime/offload_env.h: Likewise.
222         * runtime/offload_host.cpp: Likewise.
223         * runtime/offload_host.h: Likewise.
224         * runtime/offload_iterator.h: Likewise.
225         * runtime/offload_myo_host.cpp: Likewise.
226         * runtime/offload_myo_host.h: Likewise.
227         * runtime/offload_myo_target.cpp: Likewise.
228         * runtime/offload_myo_target.h: Likewise.
229         * runtime/offload_omp_host.cpp: Likewise.
230         * runtime/offload_omp_target.cpp: Likewise.
231         * runtime/offload_orsl.cpp: Likewise.
232         * runtime/offload_orsl.h: Likewise.
233         * runtime/offload_table.cpp: Likewise.
234         * runtime/offload_table.h: Likewise.
235         * runtime/offload_target.cpp: Likewise.
236         * runtime/offload_target.h: Likewise.
237         * runtime/offload_target_main.cpp: Likewise.
238         * runtime/offload_timer.h: Likewise.
239         * runtime/offload_timer_host.cpp: Likewise.
240         * runtime/offload_timer_target.cpp: Likewise.
241         * runtime/offload_trace.cpp: Likewise.
242         * runtime/offload_trace.h: Likewise.
243         * runtime/offload_util.cpp: Likewise.
244         * runtime/offload_util.h: Likewise.
245         * runtime/ofldbegin.cpp: Likewise.
246         * runtime/ofldend.cpp: Likewise.
247         * runtime/orsl-lite/include/orsl-lite.h: Likewise.
248         * runtime/orsl-lite/lib/orsl-lite.c: Likewise.
249         * runtime/use_mpss2.txt: Likewise.
250         * include/coi/common/COIEngine_common.h: Merge from upstream, MPSS
251         version 3.5
252         <http://registrationcenter.intel.com/irc_nas/7445/mpss-src-3.5.tar>.
253         * include/coi/common/COIEvent_common.h: Likewise.
254         * include/coi/common/COIMacros_common.h: Likewise.
255         * include/coi/common/COIPerf_common.h: Likewise.
256         * include/coi/common/COIResult_common.h: Likewise.
257         * include/coi/common/COISysInfo_common.h: Likewise.
258         * include/coi/common/COITypes_common.h: Likewise.
259         * include/coi/sink/COIBuffer_sink.h: Likewise.
260         * include/coi/sink/COIPipeline_sink.h: Likewise.
261         * include/coi/sink/COIProcess_sink.h: Likewise.
262         * include/coi/source/COIBuffer_source.h: Likewise.
263         * include/coi/source/COIEngine_source.h: Likewise.
264         * include/coi/source/COIEvent_source.h: Likewise.
265         * include/coi/source/COIPipeline_source.h: Likewise.
266         * include/coi/source/COIProcess_source.h: Likewise.
267         * include/myo/myo.h: Likewise.
268         * include/myo/myoimpl.h: Likewise.
269         * include/myo/myotypes.h: Likewise.
270         * plugin/Makefile.am (myo_inc_dir): Remove.
271         (libgomp_plugin_intelmic_la_CPPFLAGS): Do not define MYO_SUPPORT.
272         (AM_CPPFLAGS): Likewise for offload_target_main.
273         * plugin/Makefile.in: Regenerate.
274         * runtime/emulator/coi_common.h: Update copyright years.
275         (OFFLOAD_EMUL_KNC_NUM_ENV): Replace with ...
276         (OFFLOAD_EMUL_NUM_ENV): ... this.
277         (enum cmd_t): Add CMD_CLOSE_LIBRARY.
278         * runtime/emulator/coi_device.cpp: Update copyright years.
279         (COIProcessWaitForShutdown): Add space between string constants.
280         Return handle to host in CMD_OPEN_LIBRARY.
281         Support CMD_CLOSE_LIBRARY.
282         * runtime/emulator/coi_device.h: Update copyright years.
283         * runtime/emulator/coi_host.cpp: Update copyright years.
284         (knc_engines_num): Replace with ...
285         (num_engines): ... this.
286         (init): Replace OFFLOAD_EMUL_KNC_NUM_ENV with OFFLOAD_EMUL_NUM_ENV.
287         (COIEngineGetCount): Replace COI_ISA_KNC with COI_ISA_MIC, and
288         knc_engines_num with num_engines.
289         (COIEngineGetHandle): Likewise.
290         (COIProcessCreateFromMemory): Add space between string constants.
291         (COIProcessCreateFromFile): New function.
292         (COIProcessLoadLibraryFromMemory): Rename arguments according to
293         COIProcess_source.h.  Return handle, received from target.
294         (COIProcessUnloadLibrary): New function.
295         (COIPipelineClearCPUMask): New function.
296         (COIPipelineSetCPUMask): New function.
297         (COIEngineGetInfo): New function.
298         * runtime/emulator/coi_host.h: Update copyright years.
299         * runtime/emulator/coi_version_asm.h: Regenerate.
300         * runtime/emulator/coi_version_linker_script.map: Regenerate.
301         * runtime/emulator/myo_client.cpp: Update copyright years.
302         * runtime/emulator/myo_service.cpp: Update copyright years.
303         (myoArenaRelease): New function.
304         (myoArenaAcquire): New function.
305         (myoArenaAlignedFree): New function.
306         (myoArenaAlignedMalloc): New function.
307         * runtime/emulator/myo_service.h: Update copyright years.
308         * runtime/emulator/myo_version_asm.h: Regenerate.
309         * runtime/emulator/myo_version_linker_script.map: Regenerate.
311 2015-08-24  Nathan Sidwell  <nathan@codesourcery.com>
313         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_version): New.
314         (GOMP_OFFLOAD_load_image): Add version arg and check it.
315         (GOMP_OFFLOAD_unload_image): Likewise.
317 2015-08-24  Thomas Schwinge  <thomas@codesourcery.com>
319         * plugin/Makefile.am (include_src_dir): Set.
320         [PLUGIN_HOST] (libgomp_plugin_intelmic_la_CPPFLAGS): Use it.
321         * plugin/Makefile.in: Regenerate.
322         * plugin/libgomp-plugin-intelmic.cpp: Include "gomp-constants.h".
324 2015-07-24  Micahel Darling  <darlingm@gmail.com>
326         PR other/66259
327         * configure: Reflects renaming of configure.in to configure.ac
329 2015-07-17  Nathan Sidwell  <nathan@acm.org>
330             Ilya Verbin  <ilya.verbin@intel.com>
332         * plugin/libgomp-plugin-intelmic.cpp (ImgDevAddrMap): Constify.
333         (offload_image, GOMP_OFFLOAD_load_image,
334         GOMP_OFFLOAD_unload_image): Constify target data.
336 2015-07-08  Thomas Schwinge  <thomas@codesourcery.com>
338         * plugin/Makefile.am (main_target_image.h): Change type of data
339         member of struct MainTargetImage to uint8_t.
340         * plugin/Makefile.in: Regenerate.
342 2015-05-13  Michael Haubenwallner  <michael.haubenwallner@ssi-schaefer.com>
344         * Makefile.in: Regenerated with automake-1.11.6.
345         * aclocal.m4: Likewise.
346         * configure: Likewise.
347         * plugin/Makefile.in: Likewise.
348         * plugin/aclocal.m4: Likewise.
349         * plugin/configure: Likewise.
351 2015-04-06  Ilya Verbin  <ilya.verbin@intel.com>
353         * plugin/libgomp-plugin-intelmic.cpp: Include map.
354         (AddrVect, DevAddrVect, ImgDevAddrMap): New typedefs.
355         (num_devices, num_images, address_table): New static vars.
356         (num_libraries, lib_descrs): Remove static vars.
357         (set_mic_lib_path): Rename to ...
358         (init): ... this.  Allocate address_table and get num_devices.
359         (GOMP_OFFLOAD_get_num_devices): return num_devices.
360         (load_lib_and_get_table): Remove static function.
361         (offload_image): New static function.
362         (GOMP_OFFLOAD_get_table): Remove function.
363         (GOMP_OFFLOAD_load_image, GOMP_OFFLOAD_unload_image): New functions.
365 2015-01-15  Thomas Schwinge  <thomas@codesourcery.com>
367         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_get_name)
368         (GOMP_OFFLOAD_get_caps, GOMP_OFFLOAD_fini_device): New functions.
370 2014-11-13  Ilya Verbin  <ilya.verbin@intel.com>
371             Andrey Turetskiy  <andrey.turetskiy@intel.com>
373         * Makefile.in: Regenerate.
374         * configure: Regenerate.
375         * configure.ac: Add subdirectory 'plugin'.
376         * plugin/Makefile.am: New file.
377         * plugin/Makefile.in: New file, generated by automake.
378         * plugin/aclocal.m4: New file, generated by aclocal.
379         * plugin/configure: New file, generated by autoconf.
380         * plugin/configure.ac: New file.
381         * plugin/libgomp-plugin-intelmic.cpp: New file.
382         * plugin/offload_target_main.cpp: New file.
384 2014-11-13  Kirill Yukhin  <kirill.yukhin@intel.com>
386         Initial commit.  Imported from upstream:
387         https://www.openmprtl.org/sites/default/files/liboffload_oss.tgz
388         * Makefile.am: New file.
389         * Makefile.in: New file, generated by automake.
390         * aclocal.m4: New file, generated by aclocal.
391         * configure: New file, generated by autoconf.
392         * configure.ac: New file.
393         * configure.tgt: Ditto.
394         * doc/doxygen/config: Ditto.
395         * doc/doxygen/header.tex: Ditto.
396         * include/coi/common/COIEngine_common.h: Ditto.
397         * include/coi/common/COIMacros_common.h: Ditto.
398         * include/coi/common/COIPerf_common.h : Ditto.
399         * include/coi/common/COIResult_common.h : Ditto.
400         * include/coi/common/COITypes_common.h: Ditto.
401         * include/coi/sink/COIBuffer_sink.h: Ditto.
402         * include/coi/sink/COIPipeline_sink.h: Ditto.
403         * include/coi/sink/COIProcess_sink.h: Ditto.
404         * include/coi/source/COIBuffer_source.h: Ditto.
405         * include/coi/source/COIEngine_source.h: Ditto.
406         * include/coi/source/COIEvent_source.h: Ditto.
407         * include/coi/source/COIPipeline_source.h: Ditto.
408         * include/coi/source/COIProcess_source.h: Ditto.
409         * include/myo/myo.h: Ditto.
410         * include/myo/myoimpl.h: Ditto.
411         * include/myo/myotypes.h: Ditto.
412         * liboffloadmic_host.spec.in: Ditto.
413         * liboffloadmic_target.spec.in: Ditto.
414         * runtime/cean_util.cpp: Ditto.
415         * runtime/cean_util.h: Ditto.
416         * runtime/coi/coi_client.cpp: Ditto.
417         * runtime/coi/coi_client.h: Ditto.
418         * runtime/coi/coi_server.cpp: Ditto.
419         * runtime/coi/coi_server.h: Ditto.
420         * runtime/compiler_if_host.cpp: Ditto.
421         * runtime/compiler_if_host.h: Ditto.
422         * runtime/compiler_if_target.cpp: Ditto.
423         * runtime/compiler_if_target.h: Ditto.
424         * runtime/dv_util.cpp: Ditto.
425         * runtime/dv_util.h: Ditto.
426         * runtime/emulator/coi_common.h: Ditto.
427         * runtime/emulator/coi_device.cpp: Ditto.
428         * runtime/emulator/coi_device.h: Ditto.
429         * runtime/emulator/coi_host.cpp: Ditto.
430         * runtime/emulator/coi_host.h: Ditto.
431         * runtime/emulator/coi_version_asm.h: Ditto.
432         * runtime/emulator/coi_version_linker_script.map: Ditto.
433         * runtime/emulator/myo_client.cpp: Ditto.
434         * runtime/emulator/myo_service.cpp: Ditto.
435         * runtime/emulator/myo_service.h: Ditto.
436         * runtime/emulator/myo_version_asm.h: Ditto.
437         * runtime/emulator/myo_version_linker_script.map: Ditto.
438         * runtime/liboffload_error.c: Ditto.
439         * runtime/liboffload_error_codes.h: Ditto.
440         * runtime/liboffload_msg.c: Ditto.
441         * runtime/liboffload_msg.h: Ditto.
442         * runtime/mic_lib.f90: Ditto.
443         * runtime/offload.h: Ditto.
444         * runtime/offload_common.cpp: Ditto.
445         * runtime/offload_common.h: Ditto.
446         * runtime/offload_engine.cpp: Ditto.
447         * runtime/offload_engine.h: Ditto.
448         * runtime/offload_env.cpp: Ditto.
449         * runtime/offload_env.h: Ditto.
450         * runtime/offload_host.cpp: Ditto.
451         * runtime/offload_host.h: Ditto.
452         * runtime/offload_myo_host.cpp: Ditto.
453         * runtime/offload_myo_host.h: Ditto.
454         * runtime/offload_myo_target.cpp: Ditto.
455         * runtime/offload_myo_target.h: Ditto.
456         * runtime/offload_omp_host.cpp: Ditto.
457         * runtime/offload_omp_target.cpp: Ditto.
458         * runtime/offload_orsl.cpp: Ditto.
459         * runtime/offload_orsl.h: Ditto.
460         * runtime/offload_table.cpp: Ditto.
461         * runtime/offload_table.h: Ditto.
462         * runtime/offload_target.cpp: Ditto.
463         * runtime/offload_target.h: Ditto.
464         * runtime/offload_target_main.cpp: Ditto.
465         * runtime/offload_timer.h: Ditto.
466         * runtime/offload_timer_host.cpp: Ditto.
467         * runtime/offload_timer_target.cpp: Ditto.
468         * runtime/offload_trace.cpp: Ditto.
469         * runtime/offload_trace.h: Ditto.
470         * runtime/offload_util.cpp: Ditto.
471         * runtime/offload_util.h: Ditto.
472         * runtime/ofldbegin.cpp: Ditto.
473         * runtime/ofldend.cpp: Ditto.
474         * runtime/orsl-lite/include/orsl-lite.h: Ditto.
475         * runtime/orsl-lite/lib/orsl-lite.c: Ditto.
476         * runtime/orsl-lite/version.txt: Ditto.
477         * runtime/use_mpss2.txt: Ditto.