From 4b2161cafa547a36ea96aaa9ce310fed69d35f89 Mon Sep 17 00:00:00 2001 From: Gopesh Bhardwaj Date: Wed, 24 Jan 2024 01:11:44 +0530 Subject: [PATCH] pandas installation should be a warning (#402) * pandas installion should be a warning * Removing pandas check [ROCm/rocprofiler-sdk commit: 66b411d328d34c5380cc1f57b5d140d470b3b3e0] --- .../tests/rocprofv3/CMakeLists.txt | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/projects/rocprofiler-sdk/tests/rocprofv3/CMakeLists.txt b/projects/rocprofiler-sdk/tests/rocprofv3/CMakeLists.txt index 8469100552..2d2035e631 100644 --- a/projects/rocprofiler-sdk/tests/rocprofv3/CMakeLists.txt +++ b/projects/rocprofiler-sdk/tests/rocprofv3/CMakeLists.txt @@ -23,21 +23,6 @@ set(CMAKE_HIP_STANDARD_REQUIRED ON) enable_testing() include(CTest) -# needed for validation -find_package(Python3 REQUIRED) - -execute_process( - COMMAND ${Python3_EXECUTABLE} -c "import pandas" - RESULT_VARIABLE PYTHON_PANDAS_IMPORT - OUTPUT_QUIET) - -if(NOT ${PYTHON_PANDAS_IMPORT} EQUAL 0) - message( - FATAL_ERROR - "The 'pandas' Python3 package is not installed. Please install it using the following command: '${Python3_EXECUTABLE} -m pip install pandas'" - ) -endif() - add_subdirectory(tracing) add_subdirectory(counter-collection) add_subdirectory(tracing-plus-cc)