123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- /*
- Copyright (c) 2014 Intel Corporation. All Rights Reserved.
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- * Neither the name of Intel Corporation nor the names of its
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "offload_timer.h"
- #ifdef __INTEL_COMPILER
- #include <ia32intrin.h>
- #else // __INTEL_COMPILER
- #include <x86intrin.h>
- #endif // __INTEL_COMPILER
- #include "offload_host.h"
- #include <sstream>
- #include <iostream>
- #include <iomanip>
- int timer_enabled = 0;
- #ifdef TIMING_SUPPORT
- int offload_report_level = 0;
- int offload_report_enabled = 1;
- static const int host_timer_prefix_spaces[] = {
- /*c_offload_host_setup_buffers*/ 0,
- /*c_offload_host_initialize*/ 2,
- /*c_offload_host_target_acquire*/ 2,
- /*c_offload_host_wait_deps*/ 2,
- /*c_offload_host_setup_buffers*/ 2,
- /*c_offload_host_alloc_buffers*/ 4,
- /*c_offload_host_setup_misc_data*/ 2,
- /*c_offload_host_alloc_data_buffer*/ 4,
- /*c_offload_host_send_pointers*/ 2,
- /*c_offload_host_gather_inputs*/ 2,
- /*c_offload_host_map_in_data_buffer*/ 4,
- /*c_offload_host_unmap_in_data_buffer*/ 4,
- /*c_offload_host_start_compute*/ 2,
- /*c_offload_host_wait_compute*/ 2,
- /*c_offload_host_start_buffers_reads*/ 2,
- /*c_offload_host_scatter_outputs*/ 2,
- /*c_offload_host_map_out_data_buffer*/ 4,
- /*c_offload_host_unmap_out_data_buffer*/ 4,
- /*c_offload_host_wait_buffers_reads*/ 2,
- /*c_offload_host_destroy_buffers*/ 2
- };
- const static int target_timer_prefix_spaces[] = {
- /*c_offload_target_total_time*/ 0,
- /*c_offload_target_descriptor_setup*/ 2,
- /*c_offload_target_func_lookup*/ 2,
- /*c_offload_target_func_time*/ 2,
- /*c_offload_target_scatter_inputs*/ 4,
- /*c_offload_target_add_buffer_refs*/ 6,
- /*c_offload_target_compute*/ 4,
- /*c_offload_target_gather_outputs*/ 4,
- /*c_offload_target_release_buffer_refs*/ 6
- };
- static OffloadHostTimerData* timer_data_head;
- static OffloadHostTimerData* timer_data_tail;
- static mutex_t timer_data_mutex;
- static void offload_host_phase_name(std::stringstream &ss, int p_node);
- static void offload_target_phase_name(std::stringstream &ss, int p_node);
- extern void Offload_Timer_Print(void)
- {
- std::string buf;
- std::stringstream ss;
- const char *stars =
- "**************************************************************";
- ss << "\n\n" << stars << "\n";
- ss << " ";
- ss << report_get_message_str(c_report_title) << "\n";
- ss << stars << "\n";
- double frequency = cpu_frequency;
- for (OffloadHostTimerData *pnode = timer_data_head;
- pnode != 0; pnode = pnode->next) {
- ss << " ";
- ss << report_get_message_str(c_report_from_file) << " "<< pnode->file;
- ss << report_get_message_str(c_report_line) << " " << pnode->line;
- ss << "\n";
- for (int i = 0; i < c_offload_host_max_phase ; i++) {
- ss << " ";
- offload_host_phase_name(ss, i);
- ss << " " << std::fixed << std::setprecision(5);
- ss << (double)pnode->phases[i].total / frequency << "\n";
- }
- for (int i = 0; i < c_offload_target_max_phase ; i++) {
- double time = 0;
- if (pnode->target.frequency != 0) {
- time = (double) pnode->target.phases[i].total /
- (double) pnode->target.frequency;
- }
- ss << " ";
- offload_target_phase_name(ss, i);
- ss << " " << std::fixed << std::setprecision(5);
- ss << time << "\n";
- }
- }
- buf = ss.str();
- fprintf(stdout, buf.data());
- fflush(stdout);
- }
- extern void Offload_Report_Prolog(OffloadHostTimerData *pnode)
- {
- double frequency = cpu_frequency;
- std::string buf;
- std::stringstream ss;
- if (pnode) {
- // [Offload] [Mic 0] [File] file.c
- ss << "[" << report_get_message_str(c_report_offload) << "] [";
- ss << report_get_message_str(c_report_mic) << " ";
- ss << pnode->card_number << "] [";
- ss << report_get_message_str(c_report_file);
- ss << "] " << pnode->file << "\n";
- // [Offload] [Mic 0] [Line] 1234
- ss << "[" << report_get_message_str(c_report_offload) << "] [";
- ss << report_get_message_str(c_report_mic) << " ";
- ss << pnode->card_number << "] [";
- ss << report_get_message_str(c_report_line);
- ss << "] " << pnode->line << "\n";
- // [Offload] [Mic 0] [Tag] Tag 1
- ss << "[" << report_get_message_str(c_report_offload) << "] [";
- ss << report_get_message_str(c_report_mic) << " ";
- ss << pnode->card_number << "] [";
- ss << report_get_message_str(c_report_tag);
- ss << "] " << report_get_message_str(c_report_tag);
- ss << " " << pnode->offload_number << "\n";
- buf = ss.str();
- fprintf(stdout, buf.data());
- fflush(stdout);
- }
- }
- extern void Offload_Report_Epilog(OffloadHostTimerData * timer_data)
- {
- double frequency = cpu_frequency;
- std::string buf;
- std::stringstream ss;
- OffloadHostTimerData *pnode = timer_data;
- if (!pnode) {
- return;
- }
- ss << "[" << report_get_message_str(c_report_offload) << "] [";
- ss << report_get_message_str(c_report_host) << "] [";
- ss << report_get_message_str(c_report_tag) << " ";
- ss << pnode->offload_number << "] [";
- ss << report_get_message_str(c_report_cpu_time) << "] ";
- ss << std::fixed << std::setprecision(6);
- ss << (double) pnode->phases[0].total / frequency;
- ss << report_get_message_str(c_report_seconds) << "\n";
- if (offload_report_level >= OFFLOAD_REPORT_2) {
- ss << "[" << report_get_message_str(c_report_offload) << "] [";
- ss << report_get_message_str(c_report_mic);
- ss << " " << pnode->card_number;
- ss << "] [" << report_get_message_str(c_report_tag) << " ";
- ss << pnode->offload_number << "] [";
- ss << report_get_message_str(c_report_cpu_to_mic_data) << "] ";
- ss << pnode->sent_bytes << " ";
- ss << report_get_message_str(c_report_bytes) << "\n";
- }
- double time = 0;
- if (pnode->target.frequency != 0) {
- time = (double) pnode->target.phases[0].total /
- (double) pnode->target.frequency;
- }
- ss << "[" << report_get_message_str(c_report_offload) << "] [";
- ss << report_get_message_str(c_report_mic) << " ";
- ss << pnode->card_number<< "] [";
- ss << report_get_message_str(c_report_tag) << " ";
- ss << pnode->offload_number << "] [";
- ss << report_get_message_str(c_report_mic_time) << "] ";
- ss << std::fixed << std::setprecision(6) << time;
- ss << report_get_message_str(c_report_seconds) << "\n";
- if (offload_report_level >= OFFLOAD_REPORT_2) {
- ss << "[" << report_get_message_str(c_report_offload) << "] [";
- ss << report_get_message_str(c_report_mic);
- ss << " " << pnode->card_number;
- ss << "] [" << report_get_message_str(c_report_tag) << " ";
- ss << pnode->offload_number << "] [";
- ss << report_get_message_str(c_report_mic_to_cpu_data) << "] ";
- ss << pnode->received_bytes << " ";
- ss << report_get_message_str(c_report_bytes) << "\n";
- }
- ss << "\n";
- buf = ss.str();
- fprintf(stdout, buf.data());
- fflush(stdout);
- offload_report_free_data(timer_data);
- }
- extern void offload_report_free_data(OffloadHostTimerData * timer_data)
- {
- OffloadHostTimerData *pnode_last = NULL;
- for (OffloadHostTimerData *pnode = timer_data_head;
- pnode != 0; pnode = pnode->next) {
- if (timer_data == pnode) {
- if (pnode_last) {
- pnode_last->next = pnode->next;
- }
- else {
- timer_data_head = pnode->next;
- }
- OFFLOAD_FREE(pnode);
- break;
- }
- pnode_last = pnode;
- }
- }
- static void fill_buf_with_spaces(std::stringstream &ss, int num)
- {
- for (; num > 0; num--) {
- ss << " ";
- }
- }
- static void offload_host_phase_name(std::stringstream &ss, int p_node)
- {
- int prefix_spaces;
- int str_length;
- int tail_length;
- const int message_length = 40;
- char const *str;
- str = report_get_host_stage_str(p_node);
- prefix_spaces = host_timer_prefix_spaces[p_node];
- fill_buf_with_spaces(ss, prefix_spaces);
- str_length = strlen(str);
- ss << str;
- tail_length = message_length - prefix_spaces - str_length;
- tail_length = tail_length > 0? tail_length : 1;
- fill_buf_with_spaces(ss, tail_length);
- }
- static void offload_target_phase_name(std::stringstream &ss, int p_node)
- {
- int prefix_spaces;
- int str_length;
- const int message_length = 40;
- int tail_length;
- char const *str;
- str = report_get_target_stage_str(p_node);
- prefix_spaces = target_timer_prefix_spaces[p_node];
- fill_buf_with_spaces(ss, prefix_spaces);
- str_length = strlen(str);
- ss << str;
- tail_length = message_length - prefix_spaces - str_length;
- tail_length = (tail_length > 0)? tail_length : 1;
- fill_buf_with_spaces(ss, tail_length);
- }
- void offload_timer_start(OffloadHostTimerData * timer_data,
- OffloadHostPhase p_type)
- {
- timer_data->phases[p_type].start = _rdtsc();
- }
- void offload_timer_stop(OffloadHostTimerData * timer_data,
- OffloadHostPhase p_type)
- {
- timer_data->phases[p_type].total += _rdtsc() -
- timer_data->phases[p_type].start;
- }
- void offload_timer_fill_target_data(OffloadHostTimerData * timer_data,
- void *buf)
- {
- uint64_t *data = (uint64_t*) buf;
- timer_data->target.frequency = *data++;
- for (int i = 0; i < c_offload_target_max_phase; i++) {
- timer_data->target.phases[i].total = *data++;
- }
- }
- void offload_timer_fill_host_sdata(OffloadHostTimerData * timer_data,
- uint64_t sent_bytes)
- {
- if (timer_data) {
- timer_data->sent_bytes += sent_bytes;
- }
- }
- void offload_timer_fill_host_rdata(OffloadHostTimerData * timer_data,
- uint64_t received_bytes)
- {
- if (timer_data) {
- timer_data->received_bytes += received_bytes;
- }
- }
- void offload_timer_fill_host_mic_num(OffloadHostTimerData * timer_data,
- int card_number)
- {
- if (timer_data) {
- timer_data->card_number = card_number;
- }
- }
- OffloadHostTimerData* offload_timer_init(const char *file, int line)
- {
- static bool first_time = true;
- OffloadHostTimerData* timer_data = NULL;
- timer_data_mutex.lock();
- {
- if (timer_enabled ||
- (offload_report_level && offload_report_enabled)) {
- timer_data = (OffloadHostTimerData*)
- OFFLOAD_MALLOC(sizeof(OffloadHostTimerData), 0);
- memset(timer_data, 0, sizeof(OffloadHostTimerData));
- timer_data->offload_number = OFFLOAD_DEBUG_INCR_OFLD_NUM() - 1;
- if (timer_data_head == 0) {
- timer_data_head = timer_data;
- timer_data_tail = timer_data;
- }
- else {
- timer_data_tail->next = timer_data;
- timer_data_tail = timer_data;
- }
- timer_data->file = file;
- timer_data->line = line;
- }
- }
- timer_data_mutex.unlock();
- return timer_data;
- }
- #endif // TIMING_SUPPORT
|