Files
rocm-systems/tests-v2/featuretests/tracer/tracer_gtest.h
T
Ammar ELWazir d3c39dca88 SWDEV-391589: Fixing File plugin output text
Change-Id: I5e1d46431ca2b93661772b062996ed62574c36f9
2023-06-17 00:21:56 -04:00

97 lines
3.8 KiB
C++

/*
Copyright (c) 2015-2016 Advanced Micro Devices, Inc. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#ifndef TESTS_FEATURETESTS_TRACER_GTESTS_APPS_TRACER_GTEST_H_
#define TESTS_FEATURETESTS_TRACER_GTESTS_APPS_TRACER_GTEST_H_
#include <dlfcn.h>
#include <gtest/gtest.h>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <regex>
#include <sstream>
#include <string>
#include <vector>
#include "../utils/test_utils.h"
/* --------------------------------------------------------------------------*/
/**
* @Synopsis Implementation of a Parser class for Tracer output
* Parses pre-saved golden output for kernel info and saves them in a vector
* Executes appliaction(passed as param:app_name) and saves parsed kernel info
* in a vector.
* Subsequent tests can use this to parse different applications
*/
/* --------------------------------------------------------------------------*/
class ApplicationParser : public ::testing::Test {
protected:
virtual void SetUp(const char* app_name, const char* trace_option) {
SetApplicationEnv(app_name, trace_option);
}
virtual void TearDown() {}
//!< This can be appended for other kernel info fields; eg: Agent-Name etc.
//!< saves lines of tracer output
std::vector<std::string> output_lines;
public:
//!< Sets application enviornment by seting HSA_TOOLS_LIB.
void SetApplicationEnv(const char* app_name, const char* trace_option);
//!< Parses kernel-info from a pre-saved golden out files
// and saves them in a vector.
void GetKernelInfoForGoldenOutput(const char* app_name, std::string filename,
std::vector<tracer_kernel_info_t>* kernel_info_output);
//!< Parses kernel-info after running tracer against curent application
// and saves them in a vector.
void GetKernelInfoForRunningApplication(std::vector<tracer_kernel_info_t>* kernel_info_output);
private:
//!< Runs a given appllication and saves tracer output.
// These output lines can be letter passed for kernel informations
// i.e: kernel_names
void ProcessApplication(std::stringstream& ss);
//!< Parses kernel info fields from given input
// i.e: kernel_names, kernel_duration
void ParseKernelInfoFields(const std::string& s,
std::vector<tracer_kernel_info_t>* kernel_info_output);
};
/* --------------------------------------------------------------------------*/
/**
* @Synopsis Implementation of a Tracertest
* Subsequent tests can use this to parse different applications
*/
/* --------------------------------------------------------------------------*/
class Tracertest : public ApplicationParser {
protected:
virtual void SetUp(const char* app_name, const char* trace_option) {
ApplicationParser::SetUp(app_name, trace_option);
}
};
#endif // TESTS_FEATURETESTS_TRACER_GTESTS_APPS_TRACER_GTEST_H_