00001 /* 00002 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. 00003 * 00004 * Redistribution and use in source and binary forms, with or without 00005 * modification, are permitted provided that the following conditions 00006 * are met: 00007 * * Redistributions of source code must retain the above copyright 00008 * notice, this list of conditions and the following disclaimer. 00009 * * Redistributions in binary form must reproduce the above copyright 00010 * notice, this list of conditions and the following disclaimer in the 00011 * documentation and/or other materials provided with the distribution. 00012 * * Neither the name of NVIDIA CORPORATION nor the names of its 00013 * contributors may be used to endorse or promote products derived 00014 * from this software without specific prior written permission. 00015 * 00016 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY 00017 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00018 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00019 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00020 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00021 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00022 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00023 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 00024 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00025 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 00026 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 */ 00028 00029 #include "NvElement.h" 00030 00031 void NvElement::getProfilingData(NvElementProfiler::NvElementProfilerData &data) 00032 { 00033 profiler.getProfilerData(data); 00034 } 00035 00036 void NvElement::printProfilingStats(std::ostream &out_stream) 00037 { 00038 out_stream << "----------- Element = " << comp_name << " -----------" << std::endl; 00039 profiler.printProfilerData(out_stream); 00040 out_stream << "-------------------------------------" << std::endl; 00041 } 00042 00043 void NvElement::enableProfiling() 00044 { 00045 profiler.enableProfiling(true); 00046 } 00047 00048 bool NvElement::isProfilingEnabled() 00049 { 00050 return profiler.enabled; 00051 } 00052 00053 NvElement::NvElement(const char *name, NvElementProfiler::ProfilerField fields) 00054 :profiler(fields) 00055 { 00056 is_in_error = 0; 00057 if (!name) 00058 is_in_error = 1; 00059 this->comp_name = name; 00060 }