diff --git a/precision_Problem/Is_standard/CMakeLists.txt b/precision_Problem/Is_standard/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..584132d80993d309434fb1303de83910a1989aba --- /dev/null +++ b/precision_Problem/Is_standard/CMakeLists.txt @@ -0,0 +1,69 @@ +cmake_minimum_required(VERSION 3.16.0) +project(opp) +if(ENABLE_CROSS_COMPILE) + if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL x86_64) + set(CROSS_COMPILE_PLATFORM aarch64) + else() + set(CROSS_COMPILE_PLATFORM x86_64) + endif() + set(PLATFORM ${CMAKE_SYSTEM_PROCESSOR}) + set(CMAKE_COMPILE_COMPILER_LIBRARY ${ASCEND_CANN_PACKAGE_PATH}/${PLATFORM}-linux/devlib/linux/${CROSS_COMPILE_PLATFORM}/) + set(CMAKE_COMPILE_RUNTIME_LIBRARY ${ASCEND_CANN_PACKAGE_PATH}/${PLATFORM}-linux/devlib/${CROSS_COMPILE_PLATFORM}/) + set(CMAKE_SYSTEM_PROCESSOR ${CROSS_COMPILE_PLATFORM}) + set(CMAKE_COMPILE ${CMAKE_CXX_COMPILER}) + set(CMAKE_CXX_COMPILER ${CMAKE_CROSS_PLATFORM_COMPILER}) +else() + set(CMAKE_COMPILE ${CMAKE_CXX_COMPILER}) +endif() + +include(cmake/config.cmake) +include(cmake/func.cmake) +include(cmake/intf.cmake) + +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/framework) + add_subdirectory(framework) +endif() +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/op_host) + add_subdirectory(op_host) +endif() +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/op_kernel) + add_subdirectory(op_kernel) +endif() +if(ENABLE_TEST AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/testcases) + add_subdirectory(testcases) +endif() + +# modify vendor_name in install.sh and upgrade.sh +add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/scripts/install.sh ${CMAKE_BINARY_DIR}/scripts/upgrade.sh + COMMAND mkdir -p ${CMAKE_BINARY_DIR}/scripts + COMMAND cp -r ${CMAKE_SOURCE_DIR}/scripts/* ${CMAKE_BINARY_DIR}/scripts/ + COMMAND sed -i "s/vendor_name=customize/vendor_name=${vendor_name}/g" ${CMAKE_BINARY_DIR}/scripts/* +) +add_custom_target(modify_vendor ALL DEPENDS ${CMAKE_BINARY_DIR}/scripts/install.sh ${CMAKE_BINARY_DIR}/scripts/upgrade.sh) +install(DIRECTORY ${CMAKE_BINARY_DIR}/scripts/ DESTINATION . FILE_PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_READ) + +install(FILES ${CMAKE_SOURCE_DIR}/custom.proto DESTINATION packages OPTIONAL) + +get_system_info(SYSTEM_INFO) + +# gen version.info +add_custom_target(gen_version_info ALL + COMMAND bash ${CMAKE_CURRENT_SOURCE_DIR}/cmake/util/gen_version_info.sh ${ASCEND_CANN_PACKAGE_PATH} ${CMAKE_CURRENT_BINARY_DIR} +) + +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/version.info + DESTINATION packages/vendors/${vendor_name}/) + +# CPack config +set(CPACK_PACKAGE_NAME ${CMAKE_PROJECT_NAME}) +set(CPACK_PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) +set(CPACK_PACKAGE_DESCRIPTION "CPack opp project") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CPack opp project") +set(CPACK_PACKAGE_DIRECTORY ${CMAKE_INSTALL_PREFIX}) +set(CPACK_PACKAGE_FILE_NAME "custom_opp_${SYSTEM_INFO}.run") +set(CPACK_GENERATOR External) +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_EXTERNAL_ENABLE_STAGING TRUE) +set(CPACK_EXTERNAL_PACKAGE_SCRIPT ${CMAKE_SOURCE_DIR}/cmake/makeself.cmake) +set(CPACK_EXTERNAL_BUILT_PACKAGES ${CPACK_PACKAGE_DIRECTORY}/_CPack_Packages/Linux/External/${CPACK_PACKAGE_FILE_NAME}/${CPACK_PACKAGE_FILE_NAME}) +include(CPack) diff --git a/precision_Problem/Is_standard/CMakePresets.json b/precision_Problem/Is_standard/CMakePresets.json new file mode 100644 index 0000000000000000000000000000000000000000..8b71810007d0ce1f0fa2d043738d3991d1d84cb5 --- /dev/null +++ b/precision_Problem/Is_standard/CMakePresets.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "cmakeMinimumRequired": { + "major": 3, + "minor": 19, + "patch": 0 + }, + "configurePresets": [ + { + "name": "default", + "displayName": "Default Config", + "description": "Default build using Unix Makefiles generator", + "generator": "Unix Makefiles", + "binaryDir": "${sourceDir}/build_out", + "cacheVariables": { + "CMAKE_BUILD_TYPE": { + "type": "STRING", + "value": "Release" + }, + "ENABLE_SOURCE_PACKAGE": { + "type": "BOOL", + "value": "True" + }, + "ENABLE_BINARY_PACKAGE": { + "type": "BOOL", + "value": "True" + }, + "ASCEND_COMPUTE_UNIT": { + "type": "STRING", + "value": "ascend310b" + }, + "ENABLE_TEST": { + "type": "BOOL", + "value": "True" + }, + "vendor_name": { + "type": "STRING", + "value": "customize" + }, + "ASCEND_CANN_PACKAGE_PATH": { + "type": "PATH", + "value": "/usr/local/Ascend/ascend-toolkit/latest" + }, + "ASCEND_PYTHON_EXECUTABLE": { + "type": "STRING", + "value": "python3" + }, + "CMAKE_INSTALL_PREFIX": { + "type": "PATH", + "value": "${sourceDir}/build_out" + }, + "ENABLE_CROSS_COMPILE": { + "type": "BOOL", + "value": "False" + }, + "CMAKE_CROSS_PLATFORM_COMPILER": { + "type": "PATH", + "value": "/usr/bin/aarch64-linux-gnu-g++" + } + } + } + ] +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build.sh b/precision_Problem/Is_standard/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..27d1968d1ce027ac0a047357957b12edf96d1195 --- /dev/null +++ b/precision_Problem/Is_standard/build.sh @@ -0,0 +1,80 @@ +#!/bin/bash +script_path=$(realpath $(dirname $0)) + + +mkdir -p build_out +rm -rf build_out/* +cd build_out + +opts=$(python3 $script_path/cmake/util/preset_parse.py $script_path/CMakePresets.json) +ENABLE_CROSS="-DENABLE_CROSS_COMPILE=True" +ENABLE_BINARY="-DENABLE_BINARY_PACKAGE=True" +cmake_version=$(cmake --version | grep "cmake version" | awk '{print $3}') + +cmake_run_package() +{ + target=$1 + cmake --build . --target $target -j16 + if [ $? -ne 0 ]; then exit 1; fi + + if [ $target = "package" ]; then + if test -d ./op_kernel/binary ; then + ./cust*.run + if [ $? -ne 0 ]; then exit 1; fi + cmake --build . --target binary -j16 + if [ $? -ne 0 ]; then + echo "[ERROR] Kernel compile failed, the run package will not be generated." + rm -rf ./cust*.run && rm -rf ./cust*.run.json && exit 1; + fi + cmake --build . --target $target -j16 + fi + fi +} + +if [[ $opts =~ $ENABLE_CROSS ]] && [[ $opts =~ $ENABLE_BINARY ]] +then + target=package + if [ "$1"x != ""x ]; then target=$1; fi + if [ "$cmake_version" \< "3.19.0" ] ; then + cmake .. $opts -DENABLE_CROSS_COMPILE=0 + else + cmake .. --preset=default -DENABLE_CROSS_COMPILE=0 + fi + cmake_run_package $target + cp -r kernel ../ + rm -rf * + if [ "$cmake_version" \< "3.19.0" ] ; then + cmake .. $opts + else + cmake .. --preset=default + fi + + cmake --build . --target $target -j16 + if [ $? -ne 0 ]; then + echo "[ERROR] Kernel compile failed, the run package will not be generated." + rm -rf ./cust*.run && rm -rf ./cust*.run.json && exit 1; + fi + if [ $target = "package" ]; then + if test -d ./op_kernel/binary ; then + ./cust*.run + fi + fi + rm -rf ../kernel + +else + target=package + if [ "$1"x != ""x ]; then target=$1; fi + if [ "$cmake_version" \< "3.19.0" ] ; then + cmake .. $opts + else + cmake .. --preset=default + fi + cmake_run_package $target +fi + + +# for debug +# cd build_out +# make +# cpack +# verbose append -v \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/CMakeCache.txt b/precision_Problem/Is_standard/build_out/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be85a726d8b7ce446b14bd60acffb611441b5fb --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeCache.txt @@ -0,0 +1,425 @@ +# This is the CMakeCache file. +# For build in directory: /Package_Cann/test/No_standard/build_out +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ASCEND_CANN_PACKAGE_PATH:PATH=/usr/local/Ascend/ascend-toolkit/latest + +//No help, variable specified on the command line. +ASCEND_COMPUTE_UNIT:STRING=ascend310b + +//No help, variable specified on the command line. +ASCEND_PYTHON_EXECUTABLE:STRING=python3 + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//No help, variable specified on the command line. +CMAKE_CROSS_PLATFORM_COMPILER:PATH=/usr/bin/aarch64-linux-gnu-g++ + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//No help, variable specified on the command line. +CMAKE_INSTALL_PREFIX:PATH=/Package_Cann/test/No_standard/build_out + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=opp + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Enable to build RPM source packages +CPACK_SOURCE_RPM:BOOL=OFF + +//Enable to build TBZ2 source packages +CPACK_SOURCE_TBZ2:BOOL=ON + +//Enable to build TGZ source packages +CPACK_SOURCE_TGZ:BOOL=ON + +//Enable to build TXZ source packages +CPACK_SOURCE_TXZ:BOOL=ON + +//Enable to build TZ source packages +CPACK_SOURCE_TZ:BOOL=ON + +//Enable to build ZIP source packages +CPACK_SOURCE_ZIP:BOOL=OFF + +//No help, variable specified on the command line. +ENABLE_BINARY_PACKAGE:BOOL=True + +//No help, variable specified on the command line. +ENABLE_CROSS_COMPILE:BOOL=False + +//No help, variable specified on the command line. +ENABLE_SOURCE_PACKAGE:BOOL=True + +//No help, variable specified on the command line. +ENABLE_TEST:BOOL=True + +//Value Computed by CMake +opp_BINARY_DIR:STATIC=/Package_Cann/test/No_standard/build_out + +//Value Computed by CMake +opp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +opp_SOURCE_DIR:STATIC=/Package_Cann/test/No_standard + +//No help, variable specified on the command line. +vendor_name:STRING=customize + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Package_Cann/test/No_standard/build_out +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/Package_Cann/test/No_standard +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=5 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_RPM +CPACK_SOURCE_RPM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TBZ2 +CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TGZ +CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TXZ +CPACK_SOURCE_TXZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TZ +CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_ZIP +CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1 + diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.10.0+") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.10.0+") +set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64") + + + +set(CMAKE_SYSTEM "Linux-5.10.0+") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.10.0+") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,803 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,791 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..84340a0327a6e9ed0df4adb9ecac6ffda6c87025 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Package_Cann/test/No_standard") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Package_Cann/test/No_standard/build_out") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeOutput.log b/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..2a545e83e7a48afcebc68fbdecad01d26e9018d2 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeOutput.log @@ -0,0 +1,437 @@ +The system is: Linux - 5.10.0+ - aarch64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/Package_Cann/test/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/Package_Cann/test/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c5e4f/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c5e4f.dir/build.make CMakeFiles/cmTC_c5e4f.dir/build +gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/' + /usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c5e4f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccF1G1lj.s +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/aarch64-linux-gnu/11/include + /usr/local/include + /usr/include/aarch64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o /tmp/ccF1G1lj.s +GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_c5e4f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5e4f.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -o cmTC_c5e4f +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5e4f' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c5e4f.' + /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvPBbw9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_c5e4f /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5e4f' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c5e4f.' +gmake[1]: Leaving directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/aarch64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/aarch64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c5e4f/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c5e4f.dir/build.make CMakeFiles/cmTC_c5e4f.dir/build] + ignore line: [gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c5e4f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccF1G1lj.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/aarch64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o /tmp/ccF1G1lj.s] + ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_c5e4f] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5e4f.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -o cmTC_c5e4f ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5e4f' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c5e4f.'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvPBbw9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_c5e4f /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccvPBbw9.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_c5e4f] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_fd186/fast && /usr/bin/gmake -f CMakeFiles/cmTC_fd186.dir/build.make CMakeFiles/cmTC_fd186.dir/build +gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/' + /usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_fd186.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccxYMiiS.s +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11" +ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/11 + /usr/include/aarch64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/aarch64-linux-gnu/11/include + /usr/local/include + /usr/include/aarch64-linux-gnu + /usr/include +End of search list. +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 3e6e780af1232722b47e0979fda82402 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxYMiiS.s +GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_fd186 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd186.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_fd186 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_fd186' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_fd186.' + /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjc2MCu.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_fd186 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_fd186' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_fd186.' +gmake[1]: Leaving directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/aarch64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/aarch64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/aarch64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/aarch64-linux-gnu/c++/11] ==> [/usr/include/aarch64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_fd186/fast && /usr/bin/gmake -f CMakeFiles/cmTC_fd186.dir/build.make CMakeFiles/cmTC_fd186.dir/build] + ignore line: [gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_fd186.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccxYMiiS.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/aarch64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/aarch64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 3e6e780af1232722b47e0979fda82402] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxYMiiS.s] + ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_fd186] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd186.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_fd186 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_fd186' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_fd186.'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjc2MCu.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_fd186 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccjc2MCu.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_fd186] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeRuleHashes.txt b/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..3203f38acf8b34f93ef5fb37eac10a752a7b821b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,18 @@ +# Hashes of file build rules. +fc49c36149720c74e3d4468798eba7b1 CMakeFiles/gen_version_info +106f4d5d8ed098670b9c384a316751e8 CMakeFiles/modify_vendor +c31e8771e27da55409d482fa28ad0d90 op_host/CMakeFiles/optiling_compat +d1a8db870d720ecb87278659a945ea2f op_kernel/CMakeFiles/ascendc_bin_ascend310b +101dfcdbaf1073ff487e946f5a8efff8 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +ac2562a204adb2b3ed75b44701ca7dc7 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0 +7c88e9e2f03c95e5b8d45fc36ff6aa29 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1 +fbfea8cec4c9072c969387d7f258d9f8 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2 +ebd53830620e349f320cb5b1c9832b24 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3 +858f4f53e024605f54ea6fcb1cb63350 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy +43d7f41cd2162bb770240c062cfef892 op_kernel/CMakeFiles/ascendc_impl_gen +43d7f41cd2162bb770240c062cfef892 op_kernel/CMakeFiles/npu_supported_ops +43d7f41cd2162bb770240c062cfef892 op_kernel/CMakeFiles/ops_info_gen_ascend310b +4d18c7c06f5999c6bb303693943923c0 op_kernel/tbe/.impl_timestamp +046f50afef67fbb6d968a55549df2185 op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +da76942fdfa458dc97491d13b6493bfd op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +74b470842ccef39c1657faa217d342eb scripts/install.sh diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/Makefile.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f06127479a218fb96edb87ee3490a59a2be08537 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/Makefile.cmake @@ -0,0 +1,155 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeSystem.cmake" + "../cmake/config.cmake" + "../cmake/func.cmake" + "../cmake/intf.cmake" + "../framework/CMakeLists.txt" + "../framework/tf_plugin/CMakeLists.txt" + "../op_host/CMakeLists.txt" + "../op_kernel/CMakeLists.txt" + "/usr/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.22/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.22/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.22/Modules/CPack.cmake" + "/usr/share/cmake-3.22/Modules/CPackComponent.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-3.22/Templates/CPackConfig.cmake.in" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.22.1/CMakeSystem.cmake" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CPackConfig.cmake" + "CPackSourceConfig.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "framework/CMakeFiles/CMakeDirectoryInformation.cmake" + "framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake" + "op_host/CMakeFiles/CMakeDirectoryInformation.cmake" + "op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/modify_vendor.dir/DependInfo.cmake" + "CMakeFiles/gen_version_info.dir/DependInfo.cmake" + "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake" + "op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake" + "op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake" + "op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake" + "op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/binary.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake" + ) diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/Makefile2 b/precision_Problem/Is_standard/build_out/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..2d78095bba0fedd1eef9484436f7b2ccd120d6f9 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/Makefile2 @@ -0,0 +1,649 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/modify_vendor.dir/all +all: CMakeFiles/gen_version_info.dir/all +all: framework/all +all: op_host/all +all: op_kernel/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: framework/preinstall +preinstall: op_host/preinstall +preinstall: op_kernel/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/modify_vendor.dir/clean +clean: CMakeFiles/gen_version_info.dir/clean +clean: framework/clean +clean: op_host/clean +clean: op_kernel/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory framework + +# Recursive "all" directory target. +framework/all: framework/tf_plugin/all +.PHONY : framework/all + +# Recursive "preinstall" directory target. +framework/preinstall: framework/tf_plugin/preinstall +.PHONY : framework/preinstall + +# Recursive "clean" directory target. +framework/clean: framework/tf_plugin/clean +.PHONY : framework/clean + +#============================================================================= +# Directory level rules for directory framework/tf_plugin + +# Recursive "all" directory target. +framework/tf_plugin/all: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all +.PHONY : framework/tf_plugin/all + +# Recursive "preinstall" directory target. +framework/tf_plugin/preinstall: +.PHONY : framework/tf_plugin/preinstall + +# Recursive "clean" directory target. +framework/tf_plugin/clean: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean +.PHONY : framework/tf_plugin/clean + +#============================================================================= +# Directory level rules for directory op_host + +# Recursive "all" directory target. +op_host/all: op_host/CMakeFiles/cust_op_proto.dir/all +op_host/all: op_host/CMakeFiles/cust_optiling.dir/all +op_host/all: op_host/CMakeFiles/cust_opapi.dir/all +op_host/all: op_host/CMakeFiles/optiling_compat.dir/all +.PHONY : op_host/all + +# Recursive "preinstall" directory target. +op_host/preinstall: +.PHONY : op_host/preinstall + +# Recursive "clean" directory target. +op_host/clean: op_host/CMakeFiles/cust_op_proto.dir/clean +op_host/clean: op_host/CMakeFiles/cust_optiling.dir/clean +op_host/clean: op_host/CMakeFiles/cust_opapi.dir/clean +op_host/clean: op_host/CMakeFiles/optiling_compat.dir/clean +.PHONY : op_host/clean + +#============================================================================= +# Directory level rules for directory op_kernel + +# Recursive "all" directory target. +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all +op_kernel/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all +op_kernel/all: op_kernel/CMakeFiles/npu_supported_ops.dir/all +.PHONY : op_kernel/all + +# Recursive "preinstall" directory target. +op_kernel/preinstall: +.PHONY : op_kernel/preinstall + +# Recursive "clean" directory target. +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/binary.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/npu_supported_ops.dir/clean +.PHONY : op_kernel/clean + +#============================================================================= +# Target rules for target CMakeFiles/modify_vendor.dir + +# All Build rule for target. +CMakeFiles/modify_vendor.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=11 "Built target modify_vendor" +.PHONY : CMakeFiles/modify_vendor.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/modify_vendor.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : CMakeFiles/modify_vendor.dir/rule + +# Convenience name for target. +modify_vendor: CMakeFiles/modify_vendor.dir/rule +.PHONY : modify_vendor + +# clean rule for target. +CMakeFiles/modify_vendor.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/clean +.PHONY : CMakeFiles/modify_vendor.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gen_version_info.dir + +# All Build rule for target. +CMakeFiles/gen_version_info.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target gen_version_info" +.PHONY : CMakeFiles/gen_version_info.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gen_version_info.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : CMakeFiles/gen_version_info.dir/rule + +# Convenience name for target. +gen_version_info: CMakeFiles/gen_version_info.dir/rule +.PHONY : gen_version_info + +# clean rule for target. +CMakeFiles/gen_version_info.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/clean +.PHONY : CMakeFiles/gen_version_info.dir/clean + +#============================================================================= +# Target rules for target framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir + +# All Build rule for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all: + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=9,10 "Built target cust_tf_parsers" +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + +# Build rule for subdir invocation for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule + +# Convenience name for target. +cust_tf_parsers: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule +.PHONY : cust_tf_parsers + +# clean rule for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean: + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/cust_op_proto.dir + +# All Build rule for target. +op_host/CMakeFiles/cust_op_proto.dir/all: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=2,3,4 "Built target cust_op_proto" +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/cust_op_proto.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/rule + +# Convenience name for target. +cust_op_proto: op_host/CMakeFiles/cust_op_proto.dir/rule +.PHONY : cust_op_proto + +# clean rule for target. +op_host/CMakeFiles/cust_op_proto.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/clean +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/cust_optiling.dir + +# All Build rule for target. +op_host/CMakeFiles/cust_optiling.dir/all: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=7,8 "Built target cust_optiling" +.PHONY : op_host/CMakeFiles/cust_optiling.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/cust_optiling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/cust_optiling.dir/rule + +# Convenience name for target. +cust_optiling: op_host/CMakeFiles/cust_optiling.dir/rule +.PHONY : cust_optiling + +# clean rule for target. +op_host/CMakeFiles/cust_optiling.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/clean +.PHONY : op_host/CMakeFiles/cust_optiling.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/cust_opapi.dir + +# All Build rule for target. +op_host/CMakeFiles/cust_opapi.dir/all: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=5,6 "Built target cust_opapi" +.PHONY : op_host/CMakeFiles/cust_opapi.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/cust_opapi.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/cust_opapi.dir/rule + +# Convenience name for target. +cust_opapi: op_host/CMakeFiles/cust_opapi.dir/rule +.PHONY : cust_opapi + +# clean rule for target. +op_host/CMakeFiles/cust_opapi.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/clean +.PHONY : op_host/CMakeFiles/cust_opapi.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/optiling_compat.dir + +# All Build rule for target. +op_host/CMakeFiles/optiling_compat.dir/all: op_host/CMakeFiles/cust_optiling.dir/all + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target optiling_compat" +.PHONY : op_host/CMakeFiles/optiling_compat.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/optiling_compat.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/optiling_compat.dir/rule + +# Convenience name for target. +optiling_compat: op_host/CMakeFiles/optiling_compat.dir/rule +.PHONY : optiling_compat + +# clean rule for target. +op_host/CMakeFiles/optiling_compat.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/clean +.PHONY : op_host/CMakeFiles/optiling_compat.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=13 "Built target ops_info_gen_ascend310b" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule +.PHONY : ops_info_gen_ascend310b + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_impl_gen.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=1 "Built target ascendc_impl_gen" +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule + +# Convenience name for target. +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule +.PHONY : ascendc_impl_gen + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/binary.dir + +# All Build rule for target. +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target binary" +.PHONY : op_kernel/CMakeFiles/binary.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/binary.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/binary.dir/rule + +# Convenience name for target. +binary: op_kernel/CMakeFiles/binary.dir/rule +.PHONY : binary + +# clean rule for target. +op_kernel/CMakeFiles/binary.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/clean +.PHONY : op_kernel/CMakeFiles/binary.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule +.PHONY : ascendc_bin_ascend310b + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_1" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_2" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_3" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/npu_supported_ops.dir + +# All Build rule for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=12 "Built target npu_supported_ops" +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/rule + +# Convenience name for target. +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/rule +.PHONY : npu_supported_ops + +# clean rule for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/clean +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/TargetDirectories.txt b/precision_Problem/Is_standard/build_out/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..50db8e5d633dad28b9699001e9fe50e75cbbd9a1 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,58 @@ +/Package_Cann/test/No_standard/build_out/CMakeFiles/modify_vendor.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/gen_version_info.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/binary.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/cmake.check_cache b/precision_Problem/Is_standard/build_out/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/build.make b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6c2bea2055c69a25cc6f67a9d88791f5e453ee0c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for gen_version_info. + +# Include any custom commands dependencies for this target. +include CMakeFiles/gen_version_info.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gen_version_info.dir/progress.make + +CMakeFiles/gen_version_info: + bash /Package_Cann/test/No_standard/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Package_Cann/test/No_standard/build_out + +gen_version_info: CMakeFiles/gen_version_info +gen_version_info: CMakeFiles/gen_version_info.dir/build.make +.PHONY : gen_version_info + +# Rule to build all files generated by this target. +CMakeFiles/gen_version_info.dir/build: gen_version_info +.PHONY : CMakeFiles/gen_version_info.dir/build + +CMakeFiles/gen_version_info.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gen_version_info.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gen_version_info.dir/clean + +CMakeFiles/gen_version_info.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/gen_version_info.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4183a837bc0dec14a4def868f73d30454795d838 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/gen_version_info" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/gen_version_info.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..94061306968c7012026090d774e6ed8954710fe1 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for gen_version_info. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..714ce8ff0ea68770397b4b735a816647351f4c4c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for gen_version_info. diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/progress.make b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/gen_version_info.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7505cee3629c3d05535ba5a24bc8c1bb1189f0c2 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Package_Cann/test/No_standard/build_out/scripts/upgrade.sh" "/Package_Cann/test/No_standard/build_out/scripts/install.sh" + ) + + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/build.make b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3e2c1ad3d773ce09c7ad6fd7fb5127a54b67f6a3 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/build.make @@ -0,0 +1,98 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for modify_vendor. + +# Include any custom commands dependencies for this target. +include CMakeFiles/modify_vendor.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/modify_vendor.dir/progress.make + +CMakeFiles/modify_vendor: scripts/install.sh +CMakeFiles/modify_vendor: scripts/upgrade.sh + +scripts/install.sh: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Package_Cann/test/No_standard/build_out/scripts + cp -r /Package_Cann/test/No_standard/scripts/* /Package_Cann/test/No_standard/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Package_Cann/test/No_standard/build_out/scripts/* + +scripts/upgrade.sh: scripts/install.sh + @$(CMAKE_COMMAND) -E touch_nocreate scripts/upgrade.sh + +modify_vendor: CMakeFiles/modify_vendor +modify_vendor: scripts/install.sh +modify_vendor: scripts/upgrade.sh +modify_vendor: CMakeFiles/modify_vendor.dir/build.make +.PHONY : modify_vendor + +# Rule to build all files generated by this target. +CMakeFiles/modify_vendor.dir/build: modify_vendor +.PHONY : CMakeFiles/modify_vendor.dir/build + +CMakeFiles/modify_vendor.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/modify_vendor.dir/cmake_clean.cmake +.PHONY : CMakeFiles/modify_vendor.dir/clean + +CMakeFiles/modify_vendor.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/modify_vendor.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..563285175969cc11e838c67e32b7fd052a517b5f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/modify_vendor" + "scripts/install.sh" + "scripts/upgrade.sh" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/modify_vendor.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bda5864a979e6a287be963ee99667bd4c0d2ed79 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for modify_vendor. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4290d3f2e262181b1ffff8509a18a20ec4278023 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for modify_vendor. diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/progress.make b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..27952ed76a534aed5b8a5fa4bfd9bb2d3e51eeba --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/modify_vendor.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 11 + diff --git a/precision_Problem/Is_standard/build_out/CMakeFiles/progress.marks b/precision_Problem/Is_standard/build_out/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..b1bd38b62a0800a4f6a80c34e21c5acffae52c7e --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CMakeFiles/progress.marks @@ -0,0 +1 @@ +13 diff --git a/precision_Problem/Is_standard/build_out/CPackConfig.cmake b/precision_Problem/Is_standard/build_out/CPackConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5c0dc704d668711c3a14d293f1eec035e50fd1f5 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CPackConfig.cmake @@ -0,0 +1,71 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BUILD_SOURCE_DIRS "/Package_Cann/test/No_standard;/Package_Cann/test/No_standard/build_out") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "opp built using CMake") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_ENABLE_STAGING "TRUE") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Package_Cann/test/No_standard/cmake/makeself.cmake") +set(CPACK_GENERATOR "External") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Package_Cann/test/No_standard/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "opp 0.1.1") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION "CPack opp project") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CPack opp project") +set(CPACK_PACKAGE_DIRECTORY "/Package_Cann/test/No_standard/build_out") +set(CPACK_PACKAGE_FILE_NAME "custom_opp_ubuntu_aarch64.run") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "opp 0.1.1") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "opp 0.1.1") +set(CPACK_PACKAGE_NAME "opp") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.1.1") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.22/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.22/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/Package_Cann/test/No_standard/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/precision_Problem/Is_standard/build_out/CPackSourceConfig.cmake b/precision_Problem/Is_standard/build_out/CPackSourceConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8e8d547faab8602bd484ed70e6fd7515ef52c696 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/CPackSourceConfig.cmake @@ -0,0 +1,79 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BUILD_SOURCE_DIRS "/Package_Cann/test/No_standard;/Package_Cann/test/No_standard/build_out") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "opp built using CMake") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_ENABLE_STAGING "TRUE") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Package_Cann/test/No_standard/cmake/makeself.cmake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INSTALLED_DIRECTORIES "/Package_Cann/test/No_standard;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "opp 0.1.1") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION "CPack opp project") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CPack opp project") +set(CPACK_PACKAGE_DIRECTORY "/Package_Cann/test/No_standard/build_out") +set(CPACK_PACKAGE_FILE_NAME "opp-0.1.1-Source") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "opp 0.1.1") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "opp 0.1.1") +set(CPACK_PACKAGE_NAME "opp") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.1.1") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.22/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.22/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/Package_Cann/test/No_standard;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "opp-0.1.1-Source") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/Package_Cann/test/No_standard/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/precision_Problem/Is_standard/build_out/Makefile b/precision_Problem/Is_standard/build_out/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..4d55c2f88860a01e9186572851342a807e6c9709 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/Makefile @@ -0,0 +1,463 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named modify_vendor + +# Build rule for target. +modify_vendor: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 modify_vendor +.PHONY : modify_vendor + +# fast build rule for target. +modify_vendor/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/build +.PHONY : modify_vendor/fast + +#============================================================================= +# Target rules for targets named gen_version_info + +# Build rule for target. +gen_version_info: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gen_version_info +.PHONY : gen_version_info + +# fast build rule for target. +gen_version_info/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/build +.PHONY : gen_version_info/fast + +#============================================================================= +# Target rules for targets named cust_tf_parsers + +# Build rule for target. +cust_tf_parsers: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_tf_parsers +.PHONY : cust_tf_parsers + +# fast build rule for target. +cust_tf_parsers/fast: + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build +.PHONY : cust_tf_parsers/fast + +#============================================================================= +# Target rules for targets named cust_op_proto + +# Build rule for target. +cust_op_proto: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_op_proto +.PHONY : cust_op_proto + +# fast build rule for target. +cust_op_proto/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build +.PHONY : cust_op_proto/fast + +#============================================================================= +# Target rules for targets named cust_optiling + +# Build rule for target. +cust_optiling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_optiling +.PHONY : cust_optiling + +# fast build rule for target. +cust_optiling/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build +.PHONY : cust_optiling/fast + +#============================================================================= +# Target rules for targets named cust_opapi + +# Build rule for target. +cust_opapi: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_opapi +.PHONY : cust_opapi + +# fast build rule for target. +cust_opapi/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build +.PHONY : cust_opapi/fast + +#============================================================================= +# Target rules for targets named optiling_compat + +# Build rule for target. +optiling_compat: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 optiling_compat +.PHONY : optiling_compat + +# fast build rule for target. +optiling_compat/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build +.PHONY : optiling_compat/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend310b + +# Build rule for target. +ops_info_gen_ascend310b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend310b +.PHONY : ops_info_gen_ascend310b + +# fast build rule for target. +ops_info_gen_ascend310b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build +.PHONY : ops_info_gen_ascend310b/fast + +#============================================================================= +# Target rules for targets named ascendc_impl_gen + +# Build rule for target. +ascendc_impl_gen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_impl_gen +.PHONY : ascendc_impl_gen + +# fast build rule for target. +ascendc_impl_gen/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build +.PHONY : ascendc_impl_gen/fast + +#============================================================================= +# Target rules for targets named binary + +# Build rule for target. +binary: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 binary +.PHONY : binary + +# fast build rule for target. +binary/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build +.PHONY : binary/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b + +# Build rule for target. +ascendc_bin_ascend310b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b +.PHONY : ascendc_bin_ascend310b + +# fast build rule for target. +ascendc_bin_ascend310b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build +.PHONY : ascendc_bin_ascend310b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend310b_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_gen_ops_config +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310b_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310b_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_copy + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_copy +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_0 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_0 +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_0/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_1 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_1 +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_1/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_1/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_2 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_2 +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_2/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_2/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_3 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_3: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_3 +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_3/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_3/fast + +#============================================================================= +# Target rules for targets named npu_supported_ops + +# Build rule for target. +npu_supported_ops: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 npu_supported_ops +.PHONY : npu_supported_ops + +# fast build rule for target. +npu_supported_ops/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build +.PHONY : npu_supported_ops/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... ascendc_bin_ascend310b" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310b_reduce_sum_0" + @echo "... ascendc_bin_ascend310b_reduce_sum_1" + @echo "... ascendc_bin_ascend310b_reduce_sum_2" + @echo "... ascendc_bin_ascend310b_reduce_sum_3" + @echo "... ascendc_bin_ascend310b_reduce_sum_copy" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... gen_version_info" + @echo "... modify_vendor" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... optiling_compat" + @echo "... cust_op_proto" + @echo "... cust_opapi" + @echo "... cust_optiling" + @echo "... cust_tf_parsers" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..54b3f0bb85d7d5b3b3bc46f0ecb2ea1b3cf12ade --- /dev/null +++ b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json @@ -0,0 +1,26 @@ +{ + "componentGroups" : {}, + "components" : {}, + "errorOnAbsoluteInstallDestination" : false, + "formatVersionMajor" : 1, + "formatVersionMinor" : 0, + "installationTypes" : {}, + "packageDescriptionFile" : "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt", + "packageDescriptionSummary" : "CPack opp project", + "packageName" : "opp", + "packageVersion" : "0.1.1", + "projects" : + [ + { + "component" : "ALL", + "components" : [], + "directory" : "/Package_Cann/test/No_standard/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..68064786722235034ed8b67ce532cce276c8dec0 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,1040 @@ +#!/bin/bash +# This script was generated using Makeself 2.4.5 +# The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL) +# 2022.3.19-Modified the MS_Help function and some options +# Huawei Technologies Co., Ltd. + +ORIG_UMASK=`umask` + +CRCsum="3041702791" +MD5="00000000000000000000000000000000" +SHA="83564fdb0efb6398c2c16910aa031cf959b4e60afe89867f33033a9c0e1bdeaa" +SIGNATURE="" +TMPROOT=${TMPDIR:="$HOME"} +if ! test -d "$TMPROOT"; then + TMPROOT="$PWD" +fi +export TMPDIR="$TMPROOT" +USER_PWD="$PWD" +if ! test -d "$USER_PWD"; then + exit 1 +fi +export USER_PWD +ARCHIVE_DIR=`dirname "$0"` +export ARCHIVE_DIR + +name_of_file="$0 " +pwd_of_file="$PWD" +label="version:1.0" +script="./install.sh" +scriptargs="" +cleanup_script="" +licensetxt="" +helpheader=' --install-path Install operator package to specific dir path +' +targetdir="makeself-397763-20240915013443" +filesizes="132381" +totalsize="132381" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="672" + +print_cmd_arg="" +if type printf > /dev/null; then + print_cmd="printf" +elif test -x /usr/ucb/echo; then + print_cmd="/usr/ucb/echo" +else + print_cmd="echo" +fi + +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:$PATH + export PATH +fi + +if test -d /usr/sfw/bin; then + PATH=$PATH:/usr/sfw/bin + export PATH +fi + +unset CDPATH + +MS_Printf() +{ + $print_cmd $print_cmd_arg "$1" +} + +MS_PrintLicense() +{ + PAGER=${PAGER:=more} + if test x"$licensetxt" != x; then + PAGER_PATH=`exec <&- 2>&-; which $PAGER || command -v $PAGER || type $PAGER` + if test -x "$PAGER_PATH"; then + echo "$licensetxt" | $PAGER + else + echo "$licensetxt" + fi + if test x"$accept" != xy; then + while true + do + MS_Printf "Please type y to accept, n otherwise: " + read yn + if test x"$yn" = xn; then + keep=n + eval $finish; exit 1 + break; + elif test x"$yn" = xy; then + break; + fi + done + fi + fi +} + +MS_diskspace() +{ + ( + df -kP "$1" | tail -1 | awk '{ if ($4 ~ /%/) {print $3} else {print $4} }' + ) +} + +MS_dd() +{ + blocks=`expr $3 / 1024` + bytes=`expr $3 % 1024` + # Test for ibs, obs and conv feature + if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then + dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ + { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ + test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null + else + dd if="$1" bs=$2 skip=1 2> /dev/null + fi +} + +MS_dd_Progress() +{ + if test x"$noprogress" = xy; then + MS_dd "$@" + return $? + fi + file="$1" + offset=$2 + length=$3 + pos=0 + bsize=4194304 + while test $bsize -gt $length; do + bsize=`expr $bsize / 4` + done + blocks=`expr $length / $bsize` + bytes=`expr $length % $bsize` + ( + dd ibs=$offset skip=1 2>/dev/null + pos=`expr $pos \+ $bsize` + MS_Printf " 0%% " 1>&2 + if test $blocks -gt 0; then + while test $pos -le $length; do + dd bs=$bsize count=1 2>/dev/null + pcent=`expr $length / 100` + pcent=`expr $pos / $pcent` + if test $pcent -lt 100; then + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + if test $pcent -lt 10; then + MS_Printf " $pcent%% " 1>&2 + else + MS_Printf " $pcent%% " 1>&2 + fi + fi + pos=`expr $pos \+ $bsize` + done + fi + if test $bytes -gt 0; then + dd bs=$bytes count=1 2>/dev/null + fi + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + MS_Printf " 100%% " 1>&2 + ) < "$file" +} + +MS_Help() +{ + cat << EOH >&2 +Usage: $0 [options] +Options: + --help | -h Print this message + --info Print embedded info : title, default target directory, embedded script ... + --list Print the list of files in the archive + --check Checks integrity and version dependency of the archive + --quiet Quiet install mode, skip human-computer interactions + --nox11 Do not spawn an xterm + --noexec Do not run embedded script + --extract= Extract directly to a target directory (absolute or relative) + Usually used with --noexec to just extract files without running + --tar arg1 [arg2 ...] Access the contents of the archive through the tar command +${helpheader} +EOH +} + +MS_Verify_Sig() +{ + GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + test -x "$GPG_PATH" || GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + test -x "$MKTEMP_PATH" || MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + temp_sig=`mktemp -t XXXXX` + echo $SIGNATURE | base64 --decode > "$temp_sig" + gpg_output=`MS_dd "$1" $offset $totalsize | LC_ALL=C "$GPG_PATH" --verify "$temp_sig" - 2>&1` + gpg_res=$? + rm -f "$temp_sig" + if test $gpg_res -eq 0 && test `echo $gpg_output | grep -c Good` -eq 1; then + if test `echo $gpg_output | grep -c $sig_key` -eq 1; then + test x"$quiet" = xn && echo "GPG signature is good" >&2 + else + echo "GPG Signature key does not match" >&2 + exit 2 + fi + else + test x"$quiet" = xn && echo "GPG signature failed to verify" >&2 + exit 2 + fi +} + +MS_Check() +{ + OLD_PATH="$PATH" + PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest` + PATH="$OLD_PATH" + + SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum` + test -x "$SHA_PATH" || SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum` + + if test x"$quiet" = xn; then + MS_Printf "Verifying archive integrity..." + fi + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + fsize=`cat "$1" | wc -c | tr -d " "` + if test $totalsize -ne `expr $fsize - $offset`; then + echo " Unexpected archive size." >&2 + exit 2 + fi + verb=$2 + i=1 + for s in $filesizes + do + crc=`echo $CRCsum | cut -d" " -f$i` + if test -x "$SHA_PATH"; then + if test x"`basename $SHA_PATH`" = xshasum; then + SHA_ARG="-a 256" + fi + sha=`echo $SHA | cut -d" " -f$i` + if test x"$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded SHA256 checksum." >&2 + else + shasum=`MS_dd_Progress "$1" $offset $s | eval "$SHA_PATH $SHA_ARG" | cut -b-64`; + if test x"$shasum" != x"$sha"; then + echo "Error in SHA256 checksums: $shasum is different from $sha" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " SHA256 checksums are OK." >&2 + fi + crc="0000000000"; + fi + fi + if test -x "$MD5_PATH"; then + if test x"`basename $MD5_PATH`" = xdigest; then + MD5_ARG="-a md5" + fi + md5=`echo $MD5 | cut -d" " -f$i` + if test x"$md5" = x00000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 + else + md5sum=`MS_dd_Progress "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; + if test x"$md5sum" != x"$md5"; then + echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " MD5 checksums are OK." >&2 + fi + crc="0000000000"; verb=n + fi + fi + if test x"$crc" = x0000000000; then + test x"$verb" = xy && echo " $1 does not contain a CRC checksum." >&2 + else + sum1=`MS_dd_Progress "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'` + if test x"$sum1" != x"$crc"; then + echo "Error in checksums: $sum1 is different from $crc" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " CRC checksums are OK." >&2 + fi + fi + i=`expr $i + 1` + offset=`expr $offset + $s` + done + if test x"$quiet" = xn; then + echo " All good." + fi +} + +MS_Decompress() +{ + if test x"$decrypt_cmd" != x""; then + { eval "$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "gzip -cd" + else + eval "gzip -cd" + fi + + if test $? -ne 0; then + echo " ... Decompression failed." >&2 + fi +} + +UnTAR() +{ + if test x"$quiet" = xn; then + tar $1vf - 2>&1 || { echo " ... Extraction failed." >&2; kill -15 $$; } + else + tar $1f - 2>&1 || { echo Extraction failed. >&2; kill -15 $$; } + fi +} + +MS_exec_cleanup() { + if test x"$cleanup" = xy && test x"$cleanup_script" != x""; then + cleanup=n + cd "$tmpdir" + eval "\"$cleanup_script\" $scriptargs $cleanupargs" + fi +} + +MS_cleanup() +{ + echo 'Signal caught, cleaning up' >&2 + MS_exec_cleanup + cd "$TMPROOT" + rm -rf "$tmpdir" + eval $finish; exit 15 +} + +Script_Args_Check() +{ + script_supported_args=$(echo ${helpheader} | grep -o -E "\-\-[^ ]+" | awk -F"=" {'print $1'}) + arg_to_test=$(echo $1|awk -F"=" {'print $1'}) + + for arg in ${script_supported_args}; + do + if test x"$arg_to_test" = x"$arg" ;then + return + fi + done + + MS_Help + exit 1 +} + +finish=true +xterm_loop= +noprogress=n +nox11=n +copy=none +ownership=n +verbose=n +cleanup=y +cleanupargs= +sig_key= + +initargs="$@" + +while [ -n "$*" ] +do + case "$1" in + -h | --help) + MS_Help + exit 0 + ;; + -q | --quiet) + quiet=y + noprogress=y + shift + ;; + --info) + echo Identification: "$label" + echo Target directory: "$targetdir" + echo Uncompressed size: 380 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun Sep 15 01:34:43 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Package_Cann/test/No_standard/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Package_Cann/test/No_standard/cmake/util/makeself/makeself-header.sh\" \\ + \"--help-header\" \\ + \"./help.info\" \\ + \"--gzip\" \\ + \"--complevel\" \\ + \"4\" \\ + \"--nomd5\" \\ + \"--sha256\" \\ + \"./\" \\ + \"custom_opp_ubuntu_aarch64.run\" \\ + \"version:1.0\" \\ + \"./install.sh\"" + if test x"$script" != x; then + echo Script run after extraction: + echo " " $script $scriptargs + fi + if test x"" = xcopy; then + echo "Archive will copy itself to a temporary location" + fi + if test x"n" = xy; then + echo "Root permissions required for extraction" + fi + if test x"n" = xy; then + echo "directory $targetdir is permanent" + else + echo "$targetdir will be removed after extraction" + fi + exit 0 + ;; + --list) + echo Target directory: $targetdir + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | UnTAR t + offset=`expr $offset + $s` + done + exit 0 + ;; + --tar) + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + arg1="$2" + shift 2 || { MS_Help; exit 1; } + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | tar "$arg1" - "$@" + offset=`expr $offset + $s` + done + exit 0 + ;; + --check) + MS_Check "$0" y + scriptargs="$scriptargs $1" + shift + ;; + --noexec) + script="" + cleanup_script="" + shift + ;; + --extract=*) + keep=y + targetdir=`echo $1 | cut -d"=" -f2 ` + if ! shift; then MS_Help; exit 1; fi + ;; + --nox11) + nox11=y + shift + ;; + --xwin) + if test "n" = n; then + finish="echo Press Return to close this window...; read junk" + fi + xterm_loop=1 + shift + ;; + --phase2) + copy=phase2 + shift + ;; + --repack | --repack-path=*) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + if [[ ! "$1" =~ ^-.* ]]; then + scriptargs="$scriptargs '$1'" + shift + fi + ;; + *) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + ;; + esac +done + +quiet_para="" +if test x"$quiet" = xy; then + quiet_para="--quiet " +fi +scriptargs="--$name_of_file""--\"$pwd_of_file\""" $quiet_para""$scriptargs" + +if test x"$quiet" = xy -a x"$verbose" = xy; then + echo Cannot be verbose and quiet at the same time. >&2 + exit 1 +fi + +if test x"n" = xy -a `id -u` -ne 0; then + echo "Administrative privileges required for this archive (use su or sudo)" >&2 + exit 1 +fi + +if test x"$copy" \!= xphase2; then + MS_PrintLicense +fi + +case "$copy" in +copy) + tmpdir="$TMPROOT"/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$ + mkdir "$tmpdir" || { + echo "Could not create temporary directory $tmpdir" >&2 + exit 1 + } + SCRIPT_COPY="$tmpdir/makeself" + echo "Copying to a temporary location..." >&2 + cp "$0" "$SCRIPT_COPY" + chmod +x "$SCRIPT_COPY" + cd "$TMPROOT" + exec "$SCRIPT_COPY" --phase2 -- $initargs + ;; +phase2) + finish="$finish ; rm -rf `dirname $0`" + ;; +esac + +if test x"$nox11" = xn; then + if tty -s; then # Do we have a terminal? + : + else + if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? + if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable + GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology" + for a in $GUESS_XTERMS; do + if type $a >/dev/null 2>&1; then + XTERM=$a + break + fi + done + chmod a+x $0 || echo Please add execution rights on $0 + if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! + exec $XTERM -e "$0 --xwin $initargs" + else + exec $XTERM -e "./$0 --xwin $initargs" + fi + fi + fi + fi +fi + +if test x"$targetdir" = x.; then + tmpdir="." +else + if test x"$keep" = xy; then + if test x"$nooverwrite" = xy && test -d "$targetdir"; then + echo "Target directory $targetdir already exists, aborting." >&2 + exit 1 + fi + if test x"$quiet" = xn; then + echo "Creating directory $targetdir" >&2 + fi + tmpdir="$targetdir" + dashp="-p" + else + tmpdir="$TMPROOT/selfgz$$$RANDOM" + dashp="" + fi + mkdir $dashp "$tmpdir" || { + echo 'Cannot create target directory' $tmpdir >&2 + echo 'You should try option --extract=' >&2 + eval $finish + exit 1 + } +fi + +location="`pwd`" +if test x"$SETUP_NOCHECK" != x1; then + MS_Check "$0" +fi +offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + +if test x"$verbose" = xy; then + MS_Printf "About to extract 380 KB in $tmpdir ... Proceed ? [Y/n] " + read yn + if test x"$yn" = xn; then + eval $finish; exit 1 + fi +fi + +if test x"$quiet" = xn; then + # Decrypting with openssl will ask for password, + # the prompt needs to start on new line + if test x"n" = x"openssl"; then + echo "Decrypting and uncompressing $label..." + else + MS_Printf "Uncompressing $label" + fi +fi +res=3 +if test x"$keep" = xn; then + trap MS_cleanup 1 2 3 15 +fi + +if test x"$nodiskspace" = xn; then + leftspace=`MS_diskspace "$tmpdir"` + if test -n "$leftspace"; then + if test "$leftspace" -lt 380; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (380 KB)" >&2 + if test x"$keep" = xn; then + echo "Consider setting TMPDIR to a directory with more free space." + fi + eval $finish; exit 1 + fi + fi +fi + +for s in $filesizes +do + if MS_dd_Progress "$0" $offset $s | MS_Decompress | ( cd "$tmpdir"; umask $ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then + if test x"$ownership" = xy; then + (cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) + fi + else + echo >&2 + echo "Unable to decompress $0" >&2 + eval $finish; exit 1 + fi + offset=`expr $offset + $s` +done +if test x"$quiet" = xn; then + echo +fi + +cd "$tmpdir" +res=0 +if test x"$script" != x; then + if test x"$export_conf" = x"y"; then + MS_BUNDLE="$0" + MS_LABEL="$label" + MS_SCRIPT="$script" + MS_SCRIPTARGS="$scriptargs" + MS_ARCHDIRNAME="$archdirname" + MS_KEEP="$KEEP" + MS_NOOVERWRITE="$NOOVERWRITE" + MS_COMPRESS="$COMPRESS" + MS_CLEANUP="$cleanup" + export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS + export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS + fi + + if test x"$verbose" = x"y"; then + yn="x" + while test x"$yn" != x -a x"$yn" != xy -a x"$yn" != xY -a x"$yn" != xn -a x"$yn" != xN + do + MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " + read yn + if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then + eval "\"$script\" $scriptargs \"\$@\""; res=$?; + elif test x"$yn" = xn -o x"$yn" = xN; then + echo "Unable to decompress $script ,because of aborting! ";res=$? + else + echo "Input value is unacceptable,please try again." + fi + done + else + eval "\"$script\" $scriptargs \"\$@\""; res=$? + fi + if test "$res" -ne 0; then + test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 + fi +fi + +MS_exec_cleanup + +if test x"$keep" = xn; then + cd "$TMPROOT" + rm -rf "$tmpdir" +fi +eval $finish; exit $res +3f< u{+!c KB; 8tN*sܝb%Bݎ;!d&.(\Ag vat!F吘P@T +D SQhcٞϝ^~ޛ9-ƠI>)H,mI%@LR$ղTsKKK$STHɠO +XeNMڃ$b6fcyH`-m̼f)iIyEݮ icJv^SA]:Li_ M)|`7PLdfMK6֪]̜~ ilDYSUv[ℙϳv2&#,X =_]`fOىFHMk[Hd8gX-6#T֤Ɣn5Q5g[A(1sb] }=kZjjľnԂ#֨lUc%V,N쮥mY6`ivMaE.,98Z6.؂\lAZZfEQ~TtU0=m4r֭R1)f@7Qi +hHEj@*%K[EZػU*,*-nxA +9pJs莔r(KK5|"ch +RpHk;F[ WQƕ`MJICHK +,ti0PXQgY-+L{_g׆Ur禾==[ +CȨb,ѪTf궪"fk%cDG$IgX=ƚӉp&OpFRDwN:=~}םo=cw}OGo;~csGw8 CTFhy-ʸEjVJ[F<l!q88D*mtRi ;˂ +'MQ9L|+m+C$8s(nTUm EmYAgV9l`P1Ay>MRyg1LI̾i-9l=CG-{~L{gh=PӺelm\Xd)[P5.%-ae:DVQI+d,I06z_wUV7x}&R0glfΣ&M#P)gO,G$)a%w;PԢ"Um%!$ì(ż' MP_aU8l?rJ^ S{B|tXʚ3to:a=UW+:C.5ݐݫ'越xGSXީX2Z]M67-L+R7U=2U׼-(}%ٕM-lPAv} 6G; +᭘{`NTFA팆[Ҁ6}p + |Ly6x'b4U5:D e{eTԩsomE'.^|}sϙB9 +b1!_0|.a(')U•LOMA*_ h TA*F*,L?r6VM;$qVi !Rg[ +"x"C9Ӑ:LfiChVάihxF*d!>ٞ(zdDC$2w&ΑSPsd,sXjƐݻDd 됝jv!vYl +f)|% 1u|JqT+Iy5y+ >.k ^ᡱctc~4 i ۗkoj_JF!\;X0T$]墛.A$ +W5R)L/BG*Յ3\|pېJČ(.Lv.-弩$"d5V2M<518(YRj/O;;xtnޱVNśIPt -7S {?!CY=5D`EOU0dq9a혼0EߙQfwBy훁YY h|p6-_ +̡ ~&sC:o E:YUs#^|8./'%Ɓzb~a ӜC@,|o?[g9>/x1#RpN+q/G^ +pP|J_,|])9p%!cɇOn/tssícRH?nۣmn}BGP?B=4_APuT)/ ϱ~ؿP?twm'{kMwd_;jh-o]8Ccu8O%cxnP%mţݤ&{~^ۼQwx꿺ctnѺKƏ]<ӉOq@oHƐ hC~G?G Sy.@{`Tn!Ȟ^Ľ;U׺:v<ï&fxt_Pq dwh<}}Prhw[16 Ck?艹ۊw>3wdL7]X&&.qe.=PG^\?c0\IC8 t?Q'0o rnxvx8=^ǞsYx/v][,u;]I+*|$rY8qo0q?"sގr BE';pLcz<"6<&fBI8Np|܇,?_}rvoFHOu[ ipmaR,NZ` RuͭH m(3.o/$cȯۊ 5 A_A*%. U[|#;Kr2!ن'WKTcJIkR"=BխLh6,0!NOL^"@ <%2gWP}r ?eOB7/.}I֎8|:N"|r{ "H7^vƨ4|M=C@y <_@[wl\/,@(q=\~sC2]"T@zps܇C]Oh" I>S|r\SYXdzLgXQ{2~6s)XEVNv {~)2,Ogs>m;gk~-y/Zk@grԁs?ͬ~Q#%3ZB4M p:^>^~x~'8~oF(s?KmBm4n? ~~?8 ?_BP r9v>`>D=#?.xgt" ̥{h=ho?/"<%7wyt!( {ox_тw~I#y%bxA/Ѣ8c8?ϕhyEaK/- +'}qÙi ]_hi&CV3L%?ߧwQ$rQJ֖pMa;ss%tCZBQ$bc23Pc75- MKKSӀ>%Uչ咓mÊ- iކjiI)PY8hW:$K)Y2VVN #};}Fd  +V`D L̘l"ʤPHexJ=hZm.|Y|%恉m{a4tkh +-F 8zeoNA)TXV77 13[ .%k,gaH]vp0OAbmJ 7%`nve0]/ab{sNn<'fcQ(dwMMMV~閝2A46<#g-uS|¨cqTSB b2$)7) +vU*C>*unE O8T?iMLcopJծ%˜ԙU:v.#R -Q2W-G9!0<Ԃpi L "oc;U"֤D-gOkWjDzJ'+1a.q_: vqtNdgGTn VS;I7֏B +rD/5Xp孂>Ğd(7 @f=H.yvs![)d8`!FHIvr2໪NVskp!( Р %OA !->fpFذzW C +>(1龍C*]'qC8A#<:NIĞ·ptp<<`Aq#J׹K}X Bл}F +Y*tڟS\4ߪ)IWR*TÂB g]2Mex6:NƳyKDF{^USpV.ѩ$~4V6ItIDd|*:_'/d|\2N>$)d|5t2N^:y^u2.N{2N1:/'uS^r%G%{"69>,aķ0m ķI&C|䗰~obN \cr*%95u7յ33SQra,◢AzXՕ7ig%h,>vv]320>Q_~EԉZ~~8ȏxA;֌9pg=X~E c~\CwA"`wX{Y?axkwBwsW,77֓$ 7#UE46\>mml6qeg4:pβC6WxnW6kuf6s ǁFyWttxtz5myfJm󉆺ǯҎv䮫#@>>4O7Tf3c+#(͆gW*'WW9F]e7ȹ~I5BZc֎xa 9,RIeL}vB}u"Dgz2AB_@i`;E5|ihE"\QJ歚JaR_G| 㿊wT=A^̴V62iZǂG']@籿~nq*[_WY֞U_@uU=>tnqϊ47BP?߀|2 aʋ? ~هG.`iUQ>~W>n-k#ZPqU][y'ך?_ſq}K> g aXg +w(}yPX@{t8WF]ozSO_Kz/_j_ye'~CO@{ƶzN +DZX]Z]z'/q|[*u`k l-wy~f;E_[B?۠H(sbCeU,>z{7`oZ Do0W5VSqy1|l7QoaaqqH{fQ݂l8;mH5=$I5zWz55 &vJ1)fQMh[”y}"^+̧EUV%'{H|)kHmħo y嫱-ǎq~spq޹sx Dž\a 5p \#sbϝ!ςw[`>ּWA^f%Lw/b{ӝg./gUn'9].G/{lYO4$ٿL1:X=Lޢr+(:w]h+/'/{jY}R +>:]hd79^v2 +']FdpQ8ٽ@~gOmmmmȖ[C]K3ȖEv0<%ɖE0<ݐ jЇlI$dCR\?7&n6^~P(HzR⹮ ax_ΰJmpJGW)=١}9١}dV%o6~-&4 G(>t=-.ʠa5oWWɩIůѸE-N}_qAO?3A:ŧq4N_qrh^ ߭$;Gɩ5ZmЍq{Tkk"]}8{@v>9gSWkψ ]}MWk$W˛ҧ_uQl5mS5wI:ORk~M-0Uk]8U? F_P׋_.-t}!DG[K8~Qf{]tnw*@<~mCkkmontb8¨ 9n#S#tܤiBgY4epU@!|̗!0LQ?*ap |90tF£FWC +$hgdA&r*W Z^"U I{[&ɥk Mh^ R%np;N}JIFz +Q -ď O㦓Kٝ0]5cT]lz1o8K{$7Gd"V,s6<Js<=XL `_ȹmۍ<A yjlD3psrfDC0[WyԶĨnfZX 2@֦[(B27|ӧ?ӧ** }ͧͿx߾[/tɣo|w^G%a[-4"9oN1j*Ā66}R9'i'&Y+`x=-b<8Z(oЋ-  >rocyrօ8_'3&MǍaU~#vHv>yѠyy͋)%;Zw$E0I5ȎOtkkkTưdY&E}I" +ܪaX5]ahꬽsi)sm'^d -*R7dڑbVrQ5-uYaۄ|)&Ȁi +ҫN`d7n +:ꩃnw9x$~L)>hیTw8{ĉ+Mp]C) +`3UIL& X޴F[/*} ⴒͷllQ-Z.Ԣ]ruz37-tLE%{R؅,]\Y +v[i)Zf'>i4|nnr_*.NL3&d@Kb""Pd._'BVsmlùC{!$r!U֋e.|>'*F?ȳ@OYU~&^12`@&F# C&Aʦ'wG7#laU<0\r 1ǫXUeE U簣?5Ev5Vrh@EszvIV0]o&@_'_*;CˈI KMO,Y].aI򒇱([]ik? 7nr;UƊ\O#H_ef2|Npli%op(uXׁzoV47=u.FB9hJ#28)XMh Qob1sYnA&0EXŢ7u_a>w4:ú&B-:Fa˷KM9ƜR-: `֔(2䰦%=vĈc`Ym8:CX˷%<{7Ť;w0ngЎ644Sf +YZ S*#*AylAgYT5k7 W5^=W~G{@J` %(= KÅ: ez) ru_[(Eg XV¤Ͻ KVTDN ++DdXjJ`f}=ܤT>1G~S5E=:oY.Mв\ {%lqWn; *(tҗe(Y|q/ *op`FZsY^q;)_,<×&S^ZNX:US 8_ΆUyBlMŶRŁ1Ք{arZ/J?2 {tVx /nbs;ayQGBwsU!2.fP2VVD)ݠ5wKkQҡ>,{wҙ;;pnφWv̄4RMC 5%HI;NevZ2R Eu?Xՠ>Lu1 U?X7eiag:ج帏6;Fx|ca#[͡yG\aD>#Ю(7$㥐-B1 7s!5BüÍ\耗785/#-H x +@9xZXƣ_tNɁMt- Z$q#TȭgcCBhKhxw{~tg{kZrTò1=)ι8Gs1ܲO9hR3yMX] ~59m($aGm1><{8r _0#Gs<&or"p\0~3'8h>?7Q[ o|a{'8ٷ9X+G³ ϣ4#,vmƿ圾c؈ϣhrz?[) >ڧ6 m&QuHC&vycfkGN_4rڧx )kX<*_cNC_]o <Jf4=ٶ栭:;v l3HN_~>Ea!˧d[Gs|~ & s0y=G^0w;ʥ|"DvyHFq "dP [ BV-}C,&VnaMLJu)"rrei%+Dm(~c`3^*hPrd,i-w>-N4(i4װy?]ӄJ $3ooZ|0:^E݇pcxv;Vffv/{wǀwЮ;{K^l5Fzz=JA[b.4Otə˾J܎SD0=eKl2oJ ;}?Bc=qJ/5rNMi+Ii?W7X3FZTMT-L*~NY|51%?Fk ΨۜӌNي$lY1+Z(kJ*eft*adb$ Tx5Iׇb)Qd|zN?}_BD_?qtڶ$$;#JZ0+QZTV N&U2dB2ńI*YiYv2܌e T1^q5! F3=<FKV +P8  +<9f/)S3E7777;cl)G0YRoזԄlIY,pMV-&M[!+_IXF^wLNղȤ91S #0,#QI+!Zh Yʨ('Y˶9ievs/0p.%EO\(Ee#afD-dRPYYLEf֐L& 5HURdB$%s3Jw棞Yh-t,m-`g&r*@o^|16є#iÌ-7g314l:I&D6IsM?r3?6k ΨӌNM;Z?J$;Ḯ%eNKV& < +b)*{Cl?7?/0+RHW'.tx?A{ QT5c( KK##ۆe(x,ZiU5䬡&djȈiR=9Q,k4CLf:{x6`3q xr_S_*ooo4<g _4H0:K iv6`mVd]{X~H4Ybp00;g7<`0Ăa$\?+GK1 dX`1T>뚸H{ l֗iτzA|?;[8uL8z6M-׺L8ws^~9uל.*0i&oWX8>ŝI WOJ U.]㌁}v`.4(Ҳ&є tt[PО?]BwiO51i61]4Gӎb~bexE?<vG]>}(`1ؿM<]ſ?4E ǝCΩqԒï/uѪKve׌]/k躛[tU_ڞn=G%B?>=l<~I#b/Ԋs'L!a$LDf&30g&!QVv hE*˺ڲ躖}llJmuGj眛{䁙{sq8w;?+Q{[7ٽv[,6<3/MSۯzzu7oWW/ۡگRK+=6瓽g}_fgv}wmhIUҋOQuo>+|ӌͫ9|Ot/zl߁rTOT;ؑ`m')=%'R쨸Ao /uc/֤39:7fM6/|[0[1%1Cs-"F⭷-¾{7& ]ZJHE!%#P&zvv>EЖaąOWhMt2U>R(iD~ ]Zd,7S$fϽ-$g/Mʴ`(Nq3V#QIΎŚŲB S+\_/7잁+dsTO>uH[CVG:u+JKv o k ̔]>;IN9v~C|D.+n~;ZRGR&54X-Vg +G4JH u,۷`w:M}\7 bE­07Zٰ,l]v̊ڹUne猝ȶ,XPGѼ˷DT|mZ@8XK졣jY}u}I[pZZ D Mr&6ќujYz;. j yZD.eМ(W,zڇS\e_SLBX'JW˻h:(E] +7XӬ5$9rAF[(3<Ȇu;:vrPLka)&91R5>sR K>4TA9Lw_@՛`jˈsRN@%F‘ZOMNb:gW+~S:LϜԁ sDU{_ 't;f Er#M)r4Y ҤA-I`9Ж&mKx. 0J8tc5+IvuTGu;LG$Fjb#־ىA +Ԯ4վ"s.,nnMgc 9CMAvT{'$EWܦҐ$t {Po\4ޤ~;&lO8?< Nq;k%< sf~Dkw烥E;-\ҜG6 +|B&T0sg\O"bZp֛0OxG/y;>1d&jzL-2VF/)=?jWH9釚z8,NeX>SZuFw8דYiB7й8U_R +? R!W砓%5X,$ɏ8spdjakv&/9KN? E ,Sv5k4(bq[|EP/;n2)r9 멮JrE63oǩbAɅ6.yݽ +2wJq}W<0؄tE +N .hv+r:t)\{ts.sv" XYXU )[!ý{F\Z\;D-қI%,=In跓x̽+H瓘Yϲ'rLLI^tZm_6oaKSi257[53&}_,3Pl(huvSeά-C vrc,ߘ?)m)1iyJ9V[yOﱊ+c!;81ƑwoR"r0O|qi:{W3_in1&+)j{#{BRIJB㌱j{ 7smw)m\>>߬t5ޫ\=dzqoV 5x-sm8}7vewKoTϋm-[mE|DE<sg7x#E|Hg__V.ߢxE_?*SN|~ߪZZ7?,yoW|/QzUQx\х|V9Pī_Q?+>KA W1> +ËﶗbYUC81tC;ooTC~i; +vC |)ǁk9 5nX Fok(ܰB[87l3ݰr;^6 #8SuCN.>2A2/ɰXFy]*z*Q`ߤpC5g)z~EpF?B;/]K8p|=]a8{vは>0pOk|=7WR65nd[olο . |:gLQn~6*^ S^ \3<|!v yMx;p!7,>#a)8pxxC_ wܰx=g<|3[oa+oUہn{ +0 _ +ܘFg| +[Wo>Wn0oX2K/C87/>*l_ z|#Ϝa N[g7lvZ;_ |W]#"$_ [r[_ + |p^Cǀo | Kǁǁ'g/>< |8*naw_ <|=pui@x9[k8l|;~; j{.^>x~a 7P6| >MGwzeWm8uui;8Ol }=W.o#=@I +Ay~/llll>>g>LOAA~A~//>>w>>>߱}П}es~IO=tI@Kz%Ho= z:7=}6}=}lEl%ltzz.}Aw}Ћ>>诱}]ll2:Ag>~z&z%ۯmlllzyaQq {lll l/}/}?d_ew}?a_gY%6ۗ}1r̻llGl>>yd?񤧃@ $]% 7JH=7xl<z&d>>K>&}З}Эlt탾/t7N}Y탾탾^>;>;>5l=l:/lb1j㌡5K 197Ç&e(?߾1iMww4uz՟mU>+F=*_f G/~>f4k\|QU{fUr%f&AQЊrDM-j+heBlmK[+R@ҟK2$8Rne +X2pQ6}dַ[Z9~}}1 5Q7R3SNOkrK|)䯁N!V6ɔJG|*څ2~AEҋaHon+C! 9ө7ucha/]]M_y6/%K 3Գ7ɑ?A[JD2 kj-7vtʈ\})/T {2d3B!7K>f k|dA>9)C>LyT'}U{+{͓.JJWFWCo}+=>n1w+ fܝUa>tCCJW&G]i]vF,M~y//8r67#_]6>W6)oOCnj.=-o3o/Q _%_2o'_"__'q4_/O%_]67/se_6uڭ_ el\_d3o T)K ?Ps4f71P~S/n@y_6*7_bA// S[U{,(ew~_ϑ|9D/{n9_6_/z* Pce)w/q<~g "w/7' +Kiw/R(_!_#o;/ϓ).+ג/O)eN7~|G\-~||bSe?g|]nD(eG%nel"%~|nx&elg|REelߺjel'|29QoptE(e?GN=C~|?\;"C%c;Yʕy| N{*<@eloelin}#)3nD7$%\<3e?GN%|<5eM"_wˊ*y)'r/TޖzJT[Yo{v|_~||rKKf-wZ +~q4"7_" /'_]6O>W-/q׸3rƴe,Z# ]t6g#]t)אA).& ݏtˑCғHHS8Vi-H#݀RHG#݌tҗ"ݎkH'#݉zV%hW|Γ8߇}8^kr]Ъk*ZG1^79h` aUb~)d%0vfFμPĎaY%׺t,S#_TU٣|k}MjdYamJ4{Z#{jes,)a4'O?L&0//AX+ ׍ace3"d$a%;;g 0 1+x;zكحW/v#>Lb,JVYX=}|v}1sclY'"z:@*`V I9[Y>c{ kesMe|h=a9abl ܂ku;t=),¶"a}h0>M?T'KUE9H|dX]v5 ˳|YƼنz k@Ǝ\ k5:x;uӞɽӅCۡ7|p$Nso/ף b 4 +d"tCVׂn_Fx^&oYy>qy~=ΧU-:jX1\{*(k,>m<O3pwk\MErv⸥PᲓ2 PnL ;mpeNB xP幯zp\sLrmpwM_ʍl_^C\[QoE<`)䎠|9fEjup+zp7z kbXl+O^cBtL__T/Au:°GCˤ_WBDd01(VjqZڍUb 彴lPIg)Wj]$o'Xٸ2ddZ}mpmomcFb +Mw ݃nѦ2D=m~2dx7sSmf2h'6?vc +yuef1\a^nu Yc2#v;خ?<~c8+d q/h5jXrwL_x_Ȫ |#m/hP>5Km=Kr1 >~>!+􇍏,~uR,ѿ5>>u[YgBw|IEog_% ~>+Q#}R㎐FPID/?Xw۾hz~fHI;:kw8rmD=T%Zrq/N[ν>ɸw'ޭ{73&ޭκw{7h{[,U2],3>Rn;f_kUoOVXh ޑf/ϻxټ_D{3ռ-Xf^IXJMgn^8Z`sq8us,}u鳋L9׹ȼ2efJK]sWa3ϧg)ؑiر5kb"=H*п~9z˙Ts~/SNq_@c-!5ٺzЧbrplr&z-'#=d>&~>߃0k_d[t`<zB;mJFʬedX/G?ߥS-1Z+|y#쾶=W=l5\ה+)ÓyOXZrU̽ulht8Q^ $j%[<y*]!$EyMNvzG7)er#:*\'}mLׇr۝<6%rI0<>\7#3.>7 /ۄr^>:;>>y|rhɫ>:gGC)N}>y)95>vIח#5;ka}v9lK|-rˑlg;˵ˑ>\(ϩ/W"u t}(ݩ}y5N$˳˕<\?<.r>y96\Ϯ/OD^S}ۘ]N@^)WrF7y|N}(7ũyM/߮tʅq>\ CEv9#_}NvW _}9z>'o^_il_b^%c7lr݈ck9;Z13'vGX=HXczkHb֐Z+/Oog]|/Z (,.~Q]|я3vLw.ʱ+\}6tdn\'64B|w" .pM|,|cDC xn91oolda1vcnɑs 1֘(}NY[60y;ci}.3(cq-铁p5?Q-#=j5 D)WnΠ}F +aW֠Ly#~|['d%eNZ,bE]_c—T_v̓Qz{x9 Γa +[Š-vaEpa!]9~{ƅ  +46tR+>6![q꭮yj\➓'$&`:Z| ~faӣ3Ԛ +^7<ιCa=uZUÎ/*džAr^Z{$+79&崿$={Y?Ϣ4 C ?Hp[bZ~,oKp^Zin̳\vki9Uk2o٠tG e(/%5ǜՙîdX= s[<ڰl7{qIu7gְq:ް)' +6QVORxوW63Zϛp|}|#27ฟ}|=2_[u8kq,_=9_μ{^ĉwa!/Vy/0uo< U|^\/G1uϫ@a1 TƛSsݾ\yy.ߠ`96_>, r~[.qw8zt?cNsxzz rO<ç[n/;OV{_^&1.O>䖍rMyr[r\K-`ܷ7:@suN{3O~-)59uj]>sd|~jZlb|;]-1;na-VFg>Kln>İ|9n>ql'/?Aw{ϑ$_#@9o/q㚲tCTߒͷl|Pަ7_Pqlnxln>Nϑ|Q7_Hu|Er_6|b9R/o/\,~|?tEe_6|b9@/V7DW|i/%򣃴_6ߵn>Q*)J7_T$_ڿh|R||er3:sEɗ+:+(˽]E>ۢ^`-srs+;:rG|B3w.R3ʞ|oGʞ| +٬/R!w+teOW[W97_RNVks+eP/n>r_6ߣnȹel|se_6}nyr_6| e?OT\e?GNTɓƫ MT +^/Y7W/bqr;Ծ^nH@7|~7_" 7O֨c|r Uik{jVu[bﯸ&6 +.C:ba]Կ߰>iAk-ӂֳ~HYp͍ quyde_zP +LZ)A b]S7/ Z; k=A3s% AkĢubu7ˉjl +zŵ?͋#O]0|5|= Z/-Ϗ/tZi^/\HXܿa.[lr_Z05jL(3!!, i߬A7-y6&WXn0yUMNa`A+HaFV[Z#'||ȊrK!WcoAy5K \ȋob yd hz滐xNF^GVk(&d O9x?+S{ Ƨ ^ú[sj]wuOg;G(S2*FD&+ +\Řoc;GlG\;敁,S11&S}}Ⱦjor'5J.=lOJ]*.v?WWq?9lOH|8d-lOn">m&|kl|>Ob ̇63CRm6e'Bos}+Gm\نkBVzP%q9bxF|qex^8o>ܦ,Qf_j;)G>ḆݶL|l`9gMH#,,GF=˺U!|CBFeao/}}n߅r2CEZ` +ȥ}GHU/7ϸH^A'g_R +h[ڧl$ú 2^؅fz։5bRo 6C)ۼ \ܧ}7F0vP6nj3^soo{5FHe(iRPD?YGx>.|aۂ8omFevk7ݔs6wl!-ޠsmNG=p>Ű^Aڦv-p>Ͱ^Q醵CBw5fWjͰ:yG4 v[o,5c=6?E\M|ma2srC%}rb-6xB oxEeNܷeR~ H|?I=Er!W~{xpOzJ[O2$#ɋ5{GVމڇه:Dn+>6ilE(~x~ +6@>A8/lP?{PD㳀Ɨk8+/mKի0E^O4`j +hBȟk?R>۱Cr՟+J;"8Ns(Mi{(| !@>xE>#c 8mX |P>xߴ}'4 +p_Z +t_~ƃģ F:0>Gj`DUl|#$?|{#JWZ?q +iGR;#J 셴~9}V+< MI}>ƻG5CwPV᳀֮;uXT˾TB|-hzV*eLT*Ɨ).?l5Esm*sgxxD!w97| +6H +x_sT +|wj<_vy +/>џxDC_O5qqM j<4y +GyU +?17k06>W!cO%wW8$(xcO%7rZ;u'+}5 + |[a +1W_Xƃ _Z |ï5~%/#xvHܯ%a]ģo=BяO܎џ8_yt\|?g!sT<:v]_;[/v^~t'M;7t{qW:ν77;"Ds'9?џ_ǿO܎Oqq%'4^:G/^qqU>?W2G >_8G5>*GB{u'xx?񈎧>џ_ӯKyџOW7y\Q/#n+'m|#Moxq_9䉯xqY 6>xT?Ɨ)yƻ+gxoT_e]wWκ6_w_nݕ|?ƿ G%xwsWGaƵ+g}O'4%-#_W<9{.Ʃ+g] GqÌ_WκLG%ˁџxYVԫ k|Oh9"}u:x0]78qj>Izqtqt ~Q^q^cusmxD㻁ڸCy GBǣOrN8P}&uQPmm +_/wN7A e~[8WX\W_km1^s?I m^~H#׬J_h!5.wx9m~&ƹfP|?p# |zz_U;^u>8î= kԗNE>/ħO?~>|ϧO?~>|ޑyFdp=`GVi0:9&jO|?p>!:_/|Z]:j'ד*]~6zVG,L(^oq]PyG .߅8?H>stN֬1mGɃeWh _u$*Wdv_s ~UGC ] +0>'! +j. =-oRxƏϐ;Կ;5)mWӳl7>A6eB}arB5s'~\slEr>E{ETqrg3N$RԘȯyV k1X.o!us:h}sY5˜o%kb=uw'YXjNn,5ZXywAI;uYgL`H{Pny38;XVXp CXQQjv/ȋ%!? +Yi=cºs,{;dž9$d>r|O69e9#m>eoBȮ9+K{ƞ,~K?loKgMd{dWjqkuvaS/N]v{h܌>^%2];cЮ%r^f~y_")YPyr}w_K߿OilE v#qX|}X%X~&_C_+v.`2>l>2sv!e/ Fj|) y';cXsLsXbǔv||?{r|gϙgӗ%>9؜^?'c: +}oŢh~]m~wa,<_.}Pytq}3rWͱ>ڎE^x?rz1):< DGU#b_SǗ[hEb.ee3G7,gAc5ǒȐGV^y(}mbʦ;Di[XQ Üyn1N ݘ8n^$=qA uO[?9qTU7wAz;踒4^Mc폗-K1o8 +_D}9n[dJ==mM +1ON =%~`ϰֻh q΃ګG.'G4 +aM=J_ QzZj>sO+r?VAɩq$t[6r JMZcxuy^楈W/Kx@0ܥ8Gɹyxm.ZrK>GjaOC +U911='S|אEK<^J%&SO)_V/}al4g9?7܋wGU/bTU VX9*3At>x:,d(9#_V>*Z-,eoT}M%S; [*dH7W﬐~% +y! ׼`,;>ac0-.o~?✍(=ƽW ޗS5@p?#Lav~(yG^% o?RoӱK@/_胨W|K`ݣs1 +K ..; 1S(i#GRk'sqƾ7u,| x#7,ognOԟBti>KHxĘ ^y?K ~OKŶ2 Xp0 crՔn#o;~PoBwo>Rգj:qYSLʧ6u=#~uVb#F=6]xl+3:2ߪ'1'ZG%kE3LGr<`|5+W C)9V`+Iqݏ޻*ɘqA `ةM'Y|8b?47NjՑ1cȳ?AEZ>^+/!{v]O(B](-;/nwC7_+刃?-uu9i;?[ +0WĘ.7 κAתQ+SOx: ˇԕ2{:+.UhQ⤧ְu'*8]UOvAp|wod\5SeW(IZbcЖif]-lvP؏}f;/ ?dX)ShwUA'hȽ~,^QfX2^' HꮞP }ڪ|7&1]X{a1ѤGΘz}0kLS`.}YU^KWUTj98w:.#nWT1 qkO}#F8jP$zBtǟ\C߂WWzLbm\+PcG?>Gc2De2P&.:f eo;ee_.*Sl[2B٠4]H٠Ԭe˜<ý{ ~}t7)K2qŢA~߯Zw!m|M|w6U({j-CA^}(ddl/U1z~7OCx!d#h8m{)/Xz̘ wf1F"m#ָf1cH0TmtlQ.yaSΝy9"wfs%Q57G0N\wFC^mZ&>n'Gc]!AߞL>crm}:b>7M6scAp +56yl[z7F0Pkq<2ZX90X]S-3}EC/Ϝ~\**`jڷpEc0|Gz&[kj^™ ZxG +9^wj1kCMFiQ5ͦ-ܲwA̛z>6}"Q̈ߣ("mYȿyOή\H݇g  FfV5^_.k $l:ZOW!.@,O=1y1w@>֋?̝JsIjmV \#sfb#/s !;Kl?SF~,E륜o ؃;+ac[W>,ϸ15g.6Wq %O +}c7z poV(1Z &q:]3C($XѶi$=z/L~mmTb{!2I>MK[3 HQPA@- XZ`ZkgL&!<{{z?zZ KGf2:X/: +c QNZ56orVê=pS(utw +dB< ~q ʝ{#qZ΋EVߝ4`.-xg;c7|{8r@&9I>N5ײ? 8,$-xϭ7٧\a@Þ(,`bI~1~Ol~tCmftIrGΗqO$#,KnxYs @ +"Ray“wFN0=:_b=>L;AY9ЭDlEC{|y Os#B}n+쎷u --_Zt>m!uu7e2[M\InmCmvw9fn:HMr]bn'\(s{&6m &GG9׫yropڥDGj +{\@:s|PG~<;e'cSx(tg=g܏UJ@LJW{xh;i+^dIJ:!ga7SY/>fm^ sxԖ b'*7hU *_ 5xz2kieBLuJ@59J(4WE=r_w~w~+J5 6Hx" ԻD{@x1I42^\. PO˦PpjUn:xkd^|l/4(/qG&mf2М{'=g=ϼY7Lhm=cJ_Re|X۾s^Q괓.y +e|Do.S6x(Q{tAeG^_̧s&=ntܯw+: 6\C<,{g~ݧ8n_: yu-9'D[Ę:}/S· @V^aYWZp'ꊜ.c}ve(ctwZmMzvms}Y*B%B.lm/ v`9m7:4ߜtDuG(2jL6MMݪL}9F³+l[waui{K ˓:dömX:x,Cicu_rت޸ w ~G|m;|_ڲe_3ϦvoxBc›iІ1O45:iٝvlaۺZ1ml-leڶ "9/exu{ap.lA]e`7yaANز&)Nf?5[v R׾ږ͠mYaǴe;ߨ +7^QWp;֌X%;=-<]iҵ]M~}q#ۭ}'7~~<2KAfO?N86ynKe'I {j +(|1/|Ǿdfއdm;ϝ#|0ǽ{rpOT1PT5k3C?D=;[`GO ӫw֓gGY~*ȼexPwO*bߓOc-*;,9ۛ9-}x/u:sIö͓d֟ݙ}V3 +ߜH]i__D[]0Q9?m0?Kt>u5bT_>ʼncfS?K?hUcm<6]N`G(.xxknN?* WT䈶J]p*NUZW\#:9.Ƴ_rk+V+ ;>+u^Jw:ֆgl ,\>z4FfjV ae^pTL5GЇG~(u(0KnԡlI/vhg~c͚a¡>{x16ƍL7T|sNE_?2Erno0Bd{yPB GuEǦ*g%Z:.)8saxQoHt-tqY M?ږ ))܄zP&]RWhÕPuE+_Cy$Ǝ`U]m١x>Ve +XF.er"}T?;;,\l;W +ؗOw0q+qX9xx<9Ao<ǐH+ҍt$MW]2p{0:ħENCnцvݏI ;~0qFj݉gq۳}p h9Ε0&[4GF_={u栟ӏ'yX>w"A5E]uˍTxqיD>Dm,cܒMh1yJфxddI]+.ćs_1J}r8?zPq;"&b^2c6&}t7՘Et 7kEO/Zǫ d6woeŪM6HT]_'=9:j (cxw5%+D^zomz:Rԑom|P78x'g,}sJ+SVhf;`8fzf{&'1)%Aw7מ&i[`>lex_Z>vs3 (L؇z}-y^T>գ.y/qm]j&~J8ڸ:>AĎ}ȝe#SW]ZOp-b( Os upL:7]HէIh=8t :ƭӟkz# vc">ߒs`v6a|O6zag̏p>Pt朆 կW.A޷]2aJ?:O6Qɣ^syS +6ط3l^bhuPп~:g޺Ge92ss#+t~q!bn'{Zw~nCD7ro VqwQďw{͎4oܴe{r*6 +}0m=N?3u9п}xj'oYs\0 Hi!ZpyT ?~Ooi c? qzF<#Я$Fu (r}CІ+>xʱ.eե`VPɿH[ \u`)}9c$s9p憩9:FEG@πc-_)&F:{9uKYh~xu/瘯 ׁ.Y{|\(׻ugc%i8'xc#Qц:isV~&DCD+.NO 5<"~R`J5*^X&g>"uۏWJ>Ӻ~bv+ Y.G|otJ1_9}eHg?Y=\FH{ pC;μ$o(srNe;Qe^/쯈MW?:OM3"{; .?eζ8i=uQke +={[g%{f%}W) î8 f=-ש&6['+9+| I?]w/Y-bA2- \%b Rr!xܖ?7\nqM.Rm_f\nOm#Kц\ <ex`Qf)Ô!9 23g|zX4t,ͧ}%C|zH|si>ͽ4ޑ4_)zU ]WՁKEb6g!AU7|b<#:<1NIi]AR:uzֽNY״ R:|ƪbi%_oQg9'57Jw\~(lUu© +^NG~d ߖB?}9!g. iLE;:P|فJ7/yEJǷW>1 zm}dDDDo]&yv˓~b-58/>ic%dZPw*O&mX2ƾ̾67R#ګkQ~锯2/O\k|JZ+g~Jˇh+I垑-;e/KhxY]զjuRFF3%wsS?;+ +5}Cj _dq\"&='5WY!<6S5W#>}|n}jNs["/wi^ײ271vr.曈Q[{ ?~ ?'քe=Qe)Os@}ϓ8>3re6w/Yyw]$5V9˲DcBW9xheYTbu,r\nz3ͼHo4_lE0 p?`1V V{Zh}8#O!=4>>0nZҵ*?^BЩp-B2=62︀k*HWF>974fU\oB}G*GHx:y7r!y1^u!{wz1w+ǃbw%w%-$sb+Dž/6-nb;={ǘeb~;| +I;G;2&>cmn_zz0>K[C;=*pK;~ZD;S3LӕCή)cGyO0>ξ)0oAz(t+ۧ}fi< ,0Uk'_Ζ I8? wb\&߯_g&2SH@{m0"o0`񧎣n&5_>½#_a}h=U;7K'%'<||ASSϦ$]ܟުFpϳ_S/hupUX?k2w,*<:u \_N=g"|j6Ǐ`z~r\\41;צJ|F~(T㬜vUP7/Z[1&l9a8YZo⼚ǣ  +2EwFunC ͽ°"8W˿#BUiQukJ6zec/Hro<pr']u9b!kyqc{ X#/-% pSf"Ƙ& +d<4MyL0]3nc2v= N6a67v eEWNۡR<@>cw{xyvx xn7OL/~3|qĹI}͔Oj懲[K 8tdEw_.Qdk#]W^xm3캊AC]*FIX;yY⛺f#!ܿpYj]3y&ȡ\oZ~~:H\S;>t[X!5k +\M;?d1Zٟ\_Q`g}U>J_Eq/g%vʸU߷BRI76qI1<:;~nH?| 5O^y>/>=bNY)>uo [~<>zG雷FkOj6)Ŀ}yECcS^FO}q~u~ s})?oq_ZefŦu7Gt?[QE<׍ܳ>m㾱\%:k:7d̐ >I'};9U"\KZ_!G1ʻ& ~( +{P"5n]qkKS>p{scs±psA;3w"p29@Ls6,Ag8sd=_jmLUdפ Vv1 I)<)=o7ϳe^kw+`]qTݬ٪{nS'J;3{KݳL5nvN3`k.m2a)`Ecd8珳>|9c:k=*TluFkY6u_}?`]-dl]bkҀÇ䡒Uu1 ~$aɀ֯߷xߌ#ig?h|ĜOA//"=ڰM)`) 7}V||9֣Y6+}}vzw mC%6h3}\l0)eOhCo?ۡhr_G/qOKkSnGڅ kOA杖X'x[4ߠFo$:Ox5 gK1డZ4="k5FuDsnpFꇋGa".bX/wh}y< ҎuwvSPBޠ>tq{݋ 5QUjؠ:yYϽoۊڡیHSr95Q-k +><O?d5%A]- oJq}~G._}SiXƱ"H_:q]M>)q档mO y 8szjO+udMN!}%0i<=2m̓u'>c^ NMm،оzg3Wxt*3l?m!Ei+ԛCkH0^_R3]"٪㚓N\3PqLA\0F\;5&j9q oyL"]鷗 qhGs+ 4(K>ݰ(i3hlu?wϦz@cӠP(u2ʱ1a~'zzfʹ57%=]G0GN}|K~$}g x;bᅄ>ʧ6pkb=O _tdZ_S=qr7T}ΟE{S0T~3ߣb[?K&]*z>Hz1W9(AzSƆˍ瀟8}2x_zCqljo`KBSDmx?r!&| 1Ytޱݕ.#ͷ)H]q8|{#yvxv|ϼeK9mǩ91S=D=?I;\^ϟ~ߖr8RG38Y.}qZ}i+Iߟ07Tr|;>:gAu5w%}'1WxC<Ϭ>w5 Cf7{Hc-ޯ&<4Ͳc~5z\w~oCN~t_ݮ<||[W_:_;V2K}?hY;Im՝oQ?*Z EduMy@ x"v@<Wu (RkG2J[_3h ""؊yW9}xQW9J"h:Vښ)m=mvc;|z#l}upa=V`LWXPxX:k_(#oX sB]FݝSX:1Ni}S>ŴQ3 ]G`}zI#c0#0qC|DhMW ףgFM =+G'i0;9M2>g{W%9/8fDn/PgN7J[<=}cutٟrNkm + mWn'dCe"m" A| +5>F:En_8k-ջewWP<Ub +t_F_"k6ⴭӌ):e|8ԼR0 Hc6uvAr7$0wyιXG43EΰhsW@ׂ}}']9GְZ^F+\d9`~H=Ÿ?GW\iU6ԏe"[=uz+s*qO7s+;j۔a[yrN'W?rQUqA |xy'/.缀fh +eOuu;< ܿy:w/IL>HY߷pS_9ŹH}ܿ샓D#fF3J'JQҹSz|D]> -Y/v>\}E (]|MX?f=nvgn}_Xqoَ 8Z{Yߢr_Yqs +/]cs\wOY'O{}DU/,W[EEЧf0^Ϝt|d^oWO6TMOË߼^e Wx5*«v +rL0kI]]h5Vv%p~rH]'IОwK B IZ`QΦMKh/}w~L2? yɍɻlrIOr{z06oR#.n~g0l%1Jg Qcci:50e2)wEV#px^~s8ss%K s 1ǩ +ip亼'W¯6,_ʱQCܵkO5/Rr#džcـ2"̤{ij1ʑw(״6;[; ņ6{aqy>* ׇg8{E#4|MkM0uy)ZYsz^sVU~o=tYmgFh9ނ>Dܴs8 xÞ'}[*_xwU/3OTOx͊ +ٷȆ/d1O`%>b7h;~!ׂ.saTj ZK\yTdl55Ft`HU[W,7^ $u9Ey^Yqɀݹ_L=ki&fIK?،÷>#[~-x31<9 = Poɼ'OimQqK7uklHobQ>ҙ킍9<.Cȴ$ޣ( %vFS[^ىitT< "}#s k^kgn4JS[I}QzX 5À늴ynz=Eݠu/4t&ܮh\E iOzX܆yߊ߁O y'>B|;'@hݖ!ޒwԀO!N3Aӌ>I{7}|3dyoWO!_07[yaNQ[}%k~7~k=Yk2WlVA-y >f?\U61fU636ԧVEW{ߔ]&}3^1;~4ri=W@ Ci~z[ۦk6E l9f˙6r-\ilh~sAO;ngYI{dZi]adb,N"E9=n7ERO^^!&ؾ/"7(ܭARGX)ylή8rhQ+A~ 6itKg##=ߠ+ZMkmX֦؞{FM)  ч=v[y]8_aNBџl53M|DCw87j|Lfm _7agS7ӡ\=9|R]k?DEM6T_[,(yO?t}:%WS/Ef9 bv,שljaˊfJ2h-i_ +iKt6ud[Z.(Ƃ-^张C{KL7a\ ND)H<pv?6HZf6fi zu}k\xľ#;[e E,j<bٽW`BL::BE `x8σ l +k:Xһdz |>ܸ:{ +@Sǁr8 CQG]3,?ƌ: |꣒Ԅg\PC[>6 +^ c2AF)`Z0w "ӳ- R9GV <`&T(IE3]^vɩV>oMm[shZ1ڲ4nk~Ҏh2ob<d79%(o+y9{G7evj A_!~\⨀$nn.,rki5[Ɔ Ǧ}3F'V'GYSNZ(q:uՒgN-(-EH YCT`?0a|iTB?/㯱욡[Όʍcc^6 Lͧ\#ŏH9҃ծ~u[}Qx;fWcf<R']anRFe(0>b|γBݎMWnSB\M.ET}ߨ5yFE꼐W.E?Qֿ?ګ'򟩍+kGR n4;WkOg cssqn^/gN6:vi:=)n~L AbϞmo`#JSrBg; ΋hov[Em\D-עSb}Fm!~R=p^>axU} +;I0 Wj޿mhݠKiv7lGuEORcxeZ#eFke~b֚πhUO:Z|~h]ARO0:7_jEpl->(m7nw\1 df~ԁ2#QUJ)~ϻG+!x:;31e9=im+֚8jbQR@Yf.w̵VVvXM{^Ѵ]X9ǫĿy]iL)99M8 +oCl0]SPMq%觫#1E,AṌ:Z8a.ng귯l%|+,Ԯ+- ozfgb;t+a\`qx`Zc^;g(ւs%nK$0cfq +3BHòI”='F-5R.)&G,Hp*(\?tѥE?h:^(ovg PL:?Қwd>j + + (ET-ˑL W^#ۢQ+[az| +3Y ?Z/_vMX2TrN Nz ]oa$A7|D&×CSHIXηhmGBMLm{,sݴkQ(V!"!R{QH +_]LIKBi&){B[_H_G;D%jRk\GS>B3CQ탕ӊU/K1/:+E&d9"j,M9aaJZNGۢSH".ǺdXPC]s_ޘ2뇘=4ozAa/V?!%*DG: zT\DD}wӢgPk^DQz^^Tf# ,4/˴?VI\IS'0e2yTCYgNg43a_eĭLDf(bpU;X"eLCϕ2'ɘR=h %;tx}7NbPa}<#vL"!I%<戚\'&帊ýխ@~IdZzr1j1= +E~)MQzp*Jf:1RӢ`$/R{(IxCj*UihKwUT! !97S UygCȖ9az\<7esΘDگL~)C}~62;65go- #Zr3afCW"դ=U9t! +*-;X . +E uqOFT0$˹ZM4- 㥾kiUĨb)|:Wі?}=lo|3L{S yRǬ!~$$[Oc<<=SwrRt}yNhNe&OsuRTbkiԗA%7.Ar{a47A W㓻PFWaq/92cUvn9Ab _no%Mu,z@g d2q'jH+ T#!V1MıFO+3' TyR7g4[W~{K;*+kJ/7J\>FFțA~?G /_~Q8m@7 2 ch0~vp p2F-#w^ø 1øM~{go I&"@p6k?_ayx~xL]-k{KͲ`K>eo|,{#Yv0'MG컀8|2˚Oe?eC3xY?,{ ,{G Yv6Og;7I;#l.Ms xKY$Y ->}0,Yo=eI,ne{u1>|% `pO0oJ +?,yx ݯΟG?Ǹ?пh||xu xv)/WYv8Mk#;6`}`[ =m!%zm84z'>C-E'8|g?{VLyN' _??J(AK9я低?G訮s\f$! cc IXsgF h$#4fƱ%QF,$-U /UKqWՇnIK^x$z{4N^W}Xs{>{Ϲ{!V:6v~7.oσ<v~!t)\>TqkDﯵSާ6(!mĒq6\کxuj|Ư!%\-9/vɈg~>_e?!ڪ0[ \3Wu>tb<5YD\r^)~OLN݌vVi2!?|o^mx߁:d K|7pz2Ħcc2ć1$jrs#{,;+'W]q}rDޙikm; r> 8x~mT&, J~U~a"=_VL#J\OHd- #T| Hg[f\Mvt/%z;|zrj|@OUW.[@D!@3." +ڗ@_hYD!GdeQzu>Y 3A1/=Q|*'Tw^J&S'WcD3i Qn'Iwg +䖇-Eބ*g=i [׮ї#a}w]Dym bҚͿ#qhC쓆jh<&0I? B~!S4~!=rdŀbhNCtaF) +T")zmQ0U]п$Wr6qAGGӂ#گS@c3sh7O!O]cE>fd1zyᝅyWsHd:'ul~'J=/$ݍErX3(6 i69a{`ZfI̝+p؜ΈNW,j 2XA^ƯU:rn 2JT}8?A6XcbUoRgӠYuPѫcLT" }H+߬#]z.UE=&w'YkoB_|wIgKT{r%e< 13 FCG ~?m$/ܣ?c)11ƼJSp )eIXs{{yF.SiTJ0Sr#\jzC#%)gs-i (&c%0͂1lhAa2矚lX!rx= ]'F -߯+)1֏a`rj0q} !ěuJxNT@?;@6 }@Fo&읞2'0Q ?r?&+6aN@_.v1 ե7czd ϣ-5z:{A8NOyaA]& )KwmoX..F-Wgcx䋵cMY6`@BTCy8`XC;Ú>d}Jq]q~F`WYK?c +xB\% #O ruC[B4S3Vvg !J&3e> +]k[3И?S _ꓫ 6${uhdGJ +Жu#rZO|'VJ=ekNB,coЈA;"_3?gf ?Dm!9o ~hc)෉0Gzt:g7[Of~XPGSjmu4/]]ݳF6c&HJ5k{K_U`fZ_)H4`LQ ')_ ~ |֕ hۨ|])a/ +etT'̆jc0ӹוa><`eŕ NJ? 4w[s` q9q) r cZo}6!:[諭]k}k<-ٿBI󯖭z9p`jzꞴephe84#pLiڟ/, J)Jgל[Mre +3ͻ[_VЛZԳܗ"b< 39O~OF%DD +Yڛڗ|=ԳTKْ})ٽX[E}B޸8Vd*1|F7q6)<!5ܼFP80+ x6p<+m>x.x7 OlI+_؅٫T68xB͆R;F7MNlhhֱ PXԾ +lW` f.y&OK![Q+4Ž1qja! iA·J2fk4D*C#y:m9;W%Y SgݝkES)/;[\R5G-"$l0O.űI蠠[*2z昘iF"`yC`` X'Qv>}vãDC}YܩzkfZ\U!x T@G__tua磟~Q{kU84KŢPАnSS:C_.GSEbl=3i1%ї)jW!\o\A-)ƞEeEݥ<=^b@J^+$c+Ѷ/yxρƓW.^Fbz90 olyy]hg}ns*X@,.cko\gAǬpW(n' Wl6iz ~/F{H]a\St& pC `dN-pXbk_KI݄>lǜ𬅶7duhE!sA0*vʓꖎo'd_|w7OqΞS^}jW|*gAO>7F~jf +էуYCh)EpB)Yh8@Ji߭hKA<~h8օ!\[(ۤ[}̝++=)K +w/-%j[S_vCN + QQoppDa=,Vb(}>YY\ -x[<Ih^? f *fsoRབ+p)%O:vh[., c,אiV)>1hK4h[C6cqzp3ꥐS)ݠtvpwտ$ki/;u_Oq +LަJ۵;՗_gZZ:nf䧧-0cTIz[UlNZj{Ӗa)q[:m ϔsPv%ָ6~k+{%8}`[sy}[jvF+A +P*(]}1o|$nڤaU㨉[!$!>/AJh?3і'a#;Y:v~AOo-AAkŠ8/SaqUE㳢M\ +~W/s[{bnq>yܳ3Nsl΢ȆA[&$ l̄oFi{b?~ˉqOOT)`h:1  +?.t/Q {z{ >+&~QKv~ݔ̄YɌȥ W|`\.YQ7lB3ݴj_ +znh~r%| gg`]y4{GhYXڥ x/R.'vIJ 2@F%5ܔ!+m dDF2:`ꔫN's:e8QxrIA1EO)8( R2@( Nr/\S >EN_ѓ)=;]WH%g[)d*' !1 ]ARΗTB=%!Ҫ1蟎ܕ14 rSi˗۰DI.<;#[1?_6);I[I,N.>K.e+%7sIv lWrɅSݮ\29ww{Bnʵg6W*| c$d !X22T+TS^I8w%iJy >J/)%lb\ɰ׬s'*媂tE{2ezS(R+dHA+hƦURdYym:R zҎ1W֓xxW\2ˆ4X{F2+zr& Id, %)W֓+KVF8D]O)px!EIfi77W7K0qw,3^@6e;F2xHFoI9#"}HV(sujT1顲A +QHi'=^+PBxSy*ݒ]lR@(eOX=>7FR>㉒0;ub5+Vy-J+4r~TFz8|r2.~!Vsމ +/8_q(?q3?ϰ-bu?ƍ!(8&Z~~ Ž4ܷwkx`u,?j|%B[Szv$sޟƲ'rq.O=ޯX^r?ź7#TrANE?qň~ z13$}ΙG_?&y _T)O8LЧpN_ )a"1>fu@ӿtmٺQ}qvPjroc{޹p6a +cV_wX|_}Rd@ٱcDؔÔE2v2fB JCs6~m"'D|i9i׬(M.}gwѩw1mu Ձ<ޭ>r9Y$Y;QHC󈱴^V^ZYj/8li@_}QՄ_Z!xo`JxA/K6OekQI-[هs?n..H}xXǜF{Mq਺\[Gng(FrA_XAŸH )O4͖Lt XwD9VGy0_ vSbZ>$0gdl&t;aE M"EX.UFfa%щZd.M >e?6 uttm]f/jgZyb\_Ze? 1>;/jAZA'y{ZzbXUPCˣ?G?nA,Z(6k_[lj%wRdeMT4f6cllk~ކ9RP +Y>/+¯~~I;9ƏAسo?%|~oo_6a럿wWg/,宑̬}CM܇ί7o߿cy =s+o~g~מ;+tiOܶU\o;7z~u؍vzoώśo~7_懟o?Ñ{ooo/[r70lU-w,ܳ~_T]0=Pxژc]a$:?%RtI_bKH /F rtk:&:G.J +sE3J.:~ܽ6:[ ;4V >hzøhBIgK86NhҐ?CCo| +oBy:%:a:ao_4iDm =FF~1./hߩ'_/W|t|ƸN?> >?*?#i̔[ѯ$autO5+[τ}{24\?Zq7hg={s51eJc7j[F5Fh& 7iī 4߫f JհZ >׀RC?oj/4$oҊ; ,^`to + +}O +%3x#aQHJq$汫3 &fPRKqU,LW=@2K!oYZP>ۭ'vvF(U Nfp|,7|o@YKG>rfOC+,&tl|8#4HU~ D紆_ ,g忢!kkq繿႗X^@.p48pb\>MZkK=$2\K\|$>zxO9`6~kܞ#Mg#׳?@j @ (#ݮ1^z {0kUD,]nBC{\ρk=jӏ6^T^B*Z] Ja`$Oԗ%N{Eu49k +v¶ݎZYJܞ㍀RRζ;ξk;~|OF;W7 +4:юuu6d6N]GN\ٞjru‰鱻gcc͎=;~ މ\3MvT!:eʡ#9~IhR Chr;noIѽdW=H]B]NΌµ"aqUįl{ MYs`'XL9v}\0ЊZ6 ͱ*v[ElD GVgQɔY8tGp UDJ-Y:J?-qf=cF}QcO3]&5O`苞=7:Ꚋ<[PSIj)Ȅ~znwѳ4 < +s憺皝Fem[Q i!ffV܀aYPT -pj .%t&_yvڋ@<L$j49gݥhu<u>NWVUu2jn.^,ߧ/񴐌2q]FnOG ur=^R]|dnEAi9J#2VtHt|Փ07"kyYͬoN$n~ KE/y`@MEWjUV ˏ?Wed*TǠlyKrg.rap6Le:}Ϸ0kH@.7ʘc]rD6giyA۫W.+5wl.6T 断(\KP2 + W҆?ʰoIqA.rAiL漐\dNKW]˭*s6sheU&L/}ks,\A?5ڼk}i~W䖑iGt+OtUkhekϦḍBs!f-U5cFqG|exextWE rJV嬨n"9|gR h~uIS$j\vm-뚌Ly.ww[}L :ZTGpJrN+Ejw镪V(J~;V>E9+.($өs/.e=Vu*W-L/-^I`?O+*+ 3/gdɏJh/ΩZwѼYknXWTf2|+oM]YV號"YjQ$ҲY 2XUX|*~kWt+3WXӄft!ʌ:uBy΅ZUK௬h.ͭ.'`6Z9ǹ_IG`{mqLX^A6r\DԱDK}?VmmI6Ϻk.ery_6KҲX"K5FxVn~Qf? i})jq +o Qx>OPnqOZ<]=Uxf+3xUn/Txŗ(|_=g~{~=O췫T_Ӭv+-j +r/"Yyl>~Q +j +Oxz +OLW~/QkeK&9n7mnϷ]-&y$x`I幗Va𷿳)Z4SU]?Sw vu-|nՙ羶6 'b?8~ܚ2Jp~n{7g] ;7o^|7[ |?p~>nW? d[x3.lN繕|38tq&9w>y8ܥ܆-hl8B*p{Un9a)f,k| p~n5ŵܰqp558=.fࣀ~aJj-YsS~8Oy.Oxp~.B)』>x*c{ +6K-8?Sd7D3/n? m!t~^< <_5l ek |'< <x nMA(<< a]yn:pmb>x!{x*Ӂ3v>|+g/~3q?9V'k<|v?V;o>nZ|?p&n ax YKZZ8x)! +x: +ׁW |1bw_| p?x e_< x-x#x3Zແϔqk~aY Z';;Y#gB!nC?<F끧t skDs~]z$+fC + ?rJZ\&u'@o I'~#-r~Џs~Op~Oq~;8Ĩ~q~/r~/s~Яr~Яq~пr~~~~>AAAqIQA?As~Ю(zT%ziAA%0;@ @'qNq~it&AOq~>Ο7q~7s~зp~зr~ 8?;8?8?rΟՋ9?{8?J󃾟~'GF!z+8翠~~Dst~~~~-gG;A#Du'}#}>A(nT%ziAA%0;@ @'qNq~it&AOq~>?5oooop~wp~wq~??s~p~+8?蕜t}? 9?8?G8?譜Խk+#Z`s49~VdtT?H|y+q_i8]ҘQdX'x_7gjcau +M$iѶeG׆8clhX_CG)6J6r=<P|~?\S iĥ֩u0>;9Fur맽cG-/Οݖ]'FQGCgǧoK\bLq,K3R,ի99/R"qB;\du,2_P3:ɟ}Gֿ~U?m]8N~ɪ>IeBu_$*~U$񢬟/Vų~N3gt񄬟et ;y2FYVY?;@k+e~WLDG3]~NQb/)ns=YBsmSD/U?d1Aώ3Ud$[KqMB"xLc{GcaNH~ 9:Fd=e6Nvu{lq,7Wgr=~NoKhc?<_W/َ3&~zx +~UWi5w]鹢~T\񜬟su8牭~C~~C'QJ}ϧ]SE~6S?#.[_`x_!}'c.%}e/,0+qEi:׎]`tӹ~LR+|FSSt6߇IJT-~]3_ ib< kL=GcP7Ezg{fjƫA绰5m.t Fi?]Fg撱4fj~E3"oi˽~MXz9ꦱ[ -~3i|s[:v8y}W31C{k:g<"aQT[ږ#>1zޖuF;{>cOkFg`Ѹ9BcȦ.>D~t^]c,c&}c8N :);\F8i8A #,獚8f˞mkzq\n:oҌc_PX΁u6 ~F/>Ⱥ>膷g~ sL>Px_ӌOh4^E7'hͻj@91c {z=1w165a %ovkF{fZiyn|Nע^#t8nn$i8J׶G+4# F\Ưyx&#0[m^bK dVKg/tsowGS\5^t'Ņi_Mro+m3]c,yTO}Eu3'}X f=t)Ce= aۮ5NqX[ ՚ #9.6!11:&á=ɤ6/1_=n|; D l&7SO[1[3SA)^]HC/$'{|_=޿-I{lQয়S4&;EEiu^iwP]O;?pi̥y~kOxz{]z'U v~Hܝi9OQkBci;l֟ϟx:|IIJѴ4=9STӴ>2zʵ׆:s<5['[j |?ߙ IX$+2IP7d2Ժ`!j_mB,+jK#XZ[&δV* ek؊56 d{g$ߟ'<{{ɰqk˰ N_ ~j̸?;E/u>ei|W4~Wumi,?JQ ֔ƇxoG&?JC[L;4^]=xq`_i[w}vți" 4wDq7ai ?.\hhJ.qomK,linf|\m[EE{j`[YqehJ/+U.MA?{ ?a>m{*iH;i-N]ohh3B{fBn} p`j]_w/B(}8ʾ{q\]aߥ9VGXӈfZ.f(}T*6ྡ\Ps: .kzm"a{~t~ܤȴ|[Z#-g i_F9s,CaMǸBRj{ oEG>4r,79rvJ$ɵO\vX;(0xu"QpxRD?,VJ; +C<=9+k3 oi\#R8iCctT&J}WO׿Va\ب׿6vZڠֿ>]cJ^Զ[|Wnrm%\:.Q_f+OɎ$'ziΌW<uY!ZoK|Tee%׭W,vuҹKEnXcd1ʋ.Nsk/`ܝױVey;zΣױֱtu,k[jaZ~fYuG#aֱ4miih֗Xbk-|:ևX~֏s,9Oֱޒx\xbnM{u׏u,#::_%m:OZSſ8X:NZa  ;'0;NNP'%WbNzgXH,gZg^e:Nz3IoE:z'ؙV_:yNzbK/^I7R~w 2]nw3x^8Oze&8β^!tz8βW;I{mH7I/p8Lw^lk#H'FXF~&gϮ#Iwu_:7XwI{IN/.'=wmw kmqk=׺N/3#Nz+ I/pU*NNz󬋤=:_/wB[ä'.IӻIw_/'V_Vo9^`;L5,76z:=ԃKu,ױcg׃KU􎓞=s^+Ku$(zw/{Wxރ&<\x>Aװ\B6j k*}2Zê BQkX7v^O[z{*3pz]ְ8w-װ^ְs*+fBħwZ<{Eu|\v|"߯Ps\j25mְuOěK[vkIG5!|ְ +Z%M%ۯm#r 7qOWsXO>A~~w#5!-sú`݂ǗzzXw:N|e=Xl\_t!WT~\F^Y|G54ou#a\[U?~=a /|l`0O;ד`ǯ;m׮ǧv6-Wcr| +(O4|s +vjq +vBl׮%-#/,kWr=vs:i<⻶9^|i9%թ͡ Ovpt\4H_>\v<.W &x[\p^t'f*7lt9ۮ˓brŬ[](Lϥ,j-%Pu86mcDyVko·;ʍ>Ma}L*ּl[gcD>1LO:SN(SkBOJy' H8f]\W2t((HYY?ѵ =䙩 L}wkez,!(`oߤZW J3b[/Aa%\!V :-CX ]-2-0ĚJo]*_x5 iLRհIkb}v<{uҶ'CӬiH;``yn]iWrVASii;3t>|ӭVd@.tk4tچs{ty["-,c5ZO`Lye,ON\! SPLy,/C7O$˰jMyCɷ|^f4/ȷڔ絎BG X^]:WgZ#6t>o6Җ%C" |X^.zi~+DViy<(O[ϲ1̺K|u>0k%gm`y=U>0n/Y^Osu'gҖ6iaͬگM㋈ {G-2"O_7M?qc Dž5.\,rq]*wlCwb:XϓSAC`@IDcD +qT's7 kY|(;MŻ&E! ~m:rCma}/c )Iv0pw< ܰGߍ+/ζ£E|t0tc`}o\ovg,X`k\tr[ lv*`;`0vX_OH/;Ep`@֠_M̔cc{–~?Bc}Xہ>ؓ%T-L6ݘwHc!?P?[[-{Ere7|'=FC;>0kϱ/=C-I:M8F nL9u5-!чeگ$qBZ,{JCc3%'IS<N3⨆0İ϶-@hǦ~޾8Jf2$??C)~o~+W8񻖿7b{𻒿|F +3$!ѻ +{pv.#l(z]Կ}]5lWN _uw7~"ӝ}9 DyWA٧e싟i-`.f4ؼLsuU^u.}^4Gߗi3adƈ9lLxӟi4miiuJQpDDx{F?vs~4P44I>ZA֣ *o;{ _SCC AZkDmH,3 eW d\wg:7i[s~T?jnz&~_{o}K;}oٴ㽩ky +xCgry%nǰ1'6X8̋>~mABϽ<^Gcߧ.vo\%[ ">=_;N\ɽ}e"~F=XwK΋~-WB^럀ې·Iϋ|4x8'pHw^k<ܓW-^S +BҫL7'ǡ[UrN->rE}0x3x^?-3xk%rK7qu^m'=0ēNoI<9vod;m0x{"> x˽vrIiΰ\9טxZ.OEȽq)4%񌾜i͐kT{Dδ.g{0*Nδ&I2qg'.1=Sx?tn>]COYp=y.qGlU=~,ZgY}iL҉8r;VdZC|!a)kC/3U{LkJ:*7o&)K岊1m{Rr.Ue^xOۍ,k70z:Y;YnG|M,WUL6Bzrbp҃^zs>{SKizuWܫI\kɽ)z8yϳnrNW'yRɽ)zO9Γ*==_8W1Eo^|k_:_: >{S~(=x)z;/.3x޽NzH}T{SrNKWiH^H_:B+NӻI/pi;NJ'V;%W'FYmENzQˤ/NzQ_H20'QNKEooBzw KcB/ޱtqFPʏ{R>Sݰ1Wtt͞_ +O{Q&اͰgo{ #gֲoE~gygE^//Ğ㏿}鑶șx9/ϻ?w?~z||j}i['r{DF2#R4 tM~yyV 3B>#r?pv=;^tW8^/cK܃(WkcBa4P*BYl+3z*DE5,</aF -Q6$ءaac)E<_X ]V Ǘrlz߅rl|.etYp[>.7滑𢰰W ee0#E}İA]Vp~:{Npb>"Tn ¯\a=֫Um5HwEUp@*i>1q[1:ᲞwGȽh;fģ~7zy'`Kog(n6riqvdX;_<<wko*=0zo^Ӟ=[fgӊH}BrjCX3JscB{=fN0W#6:=#C(akx?95?Bw;Or_a]V.1u??veXxnlkEZvl65:0 e3zX^RF'{h=q]N4ܘ#n/ք'qC.O6*ʛ y~t 9:7~uGUݏ~Yw3ga:ݝ:a8Qv-?6un_YRi QW/m`$_%7iY&>{S}uFwl8okg_ڵ}' e}-|?L>^oRi+}G^\*mV_|Q|"7lT#a;ED}lE`h~BZS&v_| q~{QXABJW'ŗ3}ȳCA[wRiWanCSyCN{I3sZk=@f侞@R'"A'I\E>rЛ=5xٟg5X˒DW}+<`&Y6rN4Jk! _hxV^ùo4!S o ))O+kOHpo F.}$g'<>/H N_ Ù%xo_R>KxI=Uܓb3|)O?.=ɕXË+op?< oeRrA [Xq]$/ K@/$B NxXg3m^5ɟ|NLѹNI~IeB)KŀT]Rel]#Ը#|y1OH)F2ÿuv?a\._dLx@{^mx%;T3 1?)x% _?OIH +#gC +6S [I EG H_?OxH|Oo? `ÿẀ3~[< +xO?3%!=?C%'Y~?kvɏv o#<- w  /"UoU !uW/#s|_?W¿ ½Iu73pq O|V1KHE5K|e'<:I(wt],>ߐ(R)(?"ךzVQ[µ{.+ ng]?!z_j'ܫAj'\%sIxLcEx@n…skn4{ȧZ?B>M1NOkxpL×S o ~Xlh$<@? * > ~MOWSҧXWIXM) F.WKOc5OxXG~_ӯ}f7K| +?>՜c +^-_M7E?>3VL >V#0K|X_CS9 C_AO } +.S }½'\I|)tc8dk?YNK| +d{?OK xX^ O} S5r_Vpk )tq V~j2Ckx,Wo|9mF;u wY K^D-OxHhEkJcY{톬Ҹj}%:-ۗ?D9k3Oqj<5/DW]yy:o~t#ljDAx?=]ˋv*3?:erCym›=>7-ԸO%mL~η +GExNBϢxy>=t_$ĮcK,[Yt̿z;ݩ2;WWGF7c%ʹ&YF_I$zEhzTLP'v_.y<{UK?Ph ~yƟkv])>n=QލX6Qj[o8RrNO)&| +~J_ J%."mh>{x`j[%'"g?B=t(_>O)Ǧ Z>'닿-elkwnjmD/OK !{Pog+hqua澇h?;ur'uez\#ɲD;W}׈ݐQ^=x.H>~|~_vZ?9mĸt\6_Hqzɵ&ߎ_H]w/|6C:?$AӠT~0~bC2X#(u٢IIߚ%.L4M smI=G;|z#}3o'x>3?unN$77eJ9ruل15ܧq|Go9v|FoEAg>8XˀqvK hxO}wQt5'TQ?i)߮ڏ /qD܃=c&"euoPM}hi}2U棏;+"C#ILQw*G66eF'Ȏ$Acϼ~Wb ͎ K(|ʭLPq} YT- [e+\ޝ +YɒC|ˆ~{~]s]1YӺ[ݟ lunw:Vysk4y:';ۜV{_)/y{}?{:f![;3IlM;z.շV{Q%>ƹ-=eu>{z,*s5ݢ, ;KZwލU KzC!ycM8c=+m7T%inn,r!GGsO6}~3>bsn!ysᘂ|?oa1qaybɣ~2?O,GҎϦ-kǖ%"K{'@\0f?@c]^ߋ{5՝o^ r4c仔H#Mgz/¶rF붥< 8z>! O_zm'aw.qljqA>DQ˕~_Ey,[4dB{+}c_qeGDv+<x }Ƅo\N%~K*D|NBԂߵ͟}m.`k{ 63geNNJ;ov܅i!^(C2, yy/D)T Iݱ^ rEʰ sFЭWmm` sclƖ\qBrbe.81ۿȓs +U$!8_/hx3#W_ CY;I}?bU}࿍]~w%uy ^}77xPixźCfoX?~o_Ʊ{LŲt<%eP#C\:csD]g\lxNJ?E\U(G¥FDQ~1^}Ӗ \Ru2u"SߘcmATsF^vkQ/Dwˎ;&їdF~{6{5M>JSį̧N"MƮ4BBb_?m;pƱ[GA74apt /GB>lwt b\moN<nM{o6?,ПZ!؈CG{x7agK A?BHiOǂ/`,* "_]gA.&x'fuy|uHbL9'Dm14eS>3^?4L>)O.g$^Sϋ2ڻܑ%="h"Z ZJ~.1f)_v8֨ó$_`'#q/;w]C|cO1=+zP$cҿhVGH5Nqj 귳/^ 2p?En]}c}JOqhNvhz + 7n1Dːg 4f +ΫxB粊2\+E _KhuƏ}nqNYr'wAVMOawo55^9̝aġ_4r8W/Bϼr_oESo/C1ÀY)f<}a%?k(;> GBݐc(l|␨OL"pts߷KmlD}bX{7kw _}BQ߾O௹@'w>_KcEy䥨'C|읃ˊf.).`G^O +cÆWOΈtQvʾF٭1 gz N^e_gTF.3;cֿF +_)C|AhGYد y#r[!V1mn\}CRu?7xҺ; x\VxR1hkuWK[CFG]-ö2noLk++c|µ2ꊳ/s+ܡ=˄k׭–c6)Wz`?.6>0h{&r;FQudv@ȏ] BQ򂯉8eJ;Vr zC ;xoSJmeax'"<&O(FNLJ\3z;dH\mT &Tmi1w7 +ԥq%VȪX_?k[5n~YS#,mdqj|tkw(Q.i} :k{WjʋnFO+lgYGvZ 1h9AЁ<:N'К'q\!n򴾦_3y?_MC[ -DrD#0} +:JOXAp WH2퇰D_U|UO+rc53kg,fG*}-ۄg^Ȼ=5rRإǼFuvz##(/x}-uZX7 \bMù9+z0Tϻ1;)<`Z&~?.%V nwp+1UE kt}5׉ױN{Ds繉۫iqDzJQ=mb'<#%H [ȨvUFD^gsGW,ԍ}i/xwMeoϹXXпJNl:ƧDŽ˲D9HIUr#:ps29>+$c mU(BYSqVa<=a;SƣbGnGг C] _NQ?6<͏'9CZRkkЇFp.k:u3ڗ.ܠc'f(.ž2c(5ꎘ|3G G>[<}&_Rw~xc;WdMGdB3vX@<9_ ʤy{rkBq{DW,xW=u.>6`odžm<>=vᘧc|,4zih] "/mfw5Kϓ=ZR<>HyxӶy䉺ٟ]l_Y/ϻy^w,u>ZkgÈ[7Xm=~~&6?;'z"V%}Ժ_(Ęp/_ |7. ^r^ӭz!V!_ո#G+pҁ2g?!ܿôE| x}rkJoߡ0`EJ D|_eYWh|P%Z%.bf6 +vvԟzax}l(Enۡp;6uU;xTa,|l@^ӷ@32 +;e2ne "8uTڃ95;N^t^">ڝ^F*BlS(lR{\ +unǥQp-#6\2(zF]}Ue}(OZ}Լ -@^zŤ}s. 5&ʓlQ#? 6k \ sXs!;m~%6~J4L%޹oޯ{=ޕWگS<2=m1tydŷ){07gig9~<78x3;[jne=|6yWT64Wփ彉,ӲCYeZ '>b)otvz_8OaQ]W oQ2.ul_~Oe\XC](uwe~5߽P&CE!u^`^6'ʍyt?ڊrCnk@}Wɕ)ꕰ6Tzˮgz9&h|X07Z83CJ6z{}=_^^w9y}_ϫw?=\_G ;yVB<WZ8PLx^x-۠'&n!652~\(_v۬nsi;yQ!?YިNt[pM|q'N Oxxhi,AZy(ּ=zn `KֶjA9<~۞vi+@e]4ʏsy,˲ c3V rjP+)X}sg#Ibp]?(TОօEM^%gfBDލLwgZ&-]H; )VvǭCdYnt5>V CSkvw9D}yG Ub83M6ކ1<؅rgf /IJAӴ_\9.F}w@1mX>uCesYc*B_1n +>q` 9ۉѶʮsW" j 6 LW[mqFktue x]̸[gN7҇Zޣqk h[?}~m/b.kV~/zgvq#[ [Pm[W~7Q7uzg09<+Wl3gpdp̼ x21SgZ2@z<T = 47odчis:ogcquyiK?krzۂ8sD|>xhAL~:Pw yeF7F~CGw(߶4;rl݀q&Wt򣛐sJcAѿ%)Yz>Iqw(w"{ }пq؋@?zo.l=ƖVK8iVQ7u Az[ڙ~ȶҟQm_/ʛuK c{}DhQޥ`7>c FUOqN*i>wp%R} NhLG'ik>UzEr`# +h*EN%Sw+Ε0*hp c{1]q']0121yM %}-Ѕ}AZ&֣(<_BSf9<99ws8/OC'pTmĖ ~^/}޴3mfÆ{76fw^o=[Y܊uҌ]Omgv7ijS=߄3zlN\[G'Jٖ$Sw{t +}a95Zg1G&B.]hF/c"?}v[cb3;/~_RyX)>*ơNq~7s[^ 1S6mk;g#8_0ƪ|Pk. ܗ(Il/R(`^|Ɠa{lt~􌽾pܤY 냵z+k˳0ʽ9hRY6ƪa&y!MIAVē#?^1s3RTlx>` ϿR^k\/M¦=3EhpO 0LF~QVHbZonl4P}]d#e{66vY{R=d=v38TdB\cor jON qkhq]O>zIwźPYC=:@?/Ms~Pfz vy +7X(粝GPꔒ ȥˠ(YvYŽ̰ѫ8^<=9:˶ӢQ&G["+ib xee8cf/T56n8Y=(l{6z\>y[З9 YЭ]Dg7Vy1ܕ-s"MOAk~87h5#N MU4fM0ƸIvN~K%˪-wfIJA{[f2i;U6;.h8ibJ\:I=jӳ,L{gm8KDܟS60])}+<| 0^~ ?\;)=#d;yz~|VogliyWly/ Z9εd7sːwBؿf Y QV/ۥ+Dv{20-ZiisJ3g]"kwɹUiݡG$nټh ^垱Kt(k3O>_;CidWA]5\%Z~C -M_}/³<-?sʶp.2,/M!bu֏2 9kʏ}z6Cvߛ=.2LvQ22ˏ; ̶> <ú=NY3nn;y&CrƻOǽޔ1whI}78euR&*mtNo8.~yhW<{el:FЗPgˏ>l;/|G" k۟>Aƥb<غ_DqH뽽͆vfMh#˅ռ>cA;dX6KɅ6k]TWO@_'ۣ +RT춇vka^>Xޓ'ׯ9O3ovt/hw:яՇS}ZGPGobS/y(ݹϊ6;v ڮvog鐊V-ۣ_WX_2PTp=͹{:h+c&2KdxxelBc/QF:ZU<|oLMOUIynsK4SFPgG{!رX;>y>gtI?+}?!Y3gG];p嘺w҃'lBz|~>I:Ǖn1AĄ9c㜱猹~gUE1gؽҗɍIagYW{&K4"WAlyy8k1geU7=P#X?Qζ/cFqxΉu+'4'xO ϐ{;ƅݫЩ|˟dzवKa`3u&u'oteN71S_Y-x +h ;f!槾Q.ˆw~xap-L +~n׬cF.3J\olOSD9:<1sGx!8^+/JLg23zyWýȚH}e{s|>C}9/3+4Omn7pAݮ}YО: O<$z=`>:o!ߏZo.Ѫ~8%ʛ;99V}+̼s/_y4}A{}ML^JSpM|:}v̬RrOv62T\cnf%se˞eKy ,{;ԋnX3;}.D玞jVxWzcmm? w*7xAjTQ_|eGQ>o#ߌv O?8 + Ʋg-7vhg~ jyM/ #΄.o>(cx 7$V,ZЗVeЀE߂]8O Mlh.B=Bo6M?}oJ>t{?K4qseƀ7B xg2))>߲<K$6~?&tjUc S#l?ƍ_G;m?/lQهs:A>H3]2iPVwx`$ >mx)}g'hOY_X~y}3 _qWȏ 2#ʊX/o(Y{g,˦Ocf@?_Vy7,aBnr㽿z}ރ0^@od/tt6\u%MT|>.]q/^5,BO ቆq0|qg}֛귾^m]5;o w~[(CeE=߭Jaef_N〰؇w?up>uv6CڱvO4?o:rʹ兏~.ny8z|e@}'ϟwcqs~ȵ}~~Xʉ>Snt7c&L et5օ_~BO"if4͓Pup'2FaqbDh:i87 w(=]gMOcUۙiOiLSôƾROww/`쌕>9͢_lo^gm\amO+;mm] +e9ѹ n({h٤1F%dfqۻ)ac[sGG;n|W])xvӿRcKu=տu#1\_>8eu1~c/{x:nMO8jy9m?HxLݼuH;۹OqV2FWgܷzIo4Zrn{-?s6>{8O mWgu'gwkxrf C>9_CXF]ޮuy9˽JCjA1n^(<SwP ?ڦ'`j>`w>n=p 嵟#q~VRa;-sb'^<<;Bz9^``vr(O8<z'ʍ|/KKyE[SαuDžvL7eLuU'~Ɣ9О{7YG֏簺-j-3od/sW=u1M|xwp'rq>(>/3z~zcFDPT(E&Mmbw؞>p)V"5çӯ;qo70=tY-y/05c g9qfqqMi"8uFLNL3Ǚ3 D+R *9R9%w{"?'-<>ɶ)]VuNy/~1:y|NwO?Ѕ~ۑۍ~]6=j=RwhcQjΑb049VrM zb͆ÉFm49.hHN|vy2~>| ᬔNzv։6MtS΅Z'|eu:ҋѻy%⿷uS}C~caݿп[Ar<ey;c[)~V8q‰[) ~nysb(ہ>{vS蕒?'wWɭP߁ǒ}>铻>Ug])7:e6NC< e6SޝoJyK0M{Q?6h_^wԪrA9Ona{3Nrs%a v{r&)?:^8F[OԹD㏬G.&}ԍzuTk6٥@g~n|o8vK׺FtY/a<78{/auVȭK$m6W]%nE/! -{ .Ѿ>p ;ȐIKyLJPu3N]a:j +/oK䟴7x"oPNA';/oHd߇瓰'k{e4/H=}*uJ[XdߊRn'Vuog_z[kI[FfOF7<6:U'o}oNzͷߓ{ؿ)=8U_0ˑ^gB?翽’Mz/(Q߿j)ǝZkzqZSL֚^xbi/=!WF1gb4_CXwo_?og~~S?]4P?<)`Agwӧ=3mD٫h3a͸e\QoMH'ѧnkrK&2qɥhWޓh_ a c&髑'd;ysxWm]m6q}Moos}>}%o1);5y~fT߱S=w侗wWK +"[۳<wq!u@̎æ ow1~__ֿ =&=!pO|/}:hA,iF{Qgp +,_X܁]yvί?n*fcOR)ֽdL~+a?ty3+[)`hvNxRUr}y?Pww:kЖjE~ͶYDv "6p=r>HP}~㫧J~t{sDPVss>{G +#v7u0>𑆣~s:065G< hәr;c y?ױ/= 3w,;c|dz fj(u[\/჆+KŘktˠwC;/EsNXi/K$ʴ4Jc_-X=[x85+ʷ<$i> mEosF:^:ČlS:yB ͨ3sPnA; Ȗs{b܄,oo&bZf ;r]{}z_ͪ-Ky1hBn<2kSr5Aɋ=W5Uq+Sn(/#firZ cj wHaU{ 'k{s؏s&E+z&ZܢQD>VvC};\@g'ܣLuEq]c ![U x{^'سY_=rQۣ#=go7WRrlCOxN9k)[Cyug-[^>z}(bnOO_{A~̹ t^|qXgW{8S:=֌u&7{іNyxMKпLfP[ Cxzs|m?#N^Qۭ}CM~;uKܳBolfw-m>=k4gYY;csj?!3xGrx?+GNRdHk);ȖsD\iPd9Zѝ{@=__?:MXțQ!BMug~;Azspz99z9Y%MJ8 sfD{/SĻM<}EM/`<75:ȝu2N8l{YBQN{|zWz,H \4,ߤ_4C?[^-Z:vjX/lƖ%vz\QxO* SП2ۉ<ܴ";։:Я5nD_佝G+P\AOn1<עL”'x`|Isv ȉw@7JG+dGu;||܌о" 6?d&tM~h26봰9]7\݅ ~.mڜA[jWs{'ʯnцCƠot;veZosDZl[mf[Yܰww.o{ܜtŔ62oqZ챌cryC Q~ w86yJ_|ɫz6d(睲-C<! K]&܃ڳrڏO{_Ǔlk};|̥_=g&^S1|~q]Ţ'Wh7C(ok# yw=QN{fk>qMwzB;F2Qq.~cdk:D;O]WҽޘNޟ3G >n~G-mЎ,H 9&_ϳ{6sׅ66VߕPuܾ}(N|Fw]?cosa>w2(wɺʺ]>|Z[ސ%>O7EG/-V |?oo坘}d!x2~uqɭ;%8={ʛ)W*ABx,m$d@0Q}[a^ܫ=(eWOP/ןʐ!frUqe27(x2>x/O7>n)qޢ%D**[TN[MEmtCde?( iBM]{?gRB68@g"'$d?%M쏧i}[!%҇).Nni<p| ;jlm%y/wo]<#1w~LjxQyY! $\Y)q~cG7C=(~Q7oo60:W^QMukr=O%ݦVCs7**0>]g -nAM5^1_MBΕb2q{'홌"ޝcoeyi|ҽ7<9ؖVW-/=UPy~WsG_>JsCyA~͟Kܞm'Cn)vrwYW?de3|em^ߵbFlTy! g& ^xi:6 1hy$7h`6!ԕ mߍYV?xe}Bg?SD7rKa Uuh61R"KSF7R6!:;:v$M_B;:| <);lyS8Uw껨BdxGø{<_ND +s +VڧK+ G{C">1RoJS$퍲G>lX˻9Lж6\pD3!6 SW}]-D^k?OZkQl"ApK[dxs\eކLw~h~5W×H)21_Ǘl/, b ]e߫3!xojrgx6bL/%͉PߊPgVY uKn>`:e~~u;voH1 c[_d#xw[7Ϫp^6V~ۀZr.ygj\o+c׬ +P]Um>Кiyq OϑW+?:Y4$~w?x='lh YRtritv)W~2\@=jmYɺX.:u10!>6:hlP=]?wc]9AOw}} +yXavQ ++7ۂ;'-Eq[Q~saoJDˀC8TdyGkZH +y6s}QLߪ}o (m}ؾTxurGj5ubn+{'. t+|N~H 3a/7Aw+ +ڹ6} 胲GƢA +987 ہggt\9"#7_'e}cvvfk z Kx4bR3)y=|/e:?XZO ċEJ[:Ơ{#!֋Y/C|{%Oxp1WGN +xؔч{\Yypom3ߋoX{2ua#J~N9K{G "s3+;G%?)3Eɮ~$ķg2>|e/̺k<8.Hߒ' A?Lu~9=5ov֟g8ou_xc2lGƂ(ȇoQ{_bYq_Ĭi.'=}xr#GD[E"\W6%:i&}ߡB*GsT{ 6-9nk=/Eg+/]Ƥ7m-G~ؾנDuYzT +z}H>9/#W_ypU[I|t+?&S#qkubґaGH+ˁfIQ53iJsZg[j~sZnkQpb}XiI/HZ~9э6֞;onXmu75N[v4s_'˨J#Ew/no71nxN*ד0WCw@\ݹ;?sE޺4ݑ?('2iS/d n%,(x:O +9z;'V +˻,lϚ /31f@x&5k~7tydzEQHzW[6 ';`g[\YM/͛!r_c #*nَvm8l׆]#6} cc;m+T򼺼}XoE[!??QU:5R ^~g?\&2ݗr/b"⿦FֻNo%%+ڛavUhoK/9۬Txre{oG[e֢ͷg`;MWm87mN< ;,W3 +.pۨSmw*+煾^mB{)s܆6e;ؼXDٹc&@Tx u-@zTDӜאԨWo +yeA\џA;t[P~Av1 fп[ύgC Wt@9E1?}VtлDӫû𧉦=HF0K5 1+ZR>N{_x߽1ܝo3Օu5 \|qŌE V_Y]X?w:ճ4YU39UW-E5i*}.j|ԓ򪅵Tx Q쌹AYfDRY. R-xnQ9-[Ty>oί ]!Ub[]*_x)wfU5kTlnpB!2eWUϙ[gG@W_4=%TUεH4LP|T/"t2kN%ĿE+fUͬcjZM5O˯򊫧M2bƔˮp_< H ̚_13pM[UV.Uۯꅳmg,SϮ_W,MN{fApa^KUS + RT ;uIs(G3fUK)8rS_tK٣H>X]W4)<`SI|hv(Uz!TĐ2~┙Vt P_XQfVke;q]59s16KeÐBWޥhmJ5s ]  Duim ~.Ԧ%b-WգQ^7|RN5fD-+fWiM5:x] WyjMpܤ#| _%k+Ȃ~[1 + ]nT"Y8m,:Pmtl [vI@x>3|fU-Z8 bj++AF,tKe󪪀.LŠ)'QJ\9U_\#jR*գT]4 P>j: /MSMUΟ~3*.iǦLH=Ly9,8=fݿJN4ޕ3&cַwNUi;A%5^ϫ{FmzV{>,yWzgڹϒ*ii7^Bw…#J^R55U h4;|awfMѹAW9 ю1N224z;~=?xW4n/is+OiǦpu5#/trq_$D 3q4jƕ]7zȲS>ě1ybyZ6촊ѪvwY5)39t//.,ux/^&d {mmb`4TQPO /`vwO)؞n 1W̮ɼ_&sE gIPণ_P :g΢ "X[HbƢuS9\F +0Mʭ6\P+9`+NbՓE5u*RX⊲Uzn_|KER2_Q mgS_X.IbE2ή^8Fh/.I&|{ͩ"h: ko8Ƥ 0'_9)W{/_~jt.}D< :dӑ{ ^ye._(gH*OazRь\}pt۔^VPKqTni9tԪӥQs+J"nRJ)DIO8ndAm.5頋jzOsFM>Ԗѳ]Ust4J~a%CL5څJet;1wwJM͢] _3j2r-B{Sљw6̰sVyegU-AJPHםKL%˛ Мw"eRepT-It 8Awix*޲)^59F4B*֤։VYQ[UHҴ/:TVio\tnt.U-2?I ZE)y/_Ƭ\LoRS0Tx^E|ҟ:2Y:D)# ֵ#YU]&'fənG%^\n^55ķb7I.^sb]K]7u +[;8,BIT:[t"96r"v|*dPDM$lT!Z9_ +3Tη RIqv ѻ@YaϬ,ZXJ<Dz̭iqMltY / Jpqƭ\2KRkUǴiACV!Ycɲ%kTJn4On!M9u[aDjGWϮLB)X v~]_Τ* K^wWo1m'SM2~ !*<ң71>ӝ~歪Z\޲~j,b/?ߴV/9Emu5UN̦¤b{ZY0%Yj{E)*:XiL&5/2a\7)^DfBdUm%CtGN"ڒU +>~j9,Mŧ,X\w+9Ĵ238p$j1 )aUS^SMm+_f$tشICNNAXruB*'&Ѫe*R<Ā_KJORK¯dRŤ.D9.пij MZQgXm-uȮ[@U/Y-v [xEsᒨ)àTWZ% C:6;Y/t ȜFY:wYop[ur\:טz"WHZFj5ҩc\n 4wkĸN8ǁ$|֢*emFW76_:^D!-qU&~L -^յ ZW) ]}Ԟ:afW/T$u=A=24=\P(=M2FsIۢ3VrXH҅tclfsw. +ˏl5]V`KK|.d(@_e\"Uݤ,+__+7:]Zt ߗԣqf§gG^jV5WK僀2*ebj;WM[\f48@L>ƗJdbH#E\D:RBL[<]y82LJO*74Uk%pÏ!*IYYXJkwZH&L.>ӅH I$Ft}E5u)kZ;1!}%\N4bW%F_;~8HT &"%#*1^D:/lÔYFGebMmJ%h5ri:xNZfJ'_aAO DLcuPo6SW󤺡w骼4%irO{ǵupNTu{(AN>yZZF,fufTUuFKǓ8'(VEvVr'ɷ$5Nr:%ZWtNGLK4z rA_(;MMO͢xu8D>hh $$q .g3я^̉-{ tƇ;/WkRKKK!wj*8R;%[uDL9@`mz9t Im':tg[`ő_筅/I!hLUV`pS#Ur_d'[m1hN0S0r$IO 4z9vOfFV["͏Xku:$}5&gjP\t͎9(drnq":PM X[4zI<[;zIgߎ _~5F%uiO77WѡF)Ԯ˽f5HҕqJHKC-=]<]8ҹ9t&̄4*u23gmܓ˅y7k;)2o4$=FƬșA>2䂙b'|!yϯ^8OͷYDE] VQgN%3_“qVϦe"CdN/cQ +͇GoAHdTX7u>Z'-e&λq|LQi6d^XG+BvEʫs{pK}fƋFͲ.Γ-CUM̙VB4ԝ!K*]61d'~N.Ju%+)rf9obl +zCvzU/;EjkCJZ{Kίq g9>]=!ģ;3T!O|݅Bx886Duw':Zx.#<w'6)<7.1<n;x< x^g+(x= :?؊x65Oύx>g'O񜏧dzBHswD<}?ύD݊ !O$!Dx>g :NK$6y:sh"q.c^Gx³(X;81,x +g'ٹ !xuV"1_xD`Dxnx52؊1EЃ‰ w!{/M$9t&x /99rOI$~ vQqi~u hn#^6%2$dkK AT>0Z4r1޿q\ |+zoCl]YVG;0 p #ò.pp? 8F;`CzvYA{-? 9}`I?G`goC3sYڏ-` 0`5J }`/;>w?@ c_!`ʛ.17p'˟;4 q/<=h;?CQ Cjv@Go#T +p}z'0mHo+:*>mT/ePUj_ S0>h'8O[ >#`VvV5PxYJ{><`ht'y̛w%q ~xwƉěO|Yajr*Mʧ>زز*|8i?%qʯɾN?;+ :gzD$.v%v'xI&&=!tcj|7mߥ_3_Emϭck4 +bLy!c1#d% HakfV]Ip D'{{=;ssE]>GdijZ`߻gGpȞWMถXOpr4_+ ٠¶}*ڇe"*$"=AA |Z)}oPy`s+{} 5'qg'&&T>3 g><]n,ETq-o@n+isSKNoqs3a(&r|OB~z_sv44_SW^wYMӕiOj>˅]C^V'%].L?trθXEÑ('g#Xf<@R<=z/ mZ08P*'X2QLصAy?^ d,hS)/ 7pG>ǎ9n(Lx:ʵZ>5^"Ui#Aa`KQGަfX=.yǽ~&cl=L{}nnb _/d"}TӘTyXƑḒ1]?ev=ٽNGA]|L}V2ݕS40=>֗ >! + 4UL-&%Ss >ѳڍA~![2Qg }|3qk"#џS /p~ge4b <TZ ĆZ ou\1Bo+}O?S"-fOz1ƠWg +>֓޿>yť<[^ǵu;Bt\Bm |{ٙTܻg/$SR(gc4ݙ=;jTؗ曙;BЋ_waɓȁpͿ#:Z)_x支_FJ|'D;BW6j8THўkk:c/SsdS2 w*OJ6gD|WÔISHTk'f/v>I5y{)"ӂIנ_~c\CJ?~7!~a_ogHE jv%;[OjLIQ11SO"8y#f oQrm#b>AV93-+_iqWG˜oRmmcn3☶Q]B#m>G$Uʹۣ"vi^rby~SSgjQ $" &407HBC-LPgݘ7sqɶAqv|E]as@1mhی6#m^ѵݶ1m'=-}g? ]1x4wvKXLof4xde-v/9J͐B!˼&p!2 {,T^~YĠer|_( |>QynPCƀ2jGl\8L酌t +ٗ?ҬdgKɦ39 m>/xE0d@ip>DuS}=iůYwKs7jòXm6nW$nWrqkJ0ȟ_D4p.@hh2g(I:vw &/zqy,|I:܀}J7[ƒbKByNwqL19n3r4L{>t~vnzFl FΏOLЭ>y)Qqz8AO?{XoE ߗy1661$ÒAs +tW~ =Oχ}w\wuBi{dg݂|V F_| '?: (-;btzfWwaz&v]̽%b;5E;khDYUڳ'>ޛxmv·fKE}aH0o/EE>}94^Z{ O Z$Ck}^ٯ9:=s%Qgk1<\)DJq],V"S:Yf'DtYx$4%/DӋ<ͤGg)SI$H [bO*gp_f"C|O8NUݭc{>.N /UMw&v:~O>+s!}|72hN#W'&GTҼǴ~X ڛೀ&}Q|ĿדֻksTKiS6,FNKQNIxC\AZ"so~ZG#v%wO`lŦݻV<3DytJs!NЅtMq 褃h/ve"KV<}h3+}0L+b"h>Lrmr5fae)h#膴+ l|E]i^I=ŊQaWfʧOT;c⶧{CFO ӓӗ܇CבʗW͘W)/(WVӮe_rK +/K#yY2Klq3Le|hGl *kbv3"VR.7uґڔêk&n%H} "[%NH{3{7bf;h$~^񤏎?#pr\n!!+{y)@cWzߑ|>r>z8kT +u&SAxv٩\= -䦹Y'5vĆ@2d1qIt63ZO%ȯWbgLh#ӡЉ!Dhъ ܎H~ȯQfQgG_O[pSG3uP~CŲv- +RVI~3kF2dv[lQɬےو|N~ N>bN>bN~.sbÜ09_t;pLfc ?K+.v-_j;m$F&kK]#:eu[_[;6)|)M\樴n)x%;/+ ?Aۮ=:9};N/8(.jXSkߤ]>֑n޶e^޺V.法_gK϶N.~9 +^_l~o[˪퉰-F9G6tj+C\;er N۵j|Auhe)Vv K?ogv:· vӝآF +ZGS8p\ong뀰nghO#Yp=.緷3.^Z5mH6nƭcla1:673حMƍ ɸg]l,uy]߲u`[6v O'So9Fi6$V9 &vtdv#9iPoZ%n;q]t1'1˓D4%фI37gIQ}"qxы\fWGmI*q_WxpU馟X+2x#z|1[W/͓ |.@n;S+NFEXֱizYu`4d)bqJaVZܾW4^P.|nT)#Ts$+Aݴ= xB.-,A^!fߜRbd2.&jJ"& MTJWTBy" ` g0 >thbg&2tjݰtRrh$`XNڐA7%;G['knGn2ِΑ[ܢ~u8ޑQD z4]w^NBNSv P"uz/////(^FR;J \V.q +XeA?UP;KZ[r+&akY/<&JC*ZR+kӹ =]~%/ڿzI ݒjT6?zRB>SIL}"3UmoKN,)SR+cq*+hsAwsKx_*[*%[$LT[ c ytmk>+Rۿ1QyTA%VȧayL!dl~ɺVnY=B_7U +xaa`[zE@Uv~JK^t?Wnkn1v"gON^NլPx>goncOy{m9MM͍ͧf9u59gZrߔ>WDtS-˩Xt= SXs4!,-iozaӟsd95ޡz1\3gNmh>%^"y:xa_BA۽oXMM,BV7kΏ׆.G~%\ClHأmvMo)6l !ɥ&(Ov{lh9v(<†oٰŮy T;Oo]=ʛlhMy $L<Ն6]b Wc:l Աh42H8=b4"چvjX?d>Ά.;~&lHS5`?t6ܜn?}ߵI^ٰNU=_>dy +[ weYާHX}cGߦRY*zWOLMomY@Mo,o{Fc/Vhк'c%V6>Mѧ)_;N6=ŧb3t((i_6>5MU76`&W9^X¯PP%v?ey{vcF-B*]ſ~LboZ`oh8xJ A*v^JNnK5Hc ߳vݓ\|&7}.mlt00ٚss[s%$s=MgtL d /=+MfD]?_6knii̹hkRïtù(L#qB|{YGD&I*oɕTEq0#3,‘An-acoFKU +ƚMx[> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${INSTALL_PATH} failed" + exit 1 + fi + fi + targetdir=${INSTALL_PATH} +elif [ -n "${ASCEND_CUSTOM_OPP_PATH}" ]; then + if [ ! -d ${ASCEND_CUSTOM_OPP_PATH} ]; then + mkdir -p ${ASCEND_CUSTOM_OPP_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${ASCEND_CUSTOM_OPP_PATH} failed" + fi + fi + targetdir=${ASCEND_CUSTOM_OPP_PATH} +else + if [ "x${ASCEND_OPP_PATH}" == "x" ]; then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 + fi + targetdir="${ASCEND_OPP_PATH}" +fi + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + has_same_file=-1 + for file_a in ${sourcedir}/$vendordir/$1/*; do + file_b=${file_a##*/}; + if [ "ls ${targetdir}/$vendordir/$1" = "" ]; then + log "[INFO] ${targetdir}/$vendordir/$1 is empty !!" + return 1 + fi + grep -q $file_b <<<`ls ${targetdir}/$vendordir/$1`; + if [[ $? -eq 0 ]]; then + echo -n "${file_b} " + has_same_file=0 + fi + done + if [ 0 -eq $has_same_file ]; then + if test $QUIET = "n"; then + echo "[INFO]: has old version in ${targetdir}/$vendordir/$1, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + + while true + do + read orn + if [ "$orn" = n ]; then + return 0 + elif [ "$orn" = m ]; then + break; + elif [ "$0rn" = r ]; then + [ -n "${targetdir}/$vendordir/$1/" ] && rm -rf "${targetdir}/$vendordir/$1"/* + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace or merge old ops $1 files .g....." + fi + + log "copy new ops $1 files ......" + if [ -d ${targetdir}/$vendordir/$1/ ]; then + chmod -R +w "$targetdir/$vendordir/$1/" >/dev/null 2>&1 + fi + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} +upgrade_proto() +{ + if [ ! -f ${sourcedir}/$vendordir/custom.proto ]; then + log "[INFO] no need to upgrade custom.proto files" + return 0 + fi + if [ ! -d ${targetdir}/$vendordir/framework/caffe ];then + log "[INFO] create ${targetdir}/$vendordir/framework/caffe." + mkdir -p ${targetdir}/$vendordir/framework/caffe + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/framework/caffe failed" + return 1 + fi + else + if [ -f ${targetdir}/$vendordir/framework/caffe/custom.proto ]; then + # 有老版本,判断是否要覆盖式安装 + if test $QUIET = "n"; then + echo "[INFO] ${targetdir}/$vendordir/framework/caffe has old version"\ + "custom.proto file. Do you want to replace? [y/n] " + + while true + do + read yn + if [ "$yn" = n ]; then + return 0 + elif [ "$yn" = y ]; then + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace old caffe.proto files ......" + fi + chmod -R +w "$targetdir/$vendordir/framework/caffe/" >/dev/null 2>&1 + cp -rf ${sourcedir}/$vendordir/custom.proto ${targetdir}/$vendordir/framework/caffe/ + if [ $? -ne 0 ];then + log "[ERROR] copy new custom.proto failed" + return 1 + fi + log "[INFO] copy custom.proto success" + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +delete_optiling_file() +{ + if [ ! -d ${targetdir}/vendors ];then + log "[INFO] $1 not exist, no need to uninstall" + return 0 + fi + sys_info=$(uname -m) + if [ ! -d ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/lib/linux/${sys_info} ];then + rm -rf ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/liboptiling.so + fi + return 0 +} + +log "[INFO] copy uninstall sh success" + +if [ ! -d ${targetdir}/vendors ];then + log "[INFO] create ${targetdir}/vendors." + mkdir -p ${targetdir}/vendors + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/vendors failed" + return 1 + fi +fi +chmod u+w ${targetdir}/vendors + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +delete_optiling_file op_impl +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +upgrade_proto +if [ $? -ne 0 ];then + exit 1 +fi + +# set the set_env.bash +if [ -n "${INSTALL_PATH}" ] && [ -d ${INSTALL_PATH} ]; then + _ASCEND_CUSTOM_OPP_PATH=${targetdir}/${vendordir} + bin_path="${_ASCEND_CUSTOM_OPP_PATH}/bin" + set_env_variable="#!/bin/bash\nexport ASCEND_CUSTOM_OPP_PATH=${_ASCEND_CUSTOM_OPP_PATH}:\${ASCEND_CUSTOM_OPP_PATH}" + if [ ! -d ${bin_path} ]; then + mkdir -p ${bin_path} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${bin_path} failed" + exit 1 + fi + fi + echo -e ${set_env_variable} > ${bin_path}/set_env.bash + if [ $? -ne 0 ]; then + log "[ERROR] write ASCEND_CUSTOM_OPP_PATH to set_env.bash failed" + exit 1 + else + log "[INFO] using requirements: when custom module install finished or before you run the custom module, \ + execute the command [ source ${bin_path}/set_env.bash ] to set the environment path" + fi +else + config_file=${targetdir}/vendors/config.ini + if [ ! -f ${config_file} ]; then + touch ${config_file} + chmod 640 ${config_file} + echo "load_priority=$vendor_name" > ${config_file} + if [ $? -ne 0 ];then + echo "echo load_priority failed" + exit 1 + fi + else + found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" + found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') + vendor=$(echo $found_vendor | tr -s ' ' ',') + if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" + fi + fi +fi + +chmod u-w ${targetdir}/vendors + +if [ -d ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/ ]; then + chmod -R 440 ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/* >/dev/null 2>&1 +fi +if [ -f ${targetdir}/ascend_install.info ]; then + chmod -R 440 ${targetdir}/ascend_install.info +fi +if [ -f ${targetdir}/scene.info ]; then + chmod -R 440 ${targetdir}/scene.info +fi +if [ -f ${targetdir}/version.info ]; then + chmod -R 440 ${targetdir}/version.info +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h new file mode 100644 index 0000000000000000000000000000000000000000..9b58ad3d7da8d9a0f59c48a460b401621f637513 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h @@ -0,0 +1,55 @@ + +/* + * calution: this file was generated automaticlly donot change it. +*/ + +#ifndef ACLNN_REDUCE_SUM_H_ +#define ACLNN_REDUCE_SUM_H_ + +#include "aclnn/acl_meta.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* funtion: aclnnReduceSumGetWorkspaceSize + * parameters : + * x : required + * axis : required + * keepDimsOptional : optional + * ignoreNanOptional : optional + * dtypeOptional : optional + * out : required + * workspaceSize : size of workspace(output). + * executor : executor context(output). + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSumGetWorkspaceSize( + const aclTensor *x, + const aclTensor *axis, + bool keepDimsOptional, + bool ignoreNanOptional, + char *dtypeOptional, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor); + +/* funtion: aclnnReduceSum + * parameters : + * workspace : workspace memory addr(input). + * workspaceSize : size of workspace(input). + * executor : executor context(input). + * stream : acl stream. + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSum( + void *workspace, + uint64_t workspaceSize, + aclOpExecutor *executor, + aclrtStream stream); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so new file mode 100644 index 0000000000000000000000000000000000000000..670beb70b7be554167a49645f8d56aacfa76751b Binary files /dev/null and b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so differ diff --git a/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h new file mode 100644 index 0000000000000000000000000000000000000000..bd92dfc8e50c484c0f3be8db7d437fec17d8cae7 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h @@ -0,0 +1,20 @@ +#ifndef OP_PROTO_H_ +#define OP_PROTO_H_ + +#include "graph/operator_reg.h" +#include "register/op_impl_registry.h" + +namespace ge { + +REG_OP(ReduceSum) + .INPUT(x, ge::TensorType::ALL()) + .INPUT(axis, ge::TensorType::ALL()) + .OUTPUT(y, ge::TensorType::ALL()) + .ATTR(keep_dims, Bool, false) + .ATTR(ignore_nan, Bool, false) + .ATTR(dtype, String, "float") + .OP_END_FACTORY_REG(ReduceSum); + +} + +#endif diff --git a/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh @@ -0,0 +1,151 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [[ "x${ASCEND_OPP_PATH}" == "x" ]];then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 +fi + +targetdir=${ASCEND_OPP_PATH} + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + vendor_installed_dir=$(ls "$targetdir/vendors" 2> /dev/null) + for i in $vendor_installed_dir;do + vendor_installed_file=$(ls "$vendor_installed_dir/$vendor_name/$i" 2> /dev/null) + if [ "$i" = "$vendor_name" ] && [ "$vendor_installed_file" != "" ]; then + echo "[INFO]: $vendor_name custom opp package has been installed on the path $vendor_installed_dir, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + fi + while true + do + read mrn + if [ "$mrn" = m ]; then + break + elif [ "$mrn" = r ]; then + [ -n "$vendor_installed_file"] && rm -rf "$vendor_installed_file" + break + elif [ "$mrn" = n ]; then + return 0 + else + echo "[WARNING]: Input error, please input m or r or n to choose!" + fi + done + done + log "[INFO] replace old ops $1 files ......" + fi + + log "copy new ops $1 files ......" + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +log "[INFO] copy uninstall sh success" + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +config_file=${targetdir}/vendors/config.ini +found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" +found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') +vendor=$(echo $found_vendor | tr -s ' ' ',') +if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" +fi + +changemode() +{ + if [ -d ${targetdir} ];then + chmod -R 550 ${targetdir}>/dev/null 2>&1 + fi + + return 0 +} +echo "[ops_custom]changemode..." +#changemode +if [ $? -ne 0 ];then + exit 1 +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/Is_standard/build_out/autogen/aclnn_reduce_sum.cpp b/precision_Problem/Is_standard/build_out/autogen/aclnn_reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b0d111731c2f533763a50a39a642cc4934e93a77 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/autogen/aclnn_reduce_sum.cpp @@ -0,0 +1,201 @@ +#include +#include "graph/types.h" +#include "aclnn_reduce_sum.h" + +namespace { +typedef struct { + uint32_t id; + const char *funcName; + bool hasReg; +} NnopbaseDfxId; +typedef struct { + ge::DataType dtype; + ge::Format format; +} TensorDesc; +typedef struct { + TensorDesc *inputsDesc; + size_t inputsNum; + TensorDesc *outputsDesc; + size_t outputsNum; +} SupportInfo; +typedef struct { + SupportInfo *supportInfo; + size_t num; +} OpSocSupportInfo; +typedef struct { + OpSocSupportInfo *socSupportInfo; + size_t num; +} OpSupportList; +enum SocType { + SOC_VERSION_ASCEND910A = 1, + SOC_VERSION_ASCEND910B, + SOC_VERSION_ASCEND910C, + SOC_VERSION_ASCEND910D, + SOC_VERSION_ASCEND310P, + SOC_VERSION_ASCEND310B, + SOC_VERSION_BS9SX1A, + SOC_VERSION_MC61AM21A, + SOC_VERSION_ASCEND610Lite +}; +enum NnopbaseAttrDtype { + kNnopbaseBool = 0U, + kNnopbaseFloat, + kNnopbaseInt, + kNnopbaseString, + kNnopbaseAttrEnd +}; +uint32_t socSupportList[] = {SOC_VERSION_ASCEND310B}; +uint32_t socSupportListLen = 1; + +TensorDesc inputDesc0_0[2] = + {{ge::DT_FLOAT, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc inputDesc0_1[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc inputDesc0_2[2] = + {{ge::DT_INT32, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc inputDesc0_3[2] = + {{ge::DT_INT8, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc outputDesc0_0[1] = + {{ge::DT_FLOAT, ge::FORMAT_ND}}; +TensorDesc outputDesc0_1[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc0_2[1] = + {{ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc outputDesc0_3[1] = + {{ge::DT_INT8, ge::FORMAT_ND}}; +SupportInfo list0_0 = {inputDesc0_0, 2, outputDesc0_0, 1}; +SupportInfo list0_1 = {inputDesc0_1, 2, outputDesc0_1, 1}; +SupportInfo list0_2 = {inputDesc0_2, 2, outputDesc0_2, 1}; +SupportInfo list0_3 = {inputDesc0_3, 2, outputDesc0_3, 1}; +SupportInfo supportInfo0[4] = {list0_0, list0_1, list0_2, list0_3}; +OpSocSupportInfo socSupportInfo0= {supportInfo0, 4}; + +OpSocSupportInfo opSocSupportList[1] = {socSupportInfo0}; +OpSupportList supportList = {opSocSupportList, 1}; + +[[maybe_unused]] uint32_t NNOPBASE_ReduceSum = 0U; +} // namespace + +extern void NnopbaseOpLogE(const aclnnStatus code, const char *const expr); + +#ifdef __cplusplus +extern "C" { +#endif + +extern aclnnStatus NnopbaseCreateExecutorSpace(void **space); +extern void *NnopbaseGetExecutor(void *space, const char *opType, char *inputsDesc, uint32_t inputNum, + char *outputsDesc, uint32_t outputNum, char *attrsDesc, uint32_t attrsNum); +extern aclnnStatus NnopbaseAddInput(void *executor, const aclTensor *tensor, const uint32_t index); +extern aclnnStatus NnopbaseAddIgnoreContinuesInput(void *executor, + const aclTensor *tensor, const uint32_t index); +extern aclnnStatus NnopbaseAddIntArrayInput(void *executor, const aclIntArray *array, const uint32_t index); +extern aclnnStatus NnopbaseAddBoolArrayInput(void *executor, const aclBoolArray *array, const uint32_t index); +extern aclnnStatus NnopbaseAddFloatArrayInput(void *executor, const aclFloatArray *array, const uint32_t index); +extern aclnnStatus NnopbaseAddOutput(void *executor, const aclTensor *tensor, const uint32_t index); +extern aclnnStatus NnopbaseAddDynamicInput(void *executor, const aclTensorList *tensor_list, const uint32_t index); +extern aclnnStatus NnopbaseAddDynamicOutput(void *executor, const aclTensorList *tensor_list, const uint32_t index); +extern aclnnStatus NnopbaseAddAttrWithDtype(void *executor, void *attrAddr, size_t attrLen, const size_t index, const NnopbaseAttrDtype dtype); +extern aclnnStatus NnopbaseAddIntArrayAttr(void *executor, const aclIntArray* array, const size_t index); +extern aclnnStatus NnopbaseAddFloatArrayAttr(void *executor, const aclFloatArray* array, const size_t index); +extern aclnnStatus NnopbaseAddBoolArrayAttr(void *executor, const aclBoolArray* array, const size_t index); +extern aclnnStatus NnopbaseAddArrayAttrWithDtype(void *executor, void *array, const size_t len, const size_t elementSize, const size_t index, const NnopbaseAttrDtype dtype); +extern uint64_t NnopbaseMsprofSysTime(); +extern aclnnStatus NnopbaseAddTilingId(void *executor, NnopbaseDfxId *tilingId); +extern void NnopbaseReportApiInfo(const uint64_t beginTime, NnopbaseDfxId &dfxId); +extern aclnnStatus NnopbaseRunForWorkspace(void *executor, uint64_t *workspaceLen); +extern aclnnStatus NnopbaseRunWithWorkspace(void *executor, aclrtStream stream, void *workspace, uint64_t workspaceSize); +extern aclnnStatus NnopbaseAddSupportList(void *executor, OpSupportList *list, uint32_t *socSupportList, size_t socSupportListLen); +extern aclnnStatus NnopbaseAddScalarInput(void *executor, const aclScalar *scalar, const uint32_t index, const int32_t srcIndex, const ge::DataType dtype); +extern aclnnStatus NnopbaseAddScalarListInput(void *executor, const aclScalarList *scalarList, const uint32_t index, const int32_t srcIndex, const ge::DataType dtype); +extern void NnopbaseAddOpTypeId(void *executor, const uint32_t opTypeId); + +#define ACLNN_SUCCESS 0 +#define ACLNN_ERR_PARAM_NULLPTR 161001 + +#define NNOPBASE_ASSERT_OK_RETVAL(v) \ + do { \ + const aclnnStatus _chk_stutus = (v); \ + if (_chk_stutus != ACLNN_SUCCESS) { \ + NnopbaseOpLogE(_chk_stutus, #v); \ + return _chk_stutus; \ + } \ + } while (false) + +#define NNOPBASE_ASSERT_NOTNULL_RETVAL(v) \ + do { \ + if ((v) == nullptr) { \ + NnopbaseOpLogE(ACLNN_ERR_PARAM_NULLPTR, #v " != nullptr"); \ + return ACLNN_ERR_PARAM_NULLPTR; \ + } \ + } while (false) + +aclnnStatus aclnnReduceSumGetWorkspaceSize( + const aclTensor *x, + const aclTensor *axis, + bool keepDimsOptional, + bool ignoreNanOptional, + char *dtypeOptional, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + static NnopbaseDfxId tilingId = {0x60000, "aclnnReduceSumTiling", false}; + void *nnopExecutor; + static void *executorSpace = NULL; + const char *opType = "ReduceSum"; + char inputDesc[] = {1, 1}; + char outputDesc[] = {1}; + char attrDesc[] = {0, 0, 0}; + + NNOPBASE_ASSERT_NOTNULL_RETVAL(x); + NNOPBASE_ASSERT_NOTNULL_RETVAL(axis); + NNOPBASE_ASSERT_NOTNULL_RETVAL(out); + + if (!executorSpace) { + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseCreateExecutorSpace(&executorSpace)); + } + nnopExecutor = NnopbaseGetExecutor(executorSpace, opType, inputDesc, sizeof(inputDesc) / sizeof(char), outputDesc, + sizeof(outputDesc) / sizeof(char), attrDesc, sizeof(attrDesc) / sizeof(char)); + NNOPBASE_ASSERT_NOTNULL_RETVAL(nnopExecutor); + NNOPBASE_ASSERT_NOTNULL_RETVAL(executor); + *executor = reinterpret_cast(nnopExecutor); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddTilingId(*executor, &tilingId)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddInput(*executor, x, 0)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddInput(*executor, axis, 1)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(&keepDimsOptional), sizeof(bool), 0, kNnopbaseBool)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(&ignoreNanOptional), sizeof(bool), 1, kNnopbaseBool)); + if (dtypeOptional) { + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(dtypeOptional), strlen(dtypeOptional) + 1, 2, kNnopbaseString)); + } else { + static char *dtypeOptionalDef = "float"; + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(dtypeOptionalDef), strlen(dtypeOptionalDef) + 1, 2, kNnopbaseString)); + } + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddOutput(*executor, out, 0)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddSupportList(*executor, &supportList, socSupportList, socSupportListLen)); + aclnnStatus ret = NnopbaseRunForWorkspace(*executor, workspaceSize); + NnopbaseReportApiInfo(timeStamp, dfxId); + return ret; +} + +aclnnStatus aclnnReduceSum( + void *workspace, + uint64_t workspaceSize, + aclOpExecutor *executor, + aclrtStream stream) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + aclnnStatus ret = NnopbaseRunWithWorkspace(executor, stream, workspace, workspaceSize); + NnopbaseReportApiInfo(timeStamp, dfxId); + return ret; +} + +#ifdef __cplusplus +} +#endif diff --git a/precision_Problem/Is_standard/build_out/autogen/aclnn_reduce_sum.h b/precision_Problem/Is_standard/build_out/autogen/aclnn_reduce_sum.h new file mode 100644 index 0000000000000000000000000000000000000000..9b58ad3d7da8d9a0f59c48a460b401621f637513 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/autogen/aclnn_reduce_sum.h @@ -0,0 +1,55 @@ + +/* + * calution: this file was generated automaticlly donot change it. +*/ + +#ifndef ACLNN_REDUCE_SUM_H_ +#define ACLNN_REDUCE_SUM_H_ + +#include "aclnn/acl_meta.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* funtion: aclnnReduceSumGetWorkspaceSize + * parameters : + * x : required + * axis : required + * keepDimsOptional : optional + * ignoreNanOptional : optional + * dtypeOptional : optional + * out : required + * workspaceSize : size of workspace(output). + * executor : executor context(output). + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSumGetWorkspaceSize( + const aclTensor *x, + const aclTensor *axis, + bool keepDimsOptional, + bool ignoreNanOptional, + char *dtypeOptional, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor); + +/* funtion: aclnnReduceSum + * parameters : + * workspace : workspace memory addr(input). + * workspaceSize : size of workspace(input). + * executor : executor context(input). + * stream : acl stream. + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSum( + void *workspace, + uint64_t workspaceSize, + aclOpExecutor *executor, + aclrtStream stream); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/precision_Problem/Is_standard/build_out/autogen/aic-ascend310b-ops-info.ini b/precision_Problem/Is_standard/build_out/autogen/aic-ascend310b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..b6ad90c780db3a377dbf118c66ad4a7ea465cea7 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/autogen/aic-ascend310b-ops-info.ini @@ -0,0 +1,40 @@ +[ReduceSum] +input0.name=x +input0.dtype=float32,float16,int32,int8 +input0.format=ND,ND,ND,ND +input0.unknownshape_format=ND,ND,ND,ND +input0.shape=all +input0.paramType=required +input1.name=axis +input1.dtype=int32,int32,int32,int32 +input1.format=ND,ND,ND,ND +input1.unknownshape_format=ND,ND,ND,ND +input1.shape=all +input1.paramType=required +output0.name=y +output0.dtype=float32,float16,int32,int8 +output0.format=ND,ND,ND,ND +output0.unknownshape_format=ND,ND,ND,ND +output0.shape=all +output0.paramType=required +attr.list=keep_dims,ignore_nan,dtype +attr_keep_dims.type=bool +attr_keep_dims.value=all +attr_keep_dims.paramType=optional +attr_keep_dims.defaultValue=false +attr_ignore_nan.type=bool +attr_ignore_nan.value=all +attr_ignore_nan.paramType=optional +attr_ignore_nan.defaultValue=false +attr_dtype.type=str +attr_dtype.value=all +attr_dtype.paramType=optional +attr_dtype.defaultValue=float +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=reduce_sum +opInterface.value=reduce_sum diff --git a/precision_Problem/Is_standard/build_out/autogen/custom_compile_options.ini b/precision_Problem/Is_standard/build_out/autogen/custom_compile_options.ini new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/precision_Problem/Is_standard/build_out/autogen/libascend_all_ops.so b/precision_Problem/Is_standard/build_out/autogen/libascend_all_ops.so new file mode 100644 index 0000000000000000000000000000000000000000..b0f4a44a1bb1943cfa12cfe43788685e3ee00f04 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/autogen/libascend_all_ops.so differ diff --git a/precision_Problem/Is_standard/build_out/autogen/op_proto.cc b/precision_Problem/Is_standard/build_out/autogen/op_proto.cc new file mode 100644 index 0000000000000000000000000000000000000000..ea46ba47b545dc908a6c1eb639b05377ac58b9bf --- /dev/null +++ b/precision_Problem/Is_standard/build_out/autogen/op_proto.cc @@ -0,0 +1,5 @@ +#include "op_proto.h" +namespace ge { + +} + diff --git a/precision_Problem/Is_standard/build_out/autogen/op_proto.h b/precision_Problem/Is_standard/build_out/autogen/op_proto.h new file mode 100644 index 0000000000000000000000000000000000000000..bd92dfc8e50c484c0f3be8db7d437fec17d8cae7 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/autogen/op_proto.h @@ -0,0 +1,20 @@ +#ifndef OP_PROTO_H_ +#define OP_PROTO_H_ + +#include "graph/operator_reg.h" +#include "register/op_impl_registry.h" + +namespace ge { + +REG_OP(ReduceSum) + .INPUT(x, ge::TensorType::ALL()) + .INPUT(axis, ge::TensorType::ALL()) + .OUTPUT(y, ge::TensorType::ALL()) + .ATTR(keep_dims, Bool, false) + .ATTR(ignore_nan, Bool, false) + .ATTR(dtype, String, "float") + .OP_END_FACTORY_REG(ReduceSum); + +} + +#endif diff --git a/precision_Problem/Is_standard/build_out/cmake_install.cmake b/precision_Problem/Is_standard/build_out/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8d97a77cc9a0d3ab0f3099636625a49820ce77e1 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: /Package_Cann/test/No_standard + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Package_Cann/test/No_standard/build_out/framework/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Package_Cann/test/No_standard/build_out/op_host/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Package_Cann/test/No_standard/build_out/op_kernel/cmake_install.cmake") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE DIRECTORY PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_READ FILES "/Package_Cann/test/No_standard/build_out/scripts/") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/custom.proto") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/version.info") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/Package_Cann/test/No_standard/build_out/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/precision_Problem/Is_standard/build_out/custom_opp_ubuntu_aarch64.run b/precision_Problem/Is_standard/build_out/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..68064786722235034ed8b67ce532cce276c8dec0 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,1040 @@ +#!/bin/bash +# This script was generated using Makeself 2.4.5 +# The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL) +# 2022.3.19-Modified the MS_Help function and some options +# Huawei Technologies Co., Ltd. + +ORIG_UMASK=`umask` + +CRCsum="3041702791" +MD5="00000000000000000000000000000000" +SHA="83564fdb0efb6398c2c16910aa031cf959b4e60afe89867f33033a9c0e1bdeaa" +SIGNATURE="" +TMPROOT=${TMPDIR:="$HOME"} +if ! test -d "$TMPROOT"; then + TMPROOT="$PWD" +fi +export TMPDIR="$TMPROOT" +USER_PWD="$PWD" +if ! test -d "$USER_PWD"; then + exit 1 +fi +export USER_PWD +ARCHIVE_DIR=`dirname "$0"` +export ARCHIVE_DIR + +name_of_file="$0 " +pwd_of_file="$PWD" +label="version:1.0" +script="./install.sh" +scriptargs="" +cleanup_script="" +licensetxt="" +helpheader=' --install-path Install operator package to specific dir path +' +targetdir="makeself-397763-20240915013443" +filesizes="132381" +totalsize="132381" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="672" + +print_cmd_arg="" +if type printf > /dev/null; then + print_cmd="printf" +elif test -x /usr/ucb/echo; then + print_cmd="/usr/ucb/echo" +else + print_cmd="echo" +fi + +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:$PATH + export PATH +fi + +if test -d /usr/sfw/bin; then + PATH=$PATH:/usr/sfw/bin + export PATH +fi + +unset CDPATH + +MS_Printf() +{ + $print_cmd $print_cmd_arg "$1" +} + +MS_PrintLicense() +{ + PAGER=${PAGER:=more} + if test x"$licensetxt" != x; then + PAGER_PATH=`exec <&- 2>&-; which $PAGER || command -v $PAGER || type $PAGER` + if test -x "$PAGER_PATH"; then + echo "$licensetxt" | $PAGER + else + echo "$licensetxt" + fi + if test x"$accept" != xy; then + while true + do + MS_Printf "Please type y to accept, n otherwise: " + read yn + if test x"$yn" = xn; then + keep=n + eval $finish; exit 1 + break; + elif test x"$yn" = xy; then + break; + fi + done + fi + fi +} + +MS_diskspace() +{ + ( + df -kP "$1" | tail -1 | awk '{ if ($4 ~ /%/) {print $3} else {print $4} }' + ) +} + +MS_dd() +{ + blocks=`expr $3 / 1024` + bytes=`expr $3 % 1024` + # Test for ibs, obs and conv feature + if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then + dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ + { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ + test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null + else + dd if="$1" bs=$2 skip=1 2> /dev/null + fi +} + +MS_dd_Progress() +{ + if test x"$noprogress" = xy; then + MS_dd "$@" + return $? + fi + file="$1" + offset=$2 + length=$3 + pos=0 + bsize=4194304 + while test $bsize -gt $length; do + bsize=`expr $bsize / 4` + done + blocks=`expr $length / $bsize` + bytes=`expr $length % $bsize` + ( + dd ibs=$offset skip=1 2>/dev/null + pos=`expr $pos \+ $bsize` + MS_Printf " 0%% " 1>&2 + if test $blocks -gt 0; then + while test $pos -le $length; do + dd bs=$bsize count=1 2>/dev/null + pcent=`expr $length / 100` + pcent=`expr $pos / $pcent` + if test $pcent -lt 100; then + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + if test $pcent -lt 10; then + MS_Printf " $pcent%% " 1>&2 + else + MS_Printf " $pcent%% " 1>&2 + fi + fi + pos=`expr $pos \+ $bsize` + done + fi + if test $bytes -gt 0; then + dd bs=$bytes count=1 2>/dev/null + fi + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + MS_Printf " 100%% " 1>&2 + ) < "$file" +} + +MS_Help() +{ + cat << EOH >&2 +Usage: $0 [options] +Options: + --help | -h Print this message + --info Print embedded info : title, default target directory, embedded script ... + --list Print the list of files in the archive + --check Checks integrity and version dependency of the archive + --quiet Quiet install mode, skip human-computer interactions + --nox11 Do not spawn an xterm + --noexec Do not run embedded script + --extract= Extract directly to a target directory (absolute or relative) + Usually used with --noexec to just extract files without running + --tar arg1 [arg2 ...] Access the contents of the archive through the tar command +${helpheader} +EOH +} + +MS_Verify_Sig() +{ + GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + test -x "$GPG_PATH" || GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + test -x "$MKTEMP_PATH" || MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + temp_sig=`mktemp -t XXXXX` + echo $SIGNATURE | base64 --decode > "$temp_sig" + gpg_output=`MS_dd "$1" $offset $totalsize | LC_ALL=C "$GPG_PATH" --verify "$temp_sig" - 2>&1` + gpg_res=$? + rm -f "$temp_sig" + if test $gpg_res -eq 0 && test `echo $gpg_output | grep -c Good` -eq 1; then + if test `echo $gpg_output | grep -c $sig_key` -eq 1; then + test x"$quiet" = xn && echo "GPG signature is good" >&2 + else + echo "GPG Signature key does not match" >&2 + exit 2 + fi + else + test x"$quiet" = xn && echo "GPG signature failed to verify" >&2 + exit 2 + fi +} + +MS_Check() +{ + OLD_PATH="$PATH" + PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest` + PATH="$OLD_PATH" + + SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum` + test -x "$SHA_PATH" || SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum` + + if test x"$quiet" = xn; then + MS_Printf "Verifying archive integrity..." + fi + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + fsize=`cat "$1" | wc -c | tr -d " "` + if test $totalsize -ne `expr $fsize - $offset`; then + echo " Unexpected archive size." >&2 + exit 2 + fi + verb=$2 + i=1 + for s in $filesizes + do + crc=`echo $CRCsum | cut -d" " -f$i` + if test -x "$SHA_PATH"; then + if test x"`basename $SHA_PATH`" = xshasum; then + SHA_ARG="-a 256" + fi + sha=`echo $SHA | cut -d" " -f$i` + if test x"$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded SHA256 checksum." >&2 + else + shasum=`MS_dd_Progress "$1" $offset $s | eval "$SHA_PATH $SHA_ARG" | cut -b-64`; + if test x"$shasum" != x"$sha"; then + echo "Error in SHA256 checksums: $shasum is different from $sha" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " SHA256 checksums are OK." >&2 + fi + crc="0000000000"; + fi + fi + if test -x "$MD5_PATH"; then + if test x"`basename $MD5_PATH`" = xdigest; then + MD5_ARG="-a md5" + fi + md5=`echo $MD5 | cut -d" " -f$i` + if test x"$md5" = x00000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 + else + md5sum=`MS_dd_Progress "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; + if test x"$md5sum" != x"$md5"; then + echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " MD5 checksums are OK." >&2 + fi + crc="0000000000"; verb=n + fi + fi + if test x"$crc" = x0000000000; then + test x"$verb" = xy && echo " $1 does not contain a CRC checksum." >&2 + else + sum1=`MS_dd_Progress "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'` + if test x"$sum1" != x"$crc"; then + echo "Error in checksums: $sum1 is different from $crc" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " CRC checksums are OK." >&2 + fi + fi + i=`expr $i + 1` + offset=`expr $offset + $s` + done + if test x"$quiet" = xn; then + echo " All good." + fi +} + +MS_Decompress() +{ + if test x"$decrypt_cmd" != x""; then + { eval "$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "gzip -cd" + else + eval "gzip -cd" + fi + + if test $? -ne 0; then + echo " ... Decompression failed." >&2 + fi +} + +UnTAR() +{ + if test x"$quiet" = xn; then + tar $1vf - 2>&1 || { echo " ... Extraction failed." >&2; kill -15 $$; } + else + tar $1f - 2>&1 || { echo Extraction failed. >&2; kill -15 $$; } + fi +} + +MS_exec_cleanup() { + if test x"$cleanup" = xy && test x"$cleanup_script" != x""; then + cleanup=n + cd "$tmpdir" + eval "\"$cleanup_script\" $scriptargs $cleanupargs" + fi +} + +MS_cleanup() +{ + echo 'Signal caught, cleaning up' >&2 + MS_exec_cleanup + cd "$TMPROOT" + rm -rf "$tmpdir" + eval $finish; exit 15 +} + +Script_Args_Check() +{ + script_supported_args=$(echo ${helpheader} | grep -o -E "\-\-[^ ]+" | awk -F"=" {'print $1'}) + arg_to_test=$(echo $1|awk -F"=" {'print $1'}) + + for arg in ${script_supported_args}; + do + if test x"$arg_to_test" = x"$arg" ;then + return + fi + done + + MS_Help + exit 1 +} + +finish=true +xterm_loop= +noprogress=n +nox11=n +copy=none +ownership=n +verbose=n +cleanup=y +cleanupargs= +sig_key= + +initargs="$@" + +while [ -n "$*" ] +do + case "$1" in + -h | --help) + MS_Help + exit 0 + ;; + -q | --quiet) + quiet=y + noprogress=y + shift + ;; + --info) + echo Identification: "$label" + echo Target directory: "$targetdir" + echo Uncompressed size: 380 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun Sep 15 01:34:43 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Package_Cann/test/No_standard/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Package_Cann/test/No_standard/cmake/util/makeself/makeself-header.sh\" \\ + \"--help-header\" \\ + \"./help.info\" \\ + \"--gzip\" \\ + \"--complevel\" \\ + \"4\" \\ + \"--nomd5\" \\ + \"--sha256\" \\ + \"./\" \\ + \"custom_opp_ubuntu_aarch64.run\" \\ + \"version:1.0\" \\ + \"./install.sh\"" + if test x"$script" != x; then + echo Script run after extraction: + echo " " $script $scriptargs + fi + if test x"" = xcopy; then + echo "Archive will copy itself to a temporary location" + fi + if test x"n" = xy; then + echo "Root permissions required for extraction" + fi + if test x"n" = xy; then + echo "directory $targetdir is permanent" + else + echo "$targetdir will be removed after extraction" + fi + exit 0 + ;; + --list) + echo Target directory: $targetdir + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | UnTAR t + offset=`expr $offset + $s` + done + exit 0 + ;; + --tar) + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + arg1="$2" + shift 2 || { MS_Help; exit 1; } + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | tar "$arg1" - "$@" + offset=`expr $offset + $s` + done + exit 0 + ;; + --check) + MS_Check "$0" y + scriptargs="$scriptargs $1" + shift + ;; + --noexec) + script="" + cleanup_script="" + shift + ;; + --extract=*) + keep=y + targetdir=`echo $1 | cut -d"=" -f2 ` + if ! shift; then MS_Help; exit 1; fi + ;; + --nox11) + nox11=y + shift + ;; + --xwin) + if test "n" = n; then + finish="echo Press Return to close this window...; read junk" + fi + xterm_loop=1 + shift + ;; + --phase2) + copy=phase2 + shift + ;; + --repack | --repack-path=*) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + if [[ ! "$1" =~ ^-.* ]]; then + scriptargs="$scriptargs '$1'" + shift + fi + ;; + *) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + ;; + esac +done + +quiet_para="" +if test x"$quiet" = xy; then + quiet_para="--quiet " +fi +scriptargs="--$name_of_file""--\"$pwd_of_file\""" $quiet_para""$scriptargs" + +if test x"$quiet" = xy -a x"$verbose" = xy; then + echo Cannot be verbose and quiet at the same time. >&2 + exit 1 +fi + +if test x"n" = xy -a `id -u` -ne 0; then + echo "Administrative privileges required for this archive (use su or sudo)" >&2 + exit 1 +fi + +if test x"$copy" \!= xphase2; then + MS_PrintLicense +fi + +case "$copy" in +copy) + tmpdir="$TMPROOT"/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$ + mkdir "$tmpdir" || { + echo "Could not create temporary directory $tmpdir" >&2 + exit 1 + } + SCRIPT_COPY="$tmpdir/makeself" + echo "Copying to a temporary location..." >&2 + cp "$0" "$SCRIPT_COPY" + chmod +x "$SCRIPT_COPY" + cd "$TMPROOT" + exec "$SCRIPT_COPY" --phase2 -- $initargs + ;; +phase2) + finish="$finish ; rm -rf `dirname $0`" + ;; +esac + +if test x"$nox11" = xn; then + if tty -s; then # Do we have a terminal? + : + else + if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? + if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable + GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology" + for a in $GUESS_XTERMS; do + if type $a >/dev/null 2>&1; then + XTERM=$a + break + fi + done + chmod a+x $0 || echo Please add execution rights on $0 + if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! + exec $XTERM -e "$0 --xwin $initargs" + else + exec $XTERM -e "./$0 --xwin $initargs" + fi + fi + fi + fi +fi + +if test x"$targetdir" = x.; then + tmpdir="." +else + if test x"$keep" = xy; then + if test x"$nooverwrite" = xy && test -d "$targetdir"; then + echo "Target directory $targetdir already exists, aborting." >&2 + exit 1 + fi + if test x"$quiet" = xn; then + echo "Creating directory $targetdir" >&2 + fi + tmpdir="$targetdir" + dashp="-p" + else + tmpdir="$TMPROOT/selfgz$$$RANDOM" + dashp="" + fi + mkdir $dashp "$tmpdir" || { + echo 'Cannot create target directory' $tmpdir >&2 + echo 'You should try option --extract=' >&2 + eval $finish + exit 1 + } +fi + +location="`pwd`" +if test x"$SETUP_NOCHECK" != x1; then + MS_Check "$0" +fi +offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + +if test x"$verbose" = xy; then + MS_Printf "About to extract 380 KB in $tmpdir ... Proceed ? [Y/n] " + read yn + if test x"$yn" = xn; then + eval $finish; exit 1 + fi +fi + +if test x"$quiet" = xn; then + # Decrypting with openssl will ask for password, + # the prompt needs to start on new line + if test x"n" = x"openssl"; then + echo "Decrypting and uncompressing $label..." + else + MS_Printf "Uncompressing $label" + fi +fi +res=3 +if test x"$keep" = xn; then + trap MS_cleanup 1 2 3 15 +fi + +if test x"$nodiskspace" = xn; then + leftspace=`MS_diskspace "$tmpdir"` + if test -n "$leftspace"; then + if test "$leftspace" -lt 380; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (380 KB)" >&2 + if test x"$keep" = xn; then + echo "Consider setting TMPDIR to a directory with more free space." + fi + eval $finish; exit 1 + fi + fi +fi + +for s in $filesizes +do + if MS_dd_Progress "$0" $offset $s | MS_Decompress | ( cd "$tmpdir"; umask $ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then + if test x"$ownership" = xy; then + (cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) + fi + else + echo >&2 + echo "Unable to decompress $0" >&2 + eval $finish; exit 1 + fi + offset=`expr $offset + $s` +done +if test x"$quiet" = xn; then + echo +fi + +cd "$tmpdir" +res=0 +if test x"$script" != x; then + if test x"$export_conf" = x"y"; then + MS_BUNDLE="$0" + MS_LABEL="$label" + MS_SCRIPT="$script" + MS_SCRIPTARGS="$scriptargs" + MS_ARCHDIRNAME="$archdirname" + MS_KEEP="$KEEP" + MS_NOOVERWRITE="$NOOVERWRITE" + MS_COMPRESS="$COMPRESS" + MS_CLEANUP="$cleanup" + export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS + export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS + fi + + if test x"$verbose" = x"y"; then + yn="x" + while test x"$yn" != x -a x"$yn" != xy -a x"$yn" != xY -a x"$yn" != xn -a x"$yn" != xN + do + MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " + read yn + if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then + eval "\"$script\" $scriptargs \"\$@\""; res=$?; + elif test x"$yn" = xn -o x"$yn" = xN; then + echo "Unable to decompress $script ,because of aborting! ";res=$? + else + echo "Input value is unacceptable,please try again." + fi + done + else + eval "\"$script\" $scriptargs \"\$@\""; res=$? + fi + if test "$res" -ne 0; then + test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 + fi +fi + +MS_exec_cleanup + +if test x"$keep" = xn; then + cd "$TMPROOT" + rm -rf "$tmpdir" +fi +eval $finish; exit $res +3f< u{+!c KB; 8tN*sܝb%Bݎ;!d&.(\Ag vat!F吘P@T +D SQhcٞϝ^~ޛ9-ƠI>)H,mI%@LR$ղTsKKK$STHɠO +XeNMڃ$b6fcyH`-m̼f)iIyEݮ icJv^SA]:Li_ M)|`7PLdfMK6֪]̜~ ilDYSUv[ℙϳv2&#,X =_]`fOىFHMk[Hd8gX-6#T֤Ɣn5Q5g[A(1sb] }=kZjjľnԂ#֨lUc%V,N쮥mY6`ivMaE.,98Z6.؂\lAZZfEQ~TtU0=m4r֭R1)f@7Qi +hHEj@*%K[EZػU*,*-nxA +9pJs莔r(KK5|"ch +RpHk;F[ WQƕ`MJICHK +,ti0PXQgY-+L{_g׆Ur禾==[ +CȨb,ѪTf궪"fk%cDG$IgX=ƚӉp&OpFRDwN:=~}םo=cw}OGo;~csGw8 CTFhy-ʸEjVJ[F<l!q88D*mtRi ;˂ +'MQ9L|+m+C$8s(nTUm EmYAgV9l`P1Ay>MRyg1LI̾i-9l=CG-{~L{gh=PӺelm\Xd)[P5.%-ae:DVQI+d,I06z_wUV7x}&R0glfΣ&M#P)gO,G$)a%w;PԢ"Um%!$ì(ż' MP_aU8l?rJ^ S{B|tXʚ3to:a=UW+:C.5ݐݫ'越xGSXީX2Z]M67-L+R7U=2U׼-(}%ٕM-lPAv} 6G; +᭘{`NTFA팆[Ҁ6}p + |Ly6x'b4U5:D e{eTԩsomE'.^|}sϙB9 +b1!_0|.a(')U•LOMA*_ h TA*F*,L?r6VM;$qVi !Rg[ +"x"C9Ӑ:LfiChVάihxF*d!>ٞ(zdDC$2w&ΑSPsd,sXjƐݻDd 됝jv!vYl +f)|% 1u|JqT+Iy5y+ >.k ^ᡱctc~4 i ۗkoj_JF!\;X0T$]墛.A$ +W5R)L/BG*Յ3\|pېJČ(.Lv.-弩$"d5V2M<518(YRj/O;;xtnޱVNśIPt -7S {?!CY=5D`EOU0dq9a혼0EߙQfwBy훁YY h|p6-_ +̡ ~&sC:o E:YUs#^|8./'%Ɓzb~a ӜC@,|o?[g9>/x1#RpN+q/G^ +pP|J_,|])9p%!cɇOn/tssícRH?nۣmn}BGP?B=4_APuT)/ ϱ~ؿP?twm'{kMwd_;jh-o]8Ccu8O%cxnP%mţݤ&{~^ۼQwx꿺ctnѺKƏ]<ӉOq@oHƐ hC~G?G Sy.@{`Tn!Ȟ^Ľ;U׺:v<ï&fxt_Pq dwh<}}Prhw[16 Ck?艹ۊw>3wdL7]X&&.qe.=PG^\?c0\IC8 t?Q'0o rnxvx8=^ǞsYx/v][,u;]I+*|$rY8qo0q?"sގr BE';pLcz<"6<&fBI8Np|܇,?_}rvoFHOu[ ipmaR,NZ` RuͭH m(3.o/$cȯۊ 5 A_A*%. U[|#;Kr2!ن'WKTcJIkR"=BխLh6,0!NOL^"@ <%2gWP}r ?eOB7/.}I֎8|:N"|r{ "H7^vƨ4|M=C@y <_@[wl\/,@(q=\~sC2]"T@zps܇C]Oh" I>S|r\SYXdzLgXQ{2~6s)XEVNv {~)2,Ogs>m;gk~-y/Zk@grԁs?ͬ~Q#%3ZB4M p:^>^~x~'8~oF(s?KmBm4n? ~~?8 ?_BP r9v>`>D=#?.xgt" ̥{h=ho?/"<%7wyt!( {ox_тw~I#y%bxA/Ѣ8c8?ϕhyEaK/- +'}qÙi ]_hi&CV3L%?ߧwQ$rQJ֖pMa;ss%tCZBQ$bc23Pc75- MKKSӀ>%Uչ咓mÊ- iކjiI)PY8hW:$K)Y2VVN #};}Fd  +V`D L̘l"ʤPHexJ=hZm.|Y|%恉m{a4tkh +-F 8zeoNA)TXV77 13[ .%k,gaH]vp0OAbmJ 7%`nve0]/ab{sNn<'fcQ(dwMMMV~閝2A46<#g-uS|¨cqTSB b2$)7) +vU*C>*unE O8T?iMLcopJծ%˜ԙU:v.#R -Q2W-G9!0<Ԃpi L "oc;U"֤D-gOkWjDzJ'+1a.q_: vqtNdgGTn VS;I7֏B +rD/5Xp孂>Ğd(7 @f=H.yvs![)d8`!FHIvr2໪NVskp!( Р %OA !->fpFذzW C +>(1龍C*]'qC8A#<:NIĞ·ptp<<`Aq#J׹K}X Bл}F +Y*tڟS\4ߪ)IWR*TÂB g]2Mex6:NƳyKDF{^USpV.ѩ$~4V6ItIDd|*:_'/d|\2N>$)d|5t2N^:y^u2.N{2N1:/'uS^r%G%{"69>,aķ0m ķI&C|䗰~obN \cr*%95u7յ33SQra,◢AzXՕ7ig%h,>vv]320>Q_~EԉZ~~8ȏxA;֌9pg=X~E c~\CwA"`wX{Y?axkwBwsW,77֓$ 7#UE46\>mml6qeg4:pβC6WxnW6kuf6s ǁFyWttxtz5myfJm󉆺ǯҎv䮫#@>>4O7Tf3c+#(͆gW*'WW9F]e7ȹ~I5BZc֎xa 9,RIeL}vB}u"Dgz2AB_@i`;E5|ihE"\QJ歚JaR_G| 㿊wT=A^̴V62iZǂG']@籿~nq*[_WY֞U_@uU=>tnqϊ47BP?߀|2 aʋ? ~هG.`iUQ>~W>n-k#ZPqU][y'ך?_ſq}K> g aXg +w(}yPX@{t8WF]ozSO_Kz/_j_ye'~CO@{ƶzN +DZX]Z]z'/q|[*u`k l-wy~f;E_[B?۠H(sbCeU,>z{7`oZ Do0W5VSqy1|l7QoaaqqH{fQ݂l8;mH5=$I5zWz55 &vJ1)fQMh[”y}"^+̧EUV%'{H|)kHmħo y嫱-ǎq~spq޹sx Dž\a 5p \#sbϝ!ςw[`>ּWA^f%Lw/b{ӝg./gUn'9].G/{lYO4$ٿL1:X=Lޢr+(:w]h+/'/{jY}R +>:]hd79^v2 +']FdpQ8ٽ@~gOmmmmȖ[C]K3ȖEv0<%ɖE0<ݐ jЇlI$dCR\?7&n6^~P(HzR⹮ ax_ΰJmpJGW)=١}9١}dV%o6~-&4 G(>t=-.ʠa5oWWɩIůѸE-N}_qAO?3A:ŧq4N_qrh^ ߭$;Gɩ5ZmЍq{Tkk"]}8{@v>9gSWkψ ]}MWk$W˛ҧ_uQl5mS5wI:ORk~M-0Uk]8U? F_P׋_.-t}!DG[K8~Qf{]tnw*@<~mCkkmontb8¨ 9n#S#tܤiBgY4epU@!|̗!0LQ?*ap |90tF£FWC +$hgdA&r*W Z^"U I{[&ɥk Mh^ R%np;N}JIFz +Q -ď O㦓Kٝ0]5cT]lz1o8K{$7Gd"V,s6<Js<=XL `_ȹmۍ<A yjlD3psrfDC0[WyԶĨnfZX 2@֦[(B27|ӧ?ӧ** }ͧͿx߾[/tɣo|w^G%a[-4"9oN1j*Ā66}R9'i'&Y+`x=-b<8Z(oЋ-  >rocyrօ8_'3&MǍaU~#vHv>yѠyy͋)%;Zw$E0I5ȎOtkkkTưdY&E}I" +ܪaX5]ahꬽsi)sm'^d -*R7dڑbVrQ5-uYaۄ|)&Ȁi +ҫN`d7n +:ꩃnw9x$~L)>hیTw8{ĉ+Mp]C) +`3UIL& X޴F[/*} ⴒͷllQ-Z.Ԣ]ruz37-tLE%{R؅,]\Y +v[i)Zf'>i4|nnr_*.NL3&d@Kb""Pd._'BVsmlùC{!$r!U֋e.|>'*F?ȳ@OYU~&^12`@&F# C&Aʦ'wG7#laU<0\r 1ǫXUeE U簣?5Ev5Vrh@EszvIV0]o&@_'_*;CˈI KMO,Y].aI򒇱([]ik? 7nr;UƊ\O#H_ef2|Npli%op(uXׁzoV47=u.FB9hJ#28)XMh Qob1sYnA&0EXŢ7u_a>w4:ú&B-:Fa˷KM9ƜR-: `֔(2䰦%=vĈc`Ym8:CX˷%<{7Ť;w0ngЎ644Sf +YZ S*#*AylAgYT5k7 W5^=W~G{@J` %(= KÅ: ez) ru_[(Eg XV¤Ͻ KVTDN ++DdXjJ`f}=ܤT>1G~S5E=:oY.Mв\ {%lqWn; *(tҗe(Y|q/ *op`FZsY^q;)_,<×&S^ZNX:US 8_ΆUyBlMŶRŁ1Ք{arZ/J?2 {tVx /nbs;ayQGBwsU!2.fP2VVD)ݠ5wKkQҡ>,{wҙ;;pnφWv̄4RMC 5%HI;NevZ2R Eu?Xՠ>Lu1 U?X7eiag:ج帏6;Fx|ca#[͡yG\aD>#Ю(7$㥐-B1 7s!5BüÍ\耗785/#-H x +@9xZXƣ_tNɁMt- Z$q#TȭgcCBhKhxw{~tg{kZrTò1=)ι8Gs1ܲO9hR3yMX] ~59m($aGm1><{8r _0#Gs<&or"p\0~3'8h>?7Q[ o|a{'8ٷ9X+G³ ϣ4#,vmƿ圾c؈ϣhrz?[) >ڧ6 m&QuHC&vycfkGN_4rڧx )kX<*_cNC_]o <Jf4=ٶ栭:;v l3HN_~>Ea!˧d[Gs|~ & s0y=G^0w;ʥ|"DvyHFq "dP [ BV-}C,&VnaMLJu)"rrei%+Dm(~c`3^*hPrd,i-w>-N4(i4װy?]ӄJ $3ooZ|0:^E݇pcxv;Vffv/{wǀwЮ;{K^l5Fzz=JA[b.4Otə˾J܎SD0=eKl2oJ ;}?Bc=qJ/5rNMi+Ii?W7X3FZTMT-L*~NY|51%?Fk ΨۜӌNي$lY1+Z(kJ*eft*adb$ Tx5Iׇb)Qd|zN?}_BD_?qtڶ$$;#JZ0+QZTV N&U2dB2ńI*YiYv2܌e T1^q5! F3=<FKV +P8  +<9f/)S3E7777;cl)G0YRoזԄlIY,pMV-&M[!+_IXF^wLNղȤ91S #0,#QI+!Zh Yʨ('Y˶9ievs/0p.%EO\(Ee#afD-dRPYYLEf֐L& 5HURdB$%s3Jw棞Yh-t,m-`g&r*@o^|16є#iÌ-7g314l:I&D6IsM?r3?6k ΨӌNM;Z?J$;Ḯ%eNKV& < +b)*{Cl?7?/0+RHW'.tx?A{ QT5c( KK##ۆe(x,ZiU5䬡&djȈiR=9Q,k4CLf:{x6`3q xr_S_*ooo4<g _4H0:K iv6`mVd]{X~H4Ybp00;g7<`0Ăa$\?+GK1 dX`1T>뚸H{ l֗iτzA|?;[8uL8z6M-׺L8ws^~9uל.*0i&oWX8>ŝI WOJ U.]㌁}v`.4(Ҳ&є tt[PО?]BwiO51i61]4Gӎb~bexE?<vG]>}(`1ؿM<]ſ?4E ǝCΩqԒï/uѪKve׌]/k躛[tU_ڞn=G%B?>=l<~I#b/Ԋs'L!a$LDf&30g&!QVv hE*˺ڲ躖}llJmuGj眛{䁙{sq8w;?+Q{[7ٽv[,6<3/MSۯzzu7oWW/ۡگRK+=6瓽g}_fgv}wmhIUҋOQuo>+|ӌͫ9|Ot/zl߁rTOT;ؑ`m')=%'R쨸Ao /uc/֤39:7fM6/|[0[1%1Cs-"F⭷-¾{7& ]ZJHE!%#P&zvv>EЖaąOWhMt2U>R(iD~ ]Zd,7S$fϽ-$g/Mʴ`(Nq3V#QIΎŚŲB S+\_/7잁+dsTO>uH[CVG:u+JKv o k ̔]>;IN9v~C|D.+n~;ZRGR&54X-Vg +G4JH u,۷`w:M}\7 bE­07Zٰ,l]v̊ڹUne猝ȶ,XPGѼ˷DT|mZ@8XK졣jY}u}I[pZZ D Mr&6ќujYz;. j yZD.eМ(W,zڇS\e_SLBX'JW˻h:(E] +7XӬ5$9rAF[(3<Ȇu;:vrPLka)&91R5>sR K>4TA9Lw_@՛`jˈsRN@%F‘ZOMNb:gW+~S:LϜԁ sDU{_ 't;f Er#M)r4Y ҤA-I`9Ж&mKx. 0J8tc5+IvuTGu;LG$Fjb#־ىA +Ԯ4վ"s.,nnMgc 9CMAvT{'$EWܦҐ$t {Po\4ޤ~;&lO8?< Nq;k%< sf~Dkw烥E;-\ҜG6 +|B&T0sg\O"bZp֛0OxG/y;>1d&jzL-2VF/)=?jWH9釚z8,NeX>SZuFw8דYiB7й8U_R +? R!W砓%5X,$ɏ8spdjakv&/9KN? E ,Sv5k4(bq[|EP/;n2)r9 멮JrE63oǩbAɅ6.yݽ +2wJq}W<0؄tE +N .hv+r:t)\{ts.sv" XYXU )[!ý{F\Z\;D-қI%,=In跓x̽+H瓘Yϲ'rLLI^tZm_6oaKSi257[53&}_,3Pl(huvSeά-C vrc,ߘ?)m)1iyJ9V[yOﱊ+c!;81ƑwoR"r0O|qi:{W3_in1&+)j{#{BRIJB㌱j{ 7smw)m\>>߬t5ޫ\=dzqoV 5x-sm8}7vewKoTϋm-[mE|DE<sg7x#E|Hg__V.ߢxE_?*SN|~ߪZZ7?,yoW|/QzUQx\х|V9Pī_Q?+>KA W1> +ËﶗbYUC81tC;ooTC~i; +vC |)ǁk9 5nX Fok(ܰB[87l3ݰr;^6 #8SuCN.>2A2/ɰXFy]*z*Q`ߤpC5g)z~EpF?B;/]K8p|=]a8{vは>0pOk|=7WR65nd[olο . |:gLQn~6*^ S^ \3<|!v yMx;p!7,>#a)8pxxC_ wܰx=g<|3[oa+oUہn{ +0 _ +ܘFg| +[Wo>Wn0oX2K/C87/>*l_ z|#Ϝa N[g7lvZ;_ |W]#"$_ [r[_ + |p^Cǀo | Kǁǁ'g/>< |8*naw_ <|=pui@x9[k8l|;~; j{.^>x~a 7P6| >MGwzeWm8uui;8Ol }=W.o#=@I +Ay~/llll>>g>LOAA~A~//>>w>>>߱}П}es~IO=tI@Kz%Ho= z:7=}6}=}lEl%ltzz.}Aw}Ћ>>诱}]ll2:Ag>~z&z%ۯmlllzyaQq {lll l/}/}?d_ew}?a_gY%6ۗ}1r̻llGl>>yd?񤧃@ $]% 7JH=7xl<z&d>>K>&}З}Эlt탾/t7N}Y탾탾^>;>;>5l=l:/lb1j㌡5K 197Ç&e(?߾1iMww4uz՟mU>+F=*_f G/~>f4k\|QU{fUr%f&AQЊrDM-j+heBlmK[+R@ҟK2$8Rne +X2pQ6}dַ[Z9~}}1 5Q7R3SNOkrK|)䯁N!V6ɔJG|*څ2~AEҋaHon+C! 9ө7ucha/]]M_y6/%K 3Գ7ɑ?A[JD2 kj-7vtʈ\})/T {2d3B!7K>f k|dA>9)C>LyT'}U{+{͓.JJWFWCo}+=>n1w+ fܝUa>tCCJW&G]i]vF,M~y//8r67#_]6>W6)oOCnj.=-o3o/Q _%_2o'_"__'q4_/O%_]67/se_6uڭ_ el\_d3o T)K ?Ps4f71P~S/n@y_6*7_bA// S[U{,(ew~_ϑ|9D/{n9_6_/z* Pce)w/q<~g "w/7' +Kiw/R(_!_#o;/ϓ).+ג/O)eN7~|G\-~||bSe?g|]nD(eG%nel"%~|nx&elg|REelߺjel'|29QoptE(e?GN=C~|?\;"C%c;Yʕy| N{*<@eloelin}#)3nD7$%\<3e?GN%|<5eM"_wˊ*y)'r/TޖzJT[Yo{v|_~||rKKf-wZ +~q4"7_" /'_]6O>W-/q׸3rƴe,Z# ]t6g#]t)אA).& ݏtˑCғHHS8Vi-H#݀RHG#݌tҗ"ݎkH'#݉zV%hW|Γ8߇}8^kr]Ъk*ZG1^79h` aUb~)d%0vfFμPĎaY%׺t,S#_TU٣|k}MjdYamJ4{Z#{jes,)a4'O?L&0//AX+ ׍ace3"d$a%;;g 0 1+x;zكحW/v#>Lb,JVYX=}|v}1sclY'"z:@*`V I9[Y>c{ kesMe|h=a9abl ܂ku;t=),¶"a}h0>M?T'KUE9H|dX]v5 ˳|YƼنz k@Ǝ\ k5:x;uӞɽӅCۡ7|p$Nso/ף b 4 +d"tCVׂn_Fx^&oYy>qy~=ΧU-:jX1\{*(k,>m<O3pwk\MErv⸥PᲓ2 PnL ;mpeNB xP幯zp\sLrmpwM_ʍl_^C\[QoE<`)䎠|9fEjup+zp7z kbXl+O^cBtL__T/Au:°GCˤ_WBDd01(VjqZڍUb 彴lPIg)Wj]$o'Xٸ2ddZ}mpmomcFb +Mw ݃nѦ2D=m~2dx7sSmf2h'6?vc +yuef1\a^nu Yc2#v;خ?<~c8+d q/h5jXrwL_x_Ȫ |#m/hP>5Km=Kr1 >~>!+􇍏,~uR,ѿ5>>u[YgBw|IEog_% ~>+Q#}R㎐FPID/?Xw۾hz~fHI;:kw8rmD=T%Zrq/N[ν>ɸw'ޭ{73&ޭκw{7h{[,U2],3>Rn;f_kUoOVXh ޑf/ϻxټ_D{3ռ-Xf^IXJMgn^8Z`sq8us,}u鳋L9׹ȼ2efJK]sWa3ϧg)ؑiر5kb"=H*п~9z˙Ts~/SNq_@c-!5ٺzЧbrplr&z-'#=d>&~>߃0k_d[t`<zB;mJFʬedX/G?ߥS-1Z+|y#쾶=W=l5\ה+)ÓyOXZrU̽ulht8Q^ $j%[<y*]!$EyMNvzG7)er#:*\'}mLׇr۝<6%rI0<>\7#3.>7 /ۄr^>:;>>y|rhɫ>:gGC)N}>y)95>vIח#5;ka}v9lK|-rˑlg;˵ˑ>\(ϩ/W"u t}(ݩ}y5N$˳˕<\?<.r>y96\Ϯ/OD^S}ۘ]N@^)WrF7y|N}(7ũyM/߮tʅq>\ CEv9#_}NvW _}9z>'o^_il_b^%c7lr݈ck9;Z13'vGX=HXczkHb֐Z+/Oog]|/Z (,.~Q]|я3vLw.ʱ+\}6tdn\'64B|w" .pM|,|cDC xn91oolda1vcnɑs 1֘(}NY[60y;ci}.3(cq-铁p5?Q-#=j5 D)WnΠ}F +aW֠Ly#~|['d%eNZ,bE]_c—T_v̓Qz{x9 Γa +[Š-vaEpa!]9~{ƅ  +46tR+>6![q꭮yj\➓'$&`:Z| ~faӣ3Ԛ +^7<ιCa=uZUÎ/*džAr^Z{$+79&崿$={Y?Ϣ4 C ?Hp[bZ~,oKp^Zin̳\vki9Uk2o٠tG e(/%5ǜՙîdX= s[<ڰl7{qIu7gְq:ް)' +6QVORxوW63Zϛp|}|#27ฟ}|=2_[u8kq,_=9_μ{^ĉwa!/Vy/0uo< U|^\/G1uϫ@a1 TƛSsݾ\yy.ߠ`96_>, r~[.qw8zt?cNsxzz rO<ç[n/;OV{_^&1.O>䖍rMyr[r\K-`ܷ7:@suN{3O~-)59uj]>sd|~jZlb|;]-1;na-VFg>Kln>İ|9n>ql'/?Aw{ϑ$_#@9o/q㚲tCTߒͷl|Pަ7_Pqlnxln>Nϑ|Q7_Hu|Er_6|b9R/o/\,~|?tEe_6|b9@/V7DW|i/%򣃴_6ߵn>Q*)J7_T$_ڿh|R||er3:sEɗ+:+(˽]E>ۢ^`-srs+;:rG|B3w.R3ʞ|oGʞ| +٬/R!w+teOW[W97_RNVks+eP/n>r_6ߣnȹel|se_6}nyr_6| e?OT\e?GNTɓƫ MT +^/Y7W/bqr;Ծ^nH@7|~7_" 7O֨c|r Uik{jVu[bﯸ&6 +.C:ba]Կ߰>iAk-ӂֳ~HYp͍ quyde_zP +LZ)A b]S7/ Z; k=A3s% AkĢubu7ˉjl +zŵ?͋#O]0|5|= Z/-Ϗ/tZi^/\HXܿa.[lr_Z05jL(3!!, i߬A7-y6&WXn0yUMNa`A+HaFV[Z#'||ȊrK!WcoAy5K \ȋob yd hz滐xNF^GVk(&d O9x?+S{ Ƨ ^ú[sj]wuOg;G(S2*FD&+ +\Řoc;GlG\;敁,S11&S}}Ⱦjor'5J.=lOJ]*.v?WWq?9lOH|8d-lOn">m&|kl|>Ob ̇63CRm6e'Bos}+Gm\نkBVzP%q9bxF|qex^8o>ܦ,Qf_j;)G>ḆݶL|l`9gMH#,,GF=˺U!|CBFeao/}}n߅r2CEZ` +ȥ}GHU/7ϸH^A'g_R +h[ڧl$ú 2^؅fz։5bRo 6C)ۼ \ܧ}7F0vP6nj3^soo{5FHe(iRPD?YGx>.|aۂ8omFevk7ݔs6wl!-ޠsmNG=p>Ű^Aڦv-p>Ͱ^Q醵CBw5fWjͰ:yG4 v[o,5c=6?E\M|ma2srC%}rb-6xB oxEeNܷeR~ H|?I=Er!W~{xpOzJ[O2$#ɋ5{GVމڇه:Dn+>6ilE(~x~ +6@>A8/lP?{PD㳀Ɨk8+/mKի0E^O4`j +hBȟk?R>۱Cr՟+J;"8Ns(Mi{(| !@>xE>#c 8mX |P>xߴ}'4 +p_Z +t_~ƃģ F:0>Gj`DUl|#$?|{#JWZ?q +iGR;#J 셴~9}V+< MI}>ƻG5CwPV᳀֮;uXT˾TB|-hzV*eLT*Ɨ).?l5Esm*sgxxD!w97| +6H +x_sT +|wj<_vy +/>џxDC_O5qqM j<4y +GyU +?17k06>W!cO%wW8$(xcO%7rZ;u'+}5 + |[a +1W_Xƃ _Z |ï5~%/#xvHܯ%a]ģo=BяO܎џ8_yt\|?g!sT<:v]_;[/v^~t'M;7t{qW:ν77;"Ds'9?џ_ǿO܎Oqq%'4^:G/^qqU>?W2G >_8G5>*GB{u'xx?񈎧>џ_ӯKyџOW7y\Q/#n+'m|#Moxq_9䉯xqY 6>xT?Ɨ)yƻ+gxoT_e]wWκ6_w_nݕ|?ƿ G%xwsWGaƵ+g}O'4%-#_W<9{.Ʃ+g] GqÌ_WκLG%ˁџxYVԫ k|Oh9"}u:x0]78qj>Izqtqt ~Q^q^cusmxD㻁ڸCy GBǣOrN8P}&uQPmm +_/wN7A e~[8WX\W_km1^s?I m^~H#׬J_h!5.wx9m~&ƹfP|?p# |zz_U;^u>8î= kԗNE>/ħO?~>|ϧO?~>|ޑyFdp=`GVi0:9&jO|?p>!:_/|Z]:j'ד*]~6zVG,L(^oq]PyG .߅8?H>stN֬1mGɃeWh _u$*Wdv_s ~UGC ] +0>'! +j. =-oRxƏϐ;Կ;5)mWӳl7>A6eB}arB5s'~\slEr>E{ETqrg3N$RԘȯyV k1X.o!us:h}sY5˜o%kb=uw'YXjNn,5ZXywAI;uYgL`H{Pny38;XVXp CXQQjv/ȋ%!? +Yi=cºs,{;dž9$d>r|O69e9#m>eoBȮ9+K{ƞ,~K?loKgMd{dWjqkuvaS/N]v{h܌>^%2];cЮ%r^f~y_")YPyr}w_K߿OilE v#qX|}X%X~&_C_+v.`2>l>2sv!e/ Fj|) y';cXsLsXbǔv||?{r|gϙgӗ%>9؜^?'c: +}oŢh~]m~wa,<_.}Pytq}3rWͱ>ڎE^x?rz1):< DGU#b_SǗ[hEb.ee3G7,gAc5ǒȐGV^y(}mbʦ;Di[XQ Üyn1N ݘ8n^$=qA uO[?9qTU7wAz;踒4^Mc폗-K1o8 +_D}9n[dJ==mM +1ON =%~`ϰֻh q΃ګG.'G4 +aM=J_ QzZj>sO+r?VAɩq$t[6r JMZcxuy^楈W/Kx@0ܥ8Gɹyxm.ZrK>GjaOC +U911='S|אEK<^J%&SO)_V/}al4g9?7܋wGU/bTU VX9*3At>x:,d(9#_V>*Z-,eoT}M%S; [*dH7W﬐~% +y! ׼`,;>ac0-.o~?✍(=ƽW ޗS5@p?#Lav~(yG^% o?RoӱK@/_胨W|K`ݣs1 +K ..; 1S(i#GRk'sqƾ7u,| x#7,ognOԟBti>KHxĘ ^y?K ~OKŶ2 Xp0 crՔn#o;~PoBwo>Rգj:qYSLʧ6u=#~uVb#F=6]xl+3:2ߪ'1'ZG%kE3LGr<`|5+W C)9V`+Iqݏ޻*ɘqA `ةM'Y|8b?47NjՑ1cȳ?AEZ>^+/!{v]O(B](-;/nwC7_+刃?-uu9i;?[ +0WĘ.7 κAתQ+SOx: ˇԕ2{:+.UhQ⤧ְu'*8]UOvAp|wod\5SeW(IZbcЖif]-lvP؏}f;/ ?dX)ShwUA'hȽ~,^QfX2^' HꮞP }ڪ|7&1]X{a1ѤGΘz}0kLS`.}YU^KWUTj98w:.#nWT1 qkO}#F8jP$zBtǟ\C߂WWzLbm\+PcG?>Gc2De2P&.:f eo;ee_.*Sl[2B٠4]H٠Ԭe˜<ý{ ~}t7)K2qŢA~߯Zw!m|M|w6U({j-CA^}(ddl/U1z~7OCx!d#h8m{)/Xz̘ wf1F"m#ָf1cH0TmtlQ.yaSΝy9"wfs%Q57G0N\wFC^mZ&>n'Gc]!AߞL>crm}:b>7M6scAp +56yl[z7F0Pkq<2ZX90X]S-3}EC/Ϝ~\**`jڷpEc0|Gz&[kj^™ ZxG +9^wj1kCMFiQ5ͦ-ܲwA̛z>6}"Q̈ߣ("mYȿyOή\H݇g  FfV5^_.k $l:ZOW!.@,O=1y1w@>֋?̝JsIjmV \#sfb#/s !;Kl?SF~,E륜o ؃;+ac[W>,ϸ15g.6Wq %O +}c7z poV(1Z &q:]3C($XѶi$=z/L~mmTb{!2I>MK[3 HQPA@- XZ`ZkgL&!<{{z?zZ KGf2:X/: +c QNZ56orVê=pS(utw +dB< ~q ʝ{#qZ΋EVߝ4`.-xg;c7|{8r@&9I>N5ײ? 8,$-xϭ7٧\a@Þ(,`bI~1~Ol~tCmftIrGΗqO$#,KnxYs @ +"Ray“wFN0=:_b=>L;AY9ЭDlEC{|y Os#B}n+쎷u --_Zt>m!uu7e2[M\InmCmvw9fn:HMr]bn'\(s{&6m &GG9׫yropڥDGj +{\@:s|PG~<;e'cSx(tg=g܏UJ@LJW{xh;i+^dIJ:!ga7SY/>fm^ sxԖ b'*7hU *_ 5xz2kieBLuJ@59J(4WE=r_w~w~+J5 6Hx" ԻD{@x1I42^\. PO˦PpjUn:xkd^|l/4(/qG&mf2М{'=g=ϼY7Lhm=cJ_Re|X۾s^Q괓.y +e|Do.S6x(Q{tAeG^_̧s&=ntܯw+: 6\C<,{g~ݧ8n_: yu-9'D[Ę:}/S· @V^aYWZp'ꊜ.c}ve(ctwZmMzvms}Y*B%B.lm/ v`9m7:4ߜtDuG(2jL6MMݪL}9F³+l[waui{K ˓:dömX:x,Cicu_rت޸ w ~G|m;|_ڲe_3ϦvoxBc›iІ1O45:iٝvlaۺZ1ml-leڶ "9/exu{ap.lA]e`7yaANز&)Nf?5[v R׾ږ͠mYaǴe;ߨ +7^QWp;֌X%;=-<]iҵ]M~}q#ۭ}'7~~<2KAfO?N86ynKe'I {j +(|1/|Ǿdfއdm;ϝ#|0ǽ{rpOT1PT5k3C?D=;[`GO ӫw֓gGY~*ȼexPwO*bߓOc-*;,9ۛ9-}x/u:sIö͓d֟ݙ}V3 +ߜH]i__D[]0Q9?m0?Kt>u5bT_>ʼncfS?K?hUcm<6]N`G(.xxknN?* WT䈶J]p*NUZW\#:9.Ƴ_rk+V+ ;>+u^Jw:ֆgl ,\>z4FfjV ae^pTL5GЇG~(u(0KnԡlI/vhg~c͚a¡>{x16ƍL7T|sNE_?2Erno0Bd{yPB GuEǦ*g%Z:.)8saxQoHt-tqY M?ږ ))܄zP&]RWhÕPuE+_Cy$Ǝ`U]m١x>Ve +XF.er"}T?;;,\l;W +ؗOw0q+qX9xx<9Ao<ǐH+ҍt$MW]2p{0:ħENCnцvݏI ;~0qFj݉gq۳}p h9Ε0&[4GF_={u栟ӏ'yX>w"A5E]uˍTxqיD>Dm,cܒMh1yJфxddI]+.ćs_1J}r8?zPq;"&b^2c6&}t7՘Et 7kEO/Zǫ d6woeŪM6HT]_'=9:j (cxw5%+D^zomz:Rԑom|P78x'g,}sJ+SVhf;`8fzf{&'1)%Aw7מ&i[`>lex_Z>vs3 (L؇z}-y^T>գ.y/qm]j&~J8ڸ:>AĎ}ȝe#SW]ZOp-b( Os upL:7]HէIh=8t :ƭӟkz# vc">ߒs`v6a|O6zag̏p>Pt朆 կW.A޷]2aJ?:O6Qɣ^syS +6ط3l^bhuPп~:g޺Ge92ss#+t~q!bn'{Zw~nCD7ro VqwQďw{͎4oܴe{r*6 +}0m=N?3u9п}xj'oYs\0 Hi!ZpyT ?~Ooi c? qzF<#Я$Fu (r}CІ+>xʱ.eե`VPɿH[ \u`)}9c$s9p憩9:FEG@πc-_)&F:{9uKYh~xu/瘯 ׁ.Y{|\(׻ugc%i8'xc#Qц:isV~&DCD+.NO 5<"~R`J5*^X&g>"uۏWJ>Ӻ~bv+ Y.G|otJ1_9}eHg?Y=\FH{ pC;μ$o(srNe;Qe^/쯈MW?:OM3"{; .?eζ8i=uQke +={[g%{f%}W) î8 f=-ש&6['+9+| I?]w/Y-bA2- \%b Rr!xܖ?7\nqM.Rm_f\nOm#Kц\ <ex`Qf)Ô!9 23g|zX4t,ͧ}%C|zH|si>ͽ4ޑ4_)zU ]WՁKEb6g!AU7|b<#:<1NIi]AR:uzֽNY״ R:|ƪbi%_oQg9'57Jw\~(lUu© +^NG~d ߖB?}9!g. iLE;:P|فJ7/yEJǷW>1 zm}dDDDo]&yv˓~b-58/>ic%dZPw*O&mX2ƾ̾67R#ګkQ~锯2/O\k|JZ+g~Jˇh+I垑-;e/KhxY]զjuRFF3%wsS?;+ +5}Cj _dq\"&='5WY!<6S5W#>}|n}jNs["/wi^ײ271vr.曈Q[{ ?~ ?'քe=Qe)Os@}ϓ8>3re6w/Yyw]$5V9˲DcBW9xheYTbu,r\nz3ͼHo4_lE0 p?`1V V{Zh}8#O!=4>>0nZҵ*?^BЩp-B2=62︀k*HWF>974fU\oB}G*GHx:y7r!y1^u!{wz1w+ǃbw%w%-$sb+Dž/6-nb;={ǘeb~;| +I;G;2&>cmn_zz0>K[C;=*pK;~ZD;S3LӕCή)cGyO0>ξ)0oAz(t+ۧ}fi< ,0Uk'_Ζ I8? wb\&߯_g&2SH@{m0"o0`񧎣n&5_>½#_a}h=U;7K'%'<||ASSϦ$]ܟުFpϳ_S/hupUX?k2w,*<:u \_N=g"|j6Ǐ`z~r\\41;צJ|F~(T㬜vUP7/Z[1&l9a8YZo⼚ǣ  +2EwFunC ͽ°"8W˿#BUiQukJ6zec/Hro<pr']u9b!kyqc{ X#/-% pSf"Ƙ& +d<4MyL0]3nc2v= N6a67v eEWNۡR<@>cw{xyvx xn7OL/~3|qĹI}͔Oj懲[K 8tdEw_.Qdk#]W^xm3캊AC]*FIX;yY⛺f#!ܿpYj]3y&ȡ\oZ~~:H\S;>t[X!5k +\M;?d1Zٟ\_Q`g}U>J_Eq/g%vʸU߷BRI76qI1<:;~nH?| 5O^y>/>=bNY)>uo [~<>zG雷FkOj6)Ŀ}yECcS^FO}q~u~ s})?oq_ZefŦu7Gt?[QE<׍ܳ>m㾱\%:k:7d̐ >I'};9U"\KZ_!G1ʻ& ~( +{P"5n]qkKS>p{scs±psA;3w"p29@Ls6,Ag8sd=_jmLUdפ Vv1 I)<)=o7ϳe^kw+`]qTݬ٪{nS'J;3{KݳL5nvN3`k.m2a)`Ecd8珳>|9c:k=*TluFkY6u_}?`]-dl]bkҀÇ䡒Uu1 ~$aɀ֯߷xߌ#ig?h|ĜOA//"=ڰM)`) 7}V||9֣Y6+}}vzw mC%6h3}\l0)eOhCo?ۡhr_G/qOKkSnGڅ kOA杖X'x[4ߠFo$:Ox5 gK1డZ4="k5FuDsnpFꇋGa".bX/wh}y< ҎuwvSPBޠ>tq{݋ 5QUjؠ:yYϽoۊڡیHSr95Q-k +><O?d5%A]- oJq}~G._}SiXƱ"H_:q]M>)q档mO y 8szjO+udMN!}%0i<=2m̓u'>c^ NMm،оzg3Wxt*3l?m!Ei+ԛCkH0^_R3]"٪㚓N\3PqLA\0F\;5&j9q oyL"]鷗 qhGs+ 4(K>ݰ(i3hlu?wϦz@cӠP(u2ʱ1a~'zzfʹ57%=]G0GN}|K~$}g x;bᅄ>ʧ6pkb=O _tdZ_S=qr7T}ΟE{S0T~3ߣb[?K&]*z>Hz1W9(AzSƆˍ瀟8}2x_zCqljo`KBSDmx?r!&| 1Ytޱݕ.#ͷ)H]q8|{#yvxv|ϼeK9mǩ91S=D=?I;\^ϟ~ߖr8RG38Y.}qZ}i+Iߟ07Tr|;>:gAu5w%}'1WxC<Ϭ>w5 Cf7{Hc-ޯ&<4Ͳc~5z\w~oCN~t_ݮ<||[W_:_;V2K}?hY;Im՝oQ?*Z EduMy@ x"v@<Wu (RkG2J[_3h ""؊yW9}xQW9J"h:Vښ)m=mvc;|z#l}upa=V`LWXPxX:k_(#oX sB]FݝSX:1Ni}S>ŴQ3 ]G`}zI#c0#0qC|DhMW ףgFM =+G'i0;9M2>g{W%9/8fDn/PgN7J[<=}cutٟrNkm + mWn'dCe"m" A| +5>F:En_8k-ջewWP<Ub +t_F_"k6ⴭӌ):e|8ԼR0 Hc6uvAr7$0wyιXG43EΰhsW@ׂ}}']9GְZ^F+\d9`~H=Ÿ?GW\iU6ԏe"[=uz+s*qO7s+;j۔a[yrN'W?rQUqA |xy'/.缀fh +eOuu;< ܿy:w/IL>HY߷pS_9ŹH}ܿ샓D#fF3J'JQҹSz|D]> -Y/v>\}E (]|MX?f=nvgn}_Xqoَ 8Z{Yߢr_Yqs +/]cs\wOY'O{}DU/,W[EEЧf0^Ϝt|d^oWO6TMOË߼^e Wx5*«v +rL0kI]]h5Vv%p~rH]'IОwK B IZ`QΦMKh/}w~L2? yɍɻlrIOr{z06oR#.n~g0l%1Jg Qcci:50e2)wEV#px^~s8ss%K s 1ǩ +ip亼'W¯6,_ʱQCܵkO5/Rr#džcـ2"̤{ij1ʑw(״6;[; ņ6{aqy>* ׇg8{E#4|MkM0uy)ZYsz^sVU~o=tYmgFh9ނ>Dܴs8 xÞ'}[*_xwU/3OTOx͊ +ٷȆ/d1O`%>b7h;~!ׂ.saTj ZK\yTdl55Ft`HU[W,7^ $u9Ey^Yqɀݹ_L=ki&fIK?،÷>#[~-x31<9 = Poɼ'OimQqK7uklHobQ>ҙ킍9<.Cȴ$ޣ( %vFS[^ىitT< "}#s k^kgn4JS[I}QzX 5À늴ynz=Eݠu/4t&ܮh\E iOzX܆yߊ߁O y'>B|;'@hݖ!ޒwԀO!N3Aӌ>I{7}|3dyoWO!_07[yaNQ[}%k~7~k=Yk2WlVA-y >f?\U61fU636ԧVEW{ߔ]&}3^1;~4ri=W@ Ci~z[ۦk6E l9f˙6r-\ilh~sAO;ngYI{dZi]adb,N"E9=n7ERO^^!&ؾ/"7(ܭARGX)ylή8rhQ+A~ 6itKg##=ߠ+ZMkmX֦؞{FM)  ч=v[y]8_aNBџl53M|DCw87j|Lfm _7agS7ӡ\=9|R]k?DEM6T_[,(yO?t}:%WS/Ef9 bv,שljaˊfJ2h-i_ +iKt6ud[Z.(Ƃ-^张C{KL7a\ ND)H<pv?6HZf6fi zu}k\xľ#;[e E,j<bٽW`BL::BE `x8σ l +k:Xһdz |>ܸ:{ +@Sǁr8 CQG]3,?ƌ: |꣒Ԅg\PC[>6 +^ c2AF)`Z0w "ӳ- R9GV <`&T(IE3]^vɩV>oMm[shZ1ڲ4nk~Ҏh2ob<d79%(o+y9{G7evj A_!~\⨀$nn.,rki5[Ɔ Ǧ}3F'V'GYSNZ(q:uՒgN-(-EH YCT`?0a|iTB?/㯱욡[Όʍcc^6 Lͧ\#ŏH9҃ծ~u[}Qx;fWcf<R']anRFe(0>b|γBݎMWnSB\M.ET}ߨ5yFE꼐W.E?Qֿ?ګ'򟩍+kGR n4;WkOg cssqn^/gN6:vi:=)n~L AbϞmo`#JSrBg; ΋hov[Em\D-עSb}Fm!~R=p^>axU} +;I0 Wj޿mhݠKiv7lGuEORcxeZ#eFke~b֚πhUO:Z|~h]ARO0:7_jEpl->(m7nw\1 df~ԁ2#QUJ)~ϻG+!x:;31e9=im+֚8jbQR@Yf.w̵VVvXM{^Ѵ]X9ǫĿy]iL)99M8 +oCl0]SPMq%觫#1E,AṌ:Z8a.ng귯l%|+,Ԯ+- ozfgb;t+a\`qx`Zc^;g(ւs%nK$0cfq +3BHòI”='F-5R.)&G,Hp*(\?tѥE?h:^(ovg PL:?Қwd>j + + (ET-ˑL W^#ۢQ+[az| +3Y ?Z/_vMX2TrN Nz ]oa$A7|D&×CSHIXηhmGBMLm{,sݴkQ(V!"!R{QH +_]LIKBi&){B[_H_G;D%jRk\GS>B3CQ탕ӊU/K1/:+E&d9"j,M9aaJZNGۢSH".ǺdXPC]s_ޘ2뇘=4ozAa/V?!%*DG: zT\DD}wӢgPk^DQz^^Tf# ,4/˴?VI\IS'0e2yTCYgNg43a_eĭLDf(bpU;X"eLCϕ2'ɘR=h %;tx}7NbPa}<#vL"!I%<戚\'&帊ýխ@~IdZzr1j1= +E~)MQzp*Jf:1RӢ`$/R{(IxCj*UihKwUT! !97S UygCȖ9az\<7esΘDگL~)C}~62;65go- #Zr3afCW"դ=U9t! +*-;X . +E uqOFT0$˹ZM4- 㥾kiUĨb)|:Wі?}=lo|3L{S yRǬ!~$$[Oc<<=SwrRt}yNhNe&OsuRTbkiԗA%7.Ar{a47A W㓻PFWaq/92cUvn9Ab _no%Mu,z@g d2q'jH+ T#!V1MıFO+3' TyR7g4[W~{K;*+kJ/7J\>FFțA~?G /_~Q8m@7 2 ch0~vp p2F-#w^ø 1øM~{go I&"@p6k?_ayx~xL]-k{KͲ`K>eo|,{#Yv0'MG컀8|2˚Oe?eC3xY?,{ ,{G Yv6Og;7I;#l.Ms xKY$Y ->}0,Yo=eI,ne{u1>|% `pO0oJ +?,yx ݯΟG?Ǹ?пh||xu xv)/WYv8Mk#;6`}`[ =m!%zm84z'>C-E'8|g?{VLyN' _??J(AK9я低?G訮s\f$! cc IXsgF h$#4fƱ%QF,$-U /UKqWՇnIK^x$z{4N^W}Xs{>{Ϲ{!V:6v~7.oσ<v~!t)\>TqkDﯵSާ6(!mĒq6\کxuj|Ư!%\-9/vɈg~>_e?!ڪ0[ \3Wu>tb<5YD\r^)~OLN݌vVi2!?|o^mx߁:d K|7pz2Ħcc2ć1$jrs#{,;+'W]q}rDޙikm; r> 8x~mT&, J~U~a"=_VL#J\OHd- #T| Hg[f\Mvt/%z;|zrj|@OUW.[@D!@3." +ڗ@_hYD!GdeQzu>Y 3A1/=Q|*'Tw^J&S'WcD3i Qn'Iwg +䖇-Eބ*g=i [׮ї#a}w]Dym bҚͿ#qhC쓆jh<&0I? B~!S4~!=rdŀbhNCtaF) +T")zmQ0U]п$Wr6qAGGӂ#گS@c3sh7O!O]cE>fd1zyᝅyWsHd:'ul~'J=/$ݍErX3(6 i69a{`ZfI̝+p؜ΈNW,j 2XA^ƯU:rn 2JT}8?A6XcbUoRgӠYuPѫcLT" }H+߬#]z.UE=&w'YkoB_|wIgKT{r%e< 13 FCG ~?m$/ܣ?c)11ƼJSp )eIXs{{yF.SiTJ0Sr#\jzC#%)gs-i (&c%0͂1lhAa2矚lX!rx= ]'F -߯+)1֏a`rj0q} !ěuJxNT@?;@6 }@Fo&읞2'0Q ?r?&+6aN@_.v1 ե7czd ϣ-5z:{A8NOyaA]& )KwmoX..F-Wgcx䋵cMY6`@BTCy8`XC;Ú>d}Jq]q~F`WYK?c +xB\% #O ruC[B4S3Vvg !J&3e> +]k[3И?S _ꓫ 6${uhdGJ +Жu#rZO|'VJ=ekNB,coЈA;"_3?gf ?Dm!9o ~hc)෉0Gzt:g7[Of~XPGSjmu4/]]ݳF6c&HJ5k{K_U`fZ_)H4`LQ ')_ ~ |֕ hۨ|])a/ +etT'̆jc0ӹוa><`eŕ NJ? 4w[s` q9q) r cZo}6!:[諭]k}k<-ٿBI󯖭z9p`jzꞴephe84#pLiڟ/, J)Jgל[Mre +3ͻ[_VЛZԳܗ"b< 39O~OF%DD +Yڛڗ|=ԳTKْ})ٽX[E}B޸8Vd*1|F7q6)<!5ܼFP80+ x6p<+m>x.x7 OlI+_؅٫T68xB͆R;F7MNlhhֱ PXԾ +lW` f.y&OK![Q+4Ž1qja! iA·J2fk4D*C#y:m9;W%Y SgݝkES)/;[\R5G-"$l0O.űI蠠[*2z昘iF"`yC`` X'Qv>}vãDC}YܩzkfZ\U!x T@G__tua磟~Q{kU84KŢPАnSS:C_.GSEbl=3i1%ї)jW!\o\A-)ƞEeEݥ<=^b@J^+$c+Ѷ/yxρƓW.^Fbz90 olyy]hg}ns*X@,.cko\gAǬpW(n' Wl6iz ~/F{H]a\St& pC `dN-pXbk_KI݄>lǜ𬅶7duhE!sA0*vʓꖎo'd_|w7OqΞS^}jW|*gAO>7F~jf +էуYCh)EpB)Yh8@Ji߭hKA<~h8օ!\[(ۤ[}̝++=)K +w/-%j[S_vCN + QQoppDa=,Vb(}>YY\ -x[<Ih^? f *fsoRབ+p)%O:vh[., c,אiV)>1hK4h[C6cqzp3ꥐS)ݠtvpwտ$ki/;u_Oq +LަJ۵;՗_gZZ:nf䧧-0cTIz[UlNZj{Ӗa)q[:m ϔsPv%ָ6~k+{%8}`[sy}[jvF+A +P*(]}1o|$nڤaU㨉[!$!>/AJh?3і'a#;Y:v~AOo-AAkŠ8/SaqUE㳢M\ +~W/s[{bnq>yܳ3Nsl΢ȆA[&$ l̄oFi{b?~ˉqOOT)`h:1  +?.t/Q {z{ >+&~QKv~ݔ̄YɌȥ W|`\.YQ7lB3ݴj_ +znh~r%| gg`]y4{GhYXڥ x/R.'vIJ 2@F%5ܔ!+m dDF2:`ꔫN's:e8QxrIA1EO)8( R2@( Nr/\S >EN_ѓ)=;]WH%g[)d*' !1 ]ARΗTB=%!Ҫ1蟎ܕ14 rSi˗۰DI.<;#[1?_6);I[I,N.>K.e+%7sIv lWrɅSݮ\29ww{Bnʵg6W*| c$d !X22T+TS^I8w%iJy >J/)%lb\ɰ׬s'*媂tE{2ezS(R+dHA+hƦURdYym:R zҎ1W֓xxW\2ˆ4X{F2+zr& Id, %)W֓+KVF8D]O)px!EIfi77W7K0qw,3^@6e;F2xHFoI9#"}HV(sujT1顲A +QHi'=^+PBxSy*ݒ]lR@(eOX=>7FR>㉒0;ub5+Vy-J+4r~TFz8|r2.~!Vsމ +/8_q(?q3?ϰ-bu?ƍ!(8&Z~~ Ž4ܷwkx`u,?j|%B[Szv$sޟƲ'rq.O=ޯX^r?ź7#TrANE?qň~ z13$}ΙG_?&y _T)O8LЧpN_ )a"1>fu@ӿtmٺQ}qvPjroc{޹p6a +cV_wX|_}Rd@ٱcDؔÔE2v2fB JCs6~m"'D|i9i׬(M.}gwѩw1mu Ձ<ޭ>r9Y$Y;QHC󈱴^V^ZYj/8li@_}QՄ_Z!xo`JxA/K6OekQI-[هs?n..H}xXǜF{Mq਺\[Gng(FrA_XAŸH )O4͖Lt XwD9VGy0_ vSbZ>$0gdl&t;aE M"EX.UFfa%щZd.M >e?6 uttm]f/jgZyb\_Ze? 1>;/jAZA'y{ZzbXUPCˣ?G?nA,Z(6k_[lj%wRdeMT4f6cllk~ކ9RP +Y>/+¯~~I;9ƏAسo?%|~oo_6a럿wWg/,宑̬}CM܇ί7o߿cy =s+o~g~מ;+tiOܶU\o;7z~u؍vzoώśo~7_懟o?Ñ{ooo/[r70lU-w,ܳ~_T]0=Pxژc]a$:?%RtI_bKH /F rtk:&:G.J +sE3J.:~ܽ6:[ ;4V >hzøhBIgK86NhҐ?CCo| +oBy:%:a:ao_4iDm =FF~1./hߩ'_/W|t|ƸN?> >?*?#i̔[ѯ$autO5+[τ}{24\?Zq7hg={s51eJc7j[F5Fh& 7iī 4߫f JհZ >׀RC?oj/4$oҊ; ,^`to + +}O +%3x#aQHJq$汫3 &fPRKqU,LW=@2K!oYZP>ۭ'vvF(U Nfp|,7|o@YKG>rfOC+,&tl|8#4HU~ D紆_ ,g忢!kkq繿႗X^@.p48pb\>MZkK=$2\K\|$>zxO9`6~kܞ#Mg#׳?@j @ (#ݮ1^z {0kUD,]nBC{\ρk=jӏ6^T^B*Z] Ja`$Oԗ%N{Eu49k +v¶ݎZYJܞ㍀RRζ;ξk;~|OF;W7 +4:юuu6d6N]GN\ٞjru‰鱻gcc͎=;~ މ\3MvT!:eʡ#9~IhR Chr;noIѽdW=H]B]NΌµ"aqUįl{ MYs`'XL9v}\0ЊZ6 ͱ*v[ElD GVgQɔY8tGp UDJ-Y:J?-qf=cF}QcO3]&5O`苞=7:Ꚋ<[PSIj)Ȅ~znwѳ4 < +s憺皝Fem[Q i!ffV܀aYPT -pj .%t&_yvڋ@<L$j49gݥhu<u>NWVUu2jn.^,ߧ/񴐌2q]FnOG ur=^R]|dnEAi9J#2VtHt|Փ07"kyYͬoN$n~ KE/y`@MEWjUV ˏ?Wed*TǠlyKrg.rap6Le:}Ϸ0kH@.7ʘc]rD6giyA۫W.+5wl.6T 断(\KP2 + W҆?ʰoIqA.rAiL漐\dNKW]˭*s6sheU&L/}ks,\A?5ڼk}i~W䖑iGt+OtUkhekϦḍBs!f-U5cFqG|exextWE rJV嬨n"9|gR h~uIS$j\vm-뚌Ly.ww[}L :ZTGpJrN+Ejw镪V(J~;V>E9+.($өs/.e=Vu*W-L/-^I`?O+*+ 3/gdɏJh/ΩZwѼYknXWTf2|+oM]YV號"YjQ$ҲY 2XUX|*~kWt+3WXӄft!ʌ:uBy΅ZUK௬h.ͭ.'`6Z9ǹ_IG`{mqLX^A6r\DԱDK}?VmmI6Ϻk.ery_6KҲX"K5FxVn~Qf? i})jq +o Qx>OPnqOZ<]=Uxf+3xUn/Txŗ(|_=g~{~=O췫T_Ӭv+-j +r/"Yyl>~Q +j +Oxz +OLW~/QkeK&9n7mnϷ]-&y$x`I幗Va𷿳)Z4SU]?Sw vu-|nՙ羶6 'b?8~ܚ2Jp~n{7g] ;7o^|7[ |?p~>nW? d[x3.lN繕|38tq&9w>y8ܥ܆-hl8B*p{Un9a)f,k| p~n5ŵܰqp558=.fࣀ~aJj-YsS~8Oy.Oxp~.B)』>x*c{ +6K-8?Sd7D3/n? m!t~^< <_5l ek |'< <x nMA(<< a]yn:pmb>x!{x*Ӂ3v>|+g/~3q?9V'k<|v?V;o>nZ|?p&n ax YKZZ8x)! +x: +ׁW |1bw_| p?x e_< x-x#x3Zແϔqk~aY Z';;Y#gB!nC?<F끧t skDs~]z$+fC + ?rJZ\&u'@o I'~#-r~Џs~Op~Oq~;8Ĩ~q~/r~/s~Яr~Яq~пr~~~~>AAAqIQA?As~Ю(zT%ziAA%0;@ @'qNq~it&AOq~>Ο7q~7s~зp~зr~ 8?;8?8?rΟՋ9?{8?J󃾟~'GF!z+8翠~~Dst~~~~-gG;A#Du'}#}>A(nT%ziAA%0;@ @'qNq~it&AOq~>?5oooop~wp~wq~??s~p~+8?蕜t}? 9?8?G8?譜Խk+#Z`s49~VdtT?H|y+q_i8]ҘQdX'x_7gjcau +M$iѶeG׆8clhX_CG)6J6r=<P|~?\S iĥ֩u0>;9Fur맽cG-/Οݖ]'FQGCgǧoK\bLq,K3R,ի99/R"qB;\du,2_P3:ɟ}Gֿ~U?m]8N~ɪ>IeBu_$*~U$񢬟/Vų~N3gt񄬟et ;y2FYVY?;@k+e~WLDG3]~NQb/)ns=YBsmSD/U?d1Aώ3Ud$[KqMB"xLc{GcaNH~ 9:Fd=e6Nvu{lq,7Wgr=~NoKhc?<_W/َ3&~zx +~UWi5w]鹢~T\񜬟su8牭~C~~C'QJ}ϧ]SE~6S?#.[_`x_!}'c.%}e/,0+qEi:׎]`tӹ~LR+|FSSt6߇IJT-~]3_ ib< kL=GcP7Ezg{fjƫA绰5m.t Fi?]Fg撱4fj~E3"oi˽~MXz9ꦱ[ -~3i|s[:v8y}W31C{k:g<"aQT[ږ#>1zޖuF;{>cOkFg`Ѹ9BcȦ.>D~t^]c,c&}c8N :);\F8i8A #,獚8f˞mkzq\n:oҌc_PX΁u6 ~F/>Ⱥ>膷g~ sL>Px_ӌOh4^E7'hͻj@91c {z=1w165a %ovkF{fZiyn|Nע^#t8nn$i8J׶G+4# F\Ưyx&#0[m^bK dVKg/tsowGS\5^t'Ņi_Mro+m3]c,yTO}Eu3'}X f=t)Ce= aۮ5NqX[ ՚ #9.6!11:&á=ɤ6/1_=n|; D l&7SO[1[3SA)^]HC/$'{|_=޿-I{lQয়S4&;EEiu^iwP]O;?pi̥y~kOxz{]z'U v~Hܝi9OQkBci;l֟ϟx:|IIJѴ4=9STӴ>2zʵ׆:s<5['[j |?ߙ IX$+2IP7d2Ժ`!j_mB,+jK#XZ[&δV* ek؊56 d{g$ߟ'<{{ɰqk˰ N_ ~j̸?;E/u>ei|W4~Wumi,?JQ ֔ƇxoG&?JC[L;4^]=xq`_i[w}vți" 4wDq7ai ?.\hhJ.qomK,linf|\m[EE{j`[YqehJ/+U.MA?{ ?a>m{*iH;i-N]ohh3B{fBn} p`j]_w/B(}8ʾ{q\]aߥ9VGXӈfZ.f(}T*6ྡ\Ps: .kzm"a{~t~ܤȴ|[Z#-g i_F9s,CaMǸBRj{ oEG>4r,79rvJ$ɵO\vX;(0xu"QpxRD?,VJ; +C<=9+k3 oi\#R8iCctT&J}WO׿Va\ب׿6vZڠֿ>]cJ^Զ[|Wnrm%\:.Q_f+OɎ$'ziΌW<uY!ZoK|Tee%׭W,vuҹKEnXcd1ʋ.Nsk/`ܝױVey;zΣױֱtu,k[jaZ~fYuG#aֱ4miih֗Xbk-|:ևX~֏s,9Oֱޒx\xbnM{u׏u,#::_%m:OZSſ8X:NZa  ;'0;NNP'%WbNzgXH,gZg^e:Nz3IoE:z'ؙV_:yNzbK/^I7R~w 2]nw3x^8Oze&8β^!tz8βW;I{mH7I/p8Lw^lk#H'FXF~&gϮ#Iwu_:7XwI{IN/.'=wmw kmqk=׺N/3#Nz+ I/pU*NNz󬋤=:_/wB[ä'.IӻIw_/'V_Vo9^`;L5,76z:=ԃKu,ױcg׃KU􎓞=s^+Ku$(zw/{Wxރ&<\x>Aװ\B6j k*}2Zê BQkX7v^O[z{*3pz]ְ8w-װ^ְs*+fBħwZ<{Eu|\v|"߯Ps\j25mְuOěK[vkIG5!|ְ +Z%M%ۯm#r 7qOWsXO>A~~w#5!-sú`݂ǗzzXw:N|e=Xl\_t!WT~\F^Y|G54ou#a\[U?~=a /|l`0O;ד`ǯ;m׮ǧv6-Wcr| +(O4|s +vjq +vBl׮%-#/,kWr=vs:i<⻶9^|i9%թ͡ Ovpt\4H_>\v<.W &x[\p^t'f*7lt9ۮ˓brŬ[](Lϥ,j-%Pu86mcDyVko·;ʍ>Ma}L*ּl[gcD>1LO:SN(SkBOJy' H8f]\W2t((HYY?ѵ =䙩 L}wkez,!(`oߤZW J3b[/Aa%\!V :-CX ]-2-0ĚJo]*_x5 iLRհIkb}v<{uҶ'CӬiH;``yn]iWrVASii;3t>|ӭVd@.tk4tچs{ty["-,c5ZO`Lye,ON\! SPLy,/C7O$˰jMyCɷ|^f4/ȷڔ絎BG X^]:WgZ#6t>o6Җ%C" |X^.zi~+DViy<(O[ϲ1̺K|u>0k%gm`y=U>0n/Y^Osu'gҖ6iaͬگM㋈ {G-2"O_7M?qc Dž5.\,rq]*wlCwb:XϓSAC`@IDcD +qT's7 kY|(;MŻ&E! ~m:rCma}/c )Iv0pw< ܰGߍ+/ζ£E|t0tc`}o\ovg,X`k\tr[ lv*`;`0vX_OH/;Ep`@֠_M̔cc{–~?Bc}Xہ>ؓ%T-L6ݘwHc!?P?[[-{Ere7|'=FC;>0kϱ/=C-I:M8F nL9u5-!чeگ$qBZ,{JCc3%'IS<N3⨆0İ϶-@hǦ~޾8Jf2$??C)~o~+W8񻖿7b{𻒿|F +3$!ѻ +{pv.#l(z]Կ}]5lWN _uw7~"ӝ}9 DyWA٧e싟i-`.f4ؼLsuU^u.}^4Gߗi3adƈ9lLxӟi4miiuJQpDDx{F?vs~4P44I>ZA֣ *o;{ _SCC AZkDmH,3 eW d\wg:7i[s~T?jnz&~_{o}K;}oٴ㽩ky +xCgry%nǰ1'6X8̋>~mABϽ<^Gcߧ.vo\%[ ">=_;N\ɽ}e"~F=XwK΋~-WB^럀ې·Iϋ|4x8'pHw^k<ܓW-^S +BҫL7'ǡ[UrN->rE}0x3x^?-3xk%rK7qu^m'=0ēNoI<9vod;m0x{"> x˽vrIiΰ\9טxZ.OEȽq)4%񌾜i͐kT{Dδ.g{0*Nδ&I2qg'.1=Sx?tn>]COYp=y.qGlU=~,ZgY}iL҉8r;VdZC|!a)kC/3U{LkJ:*7o&)K岊1m{Rr.Ue^xOۍ,k70z:Y;YnG|M,WUL6Bzrbp҃^zs>{SKizuWܫI\kɽ)z8yϳnrNW'yRɽ)zO9Γ*==_8W1Eo^|k_:_: >{S~(=x)z;/.3x޽NzH}T{SrNKWiH^H_:B+NӻI/pi;NJ'V;%W'FYmENzQˤ/NzQ_H20'QNKEooBzw KcB/ޱtqFPʏ{R>Sݰ1Wtt͞_ +O{Q&اͰgo{ #gֲoE~gygE^//Ğ㏿}鑶șx9/ϻ?w?~z||j}i['r{DF2#R4 tM~yyV 3B>#r?pv=;^tW8^/cK܃(WkcBa4P*BYl+3z*DE5,</aF -Q6$ءaac)E<_X ]V Ǘrlz߅rl|.etYp[>.7滑𢰰W ee0#E}İA]Vp~:{Npb>"Tn ¯\a=֫Um5HwEUp@*i>1q[1:ᲞwGȽh;fģ~7zy'`Kog(n6riqvdX;_<<wko*=0zo^Ӟ=[fgӊH}BrjCX3JscB{=fN0W#6:=#C(akx?95?Bw;Or_a]V.1u??veXxnlkEZvl65:0 e3zX^RF'{h=q]N4ܘ#n/ք'qC.O6*ʛ y~t 9:7~uGUݏ~Yw3ga:ݝ:a8Qv-?6un_YRi QW/m`$_%7iY&>{S}uFwl8okg_ڵ}' e}-|?L>^oRi+}G^\*mV_|Q|"7lT#a;ED}lE`h~BZS&v_| q~{QXABJW'ŗ3}ȳCA[wRiWanCSyCN{I3sZk=@f侞@R'"A'I\E>rЛ=5xٟg5X˒DW}+<`&Y6rN4Jk! _hxV^ùo4!S o ))O+kOHpo F.}$g'<>/H N_ Ù%xo_R>KxI=Uܓb3|)O?.=ɕXË+op?< oeRrA [Xq]$/ K@/$B NxXg3m^5ɟ|NLѹNI~IeB)KŀT]Rel]#Ը#|y1OH)F2ÿuv?a\._dLx@{^mx%;T3 1?)x% _?OIH +#gC +6S [I EG H_?OxH|Oo? `ÿẀ3~[< +xO?3%!=?C%'Y~?kvɏv o#<- w  /"UoU !uW/#s|_?W¿ ½Iu73pq O|V1KHE5K|e'<:I(wt],>ߐ(R)(?"ךzVQ[µ{.+ ng]?!z_j'ܫAj'\%sIxLcEx@n…skn4{ȧZ?B>M1NOkxpL×S o ~Xlh$<@? * > ~MOWSҧXWIXM) F.WKOc5OxXG~_ӯ}f7K| +?>՜c +^-_M7E?>3VL >V#0K|X_CS9 C_AO } +.S }½'\I|)tc8dk?YNK| +d{?OK xX^ O} S5r_Vpk )tq V~j2Ckx,Wo|9mF;u wY K^D-OxHhEkJcY{톬Ҹj}%:-ۗ?D9k3Oqj<5/DW]yy:o~t#ljDAx?=]ˋv*3?:erCym›=>7-ԸO%mL~η +GExNBϢxy>=t_$ĮcK,[Yt̿z;ݩ2;WWGF7c%ʹ&YF_I$zEhzTLP'v_.y<{UK?Ph ~yƟkv])>n=QލX6Qj[o8RrNO)&| +~J_ J%."mh>{x`j[%'"g?B=t(_>O)Ǧ Z>'닿-elkwnjmD/OK !{Pog+hqua澇h?;ur'uez\#ɲD;W}׈ݐQ^=x.H>~|~_vZ?9mĸt\6_Hqzɵ&ߎ_H]w/|6C:?$AӠT~0~bC2X#(u٢IIߚ%.L4M smI=G;|z#}3o'x>3?unN$77eJ9ruل15ܧq|Go9v|FoEAg>8XˀqvK hxO}wQt5'TQ?i)߮ڏ /qD܃=c&"euoPM}hi}2U棏;+"C#ILQw*G66eF'Ȏ$Acϼ~Wb ͎ K(|ʭLPq} YT- [e+\ޝ +YɒC|ˆ~{~]s]1YӺ[ݟ lunw:Vysk4y:';ۜV{_)/y{}?{:f![;3IlM;z.շV{Q%>ƹ-=eu>{z,*s5ݢ, ;KZwލU KzC!ycM8c=+m7T%inn,r!GGsO6}~3>bsn!ysᘂ|?oa1qaybɣ~2?O,GҎϦ-kǖ%"K{'@\0f?@c]^ߋ{5՝o^ r4c仔H#Mgz/¶rF붥< 8z>! O_zm'aw.qljqA>DQ˕~_Ey,[4dB{+}c_qeGDv+<x }Ƅo\N%~K*D|NBԂߵ͟}m.`k{ 63geNNJ;ov܅i!^(C2, yy/D)T Iݱ^ rEʰ sFЭWmm` sclƖ\qBrbe.81ۿȓs +U$!8_/hx3#W_ CY;I}?bU}࿍]~w%uy ^}77xPixźCfoX?~o_Ʊ{LŲt<%eP#C\:csD]g\lxNJ?E\U(G¥FDQ~1^}Ӗ \Ru2u"SߘcmATsF^vkQ/Dwˎ;&їdF~{6{5M>JSį̧N"MƮ4BBb_?m;pƱ[GA74apt /GB>lwt b\moN<nM{o6?,ПZ!؈CG{x7agK A?BHiOǂ/`,* "_]gA.&x'fuy|uHbL9'Dm14eS>3^?4L>)O.g$^Sϋ2ڻܑ%="h"Z ZJ~.1f)_v8֨ó$_`'#q/;w]C|cO1=+zP$cҿhVGH5Nqj 귳/^ 2p?En]}c}JOqhNvhz + 7n1Dːg 4f +ΫxB粊2\+E _KhuƏ}nqNYr'wAVMOawo55^9̝aġ_4r8W/Bϼr_oESo/C1ÀY)f<}a%?k(;> GBݐc(l|␨OL"pts߷KmlD}bX{7kw _}BQ߾O௹@'w>_KcEy䥨'C|읃ˊf.).`G^O +cÆWOΈtQvʾF٭1 gz N^e_gTF.3;cֿF +_)C|AhGYد y#r[!V1mn\}CRu?7xҺ; x\VxR1hkuWK[CFG]-ö2noLk++c|µ2ꊳ/s+ܡ=˄k׭–c6)Wz`?.6>0h{&r;FQudv@ȏ] BQ򂯉8eJ;Vr zC ;xoSJmeax'"<&O(FNLJ\3z;dH\mT &Tmi1w7 +ԥq%VȪX_?k[5n~YS#,mdqj|tkw(Q.i} :k{WjʋnFO+lgYGvZ 1h9AЁ<:N'К'q\!n򴾦_3y?_MC[ -DrD#0} +:JOXAp WH2퇰D_U|UO+rc53kg,fG*}-ۄg^Ȼ=5rRإǼFuvz##(/x}-uZX7 \bMù9+z0Tϻ1;)<`Z&~?.%V nwp+1UE kt}5׉ױN{Ds繉۫iqDzJQ=mb'<#%H [ȨvUFD^gsGW,ԍ}i/xwMeoϹXXпJNl:ƧDŽ˲D9HIUr#:ps29>+$c mU(BYSqVa<=a;SƣbGnGг C] _NQ?6<͏'9CZRkkЇFp.k:u3ڗ.ܠc'f(.ž2c(5ꎘ|3G G>[<}&_Rw~xc;WdMGdB3vX@<9_ ʤy{rkBq{DW,xW=u.>6`odžm<>=vᘧc|,4zih] "/mfw5Kϓ=ZR<>HyxӶy䉺ٟ]l_Y/ϻy^w,u>ZkgÈ[7Xm=~~&6?;'z"V%}Ժ_(Ęp/_ |7. ^r^ӭz!V!_ո#G+pҁ2g?!ܿôE| x}rkJoߡ0`EJ D|_eYWh|P%Z%.bf6 +vvԟzax}l(Enۡp;6uU;xTa,|l@^ӷ@32 +;e2ne "8uTڃ95;N^t^">ڝ^F*BlS(lR{\ +unǥQp-#6\2(zF]}Ue}(OZ}Լ -@^zŤ}s. 5&ʓlQ#? 6k \ sXs!;m~%6~J4L%޹oޯ{=ޕWگS<2=m1tydŷ){07gig9~<78x3;[jne=|6yWT64Wփ彉,ӲCYeZ '>b)otvz_8OaQ]W oQ2.ul_~Oe\XC](uwe~5߽P&CE!u^`^6'ʍyt?ڊrCnk@}Wɕ)ꕰ6Tzˮgz9&h|X07Z83CJ6z{}=_^^w9y}_ϫw?=\_G ;yVB<WZ8PLx^x-۠'&n!652~\(_v۬nsi;yQ!?YިNt[pM|q'N Oxxhi,AZy(ּ=zn `KֶjA9<~۞vi+@e]4ʏsy,˲ c3V rjP+)X}sg#Ibp]?(TОօEM^%gfBDލLwgZ&-]H; )VvǭCdYnt5>V CSkvw9D}yG Ub83M6ކ1<؅rgf /IJAӴ_\9.F}w@1mX>uCesYc*B_1n +>q` 9ۉѶʮsW" j 6 LW[mqFktue x]̸[gN7҇Zޣqk h[?}~m/b.kV~/zgvq#[ [Pm[W~7Q7uzg09<+Wl3gpdp̼ x21SgZ2@z<T = 47odчis:ogcquyiK?krzۂ8sD|>xhAL~:Pw yeF7F~CGw(߶4;rl݀q&Wt򣛐sJcAѿ%)Yz>Iqw(w"{ }пq؋@?zo.l=ƖVK8iVQ7u Az[ڙ~ȶҟQm_/ʛuK c{}DhQޥ`7>c FUOqN*i>wp%R} NhLG'ik>UzEr`# +h*EN%Sw+Ε0*hp c{1]q']0121yM %}-Ѕ}AZ&֣(<_BSf9<99ws8/OC'pTmĖ ~^/}޴3mfÆ{76fw^o=[Y܊uҌ]Omgv7ijS=߄3zlN\[G'Jٖ$Sw{t +}a95Zg1G&B.]hF/c"?}v[cb3;/~_RyX)>*ơNq~7s[^ 1S6mk;g#8_0ƪ|Pk. ܗ(Il/R(`^|Ɠa{lt~􌽾pܤY 냵z+k˳0ʽ9hRY6ƪa&y!MIAVē#?^1s3RTlx>` ϿR^k\/M¦=3EhpO 0LF~QVHbZonl4P}]d#e{66vY{R=d=v38TdB\cor jON qkhq]O>zIwźPYC=:@?/Ms~Pfz vy +7X(粝GPꔒ ȥˠ(YvYŽ̰ѫ8^<=9:˶ӢQ&G["+ib xee8cf/T56n8Y=(l{6z\>y[З9 YЭ]Dg7Vy1ܕ-s"MOAk~87h5#N MU4fM0ƸIvN~K%˪-wfIJA{[f2i;U6;.h8ibJ\:I=jӳ,L{gm8KDܟS60])}+<| 0^~ ?\;)=#d;yz~|VogliyWly/ Z9εd7sːwBؿf Y QV/ۥ+Dv{20-ZiisJ3g]"kwɹUiݡG$nټh ^垱Kt(k3O>_;CidWA]5\%Z~C -M_}/³<-?sʶp.2,/M!bu֏2 9kʏ}z6Cvߛ=.2LvQ22ˏ; ̶> <ú=NY3nn;y&CrƻOǽޔ1whI}78euR&*mtNo8.~yhW<{el:FЗPgˏ>l;/|G" k۟>Aƥb<غ_DqH뽽͆vfMh#˅ռ>cA;dX6KɅ6k]TWO@_'ۣ +RT춇vka^>Xޓ'ׯ9O3ovt/hw:яՇS}ZGPGobS/y(ݹϊ6;v ڮvog鐊V-ۣ_WX_2PTp=͹{:h+c&2KdxxelBc/QF:ZU<|oLMOUIynsK4SFPgG{!رX;>y>gtI?+}?!Y3gG];p嘺w҃'lBz|~>I:Ǖn1AĄ9c㜱猹~gUE1gؽҗɍIagYW{&K4"WAlyy8k1geU7=P#X?Qζ/cFqxΉu+'4'xO ϐ{;ƅݫЩ|˟dzवKa`3u&u'oteN71S_Y-x +h ;f!槾Q.ˆw~xap-L +~n׬cF.3J\olOSD9:<1sGx!8^+/JLg23zyWýȚH}e{s|>C}9/3+4Omn7pAݮ}YО: O<$z=`>:o!ߏZo.Ѫ~8%ʛ;99V}+̼s/_y4}A{}ML^JSpM|:}v̬RrOv62T\cnf%se˞eKy ,{;ԋnX3;}.D玞jVxWzcmm? w*7xAjTQ_|eGQ>o#ߌv O?8 + Ʋg-7vhg~ jyM/ #΄.o>(cx 7$V,ZЗVeЀE߂]8O Mlh.B=Bo6M?}oJ>t{?K4qseƀ7B xg2))>߲<K$6~?&tjUc S#l?ƍ_G;m?/lQهs:A>H3]2iPVwx`$ >mx)}g'hOY_X~y}3 _qWȏ 2#ʊX/o(Y{g,˦Ocf@?_Vy7,aBnr㽿z}ރ0^@od/tt6\u%MT|>.]q/^5,BO ቆq0|qg}֛귾^m]5;o w~[(CeE=߭Jaef_N〰؇w?up>uv6CڱvO4?o:rʹ兏~.ny8z|e@}'ϟwcqs~ȵ}~~Xʉ>Snt7c&L et5օ_~BO"if4͓Pup'2FaqbDh:i87 w(=]gMOcUۙiOiLSôƾROww/`쌕>9͢_lo^gm\amO+;mm] +e9ѹ n({h٤1F%dfqۻ)ac[sGG;n|W])xvӿRcKu=տu#1\_>8eu1~c/{x:nMO8jy9m?HxLݼuH;۹OqV2FWgܷzIo4Zrn{-?s6>{8O mWgu'gwkxrf C>9_CXF]ޮuy9˽JCjA1n^(<SwP ?ڦ'`j>`w>n=p 嵟#q~VRa;-sb'^<<;Bz9^``vr(O8<z'ʍ|/KKyE[SαuDžvL7eLuU'~Ɣ9О{7YG֏簺-j-3od/sW=u1M|xwp'rq>(>/3z~zcFDPT(E&Mmbw؞>p)V"5çӯ;qo70=tY-y/05c g9qfqqMi"8uFLNL3Ǚ3 D+R *9R9%w{"?'-<>ɶ)]VuNy/~1:y|NwO?Ѕ~ۑۍ~]6=j=RwhcQjΑb049VrM zb͆ÉFm49.hHN|vy2~>| ᬔNzv։6MtS΅Z'|eu:ҋѻy%⿷uS}C~caݿп[Ar<ey;c[)~V8q‰[) ~nysb(ہ>{vS蕒?'wWɭP߁ǒ}>铻>Ug])7:e6NC< e6SޝoJyK0M{Q?6h_^wԪrA9Ona{3Nrs%a v{r&)?:^8F[OԹD㏬G.&}ԍzuTk6٥@g~n|o8vK׺FtY/a<78{/auVȭK$m6W]%nE/! -{ .Ѿ>p ;ȐIKyLJPu3N]a:j +/oK䟴7x"oPNA';/oHd߇瓰'k{e4/H=}*uJ[XdߊRn'Vuog_z[kI[FfOF7<6:U'o}oNzͷߓ{ؿ)=8U_0ˑ^gB?翽’Mz/(Q߿j)ǝZkzqZSL֚^xbi/=!WF1gb4_CXwo_?og~~S?]4P?<)`Agwӧ=3mD٫h3a͸e\QoMH'ѧnkrK&2qɥhWޓh_ a c&髑'd;ysxWm]m6q}Moos}>}%o1);5y~fT߱S=w侗wWK +"[۳<wq!u@̎æ ow1~__ֿ =&=!pO|/}:hA,iF{Qgp +,_X܁]yvί?n*fcOR)ֽdL~+a?ty3+[)`hvNxRUr}y?Pww:kЖjE~ͶYDv "6p=r>HP}~㫧J~t{sDPVss>{G +#v7u0>𑆣~s:065G< hәr;c y?ױ/= 3w,;c|dz fj(u[\/჆+KŘktˠwC;/EsNXi/K$ʴ4Jc_-X=[x85+ʷ<$i> mEosF:^:ČlS:yB ͨ3sPnA; Ȗs{b܄,oo&bZf ;r]{}z_ͪ-Ky1hBn<2kSr5Aɋ=W5Uq+Sn(/#firZ cj wHaU{ 'k{s؏s&E+z&ZܢQD>VvC};\@g'ܣLuEq]c ![U x{^'سY_=rQۣ#=go7WRrlCOxN9k)[Cyug-[^>z}(bnOO_{A~̹ t^|qXgW{8S:=֌u&7{іNyxMKпLfP[ Cxzs|m?#N^Qۭ}CM~;uKܳBolfw-m>=k4gYY;csj?!3xGrx?+GNRdHk);ȖsD\iPd9Zѝ{@=__?:MXțQ!BMug~;Azspz99z9Y%MJ8 sfD{/SĻM<}EM/`<75:ȝu2N8l{YBQN{|zWz,H \4,ߤ_4C?[^-Z:vjX/lƖ%vz\QxO* SП2ۉ<ܴ";։:Я5nD_佝G+P\AOn1<עL”'x`|Isv ȉw@7JG+dGu;||܌о" 6?d&tM~h26봰9]7\݅ ~.mڜA[jWs{'ʯnцCƠot;veZosDZl[mf[Yܰww.o{ܜtŔ62oqZ챌cryC Q~ w86yJ_|ɫz6d(睲-C<! K]&܃ڳrڏO{_Ǔlk};|̥_=g&^S1|~q]Ţ'Wh7C(ok# yw=QN{fk>qMwzB;F2Qq.~cdk:D;O]WҽޘNޟ3G >n~G-mЎ,H 9&_ϳ{6sׅ66VߕPuܾ}(N|Fw]?cosa>w2(wɺʺ]>|Z[ސ%>O7EG/-V |?oo坘}d!x2~uqɭ;%8={ʛ)W*ABx,m$d@0Q}[a^ܫ=(eWOP/ןʐ!frUqe27(x2>x/O7>n)qޢ%D**[TN[MEmtCde?( iBM]{?gRB68@g"'$d?%M쏧i}[!%҇).Nni<p| ;jlm%y/wo]<#1w~LjxQyY! $\Y)q~cG7C=(~Q7oo60:W^QMukr=O%ݦVCs7**0>]g -nAM5^1_MBΕb2q{'홌"ޝcoeyi|ҽ7<9ؖVW-/=UPy~WsG_>JsCyA~͟Kܞm'Cn)vrwYW?de3|em^ߵbFlTy! g& ^xi:6 1hy$7h`6!ԕ mߍYV?xe}Bg?SD7rKa Uuh61R"KSF7R6!:;:v$M_B;:| <);lyS8Uw껨BdxGø{<_ND +s +VڧK+ G{C">1RoJS$퍲G>lX˻9Lж6\pD3!6 SW}]-D^k?OZkQl"ApK[dxs\eކLw~h~5W×H)21_Ǘl/, b ]e߫3!xojrgx6bL/%͉PߊPgVY uKn>`:e~~u;voH1 c[_d#xw[7Ϫp^6V~ۀZr.ygj\o+c׬ +P]Um>Кiyq OϑW+?:Y4$~w?x='lh YRtritv)W~2\@=jmYɺX.:u10!>6:hlP=]?wc]9AOw}} +yXavQ ++7ۂ;'-Eq[Q~saoJDˀC8TdyGkZH +y6s}QLߪ}o (m}ؾTxurGj5ubn+{'. t+|N~H 3a/7Aw+ +ڹ6} 胲GƢA +987 ہggt\9"#7_'e}cvvfk z Kx4bR3)y=|/e:?XZO ċEJ[:Ơ{#!֋Y/C|{%Oxp1WGN +xؔч{\Yypom3ߋoX{2ua#J~N9K{G "s3+;G%?)3Eɮ~$ķg2>|e/̺k<8.Hߒ' A?Lu~9=5ov֟g8ou_xc2lGƂ(ȇoQ{_bYq_Ĭi.'=}xr#GD[E"\W6%:i&}ߡB*GsT{ 6-9nk=/Eg+/]Ƥ7m-G~ؾנDuYzT +z}H>9/#W_ypU[I|t+?&S#qkubґaGH+ˁfIQ53iJsZg[j~sZnkQpb}XiI/HZ~9э6֞;onXmu75N[v4s_'˨J#Ew/no71nxN*ד0WCw@\ݹ;?sE޺4ݑ?('2iS/d n%,(x:O +9z;'V +˻,lϚ /31f@x&5k~7tydzEQHzW[6 ';`g[\YM/͛!r_c #*nَvm8l׆]#6} cc;m+T򼺼}XoE[!??QU:5R ^~g?\&2ݗr/b"⿦FֻNo%%+ڛavUhoK/9۬Txre{oG[e֢ͷg`;MWm87mN< ;,W3 +.pۨSmw*+煾^mB{)s܆6e;ؼXDٹc&@Tx u-@zTDӜאԨWo +yeA\џA;t[P~Av1 fп[ύgC Wt@9E1?}VtлDӫû𧉦=HF0K5 1+ZR>N{_x߽1ܝo3Օu5 \|qŌE V_Y]X?w:ճ4YU39UW-E5i*}.j|ԓ򪅵Tx Q쌹AYfDRY. R-xnQ9-[Ty>oί ]!Ub[]*_x)wfU5kTlnpB!2eWUϙ[gG@W_4=%TUεH4LP|T/"t2kN%ĿE+fUͬcjZM5O˯򊫧M2bƔˮp_< H ̚_13pM[UV.Uۯꅳmg,SϮ_W,MN{fApa^KUS + RT ;uIs(G3fUK)8rS_tK٣H>X]W4)<`SI|hv(Uz!TĐ2~┙Vt P_XQfVke;q]59s16KeÐBWޥhmJ5s ]  Duim ~.Ԧ%b-WգQ^7|RN5fD-+fWiM5:x] WyjMpܤ#| _%k+Ȃ~[1 + ]nT"Y8m,:Pmtl [vI@x>3|fU-Z8 bj++AF,tKe󪪀.LŠ)'QJ\9U_\#jR*գT]4 P>j: /MSMUΟ~3*.iǦLH=Ly9,8=fݿJN4ޕ3&cַwNUi;A%5^ϫ{FmzV{>,yWzgڹϒ*ii7^Bw…#J^R55U h4;|awfMѹAW9 ю1N224z;~=?xW4n/is+OiǦpu5#/trq_$D 3q4jƕ]7zȲS>ě1ybyZ6촊ѪvwY5)39t//.,ux/^&d {mmb`4TQPO /`vwO)؞n 1W̮ɼ_&sE gIPণ_P :g΢ "X[HbƢuS9\F +0Mʭ6\P+9`+NbՓE5u*RX⊲Uzn_|KER2_Q mgS_X.IbE2ή^8Fh/.I&|{ͩ"h: ko8Ƥ 0'_9)W{/_~jt.}D< :dӑ{ ^ye._(gH*OazRь\}pt۔^VPKqTni9tԪӥQs+J"nRJ)DIO8ndAm.5頋jzOsFM>Ԗѳ]Ust4J~a%CL5څJet;1wwJM͢] _3j2r-B{Sљw6̰sVyegU-AJPHםKL%˛ Мw"eRepT-It 8Awix*޲)^59F4B*֤։VYQ[UHҴ/:TVio\tnt.U-2?I ZE)y/_Ƭ\LoRS0Tx^E|ҟ:2Y:D)# ֵ#YU]&'fənG%^\n^55ķb7I.^sb]K]7u +[;8,BIT:[t"96r"v|*dPDM$lT!Z9_ +3Tη RIqv ѻ@YaϬ,ZXJ<Dz̭iqMltY / Jpqƭ\2KRkUǴiACV!Ycɲ%kTJn4On!M9u[aDjGWϮLB)X v~]_Τ* K^wWo1m'SM2~ !*<ң71>ӝ~歪Z\޲~j,b/?ߴV/9Emu5UN̦¤b{ZY0%Yj{E)*:XiL&5/2a\7)^DfBdUm%CtGN"ڒU +>~j9,Mŧ,X\w+9Ĵ238p$j1 )aUS^SMm+_f$tشICNNAXruB*'&Ѫe*R<Ā_KJORK¯dRŤ.D9.пij MZQgXm-uȮ[@U/Y-v [xEsᒨ)àTWZ% C:6;Y/t ȜFY:wYop[ur\:טz"WHZFj5ҩc\n 4wkĸN8ǁ$|֢*emFW76_:^D!-qU&~L -^յ ZW) ]}Ԟ:afW/T$u=A=24=\P(=M2FsIۢ3VrXH҅tclfsw. +ˏl5]V`KK|.d(@_e\"Uݤ,+__+7:]Zt ߗԣqf§gG^jV5WK僀2*ebj;WM[\f48@L>ƗJdbH#E\D:RBL[<]y82LJO*74Uk%pÏ!*IYYXJkwZH&L.>ӅH I$Ft}E5u)kZ;1!}%\N4bW%F_;~8HT &"%#*1^D:/lÔYFGebMmJ%h5ri:xNZfJ'_aAO DLcuPo6SW󤺡w骼4%irO{ǵupNTu{(AN>yZZF,fufTUuFKǓ8'(VEvVr'ɷ$5Nr:%ZWtNGLK4z rA_(;MMO͢xu8D>hh $$q .g3я^̉-{ tƇ;/WkRKKK!wj*8R;%[uDL9@`mz9t Im':tg[`ő_筅/I!hLUV`pS#Ur_d'[m1hN0S0r$IO 4z9vOfFV["͏Xku:$}5&gjP\t͎9(drnq":PM X[4zI<[;zIgߎ _~5F%uiO77WѡF)Ԯ˽f5HҕqJHKC-=]<]8ҹ9t&̄4*u23gmܓ˅y7k;)2o4$=FƬșA>2䂙b'|!yϯ^8OͷYDE] VQgN%3_“qVϦe"CdN/cQ +͇GoAHdTX7u>Z'-e&λq|LQi6d^XG+BvEʫs{pK}fƋFͲ.Γ-CUM̙VB4ԝ!K*]61d'~N.Ju%+)rf9obl +zCvzU/;EjkCJZ{Kίq g9>]=!ģ;3T!O|݅Bx886Duw':Zx.#<w'6)<7.1<n;x< x^g+(x= :?؊x65Oύx>g'O񜏧dzBHswD<}?ύD݊ !O$!Dx>g :NK$6y:sh"q.c^Gx³(X;81,x +g'ٹ !xuV"1_xD`Dxnx52؊1EЃ‰ w!{/M$9t&x /99rOI$~ vQqi~u hn#^6%2$dkK AT>0Z4r1޿q\ |+zoCl]YVG;0 p #ò.pp? 8F;`CzvYA{-? 9}`I?G`goC3sYڏ-` 0`5J }`/;>w?@ c_!`ʛ.17p'˟;4 q/<=h;?CQ Cjv@Go#T +p}z'0mHo+:*>mT/ePUj_ S0>h'8O[ >#`VvV5PxYJ{><`ht'y̛w%q ~xwƉěO|Yajr*Mʧ>زز*|8i?%qʯɾN?;+ :gzD$.v%v'xI&&=!tcj|7mߥ_3_Emϭck4 +bLy!c1#d% HakfV]Ip D'{{=;ssE]>GdijZ`߻gGpȞWMถXOpr4_+ ٠¶}*ڇe"*$"=AA |Z)}oPy`s+{} 5'qg'&&T>3 g><]n,ETq-o@n+isSKNoqs3a(&r|OB~z_sv44_SW^wYMӕiOj>˅]C^V'%].L?trθXEÑ('g#Xf<@R<=z/ mZ08P*'X2QLصAy?^ d,hS)/ 7pG>ǎ9n(Lx:ʵZ>5^"Ui#Aa`KQGަfX=.yǽ~&cl=L{}nnb _/d"}TӘTyXƑḒ1]?ev=ٽNGA]|L}V2ݕS40=>֗ >! + 4UL-&%Ss >ѳڍA~![2Qg }|3qk"#џS /p~ge4b <TZ ĆZ ou\1Bo+}O?S"-fOz1ƠWg +>֓޿>yť<[^ǵu;Bt\Bm |{ٙTܻg/$SR(gc4ݙ=;jTؗ曙;BЋ_waɓȁpͿ#:Z)_x支_FJ|'D;BW6j8THўkk:c/SsdS2 w*OJ6gD|WÔISHTk'f/v>I5y{)"ӂIנ_~c\CJ?~7!~a_ogHE jv%;[OjLIQ11SO"8y#f oQrm#b>AV93-+_iqWG˜oRmmcn3☶Q]B#m>G$Uʹۣ"vi^rby~SSgjQ $" &407HBC-LPgݘ7sqɶAqv|E]as@1mhی6#m^ѵݶ1m'=-}g? ]1x4wvKXLof4xde-v/9J͐B!˼&p!2 {,T^~YĠer|_( |>QynPCƀ2jGl\8L酌t +ٗ?ҬdgKɦ39 m>/xE0d@ip>DuS}=iůYwKs7jòXm6nW$nWrqkJ0ȟ_D4p.@hh2g(I:vw &/zqy,|I:܀}J7[ƒbKByNwqL19n3r4L{>t~vnzFl FΏOLЭ>y)Qqz8AO?{XoE ߗy1661$ÒAs +tW~ =Oχ}w\wuBi{dg݂|V F_| '?: (-;btzfWwaz&v]̽%b;5E;khDYUڳ'>ޛxmv·fKE}aH0o/EE>}94^Z{ O Z$Ck}^ٯ9:=s%Qgk1<\)DJq],V"S:Yf'DtYx$4%/DӋ<ͤGg)SI$H [bO*gp_f"C|O8NUݭc{>.N /UMw&v:~O>+s!}|72hN#W'&GTҼǴ~X ڛೀ&}Q|ĿדֻksTKiS6,FNKQNIxC\AZ"so~ZG#v%wO`lŦݻV<3DytJs!NЅtMq 褃h/ve"KV<}h3+}0L+b"h>Lrmr5fae)h#膴+ l|E]i^I=ŊQaWfʧOT;c⶧{CFO ӓӗ܇CבʗW͘W)/(WVӮe_rK +/K#yY2Klq3Le|hGl *kbv3"VR.7uґڔêk&n%H} "[%NH{3{7bf;h$~^񤏎?#pr\n!!+{y)@cWzߑ|>r>z8kT +u&SAxv٩\= -䦹Y'5vĆ@2d1qIt63ZO%ȯWbgLh#ӡЉ!Dhъ ܎H~ȯQfQgG_O[pSG3uP~CŲv- +RVI~3kF2dv[lQɬےو|N~ N>bN>bN~.sbÜ09_t;pLfc ?K+.v-_j;m$F&kK]#:eu[_[;6)|)M\樴n)x%;/+ ?Aۮ=:9};N/8(.jXSkߤ]>֑n޶e^޺V.法_gK϶N.~9 +^_l~o[˪퉰-F9G6tj+C\;er N۵j|Auhe)Vv K?ogv:· vӝآF +ZGS8p\ong뀰nghO#Yp=.緷3.^Z5mH6nƭcla1:673حMƍ ɸg]l,uy]߲u`[6v O'So9Fi6$V9 &vtdv#9iPoZ%n;q]t1'1˓D4%фI37gIQ}"qxы\fWGmI*q_WxpU馟X+2x#z|1[W/͓ |.@n;S+NFEXֱizYu`4d)bqJaVZܾW4^P.|nT)#Ts$+Aݴ= xB.-,A^!fߜRbd2.&jJ"& MTJWTBy" ` g0 >thbg&2tjݰtRrh$`XNڐA7%;G['knGn2ِΑ[ܢ~u8ޑQD z4]w^NBNSv P"uz/////(^FR;J \V.q +XeA?UP;KZ[r+&akY/<&JC*ZR+kӹ =]~%/ڿzI ݒjT6?zRB>SIL}"3UmoKN,)SR+cq*+hsAwsKx_*[*%[$LT[ c ytmk>+Rۿ1QyTA%VȧayL!dl~ɺVnY=B_7U +xaa`[zE@Uv~JK^t?Wnkn1v"gON^NլPx>goncOy{m9MM͍ͧf9u59gZrߔ>WDtS-˩Xt= SXs4!,-iozaӟsd95ޡz1\3gNmh>%^"y:xa_BA۽oXMM,BV7kΏ׆.G~%\ClHأmvMo)6l !ɥ&(Ov{lh9v(<†oٰŮy T;Oo]=ʛlhMy $L<Ն6]b Wc:l Աh42H8=b4"چvjX?d>Ά.;~&lHS5`?t6ܜn?}ߵI^ٰNU=_>dy +[ weYާHX}cGߦRY*zWOLMomY@Mo,o{Fc/Vhк'c%V6>Mѧ)_;N6=ŧb3t((i_6>5MU76`&W9^X¯PP%v?ey{vcF-B*]ſ~LboZ`oh8xJ A*v^JNnK5Hc ߳vݓ\|&7}.mlt00ٚss[s%$s=MgtL d /=+MfD]?_6knii̹hkRïtù(L#qB|{YGD&I*oɕTEq0#3,‘An-acoFKU +ƚMx[ CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.i + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s" + cd /Package_Cann/test/No_standard/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s + +# Object files for target cust_tf_parsers +cust_tf_parsers_OBJECTS = \ +"CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o" + +# External object files for target cust_tf_parsers +cust_tf_parsers_EXTERNAL_OBJECTS = + +framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o +framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make +framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Package_Cann/test/No_standard/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_tf_parsers.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build: framework/tf_plugin/libcust_tf_parsers.so +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean: + cd /Package_Cann/test/No_standard/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -P CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/framework/tf_plugin /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/framework/tf_plugin /Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a373111024efe193ac9611741393575dded70aeb --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o" + "CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d" + "libcust_tf_parsers.pdb" + "libcust_tf_parsers.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_tf_parsers.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..430fb11e02adc38cf23ff1c82c9b687d0e8f2489 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal @@ -0,0 +1,225 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o + /Package_Cann/test/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc + /usr/include/stdc-predef.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h + /usr/include/c++/11/functional + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/initializer_list + /usr/include/c++/11/array + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/bits/std_function.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/c++/11/cstdio + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/cerrno + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/unordered_map + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_map.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/vector.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d0c6fcf6594473e65a9a231cbf4009d654e51cd1 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make @@ -0,0 +1,650 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o: ../framework/tf_plugin/tensorflow_reduce_sum_plugin.cc \ + /usr/include/stdc-predef.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/cerrno \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/c++/11/bits/unordered_map.h: + +/usr/include/c++/11/bits/enable_special_members.h: + +/usr/include/c++/11/bits/hashtable_policy.h: + +/usr/include/c++/11/bits/basic_string.tcc: + +/usr/include/asm-generic/errno.h: + +/usr/include/aarch64-linux-gnu/bits/types/error_t.h: + +/usr/include/linux/errno.h: + +/usr/include/aarch64-linux-gnu/bits/stdio_lim.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h: + +/usr/include/stdio.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/stdlib.h: + +/usr/include/c++/11/bits/basic_string.h: + +/usr/include/c++/11/bits/ostream_insert.h: + +/usr/include/c++/11/unordered_map: + +/usr/include/aarch64-linux-gnu/asm/errno.h: + +/usr/include/c++/11/cctype: + +/usr/include/aarch64-linux-gnu/bits/locale.h: + +/usr/include/locale.h: + +/usr/include/c++/11/cerrno: + +/usr/include/aarch64-linux-gnu/bits/stdio.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h: + +/usr/include/c++/11/bits/localefwd.h: + +/usr/include/c++/11/cstdint: + +/usr/include/c++/11/string: + +/usr/include/c++/11/bits/stl_multiset.h: + +/usr/include/c++/11/bits/stl_set.h: + +/usr/include/c++/11/set: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/ext/string_conversions.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/endian.h: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/include/c++/11/iosfwd: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/c++/11/bits/cxxabi_forced.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/include/c++/11/bits/invoke.h: + +/usr/include/c++/11/map: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/debug/assertions.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h: + +/usr/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/memory: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/c++/11/bits/stl_map.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/exception: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/errno.h: + +/usr/include/c++/11/utility: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/features-time64.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/include/c++/11/typeinfo: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/c++/11/array: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register.h: + +/usr/include/features.h: + +/usr/include/c++/11/bits/stl_multimap.h: + +/usr/include/aarch64-linux-gnu/bits/errno.h: + +/usr/include/aarch64-linux-gnu/bits/stdio2.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/c++/11/bits/stl_tree.h: + +/usr/include/c++/11/tuple: + +/usr/include/c++/11/type_traits: + +/usr/include/ctype.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/stdc-predef.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/c++/11/functional: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +../framework/tf_plugin/tensorflow_reduce_sum_plugin.cc: + +/usr/include/c++/11/atomic: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/c++/11/vector: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/bit: + +/usr/include/alloca.h: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/c++/11/cstdio: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/cwchar: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/c++/11/bits/charconv.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/include/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/time.h: + +/usr/include/c++/11/initializer_list: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/include/c++/11/bits/std_function.h: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/c++/11/clocale: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/c++/11/bits/hashtable.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h: + +/usr/include/c++/11/bits/erase_if.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ab564b315366e9116e7e5f75105bbec566fea95a --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_tf_parsers. diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e471fdc8bd7fbf949f581db94fd24c02afe34b2c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_tf_parsers. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..c535bf42276cdcd86c6127c4fd95adfb8535b346 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_tf_parsers_EXPORTS -Dgoogle=ascend_private + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3cf003af8a9836a80b800fb9146078a2b83b4dd --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_tf_parsers.so -o libcust_tf_parsers.so CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lgraph diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b700c2c902219d74619014853aade0d7ec177030 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = 10 + diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..5ad5be28c1be93f2fd8bfad12a78050930390a13 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o differ diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..a1716451fcb90fd33c1c0642d7bf2e5baee8a95b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d @@ -0,0 +1,184 @@ +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o: \ + /Package_Cann/test/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc \ + /usr/include/stdc-predef.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/map /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/progress.marks b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/Makefile b/precision_Problem/Is_standard/build_out/framework/tf_plugin/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..7a6d8cd19f7f9487256ddd49e3697ccd033ddcff --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/Makefile @@ -0,0 +1,253 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule + +# Convenience name for target. +cust_tf_parsers: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule +.PHONY : cust_tf_parsers + +# fast build rule for target. +cust_tf_parsers/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build +.PHONY : cust_tf_parsers/fast + +tensorflow_reduce_sum_plugin.o: tensorflow_reduce_sum_plugin.cc.o +.PHONY : tensorflow_reduce_sum_plugin.o + +# target to build an object file +tensorflow_reduce_sum_plugin.cc.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o +.PHONY : tensorflow_reduce_sum_plugin.cc.o + +tensorflow_reduce_sum_plugin.i: tensorflow_reduce_sum_plugin.cc.i +.PHONY : tensorflow_reduce_sum_plugin.i + +# target to preprocess a source file +tensorflow_reduce_sum_plugin.cc.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.i +.PHONY : tensorflow_reduce_sum_plugin.cc.i + +tensorflow_reduce_sum_plugin.s: tensorflow_reduce_sum_plugin.cc.s +.PHONY : tensorflow_reduce_sum_plugin.s + +# target to generate assembly for a file +tensorflow_reduce_sum_plugin.cc.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s +.PHONY : tensorflow_reduce_sum_plugin.cc.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... cust_tf_parsers" + @echo "... tensorflow_reduce_sum_plugin.o" + @echo "... tensorflow_reduce_sum_plugin.i" + @echo "... tensorflow_reduce_sum_plugin.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/cmake_install.cmake b/precision_Problem/Is_standard/build_out/framework/tf_plugin/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..655b0ded6e56d22be2caae3672490632d89c4766 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/framework/tf_plugin/cmake_install.cmake @@ -0,0 +1,67 @@ +# Install script for directory: /Package_Cann/test/No_standard/framework/tf_plugin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + diff --git a/precision_Problem/Is_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so b/precision_Problem/Is_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so new file mode 100644 index 0000000000000000000000000000000000000000..5d20870e402471988c823bea01c8b1bb8b7a46a9 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so differ diff --git a/precision_Problem/Is_standard/build_out/install_manifest.txt b/precision_Problem/Is_standard/build_out/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1f120f34f6d8399c6623df573f9b5db02c0c7cf --- /dev/null +++ b/precision_Problem/Is_standard/build_out/install_manifest.txt @@ -0,0 +1,35 @@ +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b/aic-ascend310b-ops-info.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/reduce_sum.py +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/reduce_sum.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/binary_info_config.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/binary_info_config.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/reduce_sum.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/reduce_sum.cpp +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./help.info +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json new file mode 100644 index 0000000000000000000000000000000000000000..e50634243e975572ee7551ea79d4a09989bede7b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "a8b6c56680c52ac8c16779bd3080aa56e93d69905a5136f88f78511144dd5f8a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o new file mode 100644 index 0000000000000000000000000000000000000000..090d55623cf4869aa662cdbc2c38a87b57f18b85 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o differ diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json new file mode 100644 index 0000000000000000000000000000000000000000..999f4f81c62e4b3aabd94ec1dd3451c1017872c3 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "4c18f6864ed2c98b13f4d0d0ef028655cb35953ab386a4afacea612aab6c7500", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o new file mode 100644 index 0000000000000000000000000000000000000000..86f4262d4913f82bbb071d0142af3d3782c96c5d Binary files /dev/null and b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o differ diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json new file mode 100644 index 0000000000000000000000000000000000000000..ecb3d3deaa6d3587470a14596d1dbfd33670e6d3 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "d8dc63b94b29bc53a33aea4b794e30e5b0a7321b7f0239deff9b24fb29ee2f50", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o new file mode 100644 index 0000000000000000000000000000000000000000..234f59fa06a971c1aa73801f3d5e99e434ac6a01 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o differ diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json new file mode 100644 index 0000000000000000000000000000000000000000..ab167274bc794c22d6c28419dc354d4254dac855 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "cf9debf69c81f9b99c329ea5e1b68f91ebde2e3004e6aa2c062f78c218fdda0a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o new file mode 100644 index 0000000000000000000000000000000000000000..ad0758e3affa845d1fc9d1a4e3784a2b5825b52f Binary files /dev/null and b/precision_Problem/Is_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o differ diff --git a/precision_Problem/Is_standard/build_out/kernel/config/ascend310b/binary_info_config.json b/precision_Problem/Is_standard/build_out/kernel/config/ascend310b/binary_info_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e0f175db8211d04dbfc3c5a4fb022d472c35e4 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/kernel/config/ascend310b/binary_info_config.json @@ -0,0 +1,48 @@ +{ + "ReduceSum": { + "dynamicRankSupport": true, + "simplifiedKeyMode": 0, + "binaryList": [ + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + } + ] + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/kernel/config/ascend310b/reduce_sum.json b/precision_Problem/Is_standard/build_out/kernel/config/ascend310b/reduce_sum.json new file mode 100644 index 0000000000000000000000000000000000000000..fb9b121ef0d420802ff3bd98b803c14cf75ab7ec --- /dev/null +++ b/precision_Problem/Is_standard/build_out/kernel/config/ascend310b/reduce_sum.json @@ -0,0 +1,252 @@ +{ + "binList": [ + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json" + } + } + ] +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..84340a0327a6e9ed0df4adb9ecac6ffda6c87025 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Package_Cann/test/No_standard") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Package_Cann/test/No_standard/build_out") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..fb60b21e54589d9eb722c543ef51a799c5135b37 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Package_Cann/test/No_standard/build_out/autogen/op_proto.cc" "op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d" + "/Package_Cann/test/No_standard/op_host/reduce_sum.cpp" "op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..a0df07eb92b0bc7316c508805f32a797cbe0eea5 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o differ diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..1ed7057b6296548369550deec82907044631adf6 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d @@ -0,0 +1,252 @@ +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: \ + /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/No_standard/build_out/autogen/op_proto.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/memory /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/include/c++/11/map /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/c++/11/cstring \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6dd47427cb24da584a005724359a52ab82e85675 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make @@ -0,0 +1,126 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Include any dependencies generated for this target. +include op_host/CMakeFiles/cust_op_proto.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/cust_op_proto.dir/progress.make + +# Include the compile flags for this target's objects. +include op_host/CMakeFiles/cust_op_proto.dir/flags.make + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o -MF CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d -o CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o -c /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/op_host/reduce_sum.cpp > CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/op_host/reduce_sum.cpp -o CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: autogen/op_proto.cc +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o -MF CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d -o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o -c /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc > CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc -o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s + +# Object files for target cust_op_proto +cust_op_proto_OBJECTS = \ +"CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" \ +"CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + +# External object files for target cust_op_proto +cust_op_proto_EXTERNAL_OBJECTS = + +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/build.make +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_op_proto.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +op_host/CMakeFiles/cust_op_proto.dir/build: op_host/libcust_opsproto_rt2.0.so +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/build + +op_host/CMakeFiles/cust_op_proto.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_op_proto.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/clean + +op_host/CMakeFiles/cust_op_proto.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5a3ba0031a6090052e7d3961ea57748aa372d787 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + "CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d" + "CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" + "CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d" + "libcust_opsproto_rt2.0.pdb" + "libcust_opsproto_rt2.0.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_op_proto.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..320e4d06fffc3700a9b3ed9f7970d5c62f8baebf --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -0,0 +1,619 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o + /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc + /usr/include/stdc-predef.h + /Package_Cann/test/No_standard/build_out/autogen/op_proto.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h + /usr/include/c++/11/functional + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/initializer_list + /usr/include/c++/11/array + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/bits/std_function.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/memory + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/c++/11/cstdio + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/cerrno + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/vector.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h + /usr/include/c++/11/unordered_set + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_set.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/include/c++/11/stdlib.h + /usr/include/c++/11/iostream + /usr/include/c++/11/ostream + /usr/include/c++/11/ios + /usr/include/c++/11/bits/ios_base.h + /usr/include/c++/11/bits/locale_classes.h + /usr/include/c++/11/bits/locale_classes.tcc + /usr/include/c++/11/system_error + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h + /usr/include/c++/11/stdexcept + /usr/include/c++/11/streambuf + /usr/include/c++/11/bits/streambuf.tcc + /usr/include/c++/11/bits/basic_ios.h + /usr/include/c++/11/bits/locale_facets.h + /usr/include/c++/11/cwctype + /usr/include/wctype.h + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h + /usr/include/c++/11/bits/streambuf_iterator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h + /usr/include/c++/11/bits/locale_facets.tcc + /usr/include/c++/11/bits/basic_ios.tcc + /usr/include/c++/11/bits/ostream.tcc + /usr/include/c++/11/istream + /usr/include/c++/11/bits/istream.tcc + /usr/include/c++/11/cstring + /usr/include/c++/11/limits + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h + /usr/include/c++/11/cstddef + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + /usr/include/stdc-predef.h + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/initializer_list + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/vector.tcc + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/array + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/cstring + /usr/include/string.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/stdlib.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdio + /usr/include/c++/11/cerrno + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/functional + /usr/include/c++/11/bits/std_function.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h + /usr/include/c++/11/iostream + /usr/include/c++/11/ostream + /usr/include/c++/11/ios + /usr/include/c++/11/bits/ios_base.h + /usr/include/c++/11/bits/locale_classes.h + /usr/include/c++/11/bits/locale_classes.tcc + /usr/include/c++/11/system_error + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h + /usr/include/c++/11/stdexcept + /usr/include/c++/11/streambuf + /usr/include/c++/11/bits/streambuf.tcc + /usr/include/c++/11/bits/basic_ios.h + /usr/include/c++/11/bits/locale_facets.h + /usr/include/c++/11/cwctype + /usr/include/wctype.h + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h + /usr/include/c++/11/bits/streambuf_iterator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h + /usr/include/c++/11/bits/locale_facets.tcc + /usr/include/c++/11/bits/basic_ios.tcc + /usr/include/c++/11/bits/ostream.tcc + /usr/include/c++/11/istream + /usr/include/c++/11/bits/istream.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h + /usr/include/c++/11/unordered_set + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_set.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/include/c++/11/limits + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h + /usr/include/c++/11/cstddef + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h + /usr/include/c++/11/mutex + /usr/include/c++/11/chrono + /usr/include/c++/11/ratio + /usr/include/c++/11/ctime + /usr/include/c++/11/bits/parse_numbers.h + /usr/include/c++/11/bits/std_mutex.h + /usr/include/c++/11/bits/unique_lock.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..a9972997a6083a0fdcdd33487e645670608f151d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make @@ -0,0 +1,1215 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + autogen/op_proto.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/cerrno \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/stdlib.h \ + /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h \ + /usr/include/c++/11/cwctype \ + /usr/include/wctype.h \ + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/include/c++/11/cstring \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/cstring \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h \ + /usr/include/c++/11/cwctype \ + /usr/include/wctype.h \ + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex \ + /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio \ + /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h: + +/usr/include/c++/11/bits/parse_numbers.h: + +/usr/include/c++/11/ctime: + +/usr/include/c++/11/ratio: + +/usr/include/c++/11/chrono: + +/usr/include/c++/11/mutex: + +/usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h: + +../op_host/reduce_sum_tiling.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/c++/11/bits/hashtable.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/include/c++/11/bits/ostream.tcc: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/c++/11/bits/streambuf_iterator.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/c++/11/iostream: + +/usr/include/wchar.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/cwchar: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/include/c++/11/cstdio: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/include/c++/11/initializer_list: + +/usr/include/c++/11/iosfwd: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/include/c++/11/bits/locale_facets.tcc: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h: + +/usr/include/c++/11/bit: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/vector: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/ostream: + +autogen/op_proto.cc: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/ctype.h: + +/usr/include/c++/11/type_traits: + +/usr/include/c++/11/bits/stl_tree.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/aarch64-linux-gnu/bits/stdio2.h: + +/usr/include/aarch64-linux-gnu/bits/errno.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/c++/11/streambuf: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/alloca.h: + +autogen/op_proto.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/c++/11/array: + +/usr/include/c++/11/cstddef: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/c++/11/system_error: + +/usr/include/c++/11/typeinfo: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/c++/11/exception: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/c++/11/limits: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/errno.h: + +/usr/include/features.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/c++/11/bits/unique_lock.h: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/include/features-time64.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h: + +/usr/include/c++/11/clocale: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/pthread.h: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/c++/11/atomic: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/cstring: + +/usr/include/c++/11/bits/erase_if.h: + +/usr/include/endian.h: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/c++/11/debug/assertions.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/c++/11/map: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h: + +/usr/include/c++/11/bits/std_function.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h: + +/usr/include/c++/11/memory: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/bits/cxxabi_forced.h: + +/usr/include/stdc-predef.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/string_conversions.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h: + +/usr/include/c++/11/string: + +/usr/include/c++/11/cstdint: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h: + +/usr/include/c++/11/bits/localefwd.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h: + +/usr/include/aarch64-linux-gnu/bits/stdio.h: + +/usr/include/c++/11/cerrno: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/locale.h: + +/usr/include/aarch64-linux-gnu/bits/locale.h: + +/usr/include/aarch64-linux-gnu/bits/string_fortified.h: + +/usr/include/c++/11/cctype: + +/usr/include/c++/11/bits/stl_multimap.h: + +/usr/include/aarch64-linux-gnu/asm/errno.h: + +/usr/include/c++/11/bits/ostream_insert.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/c++/11/bits/basic_string.h: + +/usr/include/stdlib.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/stdio.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/aarch64-linux-gnu/bits/strings_fortified.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h: + +/usr/include/time.h: + +/usr/include/aarch64-linux-gnu/bits/wctype-wchar.h: + +/usr/include/aarch64-linux-gnu/bits/types/error_t.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/c++/11/bits/basic_string.tcc: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h: + +/usr/include/c++/11/bits/stl_map.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h: + +/usr/include/c++/11/istream: + +/usr/include/c++/11/set: + +/usr/include/c++/11/bits/charconv.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securectype.h: + +/usr/include/c++/11/bits/ios_base.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/c++/11/bits/stl_set.h: + +/usr/include/aarch64-linux-gnu/bits/stdio_lim.h: + +/usr/include/c++/11/bits/stl_multiset.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h: + +/usr/include/c++/11/bits/std_mutex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h: + +/usr/include/c++/11/bits/basic_ios.tcc: + +/usr/include/c++/11/bits/enable_special_members.h: + +/usr/include/c++/11/bits/invoke.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h: + +/usr/include/c++/11/unordered_set: + +/usr/include/c++/11/bits/hashtable_policy.h: + +/usr/include/c++/11/bits/unordered_set.h: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h: + +/usr/include/c++/11/stdexcept: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h: + +/usr/include/c++/11/stdlib.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h: + +/usr/include/c++/11/tuple: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securec.h: + +/usr/include/c++/11/bits/streambuf.tcc: + +/usr/include/string.h: + +/usr/include/strings.h: + +/usr/include/c++/11/utility: + +/usr/include/c++/11/ios: + +/usr/include/c++/11/bits/locale_classes.h: + +/usr/include/c++/11/bits/locale_classes.tcc: + +/usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h: + +/usr/include/c++/11/bits/basic_ios.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/c++/11/bits/locale_facets.h: + +../op_host/reduce_sum.cpp: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/c++/11/cwctype: + +/usr/include/sched.h: + +/usr/include/wctype.h: + +/usr/include/c++/11/functional: + +/usr/include/linux/errno.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/c++/11/bits/istream.tcc: + +/usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h: diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..00aea2a2166cd0cf975b12f723dcde014eadd86f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_op_proto. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..437958170a48b3a6c7d205ebff07d609573ed7a7 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_op_proto. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..500116bd6ec74c07207f47a6f4768ee037614eec --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -DOP_PROTO_LIB -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_op_proto_EXPORTS + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fvisibility=hidden -fPIC -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcd114a0455d9e96fea0294654255d3d2f0a3bbe --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_opsproto_rt2.0.so -o libcust_opsproto_rt2.0.so CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lexe_graph -lregister -ltiling_api -Wl,--whole-archive -lrt2_registry -Wl,--no-whole-archive diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..4b14cc1dc1aa37d472dbfc8a2fa41782337787bc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 2 +CMAKE_PROGRESS_2 = 3 +CMAKE_PROGRESS_3 = 4 + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..c34fbe55897d01f72d1cef924c623e722934aab3 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o differ diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..249acfdc5cb52897d99ceb0b8bf4de754b984767 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d @@ -0,0 +1,270 @@ +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: \ + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/cstring \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b4e5d58aacb0013f0ad75f5da34d46e54d13d834 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..ab416d0be42e4496531a66bf14cb2bd31e401770 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o differ diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..581dc39f6cee1c2df68237089ede6d7ca2db20ec --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d @@ -0,0 +1,142 @@ +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: \ + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp \ + /usr/include/stdc-predef.h /usr/include/string.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/bits/move.h /usr/include/c++/11/type_traits \ + /usr/include/c++/11/memory /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/initializer_list /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b0e76740e31bc72d7b25de03ba7515dcfd1140c6 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Include any dependencies generated for this target. +include op_host/CMakeFiles/cust_opapi.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/cust_opapi.dir/progress.make + +# Include the compile flags for this target's objects. +include op_host/CMakeFiles/cust_opapi.dir/flags.make + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: autogen/aclnn_reduce_sum.cpp +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o -c /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s + +# Object files for target cust_opapi +cust_opapi_OBJECTS = \ +"CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" + +# External object files for target cust_opapi +cust_opapi_EXTERNAL_OBJECTS = + +op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o +op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/build.make +op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_opapi.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +op_host/CMakeFiles/cust_opapi.dir/build: op_host/libcust_opapi.so +.PHONY : op_host/CMakeFiles/cust_opapi.dir/build + +op_host/CMakeFiles/cust_opapi.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_opapi.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/cust_opapi.dir/clean + +op_host/CMakeFiles/cust_opapi.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_opapi.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0812114a6eed2dece261c2eba55699f17a92a108 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d" + "libcust_opapi.pdb" + "libcust_opapi.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_opapi.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..a71888326a0790e06e4f17d235dc1510e4197bdf --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal @@ -0,0 +1,170 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp + /usr/include/stdc-predef.h + /usr/include/string.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/include/c++/11/atomic + /usr/include/c++/11/bits/atomic_base.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/initializer_list + /usr/include/c++/11/tuple + /usr/include/c++/11/array + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/vector.tcc + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.h + /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d0b8d58be7fea2bfc7c1605a9864445a8d67e798 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make @@ -0,0 +1,499 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: autogen/aclnn_reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + /usr/include/string.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + autogen/aclnn_reduce_sum.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/stdlib.h: + +/usr/include/c++/11/cstdint: + +/usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/debug/assertions.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/include/c++/11/memory: + +/usr/include/c++/11/array: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +autogen/aclnn_reduce_sum.h: + +/usr/include/c++/11/iosfwd: + +/usr/include/endian.h: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/c++/11/exception: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/features.h: + +/usr/include/c++/11/utility: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/stdc-predef.h: + +autogen/aclnn_reduce_sum.cpp: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/features-time64.h: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/c++/11/atomic: + +/usr/include/strings.h: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/aarch64-linux-gnu/bits/strings_fortified.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/aarch64-linux-gnu/bits/string_fortified.h: + +/usr/include/string.h: + +/usr/include/alloca.h: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/c++/11/typeinfo: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/c++/11/vector: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/bit: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/c++/11/type_traits: + +/usr/include/c++/11/tuple: + +/usr/include/c++/11/bits/invoke.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/cwchar: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/include/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/time.h: + +/usr/include/c++/11/initializer_list: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b3bb157ef98b31b6076bead4dea655c2f5a1372c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_opapi. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..dae58d60b8fdca49c5c52471d0043c3eafbf4b20 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_opapi. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..f4b2f4fafda7e2aaa1a9da9823cd1f14c66759d1 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_opapi_EXPORTS + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..9246cc7e5179cb216ac23191cc7490066b3e91dc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_opapi.so -o libcust_opapi.so CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lascendcl -lnnopbase diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..3a86673aa7c1868ad77aa16c631effd83be0da02 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 5 +CMAKE_PROGRESS_2 = 6 + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9abc19c02e34380e996c6d5eb3646477576b9004 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Package_Cann/test/No_standard/op_host/reduce_sum.cpp" "op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..755e38cfe11eba1b19bd8d79f75efd852878b42d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Include any dependencies generated for this target. +include op_host/CMakeFiles/cust_optiling.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/cust_optiling.dir/progress.make + +# Include the compile flags for this target's objects. +include op_host/CMakeFiles/cust_optiling.dir/flags.make + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o -MF CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d -o CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o -c /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/op_host/reduce_sum.cpp > CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/op_host/reduce_sum.cpp -o CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s + +# Object files for target cust_optiling +cust_optiling_OBJECTS = \ +"CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" + +# External object files for target cust_optiling +cust_optiling_EXTERNAL_OBJECTS = + +op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o +op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/build.make +op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_optiling.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +op_host/CMakeFiles/cust_optiling.dir/build: op_host/libcust_opmaster_rt2.0.so +.PHONY : op_host/CMakeFiles/cust_optiling.dir/build + +op_host/CMakeFiles/cust_optiling.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_optiling.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/cust_optiling.dir/clean + +op_host/CMakeFiles/cust_optiling.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_optiling.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..42181a94caecf4c62701e4f5a07ee9c148290bb0 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" + "CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d" + "libcust_opmaster_rt2.0.pdb" + "libcust_opmaster_rt2.0.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_optiling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..fefb1016c0d8990752b6fa66f4ecf5d0d48a55c9 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -0,0 +1,321 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + /usr/include/stdc-predef.h + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/initializer_list + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/vector.tcc + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/array + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/cstring + /usr/include/string.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/stdlib.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdio + /usr/include/c++/11/cerrno + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/functional + /usr/include/c++/11/bits/std_function.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h + /usr/include/c++/11/iostream + /usr/include/c++/11/ostream + /usr/include/c++/11/ios + /usr/include/c++/11/bits/ios_base.h + /usr/include/c++/11/bits/locale_classes.h + /usr/include/c++/11/bits/locale_classes.tcc + /usr/include/c++/11/system_error + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h + /usr/include/c++/11/stdexcept + /usr/include/c++/11/streambuf + /usr/include/c++/11/bits/streambuf.tcc + /usr/include/c++/11/bits/basic_ios.h + /usr/include/c++/11/bits/locale_facets.h + /usr/include/c++/11/cwctype + /usr/include/wctype.h + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h + /usr/include/c++/11/bits/streambuf_iterator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h + /usr/include/c++/11/bits/locale_facets.tcc + /usr/include/c++/11/bits/basic_ios.tcc + /usr/include/c++/11/bits/ostream.tcc + /usr/include/c++/11/istream + /usr/include/c++/11/bits/istream.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h + /usr/include/c++/11/unordered_set + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_set.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/include/c++/11/limits + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h + /usr/include/c++/11/cstddef + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h + /usr/include/c++/11/mutex + /usr/include/c++/11/chrono + /usr/include/c++/11/ratio + /usr/include/c++/11/ctime + /usr/include/c++/11/bits/parse_numbers.h + /usr/include/c++/11/bits/std_mutex.h + /usr/include/c++/11/bits/unique_lock.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..00c03d392bb03e48b1f6811a81b0c3abe930884c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make @@ -0,0 +1,914 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/cstring \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h \ + /usr/include/c++/11/cwctype \ + /usr/include/wctype.h \ + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex \ + /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio \ + /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h: + +/usr/include/c++/11/bits/parse_numbers.h: + +/usr/include/c++/11/ctime: + +/usr/include/c++/11/ratio: + +/usr/include/c++/11/chrono: + +/usr/include/c++/11/mutex: + +/usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h: + +/usr/include/c++/11/set: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/c++/11/bits/hashtable.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/include/c++/11/bits/ostream.tcc: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h: + +/usr/include/c++/11/bits/stl_set.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/c++/11/bits/streambuf_iterator.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/c++/11/iostream: + +/usr/include/wchar.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/cwchar: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/include/c++/11/cstdio: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h: + +/usr/include/c++/11/bit: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/typeinfo: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: + +/usr/include/features.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/c++/11/bits/unique_lock.h: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h: + +/usr/include/c++/11/clocale: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/c++/11/atomic: + +/usr/include/c++/11/debug/assertions.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/ctype.h: + +/usr/include/c++/11/type_traits: + +/usr/include/c++/11/bits/stl_tree.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/aarch64-linux-gnu/bits/stdio2.h: + +/usr/include/aarch64-linux-gnu/bits/errno.h: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/c++/11/exception: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h: + +/usr/include/c++/11/bits/std_function.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +../op_host/reduce_sum_tiling.h: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/vector: + +/usr/include/pthread.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/c++/11/array: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/cstring: + +/usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/c++/11/limits: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h: + +/usr/include/c++/11/memory: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/c++/11/system_error: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/c++/11/streambuf: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/include/c++/11/bits/locale_facets.tcc: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/features-time64.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/errno.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/bits/cxxabi_forced.h: + +/usr/include/stdc-predef.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/alloca.h: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/c++/11/map: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/c++/11/cstddef: + +/usr/include/c++/11/initializer_list: + +/usr/include/c++/11/iosfwd: + +/usr/include/c++/11/bits/erase_if.h: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/stdint.h: + +/usr/include/endian.h: + +/usr/include/c++/11/bits/stl_map.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/ostream: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/string_conversions.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h: + +/usr/include/c++/11/bits/streambuf.tcc: + +/usr/include/string.h: + +/usr/include/strings.h: + +/usr/include/aarch64-linux-gnu/bits/string_fortified.h: + +/usr/include/aarch64-linux-gnu/bits/locale.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h: + +/usr/include/c++/11/tuple: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securec.h: + +/usr/include/c++/11/bits/charconv.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securectype.h: + +/usr/include/c++/11/bits/ios_base.h: + +/usr/include/stdio.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/aarch64-linux-gnu/bits/strings_fortified.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h: + +/usr/include/time.h: + +/usr/include/aarch64-linux-gnu/bits/wctype-wchar.h: + +/usr/include/c++/11/bits/stl_multiset.h: + +/usr/include/aarch64-linux-gnu/bits/stdio_lim.h: + +/usr/include/aarch64-linux-gnu/bits/stdio.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h: + +/usr/include/c++/11/cerrno: + +/usr/include/c++/11/stdlib.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h: + +/usr/include/stdlib.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/aarch64-linux-gnu/bits/types/error_t.h: + +/usr/include/c++/11/bits/stl_multimap.h: + +/usr/include/aarch64-linux-gnu/asm/errno.h: + +/usr/include/c++/11/cctype: + +/usr/include/asm-generic/errno.h: + +/usr/include/c++/11/bits/std_mutex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/include/c++/11/string: + +/usr/include/c++/11/cstdint: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h: + +/usr/include/c++/11/bits/localefwd.h: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/locale.h: + +/usr/include/c++/11/bits/ostream_insert.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/c++/11/bits/basic_string.h: + +/usr/include/c++/11/bits/basic_string.tcc: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h: + +/usr/include/c++/11/utility: + +/usr/include/c++/11/ios: + +/usr/include/c++/11/bits/locale_classes.h: + +/usr/include/c++/11/bits/locale_classes.tcc: + +/usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h: + +/usr/include/c++/11/stdexcept: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h: + +/usr/include/c++/11/bits/basic_ios.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/c++/11/bits/locale_facets.h: + +../op_host/reduce_sum.cpp: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/c++/11/cwctype: + +/usr/include/sched.h: + +/usr/include/wctype.h: + +/usr/include/c++/11/functional: + +/usr/include/linux/errno.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h: + +/usr/include/c++/11/istream: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/c++/11/bits/istream.tcc: + +/usr/include/c++/11/bits/invoke.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h: + +/usr/include/c++/11/unordered_set: + +/usr/include/c++/11/bits/hashtable_policy.h: + +/usr/include/c++/11/bits/basic_ios.tcc: + +/usr/include/c++/11/bits/enable_special_members.h: + +/usr/include/c++/11/bits/unordered_set.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h: diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..74472e36eba2a28932ae542c70b920de2f6fda33 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_optiling. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe68c7fa27e765cc54c7a4b724d3af19e0f40b0c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_optiling. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..6d98162bed09f0ecad0e8a6d9c9ec8a6dcf6fd1c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -DOP_TILING_LIB -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_optiling_EXPORTS + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fvisibility=hidden -fPIC -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b94d4572ec7fa51f1baab187ad2f10456816068 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_opmaster_rt2.0.so -o libcust_opmaster_rt2.0.so CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lexe_graph -lregister -ltiling_api -Wl,--whole-archive -lrt2_registry -Wl,--no-whole-archive diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..72bb7dd025afc5824222cbd3a1e64841afc2792c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 7 +CMAKE_PROGRESS_2 = 8 + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..6484677dc8d7b180da8ad254db7805d5546a6f33 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o differ diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..ee9e9d71b986e4cce53699bb8aac4a588c197f85 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d @@ -0,0 +1,270 @@ +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: \ + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/cstring \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..269566d0a4aa2e192c7036ed86c3095ff75ea68f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for optiling_compat. + +# Include any custom commands dependencies for this target. +include op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/optiling_compat.dir/progress.make + +op_host/CMakeFiles/optiling_compat: + cd /Package_Cann/test/No_standard/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Package_Cann/test/No_standard/build_out/op_host/liboptiling.so + +optiling_compat: op_host/CMakeFiles/optiling_compat +optiling_compat: op_host/CMakeFiles/optiling_compat.dir/build.make +.PHONY : optiling_compat + +# Rule to build all files generated by this target. +op_host/CMakeFiles/optiling_compat.dir/build: optiling_compat +.PHONY : op_host/CMakeFiles/optiling_compat.dir/build + +op_host/CMakeFiles/optiling_compat.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/optiling_compat.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/optiling_compat.dir/clean + +op_host/CMakeFiles/optiling_compat.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/optiling_compat.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d6c62180661baf2894b2e39b1390c4aad97bd7e7 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/optiling_compat" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/optiling_compat.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f6005bcf9aa9a636cea7c8c99afc1c47b58651ec --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for optiling_compat. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..218ad6e5c7fb31bec1c5dc1c351cf18dde37c686 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for optiling_compat. diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/progress.marks b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7f8f011eb73d6043d2e6db9d2c101195ae2801f2 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/CMakeFiles/progress.marks @@ -0,0 +1 @@ +7 diff --git a/precision_Problem/Is_standard/build_out/op_host/Makefile b/precision_Problem/Is_standard/build_out/op_host/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..9a3f395d7945fa2c29c1af0fb81ceee6cc96cd0d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/Makefile @@ -0,0 +1,355 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out/op_host//CMakeFiles/progress.marks + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +op_host/CMakeFiles/cust_op_proto.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/rule +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/rule + +# Convenience name for target. +cust_op_proto: op_host/CMakeFiles/cust_op_proto.dir/rule +.PHONY : cust_op_proto + +# fast build rule for target. +cust_op_proto/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build +.PHONY : cust_op_proto/fast + +# Convenience name for target. +op_host/CMakeFiles/cust_optiling.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/rule +.PHONY : op_host/CMakeFiles/cust_optiling.dir/rule + +# Convenience name for target. +cust_optiling: op_host/CMakeFiles/cust_optiling.dir/rule +.PHONY : cust_optiling + +# fast build rule for target. +cust_optiling/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build +.PHONY : cust_optiling/fast + +# Convenience name for target. +op_host/CMakeFiles/cust_opapi.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/rule +.PHONY : op_host/CMakeFiles/cust_opapi.dir/rule + +# Convenience name for target. +cust_opapi: op_host/CMakeFiles/cust_opapi.dir/rule +.PHONY : cust_opapi + +# fast build rule for target. +cust_opapi/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build +.PHONY : cust_opapi/fast + +# Convenience name for target. +op_host/CMakeFiles/optiling_compat.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/rule +.PHONY : op_host/CMakeFiles/optiling_compat.dir/rule + +# Convenience name for target. +optiling_compat: op_host/CMakeFiles/optiling_compat.dir/rule +.PHONY : optiling_compat + +# fast build rule for target. +optiling_compat/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build +.PHONY : optiling_compat/fast + +__/autogen/aclnn_reduce_sum.o: __/autogen/aclnn_reduce_sum.cpp.o +.PHONY : __/autogen/aclnn_reduce_sum.o + +# target to build an object file +__/autogen/aclnn_reduce_sum.cpp.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o +.PHONY : __/autogen/aclnn_reduce_sum.cpp.o + +__/autogen/aclnn_reduce_sum.i: __/autogen/aclnn_reduce_sum.cpp.i +.PHONY : __/autogen/aclnn_reduce_sum.i + +# target to preprocess a source file +__/autogen/aclnn_reduce_sum.cpp.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i +.PHONY : __/autogen/aclnn_reduce_sum.cpp.i + +__/autogen/aclnn_reduce_sum.s: __/autogen/aclnn_reduce_sum.cpp.s +.PHONY : __/autogen/aclnn_reduce_sum.s + +# target to generate assembly for a file +__/autogen/aclnn_reduce_sum.cpp.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s +.PHONY : __/autogen/aclnn_reduce_sum.cpp.s + +__/autogen/op_proto.o: __/autogen/op_proto.cc.o +.PHONY : __/autogen/op_proto.o + +# target to build an object file +__/autogen/op_proto.cc.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o +.PHONY : __/autogen/op_proto.cc.o + +__/autogen/op_proto.i: __/autogen/op_proto.cc.i +.PHONY : __/autogen/op_proto.i + +# target to preprocess a source file +__/autogen/op_proto.cc.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i +.PHONY : __/autogen/op_proto.cc.i + +__/autogen/op_proto.s: __/autogen/op_proto.cc.s +.PHONY : __/autogen/op_proto.s + +# target to generate assembly for a file +__/autogen/op_proto.cc.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s +.PHONY : __/autogen/op_proto.cc.s + +reduce_sum.o: reduce_sum.cpp.o +.PHONY : reduce_sum.o + +# target to build an object file +reduce_sum.cpp.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o +.PHONY : reduce_sum.cpp.o + +reduce_sum.i: reduce_sum.cpp.i +.PHONY : reduce_sum.i + +# target to preprocess a source file +reduce_sum.cpp.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i +.PHONY : reduce_sum.cpp.i + +reduce_sum.s: reduce_sum.cpp.s +.PHONY : reduce_sum.s + +# target to generate assembly for a file +reduce_sum.cpp.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s +.PHONY : reduce_sum.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... optiling_compat" + @echo "... cust_op_proto" + @echo "... cust_opapi" + @echo "... cust_optiling" + @echo "... __/autogen/aclnn_reduce_sum.o" + @echo "... __/autogen/aclnn_reduce_sum.i" + @echo "... __/autogen/aclnn_reduce_sum.s" + @echo "... __/autogen/op_proto.o" + @echo "... __/autogen/op_proto.i" + @echo "... __/autogen/op_proto.s" + @echo "... reduce_sum.o" + @echo "... reduce_sum.i" + @echo "... reduce_sum.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/Is_standard/build_out/op_host/cmake_install.cmake b/precision_Problem/Is_standard/build_out/op_host/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d161fa62df9e0c92db5999cc638c8a29d747e1f9 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_host/cmake_install.cmake @@ -0,0 +1,125 @@ +# Install script for directory: /Package_Cann/test/No_standard/op_host + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/op_host/libcust_opsproto_rt2.0.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/inc" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/autogen/op_proto.h") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/op_host/libcust_opmaster_rt2.0.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/op_host/liboptiling.so") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/op_host/libcust_opapi.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/include" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.h") +endif() + diff --git a/precision_Problem/Is_standard/build_out/op_host/libcust_opapi.so b/precision_Problem/Is_standard/build_out/op_host/libcust_opapi.so new file mode 100644 index 0000000000000000000000000000000000000000..6bd5e35d6ed556efe777a1e1d695a5e67b186a47 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_host/libcust_opapi.so differ diff --git a/precision_Problem/Is_standard/build_out/op_host/libcust_opmaster_rt2.0.so b/precision_Problem/Is_standard/build_out/op_host/libcust_opmaster_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..6667f28e8ecaae2c7414c90a1c61ffffea6c3459 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_host/libcust_opmaster_rt2.0.so differ diff --git a/precision_Problem/Is_standard/build_out/op_host/libcust_opsproto_rt2.0.so b/precision_Problem/Is_standard/build_out/op_host/libcust_opsproto_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..ea924e54f9280ea0c1b000d25a6289a30f01351c Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_host/libcust_opsproto_rt2.0.so differ diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..84340a0327a6e9ed0df4adb9ecac6ffda6c87025 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Package_Cann/test/No_standard") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Package_Cann/test/No_standard/build_out") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..15b4aaf86a0e6d5fdf477cfe4052f0000ab36b1d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b: + cd /Package_Cann/test/No_standard/build_out/op_kernel && cp -r /Package_Cann/test/No_standard/op_kernel/*.* /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src + +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make +.PHONY : ascendc_bin_ascend310b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build: ascendc_bin_ascend310b +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..533ecfc39068edc37496c5f20d46fe6ca8911459 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b57b3514902bdc581ce7b6f2090f38b51b58a5cd --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0e4fa1ebcb2d0d5d7bebf601f98e8703328cd19a --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..04ce7548fa000b989a8fc83e589dfa0b675899c1 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config: + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/insert_simplified_keys.py -p /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/ascendc_ops_config.py -p /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin -s ascend310b + +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build: ascendc_bin_ascend310b_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5407b615dc5d6e7354a1555f39b93a44a5bbf91b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..a131ca8f91cc49cd9677c0e8e11800d95615fb05 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..d9befe63ff7c9f376f7c499a786bae54123c96e8 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_gen_ops_config. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..4aa51bf219fc654500d708d0c35850b17703067f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0 +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build: ascendc_bin_ascend310b_reduce_sum_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..71ddd625f0d6915dd8bc9e3ac78e26623815e473 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..a7eb28bd08f7362ec557da5a3a3bc1921ce301ee --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_0. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..79fcf65bc64cf2fba6eefe5bb970023e24a592d3 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_0. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..77084fa43d08627e495195238e234cdb487d91ae --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_1. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1 +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build: ascendc_bin_ascend310b_reduce_sum_1 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9d2b92b8180dd310167029924108849b35534e2a --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..46f5f08a4226a3638f6482b14cdfd9cc9916b0ad --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_1. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e4c9afd8bfc05286ccc8826d8291cb9c985ff495 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_1. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..aa8681c426236945b72d7fc1b36eac981cb96e6e --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_2. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2 +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build: ascendc_bin_ascend310b_reduce_sum_2 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..c04066c690d6b76e6137ff2653d94cd2792b3136 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..46914d35c63cf9560487677441d32c21205dd340 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_2. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..90d5bc51ad51adad57132012fe6943eb79c97297 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_2. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1d70fb9d40e70886f46dd11578fce246c22b5e84 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_3. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3 +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build: ascendc_bin_ascend310b_reduce_sum_3 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2ba23da328c083154ea92ad693ea4c9b3d4ffe9f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f9a20e8a980f2c07ab7ebb62a52b81df011b0d79 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_3. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..412e5f3f99e43f7d59d98c5165b6f31a61b55a43 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_3. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ead7a95d15ffbd12f65366b01f148d079a6a7c51 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy: + cd /Package_Cann/test/No_standard/build_out/op_kernel && cp /Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py + +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build: ascendc_bin_ascend310b_reduce_sum_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..016a2f0ac80600a1470a789a75df82e50db6fb92 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d730e73caef7e99bdfbfd3c89fbd1acd3fd28d75 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_copy. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4cabba9478c130920def71b070466ff0bcdf5a3c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_copy. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..faaca505823d39954c4df6b8e7af69f02030ea60 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_impl_gen. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make + +op_kernel/CMakeFiles/ascendc_impl_gen: op_kernel/tbe/.impl_timestamp + +op_kernel/tbe/.impl_timestamp: autogen/aic-ascend310b-ops-info.ini +op_kernel/tbe/.impl_timestamp: ../cmake/util/ascendc_impl_build.py + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Package_Cann/test/No_standard/build_out/op_kernel && mkdir -m 700 -p /Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/ascendc_impl_build.py /Package_Cann/test/No_standard/build_out/autogen/aic-ascend310b-ops-info.ini "" "" /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic /Package_Cann/test/No_standard/build_out/autogen + cd /Package_Cann/test/No_standard/build_out/op_kernel && rm -rf /Package_Cann/test/No_standard/build_out/op_kernel/tbe/.impl_timestamp + cd /Package_Cann/test/No_standard/build_out/op_kernel && touch /Package_Cann/test/No_standard/build_out/op_kernel/tbe/.impl_timestamp + +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen +ascendc_impl_gen: op_kernel/tbe/.impl_timestamp +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make +.PHONY : ascendc_impl_gen + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/build: ascendc_impl_gen +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/build + +op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean + +op_kernel/CMakeFiles/ascendc_impl_gen.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0dabd8217f51de05d3c48e464f9ed87a459cca1a --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_impl_gen" + "tbe/.impl_timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_impl_gen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e4c9fac661464ec05ea1a443edb0dc2b0b41806f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_impl_gen. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b895e90a30e456d3811a0bb2e4d043284245aacd --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_impl_gen. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..781c7de277467a8195d562b5d08164806763e9bb --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1251092ed62e083eb96a87aad1d8e1eccbcec726 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for binary. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/binary.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/binary.dir/progress.make + +binary: op_kernel/CMakeFiles/binary.dir/build.make +.PHONY : binary + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/binary.dir/build: binary +.PHONY : op_kernel/CMakeFiles/binary.dir/build + +op_kernel/CMakeFiles/binary.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/binary.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/binary.dir/clean + +op_kernel/CMakeFiles/binary.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/binary.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ae76984f5565d466b92a810925e025e54471e63 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/binary.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e688fdae426435b7338ad5ae7e9a8b33847b35f2 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for binary. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f22f6ab4259e686344dd2262cc15fc223bd41f47 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for binary. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/binary.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..852a00c159e4a8ff4b763132d35e6dfa9bffe10c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for npu_supported_ops. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make + +op_kernel/CMakeFiles/npu_supported_ops: op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json + +op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Package_Cann/test/No_standard/build_out/op_kernel && mkdir -p /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Package_Cann/test/No_standard/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Package_Cann/test/No_standard/build_out/autogen /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core + +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops +npu_supported_ops: op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/build.make +.PHONY : npu_supported_ops + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/npu_supported_ops.dir/build: npu_supported_ops +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/build + +op_kernel/CMakeFiles/npu_supported_ops.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/clean + +op_kernel/CMakeFiles/npu_supported_ops.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..74257cf6ebf8321bd1cdf1fd3b9dff6f31a88317 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/npu_supported_ops" + "tbe/op_info_cfg/ai_core/npu_supported_ops.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/npu_supported_ops.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9f8bf5f55283f2af94a1d6c3d002e1abf9fb06be --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for npu_supported_ops. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..391e044314f82c750bb472ea75da0830fe80882c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for npu_supported_ops. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..e42d498a89857163707bdf7455d3193d8ed5bfe2 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 12 + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..98f918455fc4284e8d82e6422b45fee70c769345 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ops_info_gen_ascend310b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend310b: op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Package_Cann/test/No_standard/build_out/op_kernel && mkdir -p /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/parse_ini_to_json.py /Package_Cann/test/No_standard/build_out/autogen/aic-ascend310b-ops-info.ini /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json + +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b +ops_info_gen_ascend310b: op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make +.PHONY : ops_info_gen_ascend310b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build: ops_info_gen_ascend310b +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/depend + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0873ef7dbd668d16556df9538a9fa0bf4a335d09 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend310b" + "tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b1c31a685ba07abf8d9ee8e5c14347e18147775b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend310b. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..48b406611124e445506c38d8a534c940c16a3dcf --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ops_info_gen_ascend310b. diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..7e0358250d669f4e34f1dc4a0fb4d44932f34e28 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 13 + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/progress.marks b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..00750edc07d6415dcc07ae0351e9397b0222b7ba --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/precision_Problem/Is_standard/build_out/op_kernel/Makefile b/precision_Problem/Is_standard/build_out/op_kernel/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..c1b91374bb36086dfaa165948e1b03a0da81e419 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/Makefile @@ -0,0 +1,376 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out/op_kernel//CMakeFiles/progress.marks + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule +.PHONY : ops_info_gen_ascend310b + +# fast build rule for target. +ops_info_gen_ascend310b/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build +.PHONY : ops_info_gen_ascend310b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule + +# Convenience name for target. +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule +.PHONY : ascendc_impl_gen + +# fast build rule for target. +ascendc_impl_gen/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build +.PHONY : ascendc_impl_gen/fast + +# Convenience name for target. +op_kernel/CMakeFiles/binary.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/rule +.PHONY : op_kernel/CMakeFiles/binary.dir/rule + +# Convenience name for target. +binary: op_kernel/CMakeFiles/binary.dir/rule +.PHONY : binary + +# fast build rule for target. +binary/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build +.PHONY : binary/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule +.PHONY : ascendc_bin_ascend310b + +# fast build rule for target. +ascendc_bin_ascend310b/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build +.PHONY : ascendc_bin_ascend310b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310b_gen_ops_config/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310b_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_copy/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_0/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_1/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_1/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_2/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_2/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_3/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_3/fast + +# Convenience name for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/rule +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/rule + +# Convenience name for target. +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/rule +.PHONY : npu_supported_ops + +# fast build rule for target. +npu_supported_ops/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build +.PHONY : npu_supported_ops/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... ascendc_bin_ascend310b" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310b_reduce_sum_0" + @echo "... ascendc_bin_ascend310b_reduce_sum_1" + @echo "... ascendc_bin_ascend310b_reduce_sum_2" + @echo "... ascendc_bin_ascend310b_reduce_sum_3" + @echo "... ascendc_bin_ascend310b_reduce_sum_copy" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e0f175db8211d04dbfc3c5a4fb022d472c35e4 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json @@ -0,0 +1,48 @@ +{ + "ReduceSum": { + "dynamicRankSupport": true, + "simplifiedKeyMode": 0, + "binaryList": [ + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + } + ] + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json new file mode 100644 index 0000000000000000000000000000000000000000..fb9b121ef0d420802ff3bd98b803c14cf75ab7ec --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json @@ -0,0 +1,252 @@ +{ + "binList": [ + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json" + } + } + ] +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json new file mode 100644 index 0000000000000000000000000000000000000000..e50634243e975572ee7551ea79d4a09989bede7b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "a8b6c56680c52ac8c16779bd3080aa56e93d69905a5136f88f78511144dd5f8a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o new file mode 100644 index 0000000000000000000000000000000000000000..090d55623cf4869aa662cdbc2c38a87b57f18b85 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o differ diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json new file mode 100644 index 0000000000000000000000000000000000000000..999f4f81c62e4b3aabd94ec1dd3451c1017872c3 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "4c18f6864ed2c98b13f4d0d0ef028655cb35953ab386a4afacea612aab6c7500", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o new file mode 100644 index 0000000000000000000000000000000000000000..86f4262d4913f82bbb071d0142af3d3782c96c5d Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o differ diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json new file mode 100644 index 0000000000000000000000000000000000000000..ecb3d3deaa6d3587470a14596d1dbfd33670e6d3 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "d8dc63b94b29bc53a33aea4b794e30e5b0a7321b7f0239deff9b24fb29ee2f50", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o new file mode 100644 index 0000000000000000000000000000000000000000..234f59fa06a971c1aa73801f3d5e99e434ac6a01 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o differ diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json new file mode 100644 index 0000000000000000000000000000000000000000..ab167274bc794c22d6c28419dc354d4254dac855 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "cf9debf69c81f9b99c329ea5e1b68f91ebde2e3004e6aa2c062f78c218fdda0a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o new file mode 100644 index 0000000000000000000000000000000000000000..ad0758e3affa845d1fc9d1a4e3784a2b5825b52f Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o differ diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..aef070bf4dfde9555e7ad6842c7fb8469df691cc --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json ; then + echo "$2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o ; then + echo "$2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a Done" diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh new file mode 100644 index 0000000000000000000000000000000000000000..d30a52e14ecb5b44701815a9b3ccf49c2eb3db88 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_aba912fd1d17807efc5a7debff52df92 ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_aba912fd1d17807efc5a7debff52df92.json ; then + echo "$2/ReduceSum_aba912fd1d17807efc5a7debff52df92.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_aba912fd1d17807efc5a7debff52df92.o ; then + echo "$2/ReduceSum_aba912fd1d17807efc5a7debff52df92.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_aba912fd1d17807efc5a7debff52df92 Done" diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh new file mode 100644 index 0000000000000000000000000000000000000000..241bd931fde72cae0b7acb5767d031f6402edff5 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json ; then + echo "$2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o ; then + echo "$2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f Done" diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh new file mode 100644 index 0000000000000000000000000000000000000000..a6f573827d8ba00f767dcf85fc2c388d06bd172e --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_aab7d211a4f4f395b4f928b8c56a621d ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json ; then + echo "$2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o ; then + echo "$2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_aab7d211a4f4f395b4f928b8c56a621d Done" diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json new file mode 100644 index 0000000000000000000000000000000000000000..a33ffaf436acc441e3376cdcc4fec9d67d708585 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json new file mode 100644 index 0000000000000000000000000000000000000000..5c690e8fd3415244c9c7b78b0282d55322ba2948 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json new file mode 100644 index 0000000000000000000000000000000000000000..e72f075401f8216a690c3c722b2b19ea6fe16e79 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json new file mode 100644 index 0000000000000000000000000000000000000000..17dd854a129f32547f74ac594dde75a80a5fa600 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c94a952da2058b785affa6784d78b87dfe9b3d7 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt @@ -0,0 +1,68 @@ +# set custom compile options +if ("${CMAKE_BUILD_TYPE}x" STREQUAL "Debugx") + add_ops_compile_options(ALL OPTIONS -g -O0) +endif() + +foreach(compute_unit ${ASCEND_COMPUTE_UNIT}) + + # generate aic-${compute_unit}-ops-info.json + add_ops_info_target(TARGET ops_info_gen_${compute_unit} + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core/${compute_unit}/aic-${compute_unit}-ops-info.json + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/config/${compute_unit} + ) + + # generate ascendc impl py once + if (NOT TARGET ascendc_impl_gen) + add_ops_impl_target(TARGET ascendc_impl_gen + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl + ) + endif() + + # dynamic shape binary compile + if (${ENABLE_BINARY_PACKAGE} AND NOT ${ENABLE_CROSS_COMPILE}) + add_bin_compile_target(TARGET ascendc_bin_${compute_unit} + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + ADP_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/dynamic + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/binary/${compute_unit} + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/kernel + COMPUTE_UNIT ${compute_unit} + ) + add_dependencies(ascendc_bin_${compute_unit} ascendc_impl_gen) + endif() + + if (${ENABLE_CROSS_COMPILE} AND ${ENABLE_BINARY_PACKAGE}) + add_cross_compile_target( + TARGET bin_${compute_unit} + OUT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../kernel + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/ + ) + endif() +endforeach() + +# generate npu_supported_ops.json +add_npu_support_target(TARGET npu_supported_ops + OPS_INFO_DIR ${ASCEND_AUTOGEN_PATH} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core + INSTALL_DIR packages/vendors/${vendor_name}/framework/${ASCEND_FRAMEWORK_TYPE} +) + +if(ENABLE_TEST AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/testcases) + add_subdirectory(testcases) +endif() + +# install kernel file +if (${ENABLE_SOURCE_PACKAGE}) + file(GLOB KERNEL_FILES + ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/*.h + ${CMAKE_CURRENT_SOURCE_DIR}/*.py + ) + install(FILES ${KERNEL_FILES} + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl/dynamic + ) +endif() diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py new file mode 100644 index 0000000000000000000000000000000000000000..5ce4bbbb4eda5cd146af415b11a7387fd41ac853 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py @@ -0,0 +1,205 @@ + +import os, sys +import ctypes +import json +import shutil +from tbe.common.platform import get_soc_spec +from tbe.common.utils import para_check +from tbe.tikcpp import compile_op, replay_op, check_op_cap, generalize_op_params, get_code_channel, OpInfo +from tbe.common.buildcfg import get_default_build_config +from impl.util.platform_adapter import tbe_register +from tbe.common.buildcfg import get_current_build_config +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +DTYPE_MAP = {"float32": ["DT_FLOAT", "float"], + "float16": ["DT_FLOAT16", "half"], + "int8": ["DT_INT8", "int8_t"], + "int16": ["DT_INT16", "int16_t"], + "int32": ["DT_INT32", "int32_t"], + "int64": ["DT_INT64", "int64_t"], + "uint1": ["DT_UINT1", "uint8_t"], + "uint8": ["DT_UINT8", "uint8_t"], + "uint16": ["DT_UINT16", "uint16_t"], + "uint32": ["DT_UINT32", "uint32_t"], + "uint64": ["DT_UINT64", "uint64_t"], + "bool": ["DT_BOOL", "bool"], + "double": ["DT_DOUBLE", "double"], + "dual": ["DT_DUAL", "unknown"], + "dual_sub_int8": ["DT_DUAL_SUB_INT8", "unknown"], + "dual_sub_uint8": ["DT_DUAL_SUB_UINT8", "unknown"], + "string": ["DT_STRING", "unknown"], + "complex64": ["DT_COMPLEX64", "unknown"], + "complex128": ["DT_COMPLEX128", "unknown"], + "qint8": ["DT_QINT8", "unknown"], + "qint16": ["DT_QINT16", "unknown"], + "qint32": ["DT_QINT32", "unknown"], + "quint8": ["DT_QUINT8", "unknown"], + "quint16": ["DT_QUINT16", "unknown"], + "resource": ["DT_RESOURCE", "unknown"], + "string_ref": ["DT_STRING_REF", "unknown"], + "int4": ["DT_INT4", "int4b_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def add_dtype_fmt_option_single(x, x_n, is_ref: bool = False): + options = [] + x_fmt = x.get("format") + x_dtype = x.get("dtype") + x_n_in_kernel = x_n + '_REF' if is_ref else x_n + options.append("-DDTYPE_{n}={t}".format(n=x_n_in_kernel, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n_in_kernel, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n_in_kernel, f=x_fmt)) + return options + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + input_names = ['x', 'axis'] + output_names = ['y'] + unique_param_name_set = set() + for idx, x in enumerate(__inputs__): + if x is None: + continue + x_n = input_names[idx].upper() + unique_param_name_set.add(x_n) + options += add_dtype_fmt_option_single(x, x_n) + + for idx, x in enumerate(__outputs__): + if x is None: + continue + x_n = output_names[idx].upper() + if x_n in unique_param_name_set: + options += add_dtype_fmt_option_single(x, x_n, True) + else: + options += add_dtype_fmt_option_single(x, x_n) + return options + +def load_dso(so_path): + try: + ctypes.CDLL(so_path) + except OSError as error : + print(error) + raise RuntimeError("cannot open %s" %(so_path)) + else: + print("load so succ ", so_path) + +def get_shortsoc_compile_option(compile_option_list: list, shortsoc:str): + compile_options = [] + if shortsoc in compile_option_list: + compile_options = compile_option_list[shortsoc] + elif '__ALLSOC__' in compile_option_list: + compile_options = compile_option_list['__ALLSOC__'] + return compile_options + +def get_kernel_source(src_file, dir_snake, dir_ex): + src_ex = os.path.join(PYF_PATH, "..", "ascendc", dir_ex, src_file) + if os.path.exists(src_ex): + return src_ex + src = os.path.join(PYF_PATH, "..", "ascendc", dir_snake, src_file) + if os.path.exists(src): + return src + src = os.path.join(PYF_PATH, src_file) + if os.path.exists(src): + return src + return src_ex + +def _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype): + __inputs__ = [] + for arg in [x_in__, axis_in__]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [y_out_]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + else: + __outputs__.append(arg) + __attrs__ = [] + if keep_dims != None: + attr = {} + attr["name"] = "keep_dims" + attr["dtype"] = "bool" + attr["value"] = keep_dims + __attrs__.append(attr) + if ignore_nan != None: + attr = {} + attr["name"] = "ignore_nan" + attr["dtype"] = "bool" + attr["value"] = ignore_nan + __attrs__.append(attr) + if dtype != None: + attr = {} + attr["name"] = "dtype" + attr["dtype"] = "str" + attr["value"] = dtype + __attrs__.append(attr) + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("ReduceSum", trans_bool_to_s8=False) +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_STR, para_check.KERNEL_NAME) +def reduce_sum(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", kernel_name="reduce_sum", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + bisheng = shutil.which("bisheng") + if bisheng != None: + bisheng_path = os.path.dirname(bisheng) + tikcpp_path = os.path.realpath(os.path.join(bisheng_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + options.append("-I" + tikcpp_path) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + options.append("-I" + os.path.join(PYF_PATH, "..", "ascendc", "common")) + if impl_mode == "high_performance": + options.append("-DHIGH_PERFORMANCE=1") + elif impl_mode == "high_precision": + options.append("-DHIGH_PRECISION=1") + if get_default_build_config("enable_deterministic_mode") == 1: + options.append("-DDETEMINISTIC_MODE=1") + + custom_compile_options = {}, + custom_all_compile_options = {}, + soc_version = get_soc_spec("SOC_VERSION") + soc_short = get_soc_spec("SHORT_SOC_VERSION").lower() + custom_compile_options_soc = get_shortsoc_compile_option(custom_compile_options[0], soc_short) + custom_all_compile_options_soc = get_shortsoc_compile_option(custom_all_compile_options[0], soc_short) + options += custom_all_compile_options_soc + options += custom_compile_options_soc + + origin_func_name = "reduce_sum" + ascendc_src_dir_ex = "reduce_sum" + ascendc_src_dir = "reduce_sum" + ascendc_src_file = "reduce_sum.cpp" + src = get_kernel_source(ascendc_src_file, ascendc_src_dir, ascendc_src_dir_ex) + + print("start compile Ascend C operator ReduceSum. kernel name is " + kernel_name) + op_type = "ReduceSum" + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\ + attrs = __attrs__, impl_mode = impl_mode, origin_inputs=[x_in__, axis_in__], origin_outputs = [y_out_], param_type_dynamic = False,\ + mc2_ctx = None, param_type_list = ['required', 'required', 'required']) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("op_select_format", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("get_op_specific_info", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/__pycache__/ReduceSum.cpython-39.pyc b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/__pycache__/ReduceSum.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd9cc442d87eb1a4a0acfa336b346618beea7761 Binary files /dev/null and b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/__pycache__/ReduceSum.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/reduce_sum.cpp b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e8a4d2b929e5df0ce5c9eddf138c2c859dc4d18b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/binary/ascend310b/src/reduce_sum.cpp @@ -0,0 +1,85 @@ +#include "kernel_operator.h" +using namespace AscendC; + +/* + * Copyright (c) Huawei Technologies Co., Ltd. 2022-2023. All rights reserved. + * + * Function : z = x + y + * This sample is a very basic sample that implements vector add on Ascend plaform. + */ +#include "kernel_operator.h" +using namespace AscendC; + + +class KernelAdd +{ + + +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR axis, GM_ADDR y, uint32_t size, uint16_t *shape, uint32_t axes_size, uint32_t dataType) + { + + + xGm.SetGlobalBuffer((__gm__ half *)x, 32); + + + + yGm.SetGlobalBuffer((__gm__ half *)y, 1); + // y又要多少呢 最少就是消除第一个维度之后的大小 + + pipe.InitBuffer(inQueueX, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(outQueueY, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(tmp1, 2048 * sizeof(float)); + pipe.InitBuffer(tmp2, 2048 * sizeof(float)); + pipe.InitBuffer(tmp3, 2048 * sizeof(float)); + + } + __aicore__ inline void Act() + { + LocalTensor xLocal = inQueueX.AllocTensor(); + LocalTensor yLocal = outQueueY.AllocTensor(); + DataCopy(xLocal, xGm, 32); + + // auto p1 = tmp1.Get(); + // auto p2 = tmp2.Get(); + // auto p3 = tmp3.Get(); + + // Cast(p1, xLocal, RoundMode::CAST_NONE, 32); + // Cast(p2, yLocal, RoundMode::CAST_NONE, 32); + + ReduceSum(yLocal, xLocal, yLocal[32], 32); + // Cast(yLocal, p2, RoundMode::CAST_TRUNC, 32); + yGm.SetValue(0, yLocal.GetValue(0)); + + inQueueX.FreeTensor(xLocal); + outQueueY.FreeTensor(yLocal); + + } + + + +private: + TPipe pipe; + TQue inQueueX; + + TQue outQueueY; + + TBuf tmp1, tmp2, tmp3; + + GlobalTensor xGm; + GlobalTensor yGm; + +}; + +extern "C" __global__ __aicore__ void reduce_sum(GM_ADDR x, GM_ADDR axes, GM_ADDR y, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + KernelAdd op; + op.Init(x, axes, y, tiling_data.size, + tiling_data.shape, tiling_data.axis_size, + tiling_data.dataType); + op.Act(); +} diff --git a/precision_Problem/Is_standard/build_out/op_kernel/cmake_install.cmake b/precision_Problem/Is_standard/build_out/op_kernel/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5a0cabde143f9419ea727dab96a20feb5bc9c6e8 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/cmake_install.cmake @@ -0,0 +1,108 @@ +# Install script for directory: /Package_Cann/test/No_standard/op_kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl" TYPE DIRECTORY FILES "/Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/binary_info_config.json") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/reduce_sum.json") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic" TYPE FILE FILES "/Package_Cann/test/No_standard/op_kernel/reduce_sum.cpp") +endif() + diff --git a/precision_Problem/Is_standard/build_out/op_kernel/tbe/.impl_timestamp b/precision_Problem/Is_standard/build_out/op_kernel/tbe/.impl_timestamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/precision_Problem/Is_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py b/precision_Problem/Is_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py new file mode 100644 index 0000000000000000000000000000000000000000..5ce4bbbb4eda5cd146af415b11a7387fd41ac853 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py @@ -0,0 +1,205 @@ + +import os, sys +import ctypes +import json +import shutil +from tbe.common.platform import get_soc_spec +from tbe.common.utils import para_check +from tbe.tikcpp import compile_op, replay_op, check_op_cap, generalize_op_params, get_code_channel, OpInfo +from tbe.common.buildcfg import get_default_build_config +from impl.util.platform_adapter import tbe_register +from tbe.common.buildcfg import get_current_build_config +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +DTYPE_MAP = {"float32": ["DT_FLOAT", "float"], + "float16": ["DT_FLOAT16", "half"], + "int8": ["DT_INT8", "int8_t"], + "int16": ["DT_INT16", "int16_t"], + "int32": ["DT_INT32", "int32_t"], + "int64": ["DT_INT64", "int64_t"], + "uint1": ["DT_UINT1", "uint8_t"], + "uint8": ["DT_UINT8", "uint8_t"], + "uint16": ["DT_UINT16", "uint16_t"], + "uint32": ["DT_UINT32", "uint32_t"], + "uint64": ["DT_UINT64", "uint64_t"], + "bool": ["DT_BOOL", "bool"], + "double": ["DT_DOUBLE", "double"], + "dual": ["DT_DUAL", "unknown"], + "dual_sub_int8": ["DT_DUAL_SUB_INT8", "unknown"], + "dual_sub_uint8": ["DT_DUAL_SUB_UINT8", "unknown"], + "string": ["DT_STRING", "unknown"], + "complex64": ["DT_COMPLEX64", "unknown"], + "complex128": ["DT_COMPLEX128", "unknown"], + "qint8": ["DT_QINT8", "unknown"], + "qint16": ["DT_QINT16", "unknown"], + "qint32": ["DT_QINT32", "unknown"], + "quint8": ["DT_QUINT8", "unknown"], + "quint16": ["DT_QUINT16", "unknown"], + "resource": ["DT_RESOURCE", "unknown"], + "string_ref": ["DT_STRING_REF", "unknown"], + "int4": ["DT_INT4", "int4b_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def add_dtype_fmt_option_single(x, x_n, is_ref: bool = False): + options = [] + x_fmt = x.get("format") + x_dtype = x.get("dtype") + x_n_in_kernel = x_n + '_REF' if is_ref else x_n + options.append("-DDTYPE_{n}={t}".format(n=x_n_in_kernel, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n_in_kernel, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n_in_kernel, f=x_fmt)) + return options + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + input_names = ['x', 'axis'] + output_names = ['y'] + unique_param_name_set = set() + for idx, x in enumerate(__inputs__): + if x is None: + continue + x_n = input_names[idx].upper() + unique_param_name_set.add(x_n) + options += add_dtype_fmt_option_single(x, x_n) + + for idx, x in enumerate(__outputs__): + if x is None: + continue + x_n = output_names[idx].upper() + if x_n in unique_param_name_set: + options += add_dtype_fmt_option_single(x, x_n, True) + else: + options += add_dtype_fmt_option_single(x, x_n) + return options + +def load_dso(so_path): + try: + ctypes.CDLL(so_path) + except OSError as error : + print(error) + raise RuntimeError("cannot open %s" %(so_path)) + else: + print("load so succ ", so_path) + +def get_shortsoc_compile_option(compile_option_list: list, shortsoc:str): + compile_options = [] + if shortsoc in compile_option_list: + compile_options = compile_option_list[shortsoc] + elif '__ALLSOC__' in compile_option_list: + compile_options = compile_option_list['__ALLSOC__'] + return compile_options + +def get_kernel_source(src_file, dir_snake, dir_ex): + src_ex = os.path.join(PYF_PATH, "..", "ascendc", dir_ex, src_file) + if os.path.exists(src_ex): + return src_ex + src = os.path.join(PYF_PATH, "..", "ascendc", dir_snake, src_file) + if os.path.exists(src): + return src + src = os.path.join(PYF_PATH, src_file) + if os.path.exists(src): + return src + return src_ex + +def _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype): + __inputs__ = [] + for arg in [x_in__, axis_in__]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [y_out_]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + else: + __outputs__.append(arg) + __attrs__ = [] + if keep_dims != None: + attr = {} + attr["name"] = "keep_dims" + attr["dtype"] = "bool" + attr["value"] = keep_dims + __attrs__.append(attr) + if ignore_nan != None: + attr = {} + attr["name"] = "ignore_nan" + attr["dtype"] = "bool" + attr["value"] = ignore_nan + __attrs__.append(attr) + if dtype != None: + attr = {} + attr["name"] = "dtype" + attr["dtype"] = "str" + attr["value"] = dtype + __attrs__.append(attr) + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("ReduceSum", trans_bool_to_s8=False) +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_STR, para_check.KERNEL_NAME) +def reduce_sum(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", kernel_name="reduce_sum", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + bisheng = shutil.which("bisheng") + if bisheng != None: + bisheng_path = os.path.dirname(bisheng) + tikcpp_path = os.path.realpath(os.path.join(bisheng_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + options.append("-I" + tikcpp_path) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + options.append("-I" + os.path.join(PYF_PATH, "..", "ascendc", "common")) + if impl_mode == "high_performance": + options.append("-DHIGH_PERFORMANCE=1") + elif impl_mode == "high_precision": + options.append("-DHIGH_PRECISION=1") + if get_default_build_config("enable_deterministic_mode") == 1: + options.append("-DDETEMINISTIC_MODE=1") + + custom_compile_options = {}, + custom_all_compile_options = {}, + soc_version = get_soc_spec("SOC_VERSION") + soc_short = get_soc_spec("SHORT_SOC_VERSION").lower() + custom_compile_options_soc = get_shortsoc_compile_option(custom_compile_options[0], soc_short) + custom_all_compile_options_soc = get_shortsoc_compile_option(custom_all_compile_options[0], soc_short) + options += custom_all_compile_options_soc + options += custom_compile_options_soc + + origin_func_name = "reduce_sum" + ascendc_src_dir_ex = "reduce_sum" + ascendc_src_dir = "reduce_sum" + ascendc_src_file = "reduce_sum.cpp" + src = get_kernel_source(ascendc_src_file, ascendc_src_dir, ascendc_src_dir_ex) + + print("start compile Ascend C operator ReduceSum. kernel name is " + kernel_name) + op_type = "ReduceSum" + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\ + attrs = __attrs__, impl_mode = impl_mode, origin_inputs=[x_in__, axis_in__], origin_outputs = [y_out_], param_type_dynamic = False,\ + mc2_ctx = None, param_type_list = ['required', 'required', 'required']) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("op_select_format", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("get_op_specific_info", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/precision_Problem/Is_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json b/precision_Problem/Is_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json new file mode 100644 index 0000000000000000000000000000000000000000..19cd398bef0738317d7ca66437c52ef6a2ef9de8 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json @@ -0,0 +1,73 @@ +{ + "ReduceSum":{ + "attr":{ + "list":"keep_dims,ignore_nan,dtype" + }, + "attr_dtype":{ + "defaultValue":"float", + "paramType":"optional", + "type":"str", + "value":"all" + }, + "attr_ignore_nan":{ + "defaultValue":"false", + "paramType":"optional", + "type":"bool", + "value":"all" + }, + "attr_keep_dims":{ + "defaultValue":"false", + "paramType":"optional", + "type":"bool", + "value":"all" + }, + "dynamicCompileStatic":{ + "flag":"true" + }, + "dynamicFormat":{ + "flag":"true" + }, + "dynamicRankSupport":{ + "flag":"true" + }, + "dynamicShapeSupport":{ + "flag":"true" + }, + "input0":{ + "dtype":"float32,float16,int32,int8", + "format":"ND,ND,ND,ND", + "name":"x", + "paramType":"required", + "shape":"all", + "unknownshape_format":"ND,ND,ND,ND" + }, + "input1":{ + "dtype":"int32,int32,int32,int32", + "format":"ND,ND,ND,ND", + "name":"axis", + "paramType":"required", + "shape":"all", + "unknownshape_format":"ND,ND,ND,ND" + }, + "needCheckSupport":{ + "flag":"false" + }, + "opFile":{ + "value":"reduce_sum" + }, + "opInterface":{ + "value":"reduce_sum" + }, + "output0":{ + "dtype":"float32,float16,int32,int8", + "format":"ND,ND,ND,ND", + "name":"y", + "paramType":"required", + "shape":"all", + "unknownshape_format":"ND,ND,ND,ND" + }, + "precision_reduce":{ + "flag":"true" + } + } +} \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json b/precision_Problem/Is_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json new file mode 100644 index 0000000000000000000000000000000000000000..716e4bbb08b375923beae8f2ec6fb4db1fa3447c --- /dev/null +++ b/precision_Problem/Is_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json @@ -0,0 +1,6 @@ +{ + "ReduceSum": { + "isGray": false, + "isHeavy": false + } +} diff --git a/precision_Problem/Is_standard/build_out/scripts/help.info b/precision_Problem/Is_standard/build_out/scripts/help.info new file mode 100644 index 0000000000000000000000000000000000000000..f4b28d57a8150f0df6c386473b7554c7d087c90f --- /dev/null +++ b/precision_Problem/Is_standard/build_out/scripts/help.info @@ -0,0 +1 @@ + --install-path Install operator package to specific dir path \ No newline at end of file diff --git a/precision_Problem/Is_standard/build_out/scripts/install.sh b/precision_Problem/Is_standard/build_out/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/scripts/install.sh @@ -0,0 +1,318 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +QUIET="y" + +while true +do + case $1 in + --quiet) + QUIET="y" + shift + ;; + --install-path=*) + INSTALL_PATH=$(echo $1 | cut -d"=" -f2-) + INSTALL_PATH=${INSTALL_PATH%*/} + shift + ;; + --*) + shift + ;; + *) + break + ;; + esac +done + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [ -n "${INSTALL_PATH}" ]; then + if [[ ! "${INSTALL_PATH}" = /* ]]; then + log "[ERROR] use absolute path for --install-path argument" + exit 1 + fi + if [ ! -d ${INSTALL_PATH} ]; then + mkdir ${INSTALL_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${INSTALL_PATH} failed" + exit 1 + fi + fi + targetdir=${INSTALL_PATH} +elif [ -n "${ASCEND_CUSTOM_OPP_PATH}" ]; then + if [ ! -d ${ASCEND_CUSTOM_OPP_PATH} ]; then + mkdir -p ${ASCEND_CUSTOM_OPP_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${ASCEND_CUSTOM_OPP_PATH} failed" + fi + fi + targetdir=${ASCEND_CUSTOM_OPP_PATH} +else + if [ "x${ASCEND_OPP_PATH}" == "x" ]; then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 + fi + targetdir="${ASCEND_OPP_PATH}" +fi + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + has_same_file=-1 + for file_a in ${sourcedir}/$vendordir/$1/*; do + file_b=${file_a##*/}; + if [ "ls ${targetdir}/$vendordir/$1" = "" ]; then + log "[INFO] ${targetdir}/$vendordir/$1 is empty !!" + return 1 + fi + grep -q $file_b <<<`ls ${targetdir}/$vendordir/$1`; + if [[ $? -eq 0 ]]; then + echo -n "${file_b} " + has_same_file=0 + fi + done + if [ 0 -eq $has_same_file ]; then + if test $QUIET = "n"; then + echo "[INFO]: has old version in ${targetdir}/$vendordir/$1, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + + while true + do + read orn + if [ "$orn" = n ]; then + return 0 + elif [ "$orn" = m ]; then + break; + elif [ "$0rn" = r ]; then + [ -n "${targetdir}/$vendordir/$1/" ] && rm -rf "${targetdir}/$vendordir/$1"/* + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace or merge old ops $1 files .g....." + fi + + log "copy new ops $1 files ......" + if [ -d ${targetdir}/$vendordir/$1/ ]; then + chmod -R +w "$targetdir/$vendordir/$1/" >/dev/null 2>&1 + fi + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} +upgrade_proto() +{ + if [ ! -f ${sourcedir}/$vendordir/custom.proto ]; then + log "[INFO] no need to upgrade custom.proto files" + return 0 + fi + if [ ! -d ${targetdir}/$vendordir/framework/caffe ];then + log "[INFO] create ${targetdir}/$vendordir/framework/caffe." + mkdir -p ${targetdir}/$vendordir/framework/caffe + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/framework/caffe failed" + return 1 + fi + else + if [ -f ${targetdir}/$vendordir/framework/caffe/custom.proto ]; then + # 有老版本,判断是否要覆盖式安装 + if test $QUIET = "n"; then + echo "[INFO] ${targetdir}/$vendordir/framework/caffe has old version"\ + "custom.proto file. Do you want to replace? [y/n] " + + while true + do + read yn + if [ "$yn" = n ]; then + return 0 + elif [ "$yn" = y ]; then + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace old caffe.proto files ......" + fi + chmod -R +w "$targetdir/$vendordir/framework/caffe/" >/dev/null 2>&1 + cp -rf ${sourcedir}/$vendordir/custom.proto ${targetdir}/$vendordir/framework/caffe/ + if [ $? -ne 0 ];then + log "[ERROR] copy new custom.proto failed" + return 1 + fi + log "[INFO] copy custom.proto success" + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +delete_optiling_file() +{ + if [ ! -d ${targetdir}/vendors ];then + log "[INFO] $1 not exist, no need to uninstall" + return 0 + fi + sys_info=$(uname -m) + if [ ! -d ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/lib/linux/${sys_info} ];then + rm -rf ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/liboptiling.so + fi + return 0 +} + +log "[INFO] copy uninstall sh success" + +if [ ! -d ${targetdir}/vendors ];then + log "[INFO] create ${targetdir}/vendors." + mkdir -p ${targetdir}/vendors + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/vendors failed" + return 1 + fi +fi +chmod u+w ${targetdir}/vendors + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +delete_optiling_file op_impl +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +upgrade_proto +if [ $? -ne 0 ];then + exit 1 +fi + +# set the set_env.bash +if [ -n "${INSTALL_PATH}" ] && [ -d ${INSTALL_PATH} ]; then + _ASCEND_CUSTOM_OPP_PATH=${targetdir}/${vendordir} + bin_path="${_ASCEND_CUSTOM_OPP_PATH}/bin" + set_env_variable="#!/bin/bash\nexport ASCEND_CUSTOM_OPP_PATH=${_ASCEND_CUSTOM_OPP_PATH}:\${ASCEND_CUSTOM_OPP_PATH}" + if [ ! -d ${bin_path} ]; then + mkdir -p ${bin_path} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${bin_path} failed" + exit 1 + fi + fi + echo -e ${set_env_variable} > ${bin_path}/set_env.bash + if [ $? -ne 0 ]; then + log "[ERROR] write ASCEND_CUSTOM_OPP_PATH to set_env.bash failed" + exit 1 + else + log "[INFO] using requirements: when custom module install finished or before you run the custom module, \ + execute the command [ source ${bin_path}/set_env.bash ] to set the environment path" + fi +else + config_file=${targetdir}/vendors/config.ini + if [ ! -f ${config_file} ]; then + touch ${config_file} + chmod 640 ${config_file} + echo "load_priority=$vendor_name" > ${config_file} + if [ $? -ne 0 ];then + echo "echo load_priority failed" + exit 1 + fi + else + found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" + found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') + vendor=$(echo $found_vendor | tr -s ' ' ',') + if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" + fi + fi +fi + +chmod u-w ${targetdir}/vendors + +if [ -d ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/ ]; then + chmod -R 440 ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/* >/dev/null 2>&1 +fi +if [ -f ${targetdir}/ascend_install.info ]; then + chmod -R 440 ${targetdir}/ascend_install.info +fi +if [ -f ${targetdir}/scene.info ]; then + chmod -R 440 ${targetdir}/scene.info +fi +if [ -f ${targetdir}/version.info ]; then + chmod -R 440 ${targetdir}/version.info +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/Is_standard/build_out/scripts/upgrade.sh b/precision_Problem/Is_standard/build_out/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/precision_Problem/Is_standard/build_out/scripts/upgrade.sh @@ -0,0 +1,151 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [[ "x${ASCEND_OPP_PATH}" == "x" ]];then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 +fi + +targetdir=${ASCEND_OPP_PATH} + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + vendor_installed_dir=$(ls "$targetdir/vendors" 2> /dev/null) + for i in $vendor_installed_dir;do + vendor_installed_file=$(ls "$vendor_installed_dir/$vendor_name/$i" 2> /dev/null) + if [ "$i" = "$vendor_name" ] && [ "$vendor_installed_file" != "" ]; then + echo "[INFO]: $vendor_name custom opp package has been installed on the path $vendor_installed_dir, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + fi + while true + do + read mrn + if [ "$mrn" = m ]; then + break + elif [ "$mrn" = r ]; then + [ -n "$vendor_installed_file"] && rm -rf "$vendor_installed_file" + break + elif [ "$mrn" = n ]; then + return 0 + else + echo "[WARNING]: Input error, please input m or r or n to choose!" + fi + done + done + log "[INFO] replace old ops $1 files ......" + fi + + log "copy new ops $1 files ......" + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +log "[INFO] copy uninstall sh success" + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +config_file=${targetdir}/vendors/config.ini +found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" +found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') +vendor=$(echo $found_vendor | tr -s ' ' ',') +if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" +fi + +changemode() +{ + if [ -d ${targetdir} ];then + chmod -R 550 ${targetdir}>/dev/null 2>&1 + fi + + return 0 +} +echo "[ops_custom]changemode..." +#changemode +if [ $? -ne 0 ];then + exit 1 +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/Is_standard/build_out/version.info b/precision_Problem/Is_standard/build_out/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/precision_Problem/Is_standard/build_out/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/precision_Problem/Is_standard/cmake/config.cmake b/precision_Problem/Is_standard/cmake/config.cmake new file mode 100644 index 0000000000000000000000000000000000000000..886119daadd85495676c07dfb0b629e3deab8ccf --- /dev/null +++ b/precision_Problem/Is_standard/cmake/config.cmake @@ -0,0 +1,25 @@ + +set(CMAKE_CXX_FLAGS_DEBUG "") +set(CMAKE_CXX_FLAGS_RELEASE "") + +if (NOT DEFINED vendor_name) + set(vendor_name customize CACHE STRING "") +endif() +if (NOT DEFINED ASCEND_CANN_PACKAGE_PATH) + set(ASCEND_CANN_PACKAGE_PATH /usr/local/Ascend/latest CACHE PATH "") +endif() +if (NOT DEFINED ASCEND_PYTHON_EXECUTABLE) + set(ASCEND_PYTHON_EXECUTABLE python3 CACHE STRING "") +endif() +if (NOT DEFINED ASCEND_COMPUTE_UNIT) + message(FATAL_ERROR "ASCEND_COMPUTE_UNIT not set in CMakePreset.json ! +") +endif() +set(ASCEND_TENSOR_COMPILER_PATH ${ASCEND_CANN_PACKAGE_PATH}/compiler) +set(ASCEND_CCEC_COMPILER_PATH ${ASCEND_TENSOR_COMPILER_PATH}/ccec_compiler/bin) +set(ASCEND_AUTOGEN_PATH ${CMAKE_BINARY_DIR}/autogen) +set(ASCEND_FRAMEWORK_TYPE tensorflow) +file(MAKE_DIRECTORY ${ASCEND_AUTOGEN_PATH}) +set(CUSTOM_COMPILE_OPTIONS "custom_compile_options.ini") +execute_process(COMMAND rm -rf ${ASCEND_AUTOGEN_PATH}/${CUSTOM_COMPILE_OPTIONS} + COMMAND touch ${ASCEND_AUTOGEN_PATH}/${CUSTOM_COMPILE_OPTIONS}) diff --git a/precision_Problem/Is_standard/cmake/func.cmake b/precision_Problem/Is_standard/cmake/func.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4179dfd25b41487d5aaf1ac95459543e26ab4fff --- /dev/null +++ b/precision_Problem/Is_standard/cmake/func.cmake @@ -0,0 +1,192 @@ + +function(get_system_info SYSTEM_INFO) + if (UNIX) + execute_process(COMMAND grep -i ^id= /etc/os-release OUTPUT_VARIABLE TEMP) + string(REGEX REPLACE "\n|id=|ID=|\"" "" SYSTEM_NAME ${TEMP}) + set(${SYSTEM_INFO} ${SYSTEM_NAME}_${CMAKE_SYSTEM_PROCESSOR} PARENT_SCOPE) + elseif (WIN32) + message(STATUS "System is Windows. Only for pre-build.") + else () + message(FATAL_ERROR "${CMAKE_SYSTEM_NAME} not support.") + endif () +endfunction() + +function(opbuild) + message(STATUS "Opbuild generating sources") + cmake_parse_arguments(OPBUILD "" "OUT_DIR;PROJECT_NAME;ACCESS_PREFIX" "OPS_SRC" ${ARGN}) + execute_process(COMMAND ${CMAKE_COMPILE} -g -fPIC -shared -std=c++11 ${OPBUILD_OPS_SRC} -D_GLIBCXX_USE_CXX11_ABI=0 + -I ${ASCEND_CANN_PACKAGE_PATH}/include -L ${ASCEND_CANN_PACKAGE_PATH}/lib64 -lexe_graph -lregister -ltiling_api + -o ${OPBUILD_OUT_DIR}/libascend_all_ops.so + RESULT_VARIABLE EXEC_RESULT + OUTPUT_VARIABLE EXEC_INFO + ERROR_VARIABLE EXEC_ERROR + ) + if (${EXEC_RESULT}) + message("build ops lib info: ${EXEC_INFO}") + message("build ops lib error: ${EXEC_ERROR}") + message(FATAL_ERROR "opbuild run failed!") + endif() + set(proj_env "") + set(prefix_env "") + if (NOT "${OPBUILD_PROJECT_NAME}x" STREQUAL "x") + set(proj_env "OPS_PROJECT_NAME=${OPBUILD_PROJECT_NAME}") + endif() + if (NOT "${OPBUILD_ACCESS_PREFIX}x" STREQUAL "x") + set(prefix_env "OPS_DIRECT_ACCESS_PREFIX=${OPBUILD_ACCESS_PREFIX}") + endif() + execute_process(COMMAND ${proj_env} ${prefix_env} ${ASCEND_CANN_PACKAGE_PATH}/toolkit/tools/opbuild/op_build + ${OPBUILD_OUT_DIR}/libascend_all_ops.so ${OPBUILD_OUT_DIR} + RESULT_VARIABLE EXEC_RESULT + OUTPUT_VARIABLE EXEC_INFO + ERROR_VARIABLE EXEC_ERROR + ) + if (${EXEC_RESULT}) + message("opbuild ops info: ${EXEC_INFO}") + message("opbuild ops error: ${EXEC_ERROR}") + endif() + message(STATUS "Opbuild generating sources - done") +endfunction() + +function(add_ops_info_target) + cmake_parse_arguments(OPINFO "" "TARGET;OPS_INFO;OUTPUT;INSTALL_DIR" "" ${ARGN}) + get_filename_component(opinfo_file_path "${OPINFO_OUTPUT}" DIRECTORY) + add_custom_command(OUTPUT ${OPINFO_OUTPUT} + COMMAND mkdir -p ${opinfo_file_path} + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/parse_ini_to_json.py + ${OPINFO_OPS_INFO} ${OPINFO_OUTPUT} + ) + add_custom_target(${OPINFO_TARGET} ALL + DEPENDS ${OPINFO_OUTPUT} + ) + install(FILES ${OPINFO_OUTPUT} + DESTINATION ${OPINFO_INSTALL_DIR} + ) +endfunction() + +function(add_ops_compile_options OP_TYPE) + cmake_parse_arguments(OP_COMPILE "" "OP_TYPE" "COMPUTE_UNIT;OPTIONS" ${ARGN}) + file(APPEND ${ASCEND_AUTOGEN_PATH}/${CUSTOM_COMPILE_OPTIONS} + "${OP_TYPE},${OP_COMPILE_COMPUTE_UNIT},${OP_COMPILE_OPTIONS}\n") +endfunction() + +function(add_ops_impl_target) + cmake_parse_arguments(OPIMPL "" "TARGET;OPS_INFO;IMPL_DIR;OUT_DIR;INSTALL_DIR" "OPS_BATCH;OPS_ITERATE" ${ARGN}) + add_custom_command(OUTPUT ${OPIMPL_OUT_DIR}/.impl_timestamp + COMMAND mkdir -m 700 -p ${OPIMPL_OUT_DIR}/dynamic + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_impl_build.py + ${OPIMPL_OPS_INFO} + \"${OPIMPL_OPS_BATCH}\" \"${OPIMPL_OPS_ITERATE}\" + ${OPIMPL_IMPL_DIR} + ${OPIMPL_OUT_DIR}/dynamic + ${ASCEND_AUTOGEN_PATH} + + COMMAND rm -rf ${OPIMPL_OUT_DIR}/.impl_timestamp + COMMAND touch ${OPIMPL_OUT_DIR}/.impl_timestamp + DEPENDS ${OPIMPL_OPS_INFO} + ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_impl_build.py + ) + add_custom_target(${OPIMPL_TARGET} ALL + DEPENDS ${OPIMPL_OUT_DIR}/.impl_timestamp) + if (${ENABLE_SOURCE_PACKAGE}) + install(DIRECTORY ${OPIMPL_OUT_DIR}/dynamic + DESTINATION ${OPIMPL_INSTALL_DIR} + ) + endif() +endfunction() + +function(add_npu_support_target) + cmake_parse_arguments(NPUSUP "" "TARGET;OPS_INFO_DIR;OUT_DIR;INSTALL_DIR" "" ${ARGN}) + get_filename_component(npu_sup_file_path "${NPUSUP_OUT_DIR}" DIRECTORY) + add_custom_command(OUTPUT ${NPUSUP_OUT_DIR}/npu_supported_ops.json + COMMAND mkdir -p ${NPUSUP_OUT_DIR} + COMMAND ${CMAKE_SOURCE_DIR}/cmake/util/gen_ops_filter.sh + ${NPUSUP_OPS_INFO_DIR} + ${NPUSUP_OUT_DIR} + ) + add_custom_target(npu_supported_ops ALL + DEPENDS ${NPUSUP_OUT_DIR}/npu_supported_ops.json + ) + install(FILES ${NPUSUP_OUT_DIR}/npu_supported_ops.json + DESTINATION ${NPUSUP_INSTALL_DIR} + ) +endfunction() + +function(add_bin_compile_target) + cmake_parse_arguments(BINCMP "" "TARGET;OPS_INFO;COMPUTE_UNIT;IMPL_DIR;ADP_DIR;OUT_DIR;INSTALL_DIR" "" ${ARGN}) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/src) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/bin) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/gen) + execute_process(COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_bin_param_build.py + ${BINCMP_OPS_INFO} ${BINCMP_OUT_DIR}/gen ${BINCMP_COMPUTE_UNIT} + RESULT_VARIABLE EXEC_RESULT + OUTPUT_VARIABLE EXEC_INFO + ERROR_VARIABLE EXEC_ERROR + ) + if (${EXEC_RESULT}) + message("ops binary compile scripts gen info: ${EXEC_INFO}") + message("ops binary compile scripts gen error: ${EXEC_ERROR}") + message(FATAL_ERROR "ops binary compile scripts gen failed!") + endif() + if (NOT TARGET binary) + add_custom_target(binary) + endif() + add_custom_target(${BINCMP_TARGET} + COMMAND cp -r ${BINCMP_IMPL_DIR}/*.* ${BINCMP_OUT_DIR}/src + ) + add_custom_target(${BINCMP_TARGET}_gen_ops_config + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/insert_simplified_keys.py -p ${BINCMP_OUT_DIR}/bin + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_ops_config.py -p ${BINCMP_OUT_DIR}/bin + -s ${BINCMP_COMPUTE_UNIT} + ) + add_dependencies(binary ${BINCMP_TARGET}_gen_ops_config) + file(GLOB bin_scripts ${BINCMP_OUT_DIR}/gen/*.sh) + foreach(bin_script ${bin_scripts}) + get_filename_component(bin_file ${bin_script} NAME_WE) + string(REPLACE "-" ";" bin_sep ${bin_file}) + list(GET bin_sep 0 op_type) + list(GET bin_sep 1 op_file) + list(GET bin_sep 2 op_index) + if (NOT TARGET ${BINCMP_TARGET}_${op_file}_copy) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/bin/${op_file}) + add_custom_target(${BINCMP_TARGET}_${op_file}_copy + COMMAND cp ${BINCMP_ADP_DIR}/${op_file}.py ${BINCMP_OUT_DIR}/src/${op_type}.py + ) + install(DIRECTORY ${BINCMP_OUT_DIR}/bin/${op_file} + DESTINATION ${BINCMP_INSTALL_DIR}/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + install(FILES ${BINCMP_OUT_DIR}/bin/${op_file}.json + DESTINATION ${BINCMP_INSTALL_DIR}/config/${BINCMP_COMPUTE_UNIT}/ OPTIONAL + ) + endif() + add_custom_target(${BINCMP_TARGET}_${op_file}_${op_index} + COMMAND export HI_PYTHON=${ASCEND_PYTHON_EXECUTABLE} && bash ${bin_script} ${BINCMP_OUT_DIR}/src/${op_type}.py ${BINCMP_OUT_DIR}/bin/${op_file} && echo $(MAKE) + WORKING_DIRECTORY ${BINCMP_OUT_DIR} + ) + add_dependencies(${BINCMP_TARGET}_${op_file}_${op_index} ${BINCMP_TARGET} ${BINCMP_TARGET}_${op_file}_copy) + add_dependencies(${BINCMP_TARGET}_gen_ops_config ${BINCMP_TARGET}_${op_file}_${op_index}) + endforeach() + install(FILES ${BINCMP_OUT_DIR}/bin/binary_info_config.json + DESTINATION ${BINCMP_INSTALL_DIR}/config/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + + install(DIRECTORY ${BINCMP_OUT_DIR}/bin/${op_file} + DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../build_out/kernel/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + install(FILES ${BINCMP_OUT_DIR}/bin/binary_info_config.json + DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../build_out/kernel/config/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + install(FILES ${BINCMP_OUT_DIR}/bin/${op_file}.json + DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../build_out/kernel/config/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + +endfunction() + +function(add_cross_compile_target) + cmake_parse_arguments(CROSSMP "" "TARGET;OUT_DIR;INSTALL_DIR" "" ${ARGN}) + add_custom_target(${CROSSMP_TARGET} ALL + DEPENDS ${CROSSMP_OUT_DIR} + ) + install(DIRECTORY ${CROSSMP_OUT_DIR} + DESTINATION ${CROSSMP_INSTALL_DIR} + ) +endfunction() diff --git a/precision_Problem/Is_standard/cmake/intf.cmake b/precision_Problem/Is_standard/cmake/intf.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2f362c396622d66132f80f54492a8cc3204882fb --- /dev/null +++ b/precision_Problem/Is_standard/cmake/intf.cmake @@ -0,0 +1,26 @@ + +add_library(intf_pub INTERFACE) +target_compile_options(intf_pub INTERFACE + -fPIC + -fvisibility=hidden + -fvisibility-inlines-hidden + $<$:-O2> + $<$:-O0 -g> + $<$:-std=c++11> + $<$,$>:-ftrapv -fstack-check> + $<$:-pthread -Wfloat-equal -Wshadow -Wformat=2 -Wno-deprecated -Wextra> + $,-fstack-protector-strong,-fstack-protector-all> +) +target_compile_definitions(intf_pub INTERFACE + _GLIBCXX_USE_CXX11_ABI=0 + $<$:_FORTIFY_SOURCE=2> +) +target_include_directories(intf_pub INTERFACE ${ASCEND_CANN_PACKAGE_PATH}/include) +target_link_options(intf_pub INTERFACE + $<$,EXECUTABLE>:-pie> + $<$:-s> + -Wl,-z,relro + -Wl,-z,now + -Wl,-z,noexecstack +) +target_link_directories(intf_pub INTERFACE ${ASCEND_CANN_PACKAGE_PATH}/lib64) diff --git a/precision_Problem/Is_standard/cmake/makeself.cmake b/precision_Problem/Is_standard/cmake/makeself.cmake new file mode 100644 index 0000000000000000000000000000000000000000..48c565bfb4f2edc6534a81abaa8565c4cf2dfc30 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/makeself.cmake @@ -0,0 +1,17 @@ +execute_process(COMMAND chmod +x ${CMAKE_CURRENT_LIST_DIR}/util/makeself/makeself.sh) +execute_process(COMMAND ${CMAKE_CURRENT_LIST_DIR}/util/makeself/makeself.sh + --header ${CMAKE_CURRENT_LIST_DIR}/util/makeself/makeself-header.sh + --help-header ./help.info + --gzip --complevel 4 --nomd5 --sha256 + ./ ${CPACK_PACKAGE_FILE_NAME} "version:1.0" ./install.sh + WORKING_DIRECTORY ${CPACK_TEMPORARY_DIRECTORY} + RESULT_VARIABLE EXEC_RESULT + ERROR_VARIABLE EXEC_ERROR +) +if (NOT "${EXEC_RESULT}x" STREQUAL "0x") + message(FATAL_ERROR "CPack Command error: ${EXEC_RESULT}\n${EXEC_ERROR}") +endif() +execute_process(COMMAND cp ${CPACK_EXTERNAL_BUILT_PACKAGES} ${CPACK_PACKAGE_DIRECTORY}/ + COMMAND echo "Copy ${CPACK_EXTERNAL_BUILT_PACKAGES} to ${CPACK_PACKAGE_DIRECTORY}/" + WORKING_DIRECTORY ${CPACK_TEMPORARY_DIRECTORY} +) diff --git a/precision_Problem/Is_standard/cmake/util/__init__.py b/precision_Problem/Is_standard/cmake/util/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c4ddc893a9275672e046b1311c6ee2d1578f405e --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/__init__.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import sys +import os + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) +sys.path.append(PYF_PATH) diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/__init__.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d4a3baeca0155418546acf1c217c6c07a4bfa41 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/__init__.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_bin_param_build.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_bin_param_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7089839d71bd08c83421585b3f000e16451ba9a2 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_bin_param_build.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_impl_build.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_impl_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..895c9f228edd17f1ccd131164d9c264183fb99d3 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_impl_build.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_ops_config.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_ops_config.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afad532e09d048e309b167165e0effa8f9cf9982 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_ops_config.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_replay_build.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_replay_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..84bfb0d2e3469d9b5ef4438c18c62b462e87ce74 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/ascendc_replay_build.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/code_channel_infer.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/code_channel_infer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5497fa13a5a851c068de4b053bb32c6220f50f57 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/code_channel_infer.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/const_var.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/const_var.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d27150917350d18dce3cccbc1abf42bd6019b88 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/insert_op_info.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/insert_op_info.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ca91a6ba6d427d186c1fe7e80fa71783b8c4829 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/insert_op_info.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/insert_simplified_keys.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/insert_simplified_keys.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..050db729eacc5b667fd11870bfd92208c2851803 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/insert_simplified_keys.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/kernel_entry.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/kernel_entry.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ecdb23b2549f8f4e640993a2040c10b7fc0d0b4b Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/kernel_entry.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e1376fa0186638c0042e66840dd97bdca75ffed1 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/parse_ini_to_json.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/parse_ini_to_json.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8998deeac8dddd1cbf3023282a93b1274007127 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/parse_ini_to_json.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/preset_parse.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/preset_parse.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88fdcf0d637a92c8f45267de944be23bf00356ff Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/preset_parse.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/replay_codegen.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/replay_codegen.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e742fd36e703620fd0a1b1def33b090dea6744f0 Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/replay_codegen.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/__pycache__/tiling_data_def_build.cpython-39.pyc b/precision_Problem/Is_standard/cmake/util/__pycache__/tiling_data_def_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91be34d1a7eedf2a61d7531815b564ad84c855ae Binary files /dev/null and b/precision_Problem/Is_standard/cmake/util/__pycache__/tiling_data_def_build.cpython-39.pyc differ diff --git a/precision_Problem/Is_standard/cmake/util/ascendc_bin_param_build.py b/precision_Problem/Is_standard/cmake/util/ascendc_bin_param_build.py new file mode 100644 index 0000000000000000000000000000000000000000..63b15c90044e4f66de0eca571e9ddad4372f17fa --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/ascendc_bin_param_build.py @@ -0,0 +1,127 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import json +import hashlib +import const_var +import opdesc_parser + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + + +class BinParamBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + super().__init__(op_type) + self.soc = '' + self.out_path = '' + + def set_soc_version(self: any, soc: str): + self.soc = soc + + def set_out_path(self: any, out_path: str): + self.out_path = out_path + + def gen_input_json(self: any): + key_map = {} + count = len(self.input_dtype[0].split(',')) + for i in range(0, count): + inputs = [] + outputs = [] + attrs = [] + op_node = {} + for idx in range(0, len(self.input_name)): + idtypes = self.input_dtype[idx].split(',') + ifmts = self.input_fmt[idx].split(',') + itype = self.input_type[idx] + para = {} + para['name'] = self.input_name[idx][:-5] + para['index'] = idx + para['dtype'] = idtypes[i] + para['format'] = ifmts[i] + para['paramType'] = itype + para['shape'] = [-2] + if itype == 'dynamic': + inputs.append([para]) + else: + inputs.append(para) + for idx in range(0, len(self.output_name)): + odtypes = self.output_dtype[idx].split(',') + ofmts = self.output_fmt[idx].split(',') + otype = self.output_type[idx] + para = {} + para['name'] = self.output_name[idx][:-5] + para['index'] = idx + para['dtype'] = odtypes[i] + para['format'] = ofmts[i] + para['paramType'] = otype + para['shape'] = [-2] + if otype == 'dynamic': + outputs.append([para]) + else: + outputs.append(para) + for attr in self.attr_list: + att = {} + att['name'] = attr + atype = self.attr_val.get(attr).get('type').lower() + att['dtype'] = atype + att['value'] = const_var.ATTR_DEF_VAL.get(atype) + attrs.append(att) + op_node['bin_filename'] = '' + op_node['inputs'] = inputs + op_node['outputs'] = outputs + if len(attrs) > 0: + op_node['attrs'] = attrs + param = {} + param['op_type'] = self.op_type + param['op_list'] = [op_node] + objstr = json.dumps(param, indent=' ') + md5sum = hashlib.md5(objstr.encode('utf-8')).hexdigest() + while key_map.get(md5sum) is not None: + objstr += '1' + md5sum = hashlib.md5(objstr.encode('utf-8')).hexdigest() + key_map[md5sum] = md5sum + bin_file = self.op_type + '_' + md5sum + op_node['bin_filename'] = bin_file + param_file = os.path.join(self.out_path, bin_file + '_param.json') + param_file = os.path.realpath(param_file) + with os.fdopen(os.open(param_file, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + json.dump(param, fd, indent=' ') + self._write_buld_cmd(param_file, bin_file, i) + + def _write_buld_cmd(self: any, param_file: str, bin_file: str, index: int): + hard_soc = const_var.SOC_MAP_EXT.get(self.soc) + if not hard_soc: + hard_soc = self.soc.capitalize() + name_com = [self.op_type, self.op_file, str(index)] + compile_file = os.path.join(self.out_path, '-'.join(name_com) + '.sh') + compile_file = os.path.realpath(compile_file) + with os.fdopen(os.open(compile_file, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + fd.write('#!/bin/bash\n') + fd.write('echo "[{}] Generating {} ..."\n'.format(hard_soc, bin_file)) + cmd = const_var.BIN_CMD.format(fun=self.op_intf, soc=hard_soc, param=param_file, impl='""') + fd.write(cmd) + chk = const_var.CHK_CMD.format(res_file=bin_file + '.json') + fd.write(chk) + chk = const_var.CHK_CMD.format(res_file=bin_file + '.o') + fd.write(chk) + fd.write('echo "[{}] Generating {} Done"\n'.format(hard_soc, bin_file)) + + +def gen_bin_param_file(cfgfile: str, out_dir: str, soc: str): + op_descs = opdesc_parser.get_op_desc(cfgfile, [], [], BinParamBuilder, None) + for op_desc in op_descs: + op_desc.set_soc_version(soc) + op_desc.set_out_path(out_dir) + op_desc.gen_input_json() + + +if __name__ == '__main__': + if len(sys.argv) <= 3: + raise RuntimeError('arguments must greater than 3') + gen_bin_param_file(sys.argv[1], sys.argv[2], sys.argv[3]) diff --git a/precision_Problem/Is_standard/cmake/util/ascendc_impl_build.py b/precision_Problem/Is_standard/cmake/util/ascendc_impl_build.py new file mode 100644 index 0000000000000000000000000000000000000000..647801c07120019b0ffdf02eb316bc27dc200132 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/ascendc_impl_build.py @@ -0,0 +1,501 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import re +import opdesc_parser +import const_var + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +IMPL_HEAD = ''' +import os, sys +import ctypes +import json +import shutil +from tbe.common.platform import get_soc_spec +from tbe.common.utils import para_check +from tbe.tikcpp import compile_op, replay_op, check_op_cap, generalize_op_params, get_code_channel, OpInfo +from tbe.common.buildcfg import get_default_build_config +from impl.util.platform_adapter import tbe_register +from tbe.common.buildcfg import get_current_build_config +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +DTYPE_MAP = {{"float32": ["DT_FLOAT", "float"], + "float16": ["DT_FLOAT16", "half"], + "int8": ["DT_INT8", "int8_t"], + "int16": ["DT_INT16", "int16_t"], + "int32": ["DT_INT32", "int32_t"], + "int64": ["DT_INT64", "int64_t"], + "uint1": ["DT_UINT1", "uint8_t"], + "uint8": ["DT_UINT8", "uint8_t"], + "uint16": ["DT_UINT16", "uint16_t"], + "uint32": ["DT_UINT32", "uint32_t"], + "uint64": ["DT_UINT64", "uint64_t"], + "bool": ["DT_BOOL", "bool"], + "double": ["DT_DOUBLE", "double"], + "dual": ["DT_DUAL", "unknown"], + "dual_sub_int8": ["DT_DUAL_SUB_INT8", "unknown"], + "dual_sub_uint8": ["DT_DUAL_SUB_UINT8", "unknown"], + "string": ["DT_STRING", "unknown"], + "complex64": ["DT_COMPLEX64", "unknown"], + "complex128": ["DT_COMPLEX128", "unknown"], + "qint8": ["DT_QINT8", "unknown"], + "qint16": ["DT_QINT16", "unknown"], + "qint32": ["DT_QINT32", "unknown"], + "quint8": ["DT_QUINT8", "unknown"], + "quint16": ["DT_QUINT16", "unknown"], + "resource": ["DT_RESOURCE", "unknown"], + "string_ref": ["DT_STRING_REF", "unknown"], + "int4": ["DT_INT4", "int4b_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]}} + +def add_dtype_fmt_option_single(x, x_n, is_ref: bool = False): + options = [] + x_fmt = x.get("format") + x_dtype = x.get("dtype") + x_n_in_kernel = x_n + '_REF' if is_ref else x_n + options.append("-DDTYPE_{{n}}={{t}}".format(n=x_n_in_kernel, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{{n}}={{ot}}".format(n=x_n_in_kernel, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{{n}}=FORMAT_{{f}}".format(n=x_n_in_kernel, f=x_fmt)) + return options + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + input_names = {} + output_names = {} + unique_param_name_set = set() + for idx, x in enumerate(__inputs__): + if x is None: + continue + x_n = input_names[idx].upper() + unique_param_name_set.add(x_n) + options += add_dtype_fmt_option_single(x, x_n) + + for idx, x in enumerate(__outputs__): + if x is None: + continue + x_n = output_names[idx].upper() + if x_n in unique_param_name_set: + options += add_dtype_fmt_option_single(x, x_n, True) + else: + options += add_dtype_fmt_option_single(x, x_n) + return options + +def load_dso(so_path): + try: + ctypes.CDLL(so_path) + except OSError as error : + print(error) + raise RuntimeError("cannot open %s" %(so_path)) + else: + print("load so succ ", so_path) + +def get_shortsoc_compile_option(compile_option_list: list, shortsoc:str): + compile_options = [] + if shortsoc in compile_option_list: + compile_options = compile_option_list[shortsoc] + elif '__ALLSOC__' in compile_option_list: + compile_options = compile_option_list['__ALLSOC__'] + return compile_options + +def get_kernel_source(src_file, dir_snake, dir_ex): + src_ex = os.path.join(PYF_PATH, "..", "ascendc", dir_ex, src_file) + if os.path.exists(src_ex): + return src_ex + src = os.path.join(PYF_PATH, "..", "ascendc", dir_snake, src_file) + if os.path.exists(src): + return src + src = os.path.join(PYF_PATH, src_file) + if os.path.exists(src): + return src + return src_ex + +''' + +IMPL_API = ''' +@tbe_register.register_operator("{}", trans_bool_to_s8=False) +@para_check.check_op_params({}) +def {}({}, kernel_name="{}", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args({}) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + bisheng = shutil.which("bisheng") + if bisheng != None: + bisheng_path = os.path.dirname(bisheng) + tikcpp_path = os.path.realpath(os.path.join(bisheng_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + options.append("-I" + tikcpp_path) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + options.append("-I" + os.path.join(PYF_PATH, "..", "ascendc", "common")) + if impl_mode == "high_performance": + options.append("-DHIGH_PERFORMANCE=1") + elif impl_mode == "high_precision": + options.append("-DHIGH_PRECISION=1") + if get_default_build_config("enable_deterministic_mode") == 1: + options.append("-DDETEMINISTIC_MODE=1") + + custom_compile_options = {}, + custom_all_compile_options = {}, + soc_version = get_soc_spec("SOC_VERSION") + soc_short = get_soc_spec("SHORT_SOC_VERSION").lower() + custom_compile_options_soc = get_shortsoc_compile_option(custom_compile_options[0], soc_short) + custom_all_compile_options_soc = get_shortsoc_compile_option(custom_all_compile_options[0], soc_short) + options += custom_all_compile_options_soc + options += custom_compile_options_soc + + origin_func_name = "{}" + ascendc_src_dir_ex = "{}" + ascendc_src_dir = "{}" + ascendc_src_file = "{}" + src = get_kernel_source(ascendc_src_file, ascendc_src_dir, ascendc_src_dir_ex) +''' + +REPLAY_OP_API = ''' + print("start replay Acend C Operator {}, kernel name is {}") + tikreplay_codegen_path = tikcpp_path + "/tikreplaylib/lib" + tikreplay_stub_path = tikcpp_path + "/tikreplaylib/lib/" + soc_version + print("start load libtikreplaylib_codegen.so and libtikreplaylib_stub.so") + codegen_so_path = tikreplay_codegen_path + "/libtikreplaylib_codegen.so" + replaystub_so_path = tikreplay_stub_path + "/libtikreplaylib_stub.so" + if PYF_PATH.endswith("dynamic"): + op_replay_path = os.path.join(PYF_PATH, "..", "..", "op_replay") + else: + op_replay_path = os.path.join(PYF_PATH, "..", "op_replay") + replayapi_so_path = os.path.join(op_replay_path, "libreplay_{}_" + soc_short + ".so") + load_dso(codegen_so_path) + load_dso(replaystub_so_path) + load_dso(replayapi_so_path) + op_type = "{}" + entry_obj = os.path.join(op_replay_path, "{}_entry_" + soc_short + ".o") + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\\ + attrs = __attrs__, impl_mode = impl_mode) + res, msg = replay_op(op_info, entry_obj, code_channel, src, options) + if not res: + print("call replay op failed for %s and get into call compile op" %(msg)) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') +''' + +COMPILE_OP_API = ''' + print("start compile Ascend C operator {}. kernel name is " + kernel_name) + op_type = "{}" + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\\ + attrs = __attrs__, impl_mode = impl_mode, origin_inputs=[{}], origin_outputs = [{}], param_type_dynamic = {},\\ + mc2_ctx = None, param_type_list = {}) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') +''' + +SUP_API = ''' +def {}({}, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args({}) + ret_str = check_op_cap("{}", "{}", __inputs__, __outputs__, __attrs__) + ret_dict = json.loads(ret_str) + err_code = ret_dict.get("ret_code") + sup = "Unknown" + reason = "Unknown reason" + if err_code is not None: + if err_code is 0: + sup = "True" + reason = "" + elif err_code is 1: + sup = "False" + reason = ret_dict.get("reason") + else: + sup = "Unknown" + reason = ret_dict.get("reason") + return sup, reason +''' +CAP_API = ''' +def {}({}, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args({}) + result = check_op_cap("{}", "{}", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") +''' +GLZ_API = ''' +@tbe_register.register_param_generalization("{}") +def {}_generalization({}, generalize_config=None): + __inputs__, __outputs__, __attrs__ = _build_args({}) + ret_str = generalize_op_params("{}", __inputs__, __outputs__, __attrs__, generalize_config) + return [json.loads(ret_str)] +''' + +ATTR_DEFAULT = {'bool': 'False', 'int': '0', 'float': '0.0', 'list_int': '[]', + 'list_float': '[]', 'list_bool': '[]', 'list_list_int': '[[]]', 'str': ''} + + +def _get_snake_str(s, i): + if s[i - 1] != '_': + if not s[i - 1].isupper(): + return "_" + elif s[i - 1].isupper() and (i + 1) < len(s) and s[i + 1].islower(): + return "_" + return "" + return "" + + +def optype_snake(origin_str): + temp_str = origin_str[0].lower() + origin_str[1:] + new_str = re.sub(r'([A-Z])', r'_\1', temp_str).lower() + return new_str + + +def optype_snake_ex(s): + snake_case = "" + for i, c in enumerate(s): + if i == 0: + snake_case += c.lower() + elif c.isupper(): + snake_case += _get_snake_str(s, i) + snake_case += c.lower() + else: + snake_case += c + return snake_case + + +class AdpBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + self.argsdefv = [] + self.op_compile_option:str = '{}' + super().__init__(op_type) + + + def write_adapt(self: any, impl_path, path: str, op_compile_option_all:list = None): + self._build_paradefault() + if impl_path != "": + src_file = os.path.join(impl_path, self.op_file + '.cpp') + if not os.path.exists(src_file): + return + out_path = os.path.abspath(path) + if self.dynamic_shape and not out_path.endswith('dynamic'): + out_path = os.path.join(path, 'dynamic') + os.makedirs(out_path, mode=0o700, exist_ok=True) + adpfile = os.path.join(out_path, self.op_file + '.py') + self._gen_op_compile_option(op_compile_option_all) + with os.fdopen(os.open(adpfile, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + self._write_head(fd) + self._write_argparse(fd) + self._write_impl(fd) + if self.op_chk_support: + self._write_cap('check_supported', fd) + self._write_cap('get_op_support_info', fd) + if self.op_fmt_sel: + self._write_cap('op_select_format', fd) + self._write_cap('get_op_specific_info', fd) + if self.op_range_limit == 'limited' or self.op_range_limit == 'dynamic': + self._write_glz(fd) + + + def _gen_op_compile_option(self:any, op_compile_option_all:list =None): + if op_compile_option_all is not None: + if self.op_type in op_compile_option_all: + self.op_compile_option = op_compile_option_all[self.op_type] + elif "__all__" in op_compile_option_all: + self.op_compile_option = op_compile_option_all["__all__"] + + + def _ip_argpack(self: any, default: bool = True) -> list: + args = [] + for i in range(len(self.input_name)): + arg = self.input_name[i] + if default and self.argsdefv[i] is not None: + arg += '=' + self.argsdefv[i] + args.append(arg) + return args + + def _op_argpack(self: any, default: bool = True) -> list: + args = [] + argidx = len(self.input_name) + for i in range(len(self.output_name)): + arg = self.output_name[i] + if default and self.argsdefv[i + argidx] is not None: + arg += '=' + self.argsdefv[i + argidx] + args.append(arg) + return args + + def _attr_argpack(self: any, default: bool = True) -> list: + args = [] + argidx = len(self.input_name) + len(self.output_name) + for i in range(len(self.attr_list)): + att = self.attr_list[i] + arg = att + if default and self.argsdefv[i + argidx] is not None: + if self.attr_val.get(att).get('type') == 'str': + arg += '="' + self.argsdefv[i + argidx] + '"' + elif self.attr_val.get(att).get('type') == 'bool': + arg += '=' + self.argsdefv[i + argidx].capitalize() + else: + arg += '=' + self.argsdefv[i + argidx] + args.append(arg) + return args + + def _build_paralist(self: any, default: bool = True) -> str: + args = [] + args.extend(self._ip_argpack(default)) + args.extend(self._op_argpack(default)) + args.extend(self._attr_argpack(default)) + return ', '.join(args) + + def _io_parachk(self: any, types: list, type_name: str) -> list: + chk = [] + for iot in types: + if iot == 'optional': + ptype = 'OPTION' + else: + ptype = iot.upper() + chk.append('para_check.{}_{}'.format(ptype, type_name)) + return chk + + def _attr_parachk(self: any) -> list: + chk = [] + for att in self.attr_list: + if self.attr_val.get(att).get('paramType') == 'optional': + pt = 'OPTION' + else: + pt = self.attr_val.get(att).get('paramType').upper() + att_type = self.attr_val.get(att).get('type').upper() + chk.append('para_check.{}_ATTR_{}'.format(pt, att_type)) + return chk + + def _build_parachk(self: any) -> str: + chk = [] + chk.extend(self._io_parachk(self.input_type, 'INPUT')) + chk.extend(self._io_parachk(self.output_type, 'OUTPUT')) + chk.extend(self._attr_parachk()) + chk.append('para_check.KERNEL_NAME') + return ', '.join(chk) + + def _build_paradefault(self: any): + optional = False + argtypes = [] + argtypes.extend(self.input_type) + argtypes.extend(self.output_type) + for atype in argtypes: + if atype == 'optional': + optional = True + if optional: + self.argsdefv.append('None') + else: + self.argsdefv.append(None) + for attr in self.attr_list: + atype = self.attr_val.get(attr).get('paramType') + if atype == 'optional': + optional = True + attrval = self.attr_val.get(attr).get('defaultValue') + if attrval is not None: + optional = True + if type == "bool": + attrval = attrval.capitalize() + elif type == "str": + attrval = "\"" + attrval + "\"" + self.argsdefv.append(attrval) + continue + if optional: + self.argsdefv.append(ATTR_DEFAULT.get(self.attr_val.get(attr).get('type'))) + else: + self.argsdefv.append(None) + + def _write_head(self: any, fd: object): + fd.write(IMPL_HEAD.format(self.input_ori_name, self.output_ori_name)) + + def _write_argparse(self: any, fd: object): + args = self._build_paralist(False) + fd.write('def _build_args({}):\n'.format(args)) + fd.write(' __inputs__ = []\n') + fd.write(' for arg in [{}]:\n'.format(', '.join(self.input_name))) + fd.write(' if arg != None:\n') + fd.write(' if isinstance(arg, (list, tuple)):\n') + fd.write(' if len(arg) == 0:\n') + fd.write(' continue\n') + fd.write(' __inputs__.append(arg[0])\n') + fd.write(' else:\n') + fd.write(' __inputs__.append(arg)\n') + fd.write(' else:\n') + fd.write(' __inputs__.append(arg)\n') + fd.write(' __outputs__ = []\n') + fd.write(' for arg in [{}]:\n'.format(', '.join(self.output_name))) + fd.write(' if arg != None:\n') + fd.write(' if isinstance(arg, (list, tuple)):\n') + fd.write(' if len(arg) == 0:\n') + fd.write(' continue\n') + fd.write(' __outputs__.append(arg[0])\n') + fd.write(' else:\n') + fd.write(' __outputs__.append(arg)\n') + fd.write(' else:\n') + fd.write(' __outputs__.append(arg)\n') + fd.write(' __attrs__ = []\n') + for attr in self.attr_list: + fd.write(' if {} != None:\n'.format(attr)) + fd.write(' attr = {}\n') + fd.write(' attr["name"] = "{}"\n'.format(attr)) + fd.write(' attr["dtype"] = "{}"\n'.format(self.attr_val.get(attr).get('type'))) + fd.write(' attr["value"] = {}\n'.format(attr)) + fd.write(' __attrs__.append(attr)\n') + fd.write(' return __inputs__, __outputs__, __attrs__\n') + + def _write_impl(self: any, fd: object): + argsdef = self._build_paralist() + argsval = self._build_paralist(False) + pchk = self._build_parachk() + if len(self.kern_name) > 0: + kern_name = self.kern_name + else: + kern_name = self.op_intf + src = self.op_file + '.cpp' + fd.write(IMPL_API.format(self.op_type, pchk, self.op_intf, argsdef, kern_name, argsval,\ + self.custom_compile_options, self.custom_all_compile_options, self.op_intf,\ + optype_snake_ex(self.op_type), optype_snake(self.op_type), src)) + if self.op_replay_flag: + fd.write(REPLAY_OP_API.format(self.op_type, kern_name, self.op_file, self.op_type, self.op_file,\ + self.op_compile_option)) + else: + fd.write(COMPILE_OP_API.format(self.op_type, self.op_type, ', '.join(self.input_name),\ + ', '.join(self.output_name), False, self.input_type + self.output_type, self.op_compile_option)) + + def _write_cap(self: any, cap_name: str, fd: object): + argsdef = self._build_paralist() + argsval = self._build_paralist(False) + if cap_name == 'check_supported': + fd.write(SUP_API.format(cap_name, argsdef, argsval, cap_name, self.op_type)) + else: + fd.write(CAP_API.format(cap_name, argsdef, argsval, cap_name, self.op_type)) + + def _write_glz(self: any, fd: object): + argsdef = self._build_paralist() + argsval = self._build_paralist(False) + fd.write(GLZ_API.format(self.op_type, self.op_intf, argsdef, argsval, self.op_type)) + + +def write_scripts(cfgfile: str, cfgs: dict, dirs: dict, ops: list = None, op_compile_option:list = None): + batch_lists = cfgs.get(const_var.REPLAY_BATCH).split(';') + iterator_lists = cfgs.get(const_var.REPLAY_ITERATE).split(';') + file_map = {} + op_descs = opdesc_parser.get_op_desc(cfgfile, batch_lists, iterator_lists, AdpBuilder,\ + ops, dirs.get(const_var.AUTO_GEN_DIR)) + for op_desc in op_descs: + op_desc.write_adapt(dirs.get(const_var.CFG_IMPL_DIR), dirs.get(const_var.CFG_OUT_DIR), op_compile_option) + file_map[op_desc.op_type] = op_desc.op_file + return file_map + +if __name__ == '__main__': + if len(sys.argv) <= 6: + raise RuntimeError('arguments must greater equal than 6') + rep_cfg = {} + rep_cfg[const_var.REPLAY_BATCH] = sys.argv[2] + rep_cfg[const_var.REPLAY_ITERATE] = sys.argv[3] + cfg_dir = {} + cfg_dir[const_var.CFG_IMPL_DIR] = sys.argv[4] + cfg_dir[const_var.CFG_OUT_DIR] = sys.argv[5] + cfg_dir[const_var.AUTO_GEN_DIR] = sys.argv[6] + write_scripts(cfgfile=sys.argv[1], cfgs=rep_cfg, dirs=cfg_dir) diff --git a/precision_Problem/Is_standard/cmake/util/ascendc_ops_config.py b/precision_Problem/Is_standard/cmake/util/ascendc_ops_config.py new file mode 100644 index 0000000000000000000000000000000000000000..b138047af00816bd6c802919e492e1671f0f79e4 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/ascendc_ops_config.py @@ -0,0 +1,120 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import glob +import json +import argparse +import const_var + + +def load_json(json_file: str): + with open(json_file, encoding='utf-8') as file: + json_content = json.load(file) + return json_content + + +def get_specified_suffix_file(root_dir, suffix): + specified_suffix = os.path.join(root_dir, '**/*.{}'.format(suffix)) + all_suffix_files = glob.glob(specified_suffix, recursive=True) + return all_suffix_files + + +def add_simplified_config(op_type, key, core_type, task_ration, objfile, config): + simple_cfg = config.get('binary_info_config.json') + op_cfg = simple_cfg.get(op_type) + if not op_cfg: + op_cfg = {} + op_cfg['dynamicRankSupport'] = True + op_cfg['simplifiedKeyMode'] = 0 + op_cfg['binaryList'] = [] + simple_cfg[op_type] = op_cfg + bin_list = op_cfg.get('binaryList') + if core_type == 0 and task_ration == "tilingKey": + bin_list.append({'coreType': core_type, 'simplifiedKey': key, \ + 'multiKernelType':1, 'binPath': objfile}) + else: + bin_list.append({'coreType': core_type, 'simplifiedKey': key, 'binPath': objfile}) + + +def add_op_config(op_file, bin_info, config): + op_cfg = config.get(op_file) + if not op_cfg: + op_cfg = {} + op_cfg['binList'] = [] + config[op_file] = op_cfg + op_cfg.get('binList').append(bin_info) + + +def gen_ops_config(json_file, soc, config): + core_type_map = {'MIX': 0, 'AiCore': 1, 'VectorCore': 2, 'MIX_AICORE':3, 'MIX_VECTOR_CORE':4} + contents = load_json(json_file) + if ('binFileName' not in contents) or ('supportInfo' not in contents): + return + json_base_name = os.path.basename(json_file) + op_dir = os.path.basename(os.path.dirname(json_file)) + support_info = contents.get('supportInfo') + bin_name = contents.get('binFileName') + bin_suffix = contents.get('binFileSuffix') + task_ration = contents.get('taskRation') + core_type = core_type_map.get(contents.get("coreType")) + bin_file_name = bin_name + bin_suffix + op_type = bin_name.split('_')[0] + op_file = op_dir + '.json' + bin_info = {} + keys = support_info.get('simplifiedKey') + if keys: + bin_info['simplifiedKey'] = keys + for key in keys: + add_simplified_config(op_type, key, core_type, task_ration, os.path.join(soc, op_dir, bin_file_name), \ + config) + bin_info['staticKey'] = support_info.get('staticKey') + bin_info['int64Mode'] = support_info.get('int64Mode') + bin_info['inputs'] = support_info.get('inputs') + bin_info['outputs'] = support_info.get('outputs') + if support_info.get('attrs'): + bin_info['attrs'] = support_info.get('attrs') + bin_info['binInfo'] = {'jsonFilePath': os.path.join(soc, op_dir, json_base_name)} + add_op_config(op_file, bin_info, config) + + +def gen_all_config(root_dir, soc): + suffix = 'json' + config = {} + config['binary_info_config.json'] = {} + all_json_files = get_specified_suffix_file(root_dir, suffix) + for _json in all_json_files: + gen_ops_config(_json, soc, config) + for cfg_key in config.keys(): + cfg_file = os.path.join(root_dir, cfg_key) + with os.fdopen(os.open(cfg_file, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + json.dump(config.get(cfg_key), fd, indent=' ') + + +def args_prase(): + parser = argparse.ArgumentParser() + parser.add_argument('-p', + '--path', + nargs='?', + required=True, + help='Parse the path of the json file.') + parser.add_argument('-s', + '--soc', + nargs='?', + required=True, + help='Parse the soc_version of ops.') + return parser.parse_args() + + +def main(): + args = args_prase() + gen_all_config(args.path, args.soc) + + +if __name__ == '__main__': + main() diff --git a/precision_Problem/Is_standard/cmake/util/ascendc_replay_build.py b/precision_Problem/Is_standard/cmake/util/ascendc_replay_build.py new file mode 100644 index 0000000000000000000000000000000000000000..1cac7d911b84df4f3ef3a83ce9cac65ce2e89e0b --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/ascendc_replay_build.py @@ -0,0 +1,65 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import opdesc_parser +import replay_codegen +import const_var +from replay_codegen import ReplayCodeGenParams + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + + +class ReplayBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + super().__init__(op_type) + + def gen_replay_source(self: any, impl_path: str, out_path: str, ops_product: str): + if not self.op_replay_flag: + print('{} replay not enabled'.format(self.op_type)) + return + argn = len(self.input_name) + len(self.output_name) + 1 + if self.op_replay_batch: + print('{} replay in batch mode'.format(self.op_type)) + else: + print('{} replay in normal mode'.format(self.op_type)) + if impl_path.endswith('op_kernel'): + implf = os.path.join(impl_path, self.op_file + '.cpp') + tiling_file = os.path.join(impl_path, "../op_host", self.op_file + '_tiling.h') + else: + if self.dynamic_shape: + dyn_path = 'dynamic' + else: + dyn_path = '' + implf = os.path.join(impl_path, dyn_path, self.op_file + '.cpp') + tiling_file = os.path.join(impl_path, "../../op_tiling", self.op_file + '_tiling.h') + rep_conf = replay_codegen.ReplayCodeGen(ReplayCodeGenParams(self.op_type, implf, tiling_file, self.op_file, \ + self.op_intf, argn, self.op_replay_batch, self.max_block_dim, self.max_shape_size)) + rep_conf.set_batch(self.op_replay_batch) + rep_conf.set_outdir(out_path) + rep_conf.gen_replay(ops_product) + + +def gen_replay(cfgfile: str, cfgs: dict, dirs: dict, ops_product: str, ops: list = None): + batch_lists = cfgs.get(const_var.REPLAY_BATCH).split(';') + iterator_lists = cfgs.get(const_var.REPLAY_ITERATE).split(';') + op_descs = opdesc_parser.get_op_desc(cfgfile, batch_lists, iterator_lists, ReplayBuilder, ops) + for op_desc in op_descs: + op_desc.gen_replay_source(dirs.get(const_var.CFG_IMPL_DIR), dirs.get(const_var.CFG_OUT_DIR), ops_product) + + +if __name__ == '__main__': + if len(sys.argv) <= 6: + raise RuntimeError('arguments must greater than 6') + rep_cfg = {} + rep_cfg[const_var.REPLAY_BATCH] = sys.argv[2] + rep_cfg[const_var.REPLAY_ITERATE] = sys.argv[3] + rep_dir = {} + rep_dir[const_var.CFG_IMPL_DIR] = sys.argv[4] + rep_dir[const_var.CFG_OUT_DIR] = sys.argv[5] + gen_replay(sys.argv[1], rep_cfg, rep_dir, sys.argv[6]) diff --git a/precision_Problem/Is_standard/cmake/util/batch_replay_impl.temp b/precision_Problem/Is_standard/cmake/util/batch_replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..0e88346642009514af64265b4da24c9946e3ebbf --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/batch_replay_impl.temp @@ -0,0 +1,117 @@ +#include +#include +#include +#include +#include +#include +#include +#include "replay_def.h" +#include "code_gen.h" +#include "replay_fun.h" +#include "register/op_check.h" +#define __ASCENDC_REPLAY_CODE__ +#include + +using namespace std; +using namespace optiling; +using namespace AscendCReplay; + +extern "C" void __KERNEL_FUN__ (__ARGS_DEF__, const char *); +extern "C" int elf_batch_append(char *elf, uint32_t elfSize, char *jit, int kernum, char *atext[], int alen[], + int atlen, const char* kernelname[]); + +#define KERNEL_N 1 +#define ARG_N (__ARG_NUM__) +#define MAX_L (1024 * 1024 * 100) +#define MAX_E (1024 * 1024) + +int __KERNEL_FUN___replay___OPS_PRODUCT__(ReplayFuncParam& param, const int core_type) +{ + // gen type 1 : direct call codes 0: load .o file + if (param.gentype < 0 || param.gentype > 1) { + printf("Error: call replay gen type is %d, should only be 1 or 0\n", param.gentype); + return 0; + } else if (param.gentype == 1 && param.objptr == nullptr) { + printf("Error: call replay with direct call mode, but code obj addr is null\n"); + return 0; + } else if (param.gentype == 0 && param.output_kernel_file == nullptr) { + printf("Error: call replay with object file mode, but object file path is null\n"); + return 0; + } + // core_type 0:MIX 1:CUBE 2:VEC + if (core_type < 0 || core_type > 2) { + printf("Error: call replay core type is %d !\n", core_type); + return 0; + } + g_coreType = __CORE_TYPE__; + g_taskRation = param.task_ration; + g_tilingKey = param.tiling_key; + + unsigned char *buf, *jit; + char *kernel[KERNEL_N]; + int len[KERNEL_N]; + block_idx = 0; + block_num = param.block_dim; + g_ubBase = block_num; + uint8_t *code = (uint8_t *)malloc(MAX_L); + uint8_t *pos = code; + struct timespec tp1, tp2; + + clock_gettime(CLOCK_MONOTONIC, &tp1); + if (block_num > 32) { + printf("Error: block_num > 32\n"); + return 0; + } + //__OP_FOPEN__ + for (int i = 0; i < KERNEL_N; i++) { + //__OP_SET_KERNEL__ + for (int j = 0; j < ARG_N; j++) + AddArg(j, ARG_STEP * (j + 1)); +#ifdef FP_CEILING + SetCtrlFloatEnable(); +#else + SetCtrlFloatDisable(); +#endif + CodeInit(pos, true); + __KERNEL_FUN__(__KERNEL_ARGS__, param.tiling_data); + CodeEnd(); + kernel[i] = (char *)pos; + len[i] = CodeLen(); + pos += len[i]; + } + //__OP_FCLOSE__ + clock_gettime(CLOCK_MONOTONIC, &tp2); + buf = (unsigned char *)malloc(MAX_E); + int fd = open(param.entry_file, O_RDONLY); + if (fd < 0) { + printf("[error]: cannot find entry.o : %s\n", param.entry_file); + return 0; + } + uint32_t bufSize = read(fd, buf, MAX_E); + if (bufSize <= 0) { + printf("[error]: entry.o : %s is too small ! \n", param.entry_file); + } + close(fd); + jit = (unsigned char *)malloc(MAX_L); + printf("total code generated %ld\n", pos - code); + int sz = elf_batch_append((char *)buf, bufSize, (char *)jit, KERNEL_N, kernel, len, pos - code, ¶m.kernel_name); + if (tp1.tv_sec != tp2.tv_sec) { + printf("%ld NS\n", tp2.tv_nsec + 1000000000 - tp1.tv_nsec); + } else { + printf("%ld NS\n", tp2.tv_nsec - tp1.tv_nsec); + } + printf("new elf size %d\n", sz); + if (param.gentype == 0) { + fd = open(param.output_kernel_file, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); + (void)write(fd, jit, sz); + close(fd); + free(jit); + } else if (param.gentype == 1) { + *param.objptr = (char*)jit; + } + free(buf); + free(code); + return sz; +} + +REG_REPLAY_FUNC(__OPTYPE__, __OPS_PRODUCT__, __KERNEL_FUN___replay___OPS_PRODUCT__); diff --git a/precision_Problem/Is_standard/cmake/util/code_channel_infer.py b/precision_Problem/Is_standard/cmake/util/code_channel_infer.py new file mode 100644 index 0000000000000000000000000000000000000000..336b4cdb21a25ad9eac22e7c0555912cca4ff2eb --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/code_channel_infer.py @@ -0,0 +1,58 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" +import os +import stat +import ctypes +import collections +import shutil +import subprocess +import copy + +"""CODE_* is used to cube/vector api is called in operator code +CODE_MIX means both cube and vector api is called +CODE_CUBE means only cube api is called +CODE_VEC means only vector api is called +""" +CODE_MIX = 0 +CODE_CUBE = 1 +CODE_VEC = 2 + + +def _is_v220(op_product: str): + """return if current soc version is V220 + + Returns: + res: True means V220 + """ + if op_product in ["ascend910b"]: + return True + return False + + +InfoCodeChanelParams = collections.namedtuple('InfoCodeChanelParams',\ +['src_file', 'tiling_header', 'kernel_name', 'outdir', 'op_product', 'compile_options']) + + +def infer_code_channel(params: InfoCodeChanelParams): + """get code channel for v220, return CODE_MIX if soc version is not V220 + + Args: + src_file (str): AscendC operator code file + src_file (str): AscendC operator tiling header file + kernel_name (str): kernel function name + optype (str): operator type + compile_options (list): compile options for bisheng cmd + + Raises: + Exception: if not exist L1/L0/UB if code, it's not a aicore code + + Returns: + res (int): CODE_MIX/CODE_CUBE/CODE_VEC + """ + if not _is_v220(params.op_product): + return CODE_MIX + return CODE_VEC diff --git a/precision_Problem/Is_standard/cmake/util/const_var.py b/precision_Problem/Is_standard/cmake/util/const_var.py new file mode 100644 index 0000000000000000000000000000000000000000..8b32c3b915d0aaaf1f366cf95cf1a337e8959c89 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/const_var.py @@ -0,0 +1,33 @@ + +#!/usr/bin/env python +# coding=utf-8 +""" +Function: +The replay funtion entry +Copyright Information: +Huawei Technologies Co., Ltd. All Rights Reserved © 2020 +""" + +import os +import stat + + +REPLAY_BATCH = 'batch' +REPLAY_ITERATE = 'iterate' +CFG_IMPL_DIR = 'impl_dir' +CFG_OUT_DIR = 'out_dir' +AUTO_GEN_DIR = 'auto_gen_dir' +WFLAGS = os.O_WRONLY | os.O_CREAT | os.O_TRUNC +WMODES = stat.S_IWUSR | stat.S_IRUSR +SOC_MAP_EXT = {'ascend310p': 'Ascend310P3', 'ascend310b': 'Ascend310B1', + 'ascend910': 'Ascend910A', 'ascend910b': 'Ascend910B1'} +BIN_CMD = 'opc $1 --main_func={fun} --input_param={param} --soc_version={soc} \ +--output=$2 --impl_mode={impl} --simplified_key_mode=0 --op_mode=dynamic\n' +CHK_CMD = ''' +if ! test -f $2/{res_file} ; then + echo "$2/{res_file} not generated!" + exit 1 +fi +''' +ATTR_DEF_VAL = {'str' : '', 'int': 0, 'float': 0.0, 'bool': False, 'list_bool': [], + 'list_int': [], 'list_float': [], 'list_list_int': [[]]} diff --git a/precision_Problem/Is_standard/cmake/util/gen_impl_and_mrege_json.sh b/precision_Problem/Is_standard/cmake/util/gen_impl_and_mrege_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..492034e490953962006055b8e078c3c05a6d2d72 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/gen_impl_and_mrege_json.sh @@ -0,0 +1,20 @@ +#!/usr/bin/bash + +project_path=$1 +build_path=$2 +vendor_name=customize +if [[ ! -d "$project_path" ]]; then + echo "[ERROR] No projcet path is provided" + exit 1 +fi + +if [[ ! -d "$build_path" ]]; then + echo "[ERROR] No build path is provided" + exit 1 +fi + +# copy aicpu kernel so operators +if [[ -d "${project_path}/cpukernel/aicpu_kernel_lib" ]]; then + cp -f ${project_path}/cpukernel/aicpu_kernel_lib/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/cpu/aicpu_kernel/impl + rm -rf ${project_path}/cpukernel/aicpu_kernel_lib +fi diff --git a/precision_Problem/Is_standard/cmake/util/gen_ops_filter.sh b/precision_Problem/Is_standard/cmake/util/gen_ops_filter.sh new file mode 100644 index 0000000000000000000000000000000000000000..d4c27d17feb8617dfee0f6fd3262c36583033339 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/gen_ops_filter.sh @@ -0,0 +1,62 @@ +#!/bin/bash +# Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +# Description: Generate npu_supported_ops.json +# ============================================================================== + +if [[ -z "$1" ]]; then + echo -e "[ERROR] No source dir provided" + exit 1 +fi + +if [[ -z "$2" ]]; then + echo -e "[ERROR] No destination dir provided" + exit 1 +fi + +src=$1 +dest_file=$2/npu_supported_ops.json + +if [ -f "$dest_file" ];then + chmod u+w $dest_file +fi + +echo $* + +add_ops() { + name=$1 + isHeavy=$2 + file=$3 + grep -w "\"$name\"" ${file} >/dev/null + if [ $? == 0 ];then + return + fi + echo " \"${name}\": {" >> ${file} + echo " \"isGray\": false," >> ${file} + echo " \"isHeavy\": ${isHeavy}" >> ${file} + echo " }," >> ${file} +} + +echo "{" > ${dest_file} +ini_files=$(find ${src} -name "*.ini") +for file in ${ini_files} ; do + name=$(grep '^\[' ${file} | sed 's/\[//g' | sed 's/]//g' | sed 's/\r//g') + grep 'heavyOp.flag' ${file} >/dev/null + if [ $? == 0 ];then + isHeavy=$(grep 'heavyOp.flag' ${file} | awk -F= '{print $2}') + else + isHeavy="false" + fi + for op in ${name} ; do + add_ops ${op} "false" ${dest_file} + done +done +echo "}" >> ${dest_file} +file_count=$(cat ${dest_file} | wc -l) +line=$(($file_count-1)) +sed -i "${line}{s/,//g}" ${dest_file} + +chmod 640 "${dest_file}" +echo -e "[INFO] Succed generated ${dest_file}" + +exit 0 + diff --git a/precision_Problem/Is_standard/cmake/util/gen_version_info.sh b/precision_Problem/Is_standard/cmake/util/gen_version_info.sh new file mode 100644 index 0000000000000000000000000000000000000000..a06cfc78d29482807d086b880375533cd0a3679e --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/gen_version_info.sh @@ -0,0 +1,6 @@ +ascend_install_dir=$1 +gen_file_dir=$2 + +# create version.info +compiler_version=$(grep "Version" -w ${ascend_install_dir}/compiler/version.info | awk -F = '{print $2}') +echo "custom_opp_compiler_version=${compiler_version}" > ${gen_file_dir}/version.info \ No newline at end of file diff --git a/precision_Problem/Is_standard/cmake/util/insert_op_info.py b/precision_Problem/Is_standard/cmake/util/insert_op_info.py new file mode 100644 index 0000000000000000000000000000000000000000..28ba08757c9301391a8f4005ae8fb0b290e43950 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/insert_op_info.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" +import json +import os +import sys +import stat +import const_var + + +if __name__ == '__main__': + if len(sys.argv) != 3: + print(sys.argv) + print('argv error, inert_op_info.py your_op_file lib_op_file') + sys.exit(2) + + with open(sys.argv[1], 'r') as load_f: + insert_operator = json.load(load_f) + + all_operators = {} + if os.path.exists(sys.argv[2]): + if os.path.getsize(sys.argv[2]) != 0: + with open(sys.argv[2], 'r') as load_f: + all_operators = json.load(load_f) + + for k in insert_operator.keys(): + if k in all_operators.keys(): + print('replace op:[', k, '] success') + else: + print('insert op:[', k, '] success') + all_operators[k] = insert_operator[k] + + with os.fdopen(os.open(sys.argv[2], const_var.WFLAGS, const_var.WMODES), 'w') as json_file: + json_file.write(json.dumps(all_operators, indent=4)) diff --git a/precision_Problem/Is_standard/cmake/util/insert_simplified_keys.py b/precision_Problem/Is_standard/cmake/util/insert_simplified_keys.py new file mode 100644 index 0000000000000000000000000000000000000000..7e8dc2c558c9add8c7244c18a365acaa2e9a76a6 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/insert_simplified_keys.py @@ -0,0 +1,242 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import os +import re +import glob +import json +import argparse + + +DATA_TPYE_DICT = { + 'float32': 0, + 'float16': 1, + 'int8': 2, + 'int16': 6, + 'uint16': 7, + 'uint8': 4, + 'int32': 3, + 'int64': 9, + 'uint32': 8, + 'uint64': 10, + 'bool': 12, + 'double': 11, + 'complex64': 16, + 'complex128': 17, + 'qint8': 18, + 'qint16': 19, + 'qint32': 20, + 'quint8': 21, + 'quint16': 22, + 'resource': 23, + 'string': 24, + 'dual': 25, + 'variant': 26, + 'bf16': 27, + 'bfloat16': 27, + 'undefined': 28, + 'int4': 29, + 'uint1': 30, + 'int2': 31 +} + +FORMAT_DICT = { + 'NCHW': 0, + 'NHWC': 1, + 'ND': 2, + 'NC1HWC0': 3, + 'FRACTAL_Z': 4, + 'NC1C0HWPAD': 5, + 'NHWC1C0': 6, + 'FSR_NCHW': 7, + 'FRACTAL_DECONV': 8, + 'C1HWNC0': 9, + 'FRACTAL_DECONV_TRANSPOSE': 10, + 'FRACTAL_DECONV_SP_STRIDE_TRANS': 11, + 'NC1HWC0_C04': 12, + 'FRACTAL_Z_C04': 13, + 'CHWN': 14, + 'FRACTAL_DECONV_SP_STRIDE8_TRANS': 15, + 'HWCN': 16, + 'NC1KHKWHWC0': 17, + 'BN_WEIGHT': 18, + 'FILTER_HWCK': 19, + 'HASHTABLE_LOOKUP_LOOKUPS': 20, + 'HASHTABLE_LOOKUP_KEYS': 21, + 'HASHTABLE_LOOKUP_VALUE': 22, + 'HASHTABLE_LOOKUP_OUTPUT': 23, + 'HASHTABLE_LOOKUP_HITS': 24, + 'C1HWNCoC0': 25, + 'MD': 26, + 'NDHWC': 27, + 'FRACTAL_ZZ': 28, + 'FRACTAL_NZ': 29, + 'NCDHW': 30, + 'DHWCN': 31, + 'NDC1HWC0': 32, + 'FRACTAL_Z_3D': 33, + 'CN': 34, + 'NC': 35, + 'DHWNC': 36, + 'FRACTAL_Z_3D_TRANSPOSE': 37, + 'FRACTAL_ZN_LSTM': 38, + 'FRACTAL_Z_G': 39, + 'RESERVED': 40, + 'ALL': 41, + 'NULL': 42, + 'ND_RNN_BIAS': 43, + 'FRACTAL_ZN_RNN': 44, + 'NYUV': 45, + 'NYUV_A': 46 +} + + +def load_json(json_file: str): + with open(json_file, encoding='utf-8') as file: + json_content = json.load(file) + return json_content + + +def get_specified_suffix_file(root_dir, suffix): + specified_suffix = os.path.join(root_dir, '**/*.{}'.format(suffix)) + all_suffix_files = glob.glob(specified_suffix, recursive=True) + return all_suffix_files + + +def get_deterministic_value(support_info): + deterministic_key = 'deterministic' + if deterministic_key not in support_info: + return 0 + deterministic_value = support_info.get(deterministic_key) + if deterministic_value == 'true': + return 1 + else: + return 0 + + +def get_precision_value(support_info): + precision_key = 'implMode' + precision_value = support_info.get(precision_key) + if precision_value == 'high_performance': + _value = 1 + elif precision_value == 'high_precision': + _value = 2 + else: + _value = 0 + return _value + + +def get_overflow_value(support_info): + return 0 + + +def get_parameters(info): + if info: + if 'dtype' in info: + data_type = info['dtype'] + data_type_value = DATA_TPYE_DICT.get(data_type) + else: + data_type_value = 0 + if 'format' in info: + _format = info['format'] + _format_value = FORMAT_DICT.get(_format) + else: + _format_value = 0 + else: + data_type_value = 0 + _format_value = 0 + return str(data_type_value), str(_format_value) + + +def get_dynamic_parameters(info): + # 动态输入时只需获取第一个参数 + return get_parameters(info[0]) + + +def get_all_parameters(support_info, _type): + result_list = list() + info_lists = support_info.get(_type) + if info_lists: + for _info in info_lists: + # 输入为列表时是动态输入 + if isinstance(_info, (list, tuple)): + data_type_value, _format_value = get_dynamic_parameters(_info) + else: + data_type_value, _format_value = get_parameters(_info) + result_list.append("{},{}".format(data_type_value, _format_value)) + return result_list + + +def get_all_input_parameters(support_info): + result = get_all_parameters(support_info, 'inputs') + return '/'.join(result) + + +def insert_content_into_file(input_file, content): + with open(input_file, 'r+') as file: + lines = file.readlines() + for index, line in enumerate(lines): + match_result = re.search(r'"staticKey":', line) + if match_result: + count = len(line) - len(line.lstrip()) + new_content = "{}{}".format(' ' * count, content) + # 插入到前一行,防止插入最后时还需要考虑是否添加逗号 + lines.insert(index, new_content) + break + file.seek(0) + file.write(''.join(lines)) + + +def insert_simplified_keys(json_file): + contents = load_json(json_file) + # 不存在'binFileName'或者'supportInfo'字段时,非需要替换的解析json文件 + if ('binFileName' not in contents) or ('supportInfo' not in contents): + return + support_info = contents.get('supportInfo') + bin_file_name = contents.get('binFileName') + # 'simplifiedKey'字段已经存在时,直接返回,不重复生成 + if 'simplifiedKey' in support_info: + return + op_type = bin_file_name.split('_')[0] + deterministic = str(get_deterministic_value(support_info)) + precision = str(get_precision_value(support_info)) + overflow = str(get_overflow_value(support_info)) + input_parameters = get_all_input_parameters(support_info) + key = '{}/d={},p={},o={}/{}/'.format( + op_type, + deterministic, + precision, + overflow, + input_parameters) + result = '"simplifiedKey": "' + key + '",\n' + insert_content_into_file(json_file, result) + + +def insert_all_simplified_keys(root_dir): + suffix = 'json' + all_json_files = get_specified_suffix_file(root_dir, suffix) + for _json in all_json_files: + insert_simplified_keys(_json) + + +def args_prase(): + parser = argparse.ArgumentParser() + parser.add_argument('-p', + '--path', + nargs='?', + required=True, + help='Parse the path of the json file.') + return parser.parse_args() + + +def main(): + args = args_prase() + insert_all_simplified_keys(args.path) + + +if __name__ == '__main__': + main() diff --git a/precision_Problem/Is_standard/cmake/util/kernel_entry.py b/precision_Problem/Is_standard/cmake/util/kernel_entry.py new file mode 100644 index 0000000000000000000000000000000000000000..2b77c970d4e6c1f0aaca07572cd8c7221ac00e22 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/kernel_entry.py @@ -0,0 +1,115 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + + +def gen_fun_def(title, kernel, argn, arg_type, arg_name): + entry = [] + entry.append(title) + entry.append(kernel) + entry.append('(') + args = [] + for i in range(0, argn): + args.append(arg_type + ' ' + arg_name + str(i)) + entry.append(', '.join(args)) + entry.append(')') + return ' '.join(entry) + + +def gen_batch_kernel_body(fname, argn, arg_name): + body = [] + body.append('{') + fun = [] + fun.append(fname) + fun.append('(') + args = [] + for i in range(0, argn): + args.append(arg_name + str(i)) + fun.append(', '.join(args)) + fun.append(');') + body.append(' '.join(fun)) + body.append('}') + return '\n'.join(body) + + +def gen_mc_kernel_body(kn, argn, arg_name, blknum): + body = [] + body.append('{') + body.append(' switch(block_idx) {') + for blk in range(0, blknum): + fun = [] + fun.append('{}_blk{:02d}'.format(kn, blk)) + fun.append('(') + args = [] + for i in range(0, argn): + args.append(arg_name + str(i)) + fun.append(', '.join(args)) + fun.append(')') + body.append(' case {}: {}; break;'.format(blk, ' '.join(fun))) + body.append(' default: break;') + body.append(' }') + body.append('}') + return '\n'.join(body) + + +def gen_proc_body(argn, arg_name): + body = [] + body.append('{') + args = [] + for i in range(0, argn): + args.append(arg_name + str(i)) + body.append('uint64_t __x = (uint64_t)' + ' + (uint64_t)'.join(args) + ';') + body.append('__asm__ ("NOP");') + body.append('__asm__ ("NOP");') + body.append('__asm__ ("NOP");') + body.append('}') + return '\n'.join(body) + + +def batch_code_gen(kn, argn, argt): + codes = [] + kernel_name = kn + proc_name = kernel_name + '_percore' + arg_num = int(argn) + data_type = argt + arg_type = '__gm__ ' + data_type + '* __restrict__' + arg_name = 'arg' + kernel_title = 'extern \"C\" __global__ __aicore__ void' + proc_title = 'extern \"C\" __attribute__((noinline)) __aicore__ void' + codes.append('#ifndef __aicore__') + codes.append('#define __aicore__ [aicore]') + codes.append('#endif') + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name) + ';') + codes.append(gen_fun_def(kernel_title, kernel_name, arg_num, arg_type, arg_name)) + codes.append(gen_batch_kernel_body(proc_name, arg_num, arg_name)) + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name)) + codes.append(gen_proc_body(arg_num, arg_name)) + return '\n'.join(codes) + '\n' + + +def mc_code_gen(kn, argn, argt, blknum): + codes = [] + kernel_name = kn + core_num = int(blknum) + arg_num = int(argn) + data_type = argt + arg_type = '__gm__ ' + data_type + '* __restrict__' + arg_name = 'arg' + kernel_title = 'extern \"C\" __global__ __aicore__ void' + proc_title = 'extern \"C\" __attribute__((noinline)) __aicore__ void' + codes.append('#ifndef __aicore__') + codes.append('#define __aicore__ [aicore]') + codes.append('#endif') + for i in range(0, core_num): + proc_name = '{}_blk{:02d}'.format(kernel_name, i) + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name) + ';') + codes.append(gen_fun_def(kernel_title, kernel_name, arg_num, arg_type, arg_name)) + codes.append(gen_mc_kernel_body(kernel_name, arg_num, arg_name, core_num)) + for i in range(0, core_num): + proc_name = '{}_blk{:02d}'.format(kernel_name, i) + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name)) + codes.append(gen_proc_body(arg_num, arg_name)) + return '\n'.join(codes) + '\n' diff --git a/precision_Problem/Is_standard/cmake/util/kernel_impl.temp b/precision_Problem/Is_standard/cmake/util/kernel_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..5079a1043a25cd6b73449e708ceae40807cb03a1 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/kernel_impl.temp @@ -0,0 +1,10 @@ +#include +#include +#include +#include +#include +#include "replay_def.h" +#include "code_gen.h" +#include "replay_fun.h" +#define __ASCENDC_REPLAY_CODE__ +#include "__CCE_FILE__" diff --git a/precision_Problem/Is_standard/cmake/util/makeself/COPYING b/precision_Problem/Is_standard/cmake/util/makeself/COPYING new file mode 100644 index 0000000000000000000000000000000000000000..d159169d1050894d3ea3b98e1c965c4058208fe1 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/precision_Problem/Is_standard/cmake/util/makeself/README.md b/precision_Problem/Is_standard/cmake/util/makeself/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b41f0168201e8596e6cb8dc8754d606581d18dcf --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/README.md @@ -0,0 +1,246 @@ +[![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) +![Build Status](https://github.com/megastep/makeself/workflows/CI/badge.svg) + +# makeself - Make self-extractable archives on Unix + +[makeself.sh][1] is a small shell script that generates a self-extractable +compressed tar archive from a directory. The resulting file appears as a shell script +(many of those have a **.run** suffix), and can be launched as is. The archive +will then uncompress itself to a temporary directory and an optional arbitrary +command will be executed (for example an installation script). This is pretty +similar to archives generated with WinZip Self-Extractor in the Windows world. +Makeself archives also include checksums for integrity self-validation (CRC +and/or MD5/SHA256 checksums). + +The makeself.sh script itself is used only to create the archives from a +directory of files. The resultant archive is actually a compressed (using +gzip, bzip2, or compress) TAR archive, with a small shell script stub at the +beginning. This small stub performs all the steps of extracting the files, +running the embedded command, and removing the temporary files when done. +All the user has to do to install the software contained in such an +archive is to "run" the archive, i.e **sh nice-software.run**. I recommend +using the ".run" (which was introduced by some Makeself archives released by +Loki Software) or ".sh" suffix for such archives not to confuse the users, +so that they will know they are actually shell scripts (with quite a lot of binary data +attached to them though!). + +I am trying to keep the code of this script as portable as possible, i.e it is +not relying on any bash-specific features and only calls commands that are +installed on any functioning UNIX-compatible system. This script as well as +the archives it generates should run on any Unix flavor, with any compatible +Bourne shell, provided of course that the compression programs are available. + +As of version 2.1, Makeself has been rewritten and tested on the following +platforms : + + * Linux (all distributions) + * Sun Solaris (8 and above) + * HP-UX (tested on 11.0 and 11i on HPPA RISC) + * SCO OpenUnix and OpenServer + * IBM AIX 5.1L + * macOS (Darwin) + * SGI IRIX 6.5 + * FreeBSD + * UnicOS / Cray + * Cygwin (Windows) + +If you successfully run Makeself and/or archives created with it on another +system, then please [let me know][2]! + +Examples of publicly available archives made using makeself are : + + * Game patches and installers for [Id Software][3] games like Quake 3 for Linux or Return To Castle Wolfenstein ; + * All game patches released by [Loki Software][4] for the Linux version of popular games ; + * The [nVidia drivers][5] for Linux + * The installer for the Linux version of [Google Earth][6] + * The [VirtualBox][7] installers for Linux + * The [Makeself][1] distribution itself ;-) + * and countless others... + +**Important note for Apache users:** By default, most Web servers will think that Makeself archives are regular text files and thus they may show up as text in a Web browser. The correct way to prevent this is to add a MIME type for this file format, like so (in httpd.conf) : + +`AddType application/x-makeself .run` + +**Important note for certain GNU/Linux distributions:** Archives created with Makeself prior to v2.1.2 were using an old syntax for the _head_ and _tail_ Unix commands that is being progressively obsoleted in their GNU forms. Therefore you may have problems uncompressing some of these archives. A workaround for this is to set the environment variable $_POSIX2_VERSION to enable the old syntax, i.e. : + +`export _POSIX2_VERSION=199209` + +## Usage + +The syntax of makeself is the following: + +``` +makeself.sh [args] archive_dir file_name label startup_script [script_args] +``` + + * _args_ are optional options for Makeself. The available ones are : + + * **`--version`** : Prints the version number on stdout, then exits immediately + * **`--gzip`** : Use gzip for compression (the default on platforms on which gzip is commonly available, like Linux) + * **`--bzip2`** : Use bzip2 instead of gzip for better compression. The bzip2 command must be available in the command path. It is recommended that the archive prefix be set to something like '.bz2.run', so that potential users know that they'll need bzip2 to extract it. + * **`--pbzip2`** : Use pbzip2 instead of gzip for better and faster compression on machines having multiple CPUs. The pbzip2 command must be available in the command path. It is recommended that the archive prefix be set to something like '.bz2.run', so that potential users know that they'll need bzip2 to extract it. + * **`--xz`** : Use xz instead of gzip for better compression. The xz command must be available in the command path. It is recommended that the archive prefix be set to something like '.xz.run' for the archive, so that potential users know that they'll need xz to extract it. + * **`--lzo`** : Use lzop instead of gzip for better compression. The lzop command must be available in the command path. It is recommended that the archive prefix be set to something like `.lzo.run` for the archive, so that potential users know that they'll need lzop to extract it. + * **`--lz4`** : Use lz4 instead of gzip for better compression. The lz4 command must be available in the command path. It is recommended that the archive prefix be set to something like '.lz4.run' for the archive, so that potential users know that they'll need lz4 to extract it. + * **`--zstd`** : Use zstd instead of gzip for better compression. The zstd command must be available in the command path. It is recommended that the archive prefix be set to something like '.zstd.run' for the archive, so that potential users know that they'll need zstd to extract it. + * **`--pigz`** : Use pigz for compression. + * **`--base64`** : Encode the archive to ASCII in Base64 format instead of compressing (base64 command required). + * **`--gpg-encrypt`** : Encrypt the archive using `gpg -ac -z $COMPRESS_LEVEL`. This will prompt for a password to encrypt with. Assumes that potential users have `gpg` installed. + * **`--ssl-encrypt`** : Encrypt the archive using `openssl aes-256-cbc -a -salt`. This will prompt for a password to encrypt with. Assumes that the potential users have the OpenSSL tools installed. + * **`--compress`** : Use the UNIX `compress` command to compress the data. This should be the default on all platforms that don't have gzip available. + * **`--nocomp`** : Do not use any compression for the archive, which will then be an uncompressed TAR. + * **`--complevel`** : Specify the compression level for gzip, bzip2, pbzip2, zstd, xz, lzo or lz4. (defaults to 9) + * **`--threads`** : Specify the number of threads to be used by compressors that support parallelization. Omit to use compressor's default. Most useful (and required) for opting into xz's threading, usually with `--threads=0` for all available cores. pbzip2 and pigz are parallel by default, and setting this value allows limiting the number of threads they use. + * **`--notemp`** : The generated archive will not extract the files to a temporary directory, but in a new directory created in the current directory. This is better to distribute software packages that may extract and compile by themselves (i.e. launch the compilation through the embedded script). + * **`--current`** : Files will be extracted to the current directory, instead of in a subdirectory. This option implies `--notemp` above. + * **`--follow`** : Follow the symbolic links inside of the archive directory, i.e. store the files that are being pointed to instead of the links themselves. + * **`--append`** _(new in 2.1.x)_: Append data to an existing archive, instead of creating a new one. In this mode, the settings from the original archive are reused (compression type, label, embedded script), and thus don't need to be specified again on the command line. + * **`--header`** : Makeself uses a separate file to store the header stub, called `makeself-header.sh`. By default, it is assumed that it is stored in the same location as makeself.sh. This option can be used to specify its actual location if it is stored someplace else. + * **`--cleanup`** : Specify a script that is run when execution is interrupted or finishes successfully. The script is executed with the same environment and initial `script_args` as `startup_script`. + * **`--copy`** : Upon extraction, the archive will first extract itself to a temporary directory. The main application of this is to allow self-contained installers stored in a Makeself archive on a CD, when the installer program will later need to unmount the CD and allow a new one to be inserted. This prevents "Filesystem busy" errors for installers that span multiple CDs. + * **`--nox11`** : Disable the automatic spawning of a new terminal in X11. + * **`--nowait`** : When executed from a new X11 terminal, disable the user prompt at the end of the script execution. + * **`--nomd5`** and **`--nocrc`** : Disable the creation of a MD5 / CRC checksum for the archive. This speeds up the extraction process if integrity checking is not necessary. + * **`--sha256`** : Adds a SHA256 checksum for the archive. This is in addition to the MD5 / CRC checksums unless `--nomd5` is also used. + * **`--lsm` _file_** : Provide and LSM file to makeself, that will be embedded in the generated archive. LSM files are describing a software package in a way that is easily parseable. The LSM entry can then be later retrieved using the `--lsm` argument to the archive. An example of a LSM file is provided with Makeself. + * **`--tar-format opt`** : Specify the tar archive format (default is ustar); you may use any value accepted by your tar command (such as posix, v7, etc). + * **`--tar-extra opt`** : Append more options to the tar command line. + + For instance, in order to exclude the `.git` directory from the packaged archive directory using the GNU `tar`, one can use `makeself.sh --tar-extra "--exclude=.git" ...` + + * **`--keep-umask`** : Keep the umask set to shell default, rather than overriding when executing self-extracting archive. + * **`--packaging-date date`** : Use provided string as the packaging date instead of the current date. + * **`--license`** : Append a license file. + * **`--nooverwrite`** : Do not extract the archive if the specified target directory already exists. + * **`--help-header file`** : Add a header to the archive's `--help` output. + * `archive_dir` is the name of the directory that contains the files to be archived + * `file_name` is the name of the archive to be created + * `label` is an arbitrary text string describing the package. It will be displayed while extracting the files. + * `startup_script` is the command to be executed _from within_ the directory of extracted files. Thus, if you wish to execute a program contained in this directory, you must prefix your command with `./`. For example, `./program` will be fine. The `script_args` are additional arguments for this command. + +Here is an example, assuming the user has a package image stored in a **/home/joe/mysoft**, and he wants to generate a self-extracting package named +**mysoft.sh**, which will launch the "setup" script initially stored in /home/joe/mysoft : + +`makeself.sh /home/joe/mysoft mysoft.sh "Joe's Nice Software Package" ./setup +` + +Here is also how I created the [makeself.run][9] archive which contains the Makeself distribution : + +`makeself.sh --notemp makeself makeself.run "Makeself by Stephane Peter" echo "Makeself has extracted itself" ` + +Archives generated with Makeself can be passed the following arguments: + + * **`--keep`** : Prevent the files to be extracted in a temporary directory that will be removed after the embedded script's execution. The files will then be extracted in the current working directory and will stay here until you remove them. + * **`--verbose`** : Will prompt the user before executing the embedded command + * **`--target dir`** : Allows to extract the archive in an arbitrary place. + * **`--nox11`** : Do not spawn a X11 terminal. + * **`--confirm`** : Prompt the user for confirmation before running the embedded command. + * **`--info`** : Print out general information about the archive (does not extract). + * **`--lsm`** : Print out the LSM entry, if it is present. + * **`--list`** : List the files in the archive. + * **`--check`** : Check the archive for integrity using the embedded checksums. Does not extract the archive. + * **`--nochown`** : By default, a `chown -R` command is run on the target directory after extraction, so that all files belong to the current user. This is mostly needed if you are running as root, as tar will then try to recreate the initial user ownerships. You may disable this behavior with this flag. + * **`--tar`** : Run the tar command on the contents of the archive, using the following arguments as parameter for the command. + * **`--noexec`** : Do not run the embedded script after extraction. + * **`--noexec-cleanup`** : Do not run the embedded cleanup script. + * **`--nodiskspace`** : Do not check for available disk space before attempting to extract. + * **`--cleanup-args`** : Specify arguments to be passed to the cleanup script. Wrap value in quotes to specify multiple arguments. + +Any subsequent arguments to the archive will be passed as additional arguments to the embedded command. You must explicitly use the `--` special command-line construct before any such options to make sure that Makeself will not try to interpret them. + +## Startup Script + +The startup script must be a regular Shell script. + +Within the startup script, you can use the `$USER_PWD` variable to get the path of the folder from which the self-extracting script is executed. This is especially useful to access files that are located in the same folder as the script, as shown in the example below. + +`my-self-extracting-script.sh --fooBarFileParameter foo.bar` + +## Building and Testing + +Clone the git repo and execute `git submodule update --init --recursive` to obtain all submodules. + +* To make a release: `make` +* To run all tests: `make test` + +## Maven Usage + +Makeself is now supported by the following maven plugin [makeself-maven-plugin](https://github.com/hazendaz/makeself-maven-plugin). Please refer to project for usage and report any bugs in regards to maven plugin on that project. + +## License + +Makeself itself is covered by the [GNU General Public License][8] (GPL) version 2 and above. Archives generated by Makeself don't have to be placed under this license (although I encourage it ;-)), since the archive itself is merely data for Makeself. + +## Contributing + +I will gladly consider merging your pull requests on the [GitHub][10] repository. However, please keep the following in mind: + + * One of the main purposes of Makeself is portability. Do not submit patches that will break supported platforms. The more platform-agnostic, the better. + * Please explain clearly what the purpose of the patch is, and how you achieved it. + +## Download + +Get the latest official distribution [here][9] (version 2.4.2). + +The latest development version can be grabbed from [GitHub][10]. Feel free to submit any patches there through the fork and pull request process. + +## Version history + + * **v1.0:** Initial public release + * **v1.1:** The archive can be passed parameters that will be passed on to the embedded script, thanks to John C. Quillan + * **v1.2:** Cosmetic updates, support for bzip2 compression and non-temporary archives. Many ideas thanks to Francois Petitjean. + * **v1.3:** More patches from Bjarni R. Einarsson and Francois Petitjean: Support for no compression (`--nocomp`), script is no longer mandatory, automatic launch in an xterm, optional verbose output, and -target archive option to indicate where to extract the files. + * **v1.4:** Many patches from Francois Petitjean: improved UNIX compatibility, automatic integrity checking, support of LSM files to get info on the package at run time.. + * **v1.5.x:** A lot of bugfixes, and many other patches, including automatic verification through the usage of checksums. Version 1.5.5 was the stable release for a long time, even though the Web page didn't get updated ;-). Makeself was also officially made a part of the [Loki Setup installer][11], and its source is being maintained as part of this package. + * **v2.0:** Complete internal rewrite of Makeself. The command-line parsing was vastly improved, the overall maintenance of the package was greatly improved by separating the stub from makeself.sh. Also Makeself was ported and tested to a variety of Unix platforms. + * **v2.0.1:** First public release of the new 2.0 branch. Prior versions are officially obsoleted. This release introduced the `--copy` argument that was introduced in response to a need for the [UT2K3][12] Linux installer. + * **v2.1.0:** Big change : Makeself can now support multiple embedded tarballs, each stored separately with their own checksums. An existing archive can be updated with the `--append` flag. Checksums are also better managed, and the `--nochown` option for archives appeared. + * **v2.1.1:** Fixes related to the Unix compression (compress command). Some Linux distributions made the insane choice to make it unavailable, even though gzip is capable of uncompressing these files, plus some more bugfixes in the extraction and checksum code. + * **v2.1.2:** Some bug fixes. Use head -n to avoid problems with POSIX conformance. + * **v2.1.3:** Bug fixes with the command line when spawning terminals. Added `--tar`, `--noexec` for archives. Added `--nomd5` and `--nocrc` to avoid creating checksums in archives. The embedded script is now run through "eval". The `--info` output now includes the command used to create the archive. A man page was contributed by Bartosz Fenski. + * **v2.1.4:** Fixed `--info` output. Generate random directory name when extracting files to . to avoid problems. Better handling of errors with wrong permissions for the directory containing the files. Avoid some race conditions, Unset the $CDPATH variable to avoid problems if it is set. Better handling of dot files in the archive directory. + * **v2.1.5:** Made the md5sum detection consistent with the header code. Check for the presence of the archive directory. Added `--encrypt` for symmetric encryption through gpg (Eric Windisch). Added support for the digest command on Solaris 10 for MD5 checksums. Check for available disk space before extracting to the target directory (Andreas Schweitzer). Allow extraction to run asynchronously (patch by Peter Hatch). Use file descriptors internally to avoid error messages (patch by Kay Tiong Khoo). + * **v2.1.6:** Replaced one dot per file progress with a realtime progress percentage and a spinning cursor. Added `--noprogress` to prevent showing the progress during the decompression. Added `--target` dir to allow extracting directly to a target directory. (Guy Baconniere) + * **v2.2.0:** First major new release in years! Includes many bugfixes and user contributions. Please look at the [project page on Github][10] for all the details. + * **v2.3.0:** Support for archive encryption via GPG or OpenSSL. Added LZO and LZ4 compression support. Options to set the packaging date and stop the umask from being overriden. Optionally ignore check for available disk space when extracting. New option to check for root permissions before extracting. + * **v2.3.1:** Various compatibility updates. Added unit tests for Travis CI in the GitHub repo. New `--tar-extra`, `--untar-extra`, `--gpg-extra`, `--gpg-asymmetric-encrypt-sign` options. + * **v2.4.0:** Added optional support for SHA256 archive integrity checksums. + * **v2.4.2:** New --cleanup and --cleanup-args arguments for cleanup scripts. Added threading support for supported compressors. Now supports zstd compression. + * **v2.4.3:** Make explicit POSIX tar archives for increased compatibility. + * **v2.4.4:** Fixed various compatibility issues (no longer use POSIX tar archives), Github Actions to check on Solaris and FreeBSD. + * **v2.4.5:** Added `--tar-format` option to set the tar archive format (default is ustar) + +## Links + + * Check out the ["Loki Setup"][11] installer, used to install many Linux games and other applications, and of which I am the co-author. Since the demise of Loki, I am now the official maintainer of the project, and it is now being hosted here on GitHub. + * Bjarni R. Einarsson also wrote the **setup.sh** installer script, inspired by Makeself. [Check it out !][14] + +## Contact + +This script was written by [Stéphane Peter][15] (megastep at megastep.org). Any enhancements and suggestions are welcome. + +Contributions were included from John C. Quillan, Bjarni R. Einarsson, +Francois Petitjean, Ryan C. Gordon, and many contributors on GitHub. If you think I forgot +your name, don't hesitate to contact me. + +This project is now hosted on GitHub. Feel free to submit patches and bug reports on the [project page][10]. + +* * * + +[Stephane Peter][2] + + [1]: http://makeself.io/ + [2]: mailto:megastep@megastep.org + [3]: http://www.idsoftware.com/ + [4]: http://www.lokigames.com/products/myth2/updates.php3 + [5]: http://www.nvidia.com/ + [6]: http://earth.google.com/ + [7]: http://www.virtualbox.org/ + [8]: http://www.gnu.org/copyleft/gpl.html + [9]: https://github.com/megastep/makeself/releases/download/release-2.4.5/makeself-2.4.5.run + [10]: https://github.com/megastep/makeself + [11]: https://github.com/megastep/loki_setup/ + [12]: http://www.unrealtournament2003.com/ + [13]: http://www.icculus.org/ + [14]: http://bre.klaki.net/programs/setup.sh/ + [15]: https://stephanepeter.com/ diff --git a/precision_Problem/Is_standard/cmake/util/makeself/VERSION b/precision_Problem/Is_standard/cmake/util/makeself/VERSION new file mode 100644 index 0000000000000000000000000000000000000000..59aa62c1fa4c234af19118ff8d8572c1d50437fd --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/VERSION @@ -0,0 +1 @@ +2.4.5 diff --git a/precision_Problem/Is_standard/cmake/util/makeself/make-release.sh b/precision_Problem/Is_standard/cmake/util/makeself/make-release.sh new file mode 100644 index 0000000000000000000000000000000000000000..b5692d49071716e68c821688b9ded040bd3a11c4 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/make-release.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# +# Create a distributable archive of the current version of Makeself + +VER=`cat VERSION` +mkdir -p /tmp/makeself-$VER release +cp -pPR makeself* test README.md COPYING VERSION .gitmodules /tmp/makeself-$VER/ +./makeself.sh --notemp /tmp/makeself-$VER release/makeself-$VER.run "Makeself v$VER" echo "Makeself has extracted itself" + diff --git a/precision_Problem/Is_standard/cmake/util/makeself/makeself-header.sh b/precision_Problem/Is_standard/cmake/util/makeself/makeself-header.sh new file mode 100644 index 0000000000000000000000000000000000000000..9409031483e2bc377d344d64b34b13877a0afd7b --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/makeself-header.sh @@ -0,0 +1,660 @@ +cat << EOF > "$archname" +#!/bin/bash +# This script was generated using Makeself $MS_VERSION +# The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL) +# 2022.3.19-Modified the MS_Help function and some options +# Huawei Technologies Co., Ltd. + +ORIG_UMASK=\`umask\` + +CRCsum="$CRCsum" +MD5="$MD5sum" +SHA="$SHAsum" +SIGNATURE="$Signature" +TMPROOT=\${TMPDIR:="\$HOME"} +if ! test -d "\$TMPROOT"; then + TMPROOT="\$PWD" +fi +export TMPDIR="\$TMPROOT" +USER_PWD="\$PWD" +if ! test -d "\$USER_PWD"; then + exit 1 +fi +export USER_PWD +ARCHIVE_DIR=\`dirname "\$0"\` +export ARCHIVE_DIR + +name_of_file="\$0 " +pwd_of_file="\$PWD" +label="$LABEL" +script="$SCRIPT" +scriptargs="$SCRIPTARGS" +cleanup_script="${CLEANUP_SCRIPT}" +licensetxt="$LICENSE" +helpheader='$HELPHEADER' +targetdir="$archdirname" +filesizes="$filesizes" +totalsize="$totalsize" +keep="$KEEP" +nooverwrite="$NOOVERWRITE" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="$EXPORT_CONF" +decrypt_cmd="$DECRYPT_CMD" +skip="$SKIP" + +print_cmd_arg="" +if type printf > /dev/null; then + print_cmd="printf" +elif test -x /usr/ucb/echo; then + print_cmd="/usr/ucb/echo" +else + print_cmd="echo" +fi + +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:\$PATH + export PATH +fi + +if test -d /usr/sfw/bin; then + PATH=\$PATH:/usr/sfw/bin + export PATH +fi + +unset CDPATH + +MS_Printf() +{ + \$print_cmd \$print_cmd_arg "\$1" +} + +MS_PrintLicense() +{ + PAGER=\${PAGER:=more} + if test x"\$licensetxt" != x; then + PAGER_PATH=\`exec <&- 2>&-; which \$PAGER || command -v \$PAGER || type \$PAGER\` + if test -x "\$PAGER_PATH"; then + echo "\$licensetxt" | \$PAGER + else + echo "\$licensetxt" + fi + if test x"\$accept" != xy; then + while true + do + MS_Printf "Please type y to accept, n otherwise: " + read yn + if test x"\$yn" = xn; then + keep=n + eval \$finish; exit 1 + break; + elif test x"\$yn" = xy; then + break; + fi + done + fi + fi +} + +MS_diskspace() +{ + ( + df -kP "\$1" | tail -1 | awk '{ if (\$4 ~ /%/) {print \$3} else {print \$4} }' + ) +} + +MS_dd() +{ + blocks=\`expr \$3 / 1024\` + bytes=\`expr \$3 % 1024\` + # Test for ibs, obs and conv feature + if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then + dd if="\$1" ibs=\$2 skip=1 obs=1024 conv=sync 2> /dev/null | \\ + { test \$blocks -gt 0 && dd ibs=1024 obs=1024 count=\$blocks ; \\ + test \$bytes -gt 0 && dd ibs=1 obs=1024 count=\$bytes ; } 2> /dev/null + else + dd if="\$1" bs=\$2 skip=1 2> /dev/null + fi +} + +MS_dd_Progress() +{ + if test x"\$noprogress" = xy; then + MS_dd "\$@" + return \$? + fi + file="\$1" + offset=\$2 + length=\$3 + pos=0 + bsize=4194304 + while test \$bsize -gt \$length; do + bsize=\`expr \$bsize / 4\` + done + blocks=\`expr \$length / \$bsize\` + bytes=\`expr \$length % \$bsize\` + ( + dd ibs=\$offset skip=1 2>/dev/null + pos=\`expr \$pos \+ \$bsize\` + MS_Printf " 0%% " 1>&2 + if test \$blocks -gt 0; then + while test \$pos -le \$length; do + dd bs=\$bsize count=1 2>/dev/null + pcent=\`expr \$length / 100\` + pcent=\`expr \$pos / \$pcent\` + if test \$pcent -lt 100; then + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + if test \$pcent -lt 10; then + MS_Printf " \$pcent%% " 1>&2 + else + MS_Printf " \$pcent%% " 1>&2 + fi + fi + pos=\`expr \$pos \+ \$bsize\` + done + fi + if test \$bytes -gt 0; then + dd bs=\$bytes count=1 2>/dev/null + fi + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + MS_Printf " 100%% " 1>&2 + ) < "\$file" +} + +MS_Help() +{ + cat << EOH >&2 +Usage: \$0 [options] +Options: + --help | -h Print this message + --info Print embedded info : title, default target directory, embedded script ... + --list Print the list of files in the archive + --check Checks integrity and version dependency of the archive + --quiet Quiet install mode, skip human-computer interactions + --nox11 Do not spawn an xterm + --noexec Do not run embedded script + --extract= Extract directly to a target directory (absolute or relative) + Usually used with --noexec to just extract files without running + --tar arg1 [arg2 ...] Access the contents of the archive through the tar command +\${helpheader} +EOH +} + +MS_Verify_Sig() +{ + GPG_PATH=\`exec <&- 2>&-; which gpg || command -v gpg || type gpg\` + MKTEMP_PATH=\`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp\` + test -x "\$GPG_PATH" || GPG_PATH=\`exec <&- 2>&-; which gpg || command -v gpg || type gpg\` + test -x "\$MKTEMP_PATH" || MKTEMP_PATH=\`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp\` + offset=\`head -n "\$skip" "\$1" | wc -c | tr -d " "\` + temp_sig=\`mktemp -t XXXXX\` + echo \$SIGNATURE | base64 --decode > "\$temp_sig" + gpg_output=\`MS_dd "\$1" \$offset \$totalsize | LC_ALL=C "\$GPG_PATH" --verify "\$temp_sig" - 2>&1\` + gpg_res=\$? + rm -f "\$temp_sig" + if test \$gpg_res -eq 0 && test \`echo \$gpg_output | grep -c Good\` -eq 1; then + if test \`echo \$gpg_output | grep -c \$sig_key\` -eq 1; then + test x"\$quiet" = xn && echo "GPG signature is good" >&2 + else + echo "GPG Signature key does not match" >&2 + exit 2 + fi + else + test x"\$quiet" = xn && echo "GPG signature failed to verify" >&2 + exit 2 + fi +} + +MS_Check() +{ + OLD_PATH="\$PATH" + PATH=\${GUESS_MD5_PATH:-"\$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=\`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum\` + test -x "\$MD5_PATH" || MD5_PATH=\`exec <&- 2>&-; which md5 || command -v md5 || type md5\` + test -x "\$MD5_PATH" || MD5_PATH=\`exec <&- 2>&-; which digest || command -v digest || type digest\` + PATH="\$OLD_PATH" + + SHA_PATH=\`exec <&- 2>&-; which shasum || command -v shasum || type shasum\` + test -x "\$SHA_PATH" || SHA_PATH=\`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum\` + + if test x"\$quiet" = xn; then + MS_Printf "Verifying archive integrity..." + fi + offset=\`head -n "\$skip" "\$1" | wc -c | tr -d " "\` + fsize=\`cat "\$1" | wc -c | tr -d " "\` + if test \$totalsize -ne \`expr \$fsize - \$offset\`; then + echo " Unexpected archive size." >&2 + exit 2 + fi + verb=\$2 + i=1 + for s in \$filesizes + do + crc=\`echo \$CRCsum | cut -d" " -f\$i\` + if test -x "\$SHA_PATH"; then + if test x"\`basename \$SHA_PATH\`" = xshasum; then + SHA_ARG="-a 256" + fi + sha=\`echo \$SHA | cut -d" " -f\$i\` + if test x"\$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then + test x"\$verb" = xy && echo " \$1 does not contain an embedded SHA256 checksum." >&2 + else + shasum=\`MS_dd_Progress "\$1" \$offset \$s | eval "\$SHA_PATH \$SHA_ARG" | cut -b-64\`; + if test x"\$shasum" != x"\$sha"; then + echo "Error in SHA256 checksums: \$shasum is different from \$sha" >&2 + exit 2 + elif test x"\$quiet" = xn; then + MS_Printf " SHA256 checksums are OK." >&2 + fi + crc="0000000000"; + fi + fi + if test -x "\$MD5_PATH"; then + if test x"\`basename \$MD5_PATH\`" = xdigest; then + MD5_ARG="-a md5" + fi + md5=\`echo \$MD5 | cut -d" " -f\$i\` + if test x"\$md5" = x00000000000000000000000000000000; then + test x"\$verb" = xy && echo " \$1 does not contain an embedded MD5 checksum." >&2 + else + md5sum=\`MS_dd_Progress "\$1" \$offset \$s | eval "\$MD5_PATH \$MD5_ARG" | cut -b-32\`; + if test x"\$md5sum" != x"\$md5"; then + echo "Error in MD5 checksums: \$md5sum is different from \$md5" >&2 + exit 2 + elif test x"\$quiet" = xn; then + MS_Printf " MD5 checksums are OK." >&2 + fi + crc="0000000000"; verb=n + fi + fi + if test x"\$crc" = x0000000000; then + test x"\$verb" = xy && echo " \$1 does not contain a CRC checksum." >&2 + else + sum1=\`MS_dd_Progress "\$1" \$offset \$s | CMD_ENV=xpg4 cksum | awk '{print \$1}'\` + if test x"\$sum1" != x"\$crc"; then + echo "Error in checksums: \$sum1 is different from \$crc" >&2 + exit 2 + elif test x"\$quiet" = xn; then + MS_Printf " CRC checksums are OK." >&2 + fi + fi + i=\`expr \$i + 1\` + offset=\`expr \$offset + \$s\` + done + if test x"\$quiet" = xn; then + echo " All good." + fi +} + +MS_Decompress() +{ + if test x"\$decrypt_cmd" != x""; then + { eval "\$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "$GUNZIP_CMD" + else + eval "$GUNZIP_CMD" + fi + + if test \$? -ne 0; then + echo " ... Decompression failed." >&2 + fi +} + +UnTAR() +{ + if test x"\$quiet" = xn; then + tar \$1vf - $UNTAR_EXTRA 2>&1 || { echo " ... Extraction failed." >&2; kill -15 \$$; } + else + tar \$1f - $UNTAR_EXTRA 2>&1 || { echo Extraction failed. >&2; kill -15 \$$; } + fi +} + +MS_exec_cleanup() { + if test x"\$cleanup" = xy && test x"\$cleanup_script" != x""; then + cleanup=n + cd "\$tmpdir" + eval "\"\$cleanup_script\" \$scriptargs \$cleanupargs" + fi +} + +MS_cleanup() +{ + echo 'Signal caught, cleaning up' >&2 + MS_exec_cleanup + cd "\$TMPROOT" + rm -rf "\$tmpdir" + eval \$finish; exit 15 +} + +Script_Args_Check() +{ + script_supported_args=\$(echo \${helpheader} | grep -o -E "\-\-[^ ]+" | awk -F"=" {'print \$1'}) + arg_to_test=\$(echo \$1|awk -F"=" {'print \$1'}) + + for arg in \${script_supported_args}; + do + if test x"\$arg_to_test" = x"\$arg" ;then + return + fi + done + + MS_Help + exit 1 +} + +finish=true +xterm_loop= +noprogress=$NOPROGRESS +nox11=$NOX11 +copy=$COPY +ownership=$OWNERSHIP +verbose=n +cleanup=y +cleanupargs= +sig_key= + +initargs="\$@" + +while [ -n "\$*" ] +do + case "\$1" in + -h | --help) + MS_Help + exit 0 + ;; + -q | --quiet) + quiet=y + noprogress=y + shift + ;; + --info) + echo Identification: "\$label" + echo Target directory: "\$targetdir" + echo Uncompressed size: $USIZE KB + echo Compression: $COMPRESS + if test x"$ENCRYPT" != x""; then + echo Encryption: $ENCRYPT + fi + echo Date of packaging: $DATE + echo Built with Makeself version $MS_VERSION + echo Build command was: "$MS_COMMAND" + if test x"\$script" != x; then + echo Script run after extraction: + echo " " \$script \$scriptargs + fi + if test x"$copy" = xcopy; then + echo "Archive will copy itself to a temporary location" + fi + if test x"$NEED_ROOT" = xy; then + echo "Root permissions required for extraction" + fi + if test x"$KEEP" = xy; then + echo "directory \$targetdir is permanent" + else + echo "\$targetdir will be removed after extraction" + fi + exit 0 + ;; + --list) + echo Target directory: \$targetdir + offset=\`head -n "\$skip" "\$0" | wc -c | tr -d " "\` + for s in \$filesizes + do + MS_dd "\$0" \$offset \$s | MS_Decompress | UnTAR t + offset=\`expr \$offset + \$s\` + done + exit 0 + ;; + --tar) + offset=\`head -n "\$skip" "\$0" | wc -c | tr -d " "\` + arg1="\$2" + shift 2 || { MS_Help; exit 1; } + for s in \$filesizes + do + MS_dd "\$0" \$offset \$s | MS_Decompress | tar "\$arg1" - "\$@" + offset=\`expr \$offset + \$s\` + done + exit 0 + ;; + --check) + MS_Check "\$0" y + scriptargs="\$scriptargs \$1" + shift + ;; + --noexec) + script="" + cleanup_script="" + shift + ;; + --extract=*) + keep=y + targetdir=\`echo \$1 | cut -d"=" -f2 \` + if ! shift; then MS_Help; exit 1; fi + ;; + --nox11) + nox11=y + shift + ;; + --xwin) + if test "$NOWAIT" = n; then + finish="echo Press Return to close this window...; read junk" + fi + xterm_loop=1 + shift + ;; + --phase2) + copy=phase2 + shift + ;; + --repack | --repack-path=*) + Script_Args_Check \$1 + scriptargs="\$scriptargs '\$1'" + shift + if [[ ! "\$1" =~ ^-.* ]]; then + scriptargs="\$scriptargs '\$1'" + shift + fi + ;; + *) + Script_Args_Check \$1 + scriptargs="\$scriptargs '\$1'" + shift + ;; + esac +done + +quiet_para="" +if test x"\$quiet" = xy; then + quiet_para="--quiet " +fi +scriptargs="--\$name_of_file""--\"\$pwd_of_file\""" \$quiet_para""\$scriptargs" + +if test x"\$quiet" = xy -a x"\$verbose" = xy; then + echo Cannot be verbose and quiet at the same time. >&2 + exit 1 +fi + +if test x"$NEED_ROOT" = xy -a \`id -u\` -ne 0; then + echo "Administrative privileges required for this archive (use su or sudo)" >&2 + exit 1 +fi + +if test x"\$copy" \!= xphase2; then + MS_PrintLicense +fi + +case "\$copy" in +copy) + tmpdir="\$TMPROOT"/makeself.\$RANDOM.\`date +"%y%m%d%H%M%S"\`.\$\$ + mkdir "\$tmpdir" || { + echo "Could not create temporary directory \$tmpdir" >&2 + exit 1 + } + SCRIPT_COPY="\$tmpdir/makeself" + echo "Copying to a temporary location..." >&2 + cp "\$0" "\$SCRIPT_COPY" + chmod +x "\$SCRIPT_COPY" + cd "\$TMPROOT" + exec "\$SCRIPT_COPY" --phase2 -- \$initargs + ;; +phase2) + finish="\$finish ; rm -rf \`dirname \$0\`" + ;; +esac + +if test x"\$nox11" = xn; then + if tty -s; then # Do we have a terminal? + : + else + if test x"\$DISPLAY" != x -a x"\$xterm_loop" = x; then # No, but do we have X? + if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable + GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology" + for a in \$GUESS_XTERMS; do + if type \$a >/dev/null 2>&1; then + XTERM=\$a + break + fi + done + chmod a+x \$0 || echo Please add execution rights on \$0 + if test \`echo "\$0" | cut -c1\` = "/"; then # Spawn a terminal! + exec \$XTERM -e "\$0 --xwin \$initargs" + else + exec \$XTERM -e "./\$0 --xwin \$initargs" + fi + fi + fi + fi +fi + +if test x"\$targetdir" = x.; then + tmpdir="." +else + if test x"\$keep" = xy; then + if test x"\$nooverwrite" = xy && test -d "\$targetdir"; then + echo "Target directory \$targetdir already exists, aborting." >&2 + exit 1 + fi + if test x"\$quiet" = xn; then + echo "Creating directory \$targetdir" >&2 + fi + tmpdir="\$targetdir" + dashp="-p" + else + tmpdir="\$TMPROOT/selfgz\$\$\$RANDOM" + dashp="" + fi + mkdir \$dashp "\$tmpdir" || { + echo 'Cannot create target directory' \$tmpdir >&2 + echo 'You should try option --extract=' >&2 + eval \$finish + exit 1 + } +fi + +location="\`pwd\`" +if test x"\$SETUP_NOCHECK" != x1; then + MS_Check "\$0" +fi +offset=\`head -n "\$skip" "\$0" | wc -c | tr -d " "\` + +if test x"\$verbose" = xy; then + MS_Printf "About to extract $USIZE KB in \$tmpdir ... Proceed ? [Y/n] " + read yn + if test x"\$yn" = xn; then + eval \$finish; exit 1 + fi +fi + +if test x"\$quiet" = xn; then + # Decrypting with openssl will ask for password, + # the prompt needs to start on new line + if test x"$ENCRYPT" = x"openssl"; then + echo "Decrypting and uncompressing \$label..." + else + MS_Printf "Uncompressing \$label" + fi +fi +res=3 +if test x"\$keep" = xn; then + trap MS_cleanup 1 2 3 15 +fi + +if test x"\$nodiskspace" = xn; then + leftspace=\`MS_diskspace "\$tmpdir"\` + if test -n "\$leftspace"; then + if test "\$leftspace" -lt $USIZE; then + echo + echo "Not enough space left in "\`dirname \$tmpdir\`" (\$leftspace KB) to decompress \$0 ($USIZE KB)" >&2 + if test x"\$keep" = xn; then + echo "Consider setting TMPDIR to a directory with more free space." + fi + eval \$finish; exit 1 + fi + fi +fi + +for s in \$filesizes +do + if MS_dd_Progress "\$0" \$offset \$s | MS_Decompress | ( cd "\$tmpdir"; umask \$ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then + if test x"\$ownership" = xy; then + (cd "\$tmpdir"; chown -R \`id -u\` .; chgrp -R \`id -g\` .) + fi + else + echo >&2 + echo "Unable to decompress \$0" >&2 + eval \$finish; exit 1 + fi + offset=\`expr \$offset + \$s\` +done +if test x"\$quiet" = xn; then + echo +fi + +cd "\$tmpdir" +res=0 +if test x"\$script" != x; then + if test x"\$export_conf" = x"y"; then + MS_BUNDLE="\$0" + MS_LABEL="\$label" + MS_SCRIPT="\$script" + MS_SCRIPTARGS="\$scriptargs" + MS_ARCHDIRNAME="\$archdirname" + MS_KEEP="\$KEEP" + MS_NOOVERWRITE="\$NOOVERWRITE" + MS_COMPRESS="\$COMPRESS" + MS_CLEANUP="\$cleanup" + export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS + export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS + fi + + if test x"\$verbose" = x"y"; then + yn="x" + while test x"\$yn" != x -a x"\$yn" != xy -a x"\$yn" != xY -a x"\$yn" != xn -a x"\$yn" != xN + do + MS_Printf "OK to execute: \$script \$scriptargs \$* ? [Y/n] " + read yn + if test x"\$yn" = x -o x"\$yn" = xy -o x"\$yn" = xY; then + eval "\"\$script\" \$scriptargs \"\\\$@\""; res=\$?; + elif test x"\$yn" = xn -o x"\$yn" = xN; then + echo "Unable to decompress \$script ,because of aborting! ";res=\$? + else + echo "Input value is unacceptable,please try again." + fi + done + else + eval "\"\$script\" \$scriptargs \"\\\$@\""; res=\$? + fi + if test "\$res" -ne 0; then + test x"\$verbose" = xy && echo "The program '\$script' returned an error code (\$res)" >&2 + fi +fi + +MS_exec_cleanup + +if test x"\$keep" = xn; then + cd "\$TMPROOT" + rm -rf "\$tmpdir" +fi +eval \$finish; exit \$res +EOF diff --git a/precision_Problem/Is_standard/cmake/util/makeself/makeself.1 b/precision_Problem/Is_standard/cmake/util/makeself/makeself.1 new file mode 100644 index 0000000000000000000000000000000000000000..81bf6e4ff4cfeb226c0a0992d8e6d2b94dd4f172 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/makeself.1 @@ -0,0 +1,110 @@ +.TH "MAKESELF" "1" "2.4.5" +.SH "NAME" +makeself \- An utility to generate self-extractable archives. +.SH "SYNTAX" +.B makeself [\fIoptions\fP] archive_dir file_name label +.B [\fIstartup_script\fP] [\fIargs\fP] +.SH "DESCRIPTION" +This program is a free (GPL) utility designed to create self-extractable +archives from a directory. +.SH "OPTIONS" +The following options are supported. +.TP 15 +.B -v, --version +Prints out the makeself version number and exits. +.TP +.B -h, --help +Print out help information. +.TP +.B --tar-quietly +Suppress verbose output from the tar command +.TP +.B --quiet +Do not print any messages other than errors +.TP +.B --gzip +Compress using gzip (default if detected). +.TP +.B --bzip2 +Compress using bzip2. +.TP +.B --pbzip2 +Compress using pbzip2. +.TP +.B --xz +Compress using xz. +.TP +.B --lzo +Compress using lzop. +.TP +.B --lz4 +Compress using lz4. +.TP +.B --compress +Compress using the UNIX 'compress' command. +.TP +.B --nocomp +Do not compress the data. +.TP +.B --complevel lvl +Specify the compression level for gzip,bzip2,pbzui2,xz,lzo or lz4 +.TP +.B --notemp +The archive will create archive_dir in the current directory and +uncompress in ./archive_dir. +.TP +.B --copy +Upon extraction, the archive will first copy itself to a temporary directory. +.TP +.B --append +Append more files to an existing makeself archive. The label and startup scripts will then be ignored. +.TP +.B --current +Files will be extracted to the current directory. Both --current and --target dir imply --notemp. +.TP +.B --target dir +Extract directly to a target directory. Directory path can be either absolute or relative. +.TP +.B --header file +Specify location of the header script. +.TP +.B --cleanup file +Specify a cleanup script that executes on interrupt and when finished successfully. +.TP +.B --follow +Follow the symlinks in the archive. +.TP +.B --noprogress +Do not show the progress during the decompression. +.TP +.B --nox11 +Disable automatic spawn of an xterm if running in X11. +.TP +.B --nowait +Do not wait for user input after executing embedded program from an xterm. +.TP +.B --nomd5 +Do not create a MD5 checksum for the archive. +.TP +.B --nocrc +Do not create a CRC32 checksum for the archive. +.TP +.B --lsm file +LSM file describing the package. +.B --packaging-date date +Use provided string as the packaging date instead of the current date. +.SH "EXAMPLES" +Here is an example, assuming the user has a package image stored in a /home/joe/mysoft, +and he wants to generate a self-extracting package named mysoft.sh, which will launch +the "setup" script initially stored in /home/joe/mysoft: +.TP +makeself.sh /home/joe/mysoft mysoft.sh "Joe's Nice Software Package" ./setup +.TP +Here is also how I created the makeself.run archive which contains the Makeself distribution: +.TP +makeself.sh --notemp makeself makeself.run "Makeself by Stephane Peter" echo "Makeself has extracted itself" +.SH "AUTHORS" +Makeself has been written by Stéphane Peter . +.BR +This man page was originally written by Bartosz Fenski for the +Debian GNU/Linux distribution (but it may be used by others). diff --git a/precision_Problem/Is_standard/cmake/util/makeself/makeself.lsm b/precision_Problem/Is_standard/cmake/util/makeself/makeself.lsm new file mode 100644 index 0000000000000000000000000000000000000000..3c4cea8c18982e288f0d51eba9b4d97f0f708f32 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/makeself.lsm @@ -0,0 +1,16 @@ +Begin3 +Title: makeself.sh +Version: 2.4.5 +Description: makeself.sh is a shell script that generates a self-extractable + tar.gz archive from a directory. The resulting file appears as a shell + script, and can be launched as is. The archive will then uncompress + itself to a temporary directory and an arbitrary command will be + executed (for example an installation script). This is pretty similar + to archives generated with WinZip Self-Extractor in the Windows world. +Keywords: Installation archive tar winzip +Author: Stephane Peter (megastep@megastep.org) +Maintained-by: Stephane Peter (megastep@megastep.org) +Original-site: https://makeself.io/ +Platform: Unix +Copying-policy: GPL +End diff --git a/precision_Problem/Is_standard/cmake/util/makeself/makeself.sh b/precision_Problem/Is_standard/cmake/util/makeself/makeself.sh new file mode 100644 index 0000000000000000000000000000000000000000..c8ea565971c5ac03c775a665596a593287881708 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/makeself.sh @@ -0,0 +1,822 @@ +#!/bin/sh +# +# Makeself version 2.4.x +# by Stephane Peter +# +# Utility to create self-extracting tar.gz archives. +# The resulting archive is a file holding the tar.gz archive with +# a small Shell script stub that uncompresses the archive to a temporary +# directory and then executes a given script from withing that directory. +# +# Makeself home page: https://makeself.io/ +# +# Version 2.0 is a rewrite of version 1.0 to make the code easier to read and maintain. +# +# Version history : +# - 1.0 : Initial public release +# - 1.1 : The archive can be passed parameters that will be passed on to +# the embedded script, thanks to John C. Quillan +# - 1.2 : Package distribution, bzip2 compression, more command line options, +# support for non-temporary archives. Ideas thanks to Francois Petitjean +# - 1.3 : More patches from Bjarni R. Einarsson and Francois Petitjean: +# Support for no compression (--nocomp), script is no longer mandatory, +# automatic launch in an xterm, optional verbose output, and -target +# archive option to indicate where to extract the files. +# - 1.4 : Improved UNIX compatibility (Francois Petitjean) +# Automatic integrity checking, support of LSM files (Francois Petitjean) +# - 1.5 : Many bugfixes. Optionally disable xterm spawning. +# - 1.5.1 : More bugfixes, added archive options -list and -check. +# - 1.5.2 : Cosmetic changes to inform the user of what's going on with big +# archives (Quake III demo) +# - 1.5.3 : Check for validity of the DISPLAY variable before launching an xterm. +# More verbosity in xterms and check for embedded command's return value. +# Bugfix for Debian 2.0 systems that have a different "print" command. +# - 1.5.4 : Many bugfixes. Print out a message if the extraction failed. +# - 1.5.5 : More bugfixes. Added support for SETUP_NOCHECK environment variable to +# bypass checksum verification of archives. +# - 1.6.0 : Compute MD5 checksums with the md5sum command (patch from Ryan Gordon) +# - 2.0 : Brand new rewrite, cleaner architecture, separated header and UNIX ports. +# - 2.0.1 : Added --copy +# - 2.1.0 : Allow multiple tarballs to be stored in one archive, and incremental updates. +# Added --nochown for archives +# Stopped doing redundant checksums when not necesary +# - 2.1.1 : Work around insane behavior from certain Linux distros with no 'uncompress' command +# Cleaned up the code to handle error codes from compress. Simplified the extraction code. +# - 2.1.2 : Some bug fixes. Use head -n to avoid problems. +# - 2.1.3 : Bug fixes with command line when spawning terminals. +# Added --tar for archives, allowing to give arbitrary arguments to tar on the contents of the archive. +# Added --noexec to prevent execution of embedded scripts. +# Added --nomd5 and --nocrc to avoid creating checksums in archives. +# Added command used to create the archive in --info output. +# Run the embedded script through eval. +# - 2.1.4 : Fixed --info output. +# Generate random directory name when extracting files to . to avoid problems. (Jason Trent) +# Better handling of errors with wrong permissions for the directory containing the files. (Jason Trent) +# Avoid some race conditions (Ludwig Nussel) +# Unset the $CDPATH variable to avoid problems if it is set. (Debian) +# Better handling of dot files in the archive directory. +# - 2.1.5 : Made the md5sum detection consistent with the header code. +# Check for the presence of the archive directory +# Added --encrypt for symmetric encryption through gpg (Eric Windisch) +# Added support for the digest command on Solaris 10 for MD5 checksums +# Check for available disk space before extracting to the target directory (Andreas Schweitzer) +# Allow extraction to run asynchronously (patch by Peter Hatch) +# Use file descriptors internally to avoid error messages (patch by Kay Tiong Khoo) +# - 2.1.6 : Replaced one dot per file progress with a realtime progress percentage and a spining cursor (Guy Baconniere) +# Added --noprogress to prevent showing the progress during the decompression (Guy Baconniere) +# Added --target dir to allow extracting directly to a target directory (Guy Baconniere) +# - 2.2.0 : Many bugfixes, updates and contributions from users. Check out the project page on Github for the details. +# - 2.3.0 : Option to specify packaging date to enable byte-for-byte reproducibility. (Marc Pawlowsky) +# - 2.4.0 : Optional support for SHA256 checksums in archives. +# - 2.4.2 : Add support for threads for several compressors. (M. Limber) +# Added zstd support. +# - 2.4.3 : Make explicit POSIX tar archives for increased compatibility. +# - 2.4.5 : Added --tar-format to override ustar tar archive format +# +# (C) 1998-2021 by Stephane Peter +# +# This software is released under the terms of the GNU GPL version 2 and above +# Please read the license at http://www.gnu.org/copyleft/gpl.html +# Self-extracting archives created with this script are explictly NOT released under the term of the GPL +# + +MS_VERSION=2.4.5 +MS_COMMAND="$0" +unset CDPATH + +for f in ${1+"$@"}; do + MS_COMMAND="$MS_COMMAND \\\\ + \\\"$f\\\"" +done + +# For Solaris systems +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:$PATH + export PATH +fi + +# Procedures + +MS_Usage() +{ + echo "Usage: $0 [args] archive_dir file_name label startup_script [script_args]" + echo "args can be one or more of the following :" + echo " --version | -v : Print out Makeself version number and exit" + echo " --help | -h : Print out this help message" + echo " --tar-quietly : Suppress verbose output from the tar command" + echo " --quiet | -q : Do not print any messages other than errors." + echo " --gzip : Compress using gzip (default if detected)" + echo " --pigz : Compress with pigz" + echo " --zstd : Compress with zstd" + echo " --bzip2 : Compress using bzip2 instead of gzip" + echo " --pbzip2 : Compress using pbzip2 instead of gzip" + echo " --xz : Compress using xz instead of gzip" + echo " --lzo : Compress using lzop instead of gzip" + echo " --lz4 : Compress using lz4 instead of gzip" + echo " --compress : Compress using the UNIX 'compress' command" + echo " --complevel lvl : Compression level for gzip pigz zstd xz lzo lz4 bzip2 and pbzip2 (default 9)" + echo " --threads thds : Number of threads to be used by compressors that support parallelization." + echo " Omit to use compressor's default. Most useful (and required) for opting" + echo " into xz's threading, usually with '--threads=0' for all available cores." + echo " pbzip2 and pigz are parallel by default, and setting this value allows" + echo " limiting the number of threads they use." + echo " --base64 : Instead of compressing, encode the data using base64" + echo " --gpg-encrypt : Instead of compressing, encrypt the data using GPG" + echo " --gpg-asymmetric-encrypt-sign" + echo " : Instead of compressing, asymmetrically encrypt and sign the data using GPG" + echo " --gpg-extra opt : Append more options to the gpg command line" + echo " --ssl-encrypt : Instead of compressing, encrypt the data using OpenSSL" + echo " --ssl-passwd pass : Use the given password to encrypt the data using OpenSSL" + echo " --ssl-pass-src src : Use the given src as the source of password to encrypt the data" + echo " using OpenSSL. See \"PASS PHRASE ARGUMENTS\" in man openssl." + echo " If this option is not supplied, the user will be asked to enter" + echo " encryption password on the current terminal." + echo " --ssl-no-md : Do not use \"-md\" option not supported by older OpenSSL." + echo " --nochown : Do not give the target folder to the current user (default)" + echo " --chown : Give the target folder to the current user recursively" + echo " --nocomp : Do not compress the data" + echo " --notemp : The archive will create archive_dir in the" + echo " current directory and uncompress in ./archive_dir" + echo " --needroot : Check that the root user is extracting the archive before proceeding" + echo " --copy : Upon extraction, the archive will first copy itself to" + echo " a temporary directory" + echo " --append : Append more files to an existing Makeself archive" + echo " The label and startup scripts will then be ignored" + echo " --target dir : Extract directly to a target directory" + echo " directory path can be either absolute or relative" + echo " --nooverwrite : Do not extract the archive if the specified target directory exists" + echo " --current : Files will be extracted to the current directory" + echo " Both --current and --target imply --notemp" + echo " --tar-format opt : Specify a tar archive format (default is ustar)" + echo " --tar-extra opt : Append more options to the tar command line" + echo " --untar-extra opt : Append more options to the during the extraction of the tar archive" + echo " --nomd5 : Don't calculate an MD5 for archive" + echo " --nocrc : Don't calculate a CRC for archive" + echo " --sha256 : Compute a SHA256 checksum for the archive" + echo " --header file : Specify location of the header script" + echo " --cleanup file : Specify a cleanup script that executes on interrupt and when finished successfully." + echo " --follow : Follow the symlinks in the archive" + echo " --noprogress : Do not show the progress during the decompression" + echo " --nox11 : Disable automatic spawn of a xterm" + echo " --nowait : Do not wait for user input after executing embedded" + echo " program from an xterm" + echo " --sign passphrase : Signature private key to sign the package with" + echo " --lsm file : LSM file describing the package" + echo " --license file : Append a license file" + echo " --help-header file : Add a header to the archive's --help output" + echo " --packaging-date date" + echo " : Use provided string as the packaging date" + echo " instead of the current date." + echo + echo " --keep-umask : Keep the umask set to shell default, rather than overriding when executing self-extracting archive." + echo " --export-conf : Export configuration variables to startup_script" + echo + echo "Do not forget to give a fully qualified startup script name" + echo "(i.e. with a ./ prefix if inside the archive)." + exit 1 +} + +# Default settings +if type gzip >/dev/null 2>&1; then + COMPRESS=gzip +elif type compress >/dev/null 2>&1; then + COMPRESS=compress +else + echo "ERROR: missing commands: gzip, compress" >&2 + MS_Usage +fi +ENCRYPT=n +PASSWD="" +PASSWD_SRC="" +OPENSSL_NO_MD=n +COMPRESS_LEVEL=9 +DEFAULT_THREADS=123456 # Sentinel value +THREADS=$DEFAULT_THREADS +KEEP=n +CURRENT=n +NOX11=n +NOWAIT=n +APPEND=n +TAR_QUIETLY=n +KEEP_UMASK=n +QUIET=n +NOPROGRESS=n +COPY=none +NEED_ROOT=n +TAR_ARGS=rvf +TAR_FORMAT=ustar +TAR_EXTRA="" +GPG_EXTRA="" +DU_ARGS=-ks +HEADER=`dirname "$0"`/makeself-header.sh +SIGNATURE="" +TARGETDIR="" +NOOVERWRITE=n +DATE=`LC_ALL=C date` +EXPORT_CONF=n +SHA256=n +OWNERSHIP=n +SIGN=n +GPG_PASSPHRASE="" + +# LSM file stuff +LSM_CMD="echo No LSM. >> \"\$archname\"" + +while true +do + case "$1" in + --version | -v) + echo Makeself version $MS_VERSION + exit 0 + ;; + --pbzip2) + COMPRESS=pbzip2 + shift + ;; + --bzip2) + COMPRESS=bzip2 + shift + ;; + --gzip) + COMPRESS=gzip + shift + ;; + --pigz) + COMPRESS=pigz + shift + ;; + --zstd) + COMPRESS=zstd + shift + ;; + --xz) + COMPRESS=xz + shift + ;; + --lzo) + COMPRESS=lzo + shift + ;; + --lz4) + COMPRESS=lz4 + shift + ;; + --compress) + COMPRESS=compress + shift + ;; + --base64) + COMPRESS=base64 + shift + ;; + --gpg-encrypt) + COMPRESS=gpg + shift + ;; + --gpg-asymmetric-encrypt-sign) + COMPRESS=gpg-asymmetric + shift + ;; + --gpg-extra) + GPG_EXTRA="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --ssl-encrypt) + ENCRYPT=openssl + shift + ;; + --ssl-passwd) + PASSWD=$2 + shift 2 || { MS_Usage; exit 1; } + ;; + --ssl-pass-src) + PASSWD_SRC=$2 + shift 2 || { MS_Usage; exit 1; } + ;; + --ssl-no-md) + OPENSSL_NO_MD=y + shift + ;; + --nocomp) + COMPRESS=none + shift + ;; + --complevel) + COMPRESS_LEVEL="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --threads) + THREADS="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --nochown) + OWNERSHIP=n + shift + ;; + --chown) + OWNERSHIP=y + shift + ;; + --notemp) + KEEP=y + shift + ;; + --copy) + COPY=copy + shift + ;; + --current) + CURRENT=y + KEEP=y + shift + ;; + --tar-format) + TAR_FORMAT="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --tar-extra) + TAR_EXTRA="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --untar-extra) + UNTAR_EXTRA="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --target) + TARGETDIR="$2" + KEEP=y + shift 2 || { MS_Usage; exit 1; } + ;; + --sign) + SIGN=y + GPG_PASSPHRASE="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --nooverwrite) + NOOVERWRITE=y + shift + ;; + --needroot) + NEED_ROOT=y + shift + ;; + --header) + HEADER="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --cleanup) + CLEANUP_SCRIPT="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --license) + # We need to escape all characters having a special meaning in double quotes + LICENSE=$(sed 's/\\/\\\\/g; s/"/\\\"/g; s/`/\\\`/g; s/\$/\\\$/g' "$2") + shift 2 || { MS_Usage; exit 1; } + ;; + --follow) + TAR_ARGS=rvhf + DU_ARGS=-ksL + shift + ;; + --noprogress) + NOPROGRESS=y + shift + ;; + --nox11) + NOX11=y + shift + ;; + --nowait) + NOWAIT=y + shift + ;; + --nomd5) + NOMD5=y + shift + ;; + --sha256) + SHA256=y + shift + ;; + --nocrc) + NOCRC=y + shift + ;; + --append) + APPEND=y + shift + ;; + --lsm) + LSM_CMD="cat \"$2\" >> \"\$archname\"" + shift 2 || { MS_Usage; exit 1; } + ;; + --packaging-date) + DATE="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --help-header) + HELPHEADER=`sed -e "s/'/'\\\\\''/g" $2` + shift 2 || { MS_Usage; exit 1; } + [ -n "$HELPHEADER" ] && HELPHEADER="$HELPHEADER +" + ;; + --tar-quietly) + TAR_QUIETLY=y + shift + ;; + --keep-umask) + KEEP_UMASK=y + shift + ;; + --export-conf) + EXPORT_CONF=y + shift + ;; + -q | --quiet) + QUIET=y + shift + ;; + -h | --help) + MS_Usage + ;; + -*) + echo Unrecognized flag : "$1" + MS_Usage + ;; + *) + break + ;; + esac +done + +if test $# -lt 1; then + MS_Usage +else + if test -d "$1"; then + archdir="$1" + else + echo "Directory $1 does not exist." >&2 + exit 1 + fi +fi +archname="$2" + +if test "$QUIET" = "y" || test "$TAR_QUIETLY" = "y"; then + if test "$TAR_ARGS" = "rvf"; then + TAR_ARGS="rf" + elif test "$TAR_ARGS" = "rvhf"; then + TAR_ARGS="rhf" + fi +fi + +if test "$APPEND" = y; then + if test $# -lt 2; then + MS_Usage + fi + + # Gather the info from the original archive + OLDENV=`sh "$archname" --dumpconf` + if test $? -ne 0; then + echo "Unable to update archive: $archname" >&2 + exit 1 + else + eval "$OLDENV" + OLDSKIP=`expr $SKIP + 1` + fi +else + if test "$KEEP" = n -a $# = 3; then + echo "ERROR: Making a temporary archive with no embedded command does not make sense!" >&2 + echo >&2 + MS_Usage + fi + # We don't want to create an absolute directory unless a target directory is defined + if test "$CURRENT" = y; then + archdirname="." + elif test x"$TARGETDIR" != x; then + archdirname="$TARGETDIR" + else + archdirname=`basename "$1"` + fi + + if test $# -lt 3; then + MS_Usage + fi + + LABEL="$3" + SCRIPT="$4" + test "x$SCRIPT" = x || shift 1 + shift 3 + SCRIPTARGS="$*" +fi + +if test "$KEEP" = n -a "$CURRENT" = y; then + echo "ERROR: It is A VERY DANGEROUS IDEA to try to combine --notemp and --current." >&2 + exit 1 +fi + +case $COMPRESS in +gzip) + GZIP_CMD="gzip -c$COMPRESS_LEVEL" + GUNZIP_CMD="gzip -cd" + ;; +pigz) + GZIP_CMD="pigz -$COMPRESS_LEVEL" + if test $THREADS -ne $DEFAULT_THREADS; then # Leave as the default if threads not indicated + GZIP_CMD="$GZIP_CMD --processes $THREADS" + fi + GUNZIP_CMD="gzip -cd" + ;; +zstd) + GZIP_CMD="zstd -$COMPRESS_LEVEL" + if test $THREADS -ne $DEFAULT_THREADS; then # Leave as the default if threads not indicated + GZIP_CMD="$GZIP_CMD --threads=$THREADS" + fi + GUNZIP_CMD="zstd -cd" + ;; +pbzip2) + GZIP_CMD="pbzip2 -c$COMPRESS_LEVEL" + if test $THREADS -ne $DEFAULT_THREADS; then # Leave as the default if threads not indicated + GZIP_CMD="$GZIP_CMD -p$THREADS" + fi + GUNZIP_CMD="bzip2 -d" + ;; +bzip2) + GZIP_CMD="bzip2 -$COMPRESS_LEVEL" + GUNZIP_CMD="bzip2 -d" + ;; +xz) + GZIP_CMD="xz -c$COMPRESS_LEVEL" + # Must opt-in by specifying a value since not all versions of xz support threads + if test $THREADS -ne $DEFAULT_THREADS; then + GZIP_CMD="$GZIP_CMD --threads=$THREADS" + fi + GUNZIP_CMD="xz -d" + ;; +lzo) + GZIP_CMD="lzop -c$COMPRESS_LEVEL" + GUNZIP_CMD="lzop -d" + ;; +lz4) + GZIP_CMD="lz4 -c$COMPRESS_LEVEL" + GUNZIP_CMD="lz4 -d" + ;; +base64) + GZIP_CMD="base64" + GUNZIP_CMD="base64 --decode -i -" + ;; +gpg) + GZIP_CMD="gpg $GPG_EXTRA -ac -z$COMPRESS_LEVEL" + GUNZIP_CMD="gpg -d" + ENCRYPT="gpg" + ;; +gpg-asymmetric) + GZIP_CMD="gpg $GPG_EXTRA -z$COMPRESS_LEVEL -es" + GUNZIP_CMD="gpg --yes -d" + ENCRYPT="gpg" + ;; +compress) + GZIP_CMD="compress -fc" + GUNZIP_CMD="(type compress >/dev/null 2>&1 && compress -fcd || gzip -cd)" + ;; +none) + GZIP_CMD="cat" + GUNZIP_CMD="cat" + ;; +esac + +if test x"$ENCRYPT" = x"openssl"; then + if test x"$APPEND" = x"y"; then + echo "Appending to existing archive is not compatible with OpenSSL encryption." >&2 + fi + + ENCRYPT_CMD="openssl enc -aes-256-cbc -salt" + DECRYPT_CMD="openssl enc -aes-256-cbc -d" + + if test x"$OPENSSL_NO_MD" != x"y"; then + ENCRYPT_CMD="$ENCRYPT_CMD -md sha256" + DECRYPT_CMD="$DECRYPT_CMD -md sha256" + fi + + if test -n "$PASSWD_SRC"; then + ENCRYPT_CMD="$ENCRYPT_CMD -pass $PASSWD_SRC" + elif test -n "$PASSWD"; then + ENCRYPT_CMD="$ENCRYPT_CMD -pass pass:$PASSWD" + fi +fi + +tmpfile="${TMPDIR:-/tmp}/mkself$$" + +if test -f "$HEADER"; then + oldarchname="$archname" + archname="$tmpfile" + # Generate a fake header to count its lines + SKIP=0 + . "$HEADER" + SKIP=`cat "$tmpfile" |wc -l` + # Get rid of any spaces + SKIP=`expr $SKIP` + rm -f "$tmpfile" + if test "$QUIET" = "n"; then + echo "Header is $SKIP lines long" >&2 + fi + archname="$oldarchname" +else + echo "Unable to open header file: $HEADER" >&2 + exit 1 +fi + +if test "$QUIET" = "n"; then + echo +fi + +if test "$APPEND" = n; then + if test -f "$archname"; then + echo "WARNING: Overwriting existing file: $archname" >&2 + fi +fi + +USIZE=`du $DU_ARGS "$archdir" | awk '{print $1}'` + +if test "." = "$archdirname"; then + if test "$KEEP" = n; then + archdirname="makeself-$$-`date +%Y%m%d%H%M%S`" + fi +fi + +test -d "$archdir" || { echo "Error: $archdir does not exist."; rm -f "$tmpfile"; exit 1; } +if test "$QUIET" = "n"; then + echo "About to compress $USIZE KB of data..." + echo "Adding files to archive named \"$archname\"..." +fi + +# See if we have GNU tar +TAR=`exec <&- 2>&-; which gtar || command -v gtar || type gtar` +test -x "$TAR" || TAR=tar + +tmparch="${TMPDIR:-/tmp}/mkself$$.tar" +( + if test "$APPEND" = "y"; then + tail -n "+$OLDSKIP" "$archname" | eval "$GUNZIP_CMD" > "$tmparch" + fi + cd "$archdir" + # "Determining if a directory is empty" + # https://www.etalabs.net/sh_tricks.html + find . \ + \( \ + ! -type d \ + -o \ + \( -links 2 -exec sh -c ' + is_empty () ( + cd "$1" + set -- .[!.]* ; test -f "$1" && return 1 + set -- ..?* ; test -f "$1" && return 1 + set -- * ; test -f "$1" && return 1 + return 0 + ) + is_empty "$0"' {} \; \ + \) \ + \) -print \ + | LC_ALL=C sort \ + | sed 's/./\\&/g' \ + | xargs $TAR $TAR_EXTRA --format $TAR_FORMAT -$TAR_ARGS "$tmparch" +) || { + echo "ERROR: failed to create temporary archive: $tmparch" + rm -f "$tmparch" "$tmpfile" + exit 1 +} + +USIZE=`du $DU_ARGS "$tmparch" | awk '{print $1}'` + +eval "$GZIP_CMD" <"$tmparch" >"$tmpfile" || { + echo "ERROR: failed to create temporary file: $tmpfile" + rm -f "$tmparch" "$tmpfile" + exit 1 +} +rm -f "$tmparch" + +if test x"$ENCRYPT" = x"openssl"; then + echo "About to encrypt archive \"$archname\"..." + { eval "$ENCRYPT_CMD -in $tmpfile -out ${tmpfile}.enc" && mv -f ${tmpfile}.enc $tmpfile; } || \ + { echo Aborting: could not encrypt temporary file: "$tmpfile".; rm -f "$tmpfile"; exit 1; } +fi + +fsize=`cat "$tmpfile" | wc -c | tr -d " "` + +# Compute the checksums + +shasum=0000000000000000000000000000000000000000000000000000000000000000 +md5sum=00000000000000000000000000000000 +crcsum=0000000000 + +if test "$NOCRC" = y; then + if test "$QUIET" = "n"; then + echo "skipping crc at user request" + fi +else + crcsum=`CMD_ENV=xpg4 cksum < "$tmpfile" | sed -e 's/ /Z/' -e 's/ /Z/' | cut -dZ -f1` + if test "$QUIET" = "n"; then + echo "CRC: $crcsum" + fi +fi + +if test "$SHA256" = y; then + SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum` + if test -x "$SHA_PATH"; then + shasum=`eval "$SHA_PATH -a 256" < "$tmpfile" | cut -b-64` + else + SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum` + shasum=`eval "$SHA_PATH" < "$tmpfile" | cut -b-64` + fi + if test "$QUIET" = "n"; then + if test -x "$SHA_PATH"; then + echo "SHA256: $shasum" + else + echo "SHA256: none, SHA command not found" + fi + fi +fi +if test "$NOMD5" = y; then + if test "$QUIET" = "n"; then + echo "Skipping md5sum at user request" + fi +else + # Try to locate a MD5 binary + OLD_PATH=$PATH + PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest` + PATH=$OLD_PATH + if test -x "$MD5_PATH"; then + if test `basename ${MD5_PATH}`x = digestx; then + MD5_ARG="-a md5" + fi + md5sum=`eval "$MD5_PATH $MD5_ARG" < "$tmpfile" | cut -b-32` + if test "$QUIET" = "n"; then + echo "MD5: $md5sum" + fi + else + if test "$QUIET" = "n"; then + echo "MD5: none, MD5 command not found" + fi + fi +fi +if test "$SIGN" = y; then + GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + if test -x "$GPG_PATH"; then + SIGNATURE=`$GPG_PATH --pinentry-mode=loopback --batch --yes --passphrase "$GPG_PASSPHRASE" --output - --detach-sig $tmpfile | base64 | tr -d \\\\n` + if test "$QUIET" = "n"; then + echo "Signature: $SIGNATURE" + fi + else + echo "Missing gpg command" >&2 + fi +fi + +totalsize=0 +for size in $fsize; +do + totalsize=`expr $totalsize + $size` +done + +if test "$APPEND" = y; then + mv "$archname" "$archname".bak || exit + + # Prepare entry for new archive + filesizes="$fsize" + CRCsum="$crcsum" + MD5sum="$md5sum" + SHAsum="$shasum" + Signature="$SIGNATURE" + # Generate the header + . "$HEADER" + # Append the new data + cat "$tmpfile" >> "$archname" + + chmod +x "$archname" + rm -f "$archname".bak + if test "$QUIET" = "n"; then + echo "Self-extractable archive \"$archname\" successfully updated." + fi +else + filesizes="$fsize" + CRCsum="$crcsum" + MD5sum="$md5sum" + SHAsum="$shasum" + Signature="$SIGNATURE" + + # Generate the header + . "$HEADER" + + # Append the compressed tar data after the stub + if test "$QUIET" = "n"; then + echo + fi + cat "$tmpfile" >> "$archname" + chmod +x "$archname" + if test "$QUIET" = "n"; then + echo Self-extractable archive \"$archname\" successfully created. + fi +fi +rm -f "$tmpfile" diff --git a/precision_Problem/Is_standard/cmake/util/makeself/run-tests.sh b/precision_Problem/Is_standard/cmake/util/makeself/run-tests.sh new file mode 100644 index 0000000000000000000000000000000000000000..31ee1651156c64caddfdadd683d4dc2d0be3ddc4 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/makeself/run-tests.sh @@ -0,0 +1,8 @@ +#!/bin/sh +# Run every available test - Bash needed +cd test +for test in *test; +do + echo "Running test $test ..." + bash $test || { echo "*** ERROR: Test '$test' failed!"; exit 1; } +done diff --git a/precision_Problem/Is_standard/cmake/util/merge_aicpu_info_json.sh b/precision_Problem/Is_standard/cmake/util/merge_aicpu_info_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..a977bd51d2e98a1511db4296070a8dda6b90a262 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/merge_aicpu_info_json.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +project_path=$1 +build_path=$2 +vendor_name=customize +echo $@ +if [[ ! -d "$project_path" ]]; then + echo "[ERROR] No projcet path is provided" + exit 1 +fi + +if [[ ! -d "$build_path" ]]; then + echo "[ERROR] No build path is provided" + exit 1 +fi + +if [[ ! -d "$ASCEND_OPP_PATH" ]]; then + echo "[ERROR] No opp install path is provided" + exit 1 +fi +custom_exist_info_json=$ASCEND_OPP_PATH/vendors/$vendor_name/op_impl/cpu/config/cust_aicpu_kernel.json +custom_new_info_json=$build_path/makepkg/packages/vendors/$vendor_name/op_impl/cpu/config/cust_aicpu_kernel.json +temp_info_json=$build_path/makepkg/packages/vendors/$vendor_name/op_impl/cpu/config/temp_cust_aicpu_kernel.json + +if [[ -f "$custom_exist_info_json" ]] && [[ -f "$custom_new_info_json" ]]; then + cp -f $custom_exist_info_json $temp_info_json + chmod +w $temp_info_json + python3 ${project_path}/cmake/util/insert_op_info.py ${custom_new_info_json} ${temp_info_json} + cp -f $temp_info_json $custom_new_info_json + rm -f $temp_info_json +fi diff --git a/precision_Problem/Is_standard/cmake/util/opdesc_parser.py b/precision_Problem/Is_standard/cmake/util/opdesc_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..48efca2c6e16c136e44a3d2308ef18d2fbdf8369 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/opdesc_parser.py @@ -0,0 +1,294 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os + + +OP_ALL = '__ALLOP__' +SOC_ALL = '__ALLSOC__' +SOC_TO_SHORT_SOC_MAP = { + "ascend910a": "ascend910", + "ascend910proa": "ascend910", + "ascend910b": "ascend910", + "ascend910prob": "ascend910", + "ascend910premiuma": "ascend910", + "ascend910b1": "ascend910b", + "ascend910b2": "ascend910b", + "ascend910b2c": "ascend910b", + "ascend910b3": "ascend910b", + "ascend910b4": "ascend910b", + "ascend310p1": "ascend310p", + "ascend310p3": "ascend310p", + "ascend310p3vir01": "ascend310p", + "ascend310p3vir02": "ascend310p", + "ascend310p3vir04": "ascend310p", + "ascend310p3vir08": "ascend310p", + "ascend310b1": "ascend310b", + "bs9sx1aa": "bs9sx1a" +} +CONFLICT_KEYWORDS = { + "and", "as", "assert", "break", "class", "continue", "def", "del", "elif", "else", + "except", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", + "not", "or", "pass", "raise", "return", "try", "while", "with", "yield", "False", + "None", "True", "nonlocal", "arg", "__inputs__", "__outputs__", "options", "bisheng", + "bisheng_path", "tikcpp_path", "impl_mode", "custom_compile_options", + "custom_all_compile_options", "soc_version", "soc_short", "custom_compile_options_soc", + "custom_all_compile_options_soc", "origin_func_name", "ascendc_src_dir_ex", + "ascendc_src_dir", "ascendc_src_file", "src", "op_type", "code_channel", "op_info", + "compile_op", "get_code_channel", "result", "__attrs__", "isinstance", "attr", + "get_current_build_config", "_build_args", "get_dtype_fmt_options", "shutil", "os", + "get_kernel_source" +} + + +class OpDesc: + def __init__(self: any, op_type: str): + self.op_type = op_type + self.attr_list = [] + self.attr_val = {} + self.input_name = [] + self.input_ori_name = [] + self.input_type = [] + self.input_dtype = [] + self.input_fmt = [] + self.output_name = [] + self.output_ori_name = [] + self.output_type = [] + self.output_dtype = [] + self.output_fmt = [] + self.op_fmt_sel = False + self.op_chk_support = False + self.op_intf = '' + self.kern_name = '' + self.op_file = '' + self.op_replay_flag = False + self.op_replay_batch = False + self.input_idx = -1 + self.output_idx = -1 + self.max_block_dim = 32 + self.max_shape_size = 268435456 + self.dynamic_shape = False + self.op_range_limit = '' + self.custom_compile_options = {} + self.custom_all_compile_options = {} + + @staticmethod + def _parse_digit(conf: str) -> int: + return int(conf.split('=')[1]) + + @staticmethod + def _parse_flag(conf: str) -> bool: + if 'true' == conf.split('=')[1]: + return True + return False + + @staticmethod + def _parse_str(conf: str) -> str: + return conf.split('=')[1] + + @staticmethod + def _parse_list(conf: str) -> list: + return conf.split('=')[1].split(',') + + def parse_input(self: any, conf: str): + if conf.startswith('input{}.name'.format(int(self.input_idx) + 1)): + self.input_idx += 1 + self.input_ori_name.append(self._parse_str(conf)) + self.input_name.append(self.input_ori_name[-1] + '_in__') + elif conf.startswith('input{}.paramType'.format(int(self.input_idx))): + self.input_type.append(self._parse_str(conf)) + elif conf.startswith('input{}.dtype'.format(int(self.input_idx))): + self.input_dtype.append(self._parse_str(conf)) + elif conf.startswith('input{}.format'.format(int(self.input_idx))): + self.input_fmt.append(self._parse_str(conf)) + else: + return + + def parse_output(self: any, conf: str): + if conf.startswith('output{}.name'.format(int(self.output_idx) + 1)): + self.output_idx += 1 + self.output_ori_name.append(self._parse_str(conf)) + self.output_name.append(self.output_ori_name[-1] + '_out_') + elif conf.startswith('output{}.paramType'.format(int(self.output_idx))): + self.output_type.append(self._parse_str(conf)) + elif conf.startswith('output{}.dtype'.format(int(self.output_idx))): + self.output_dtype.append(self._parse_str(conf)) + elif conf.startswith('output{}.format'.format(int(self.output_idx))): + self.output_fmt.append(self._parse_str(conf)) + else: + return + + def parse_op_format(self: any, conf: str): + self.op_fmt_sel = self._parse_flag(conf) + + def parse_check_support(self: any, conf: str): + self.op_chk_support = self._parse_flag(conf) + + def parse_range_limit(self: any, conf: str): + self.op_range_limit = self._parse_str(conf) + + def parse_kern_name(self: any, conf: str): + self.kern_name = self._parse_str(conf) + + def parse_op_intf(self: any, conf: str): + self.op_intf = self._parse_str(conf) + + def parse_op_file(self: any, conf: str): + self.op_file = self._parse_str(conf) + + def parse_dynamic_shape(self: any, conf: str): + self.dynamic_shape = self._parse_flag(conf) + + def parse_attr_list(self: any, conf: str): + self.attr_list = self._parse_list(conf) + intersection_element = set(self.attr_list) & CONFLICT_KEYWORDS + if intersection_element: + raise Exception(f'The attribute name: {intersection_element} in op: {{\'{self.op_type}\'}} conflicts with\ + the built-in variable name. Use a complex name or prefix the operator name.') + + @staticmethod + def _camel_to_snake(camel_case_str: str): + snake_case_str = '' + for i, c in enumerate(camel_case_str): + if i == 0: + snake_case_str += c.lower() + elif c.isupper(): + snake_case_str += '_' + c.lower() + else: + snake_case_str += c + return snake_case_str + + def parse_attr_val(self: any, conf: str): + for attr in self.attr_list: + if self.attr_val.get(attr) is None: + self.attr_val[attr] = {} + if conf.startswith('attr_{}.type'.format(attr)): + self.attr_val.get(attr)['type'] = self._camel_to_snake(self._parse_str(conf)) + elif conf.startswith('attr_{}.paramType'.format(attr)): + self.attr_val.get(attr)['paramType'] = self._parse_str(conf) + elif conf.startswith('attr_{}.defaultValue'.format(attr)): + self.attr_val.get(attr)['defaultValue'] = self._parse_str(conf) + + def parse_replay_val(self: any, batch_list: list, iterator_list: list): + if self.op_type in batch_list: + self.op_replay_flag = True + self.op_replay_batch = True + elif self.op_type in iterator_list: + self.op_replay_flag = True + self.op_replay_batch = False + + +def _is_op_type_in_opdesc(op_descs: list, op_type: str): + for op in op_descs: + if op_type == op.op_type: + return True + return False + + +def _set_all_options_to_opdescs(op_descs, soc_ver_compile_options): + for op in op_descs: + op.custom_all_compile_options = soc_ver_compile_options + + +def _set_options_to_opdesc(op_descs, op_type, soc_ver_compile_options): + for op in op_descs: + if op.op_type != op_type: + continue + op.custom_compile_options = soc_ver_compile_options + + +def _trans_soc_ver_to_short(soc_ver: str): + low_soc_ver = soc_ver.lower() + if low_soc_ver not in SOC_TO_SHORT_SOC_MAP: + print(f'WARNING: caution: {soc_ver} will trans into ascend910, if not your intention,' + f'use ascend910b1~4 instead') + return SOC_TO_SHORT_SOC_MAP[low_soc_ver] + + +def _get_op_custom_options(op_descs: list, auto_gen_dir: str): + if auto_gen_dir is None: + return + file = os.path.join(auto_gen_dir, "custom_compile_options.ini") + if not os.path.exists(file): + print(f'WARNING: cannot find {auto_gen_dir}/custom_compile_options.ini') + return + with open(file, 'r') as fd: + lines = fd.readlines() + for line in lines: + param_list = str.split(line.rstrip('\n'), ',') + if len(param_list) != 3: + raise Exception(f'ERROR: custom compile option {param_list} len is not 3') + op_type = param_list[0] + if op_type.upper() == 'ALL': + op_type = OP_ALL + if op_type != OP_ALL and _is_op_type_in_opdesc(op_descs, op_type) == False: + print(f'WARNING: op: {op_type} are not exists in this project') + continue + soc_ver_compile_options = {} + soc_ver = param_list[1] + options_str = param_list[2] + options = str.split(options_str, ';') + if soc_ver == '': + soc_ver_compile_options[SOC_ALL] = options + else: + soc_ver_list = str.split(soc_ver, ';') + for ver in soc_ver_list: + short_ver = _trans_soc_ver_to_short(ver) + soc_ver_compile_options[short_ver] = options + if op_type == OP_ALL: + _set_all_options_to_opdescs(op_descs, soc_ver_compile_options) + else: + _set_options_to_opdesc(op_descs, op_type, soc_ver_compile_options) + + +def get_op_desc(file: str, batch_list: list, iterator_list: list, builder: any, + op_type: list, auto_gen_dir: str = None) -> list: + op_descs = [] + op_match = False + with open (file, 'r') as fd: + lines = fd.readlines() + for line in lines: + line = line.strip() + if line.startswith('['): + name = line[1:-1] + if op_type is None or name in op_type: + op_match = True + op_desc = builder(name) + op_desc.parse_replay_val(batch_list, iterator_list) + op_descs.append(op_desc) + else: + op_match = False + if op_type is not None and len(op_descs) == len(op_type): + return op_descs + continue + if not op_match: + continue + if line.startswith('input'): + op_desc.parse_input(line) + elif line.startswith('output'): + op_desc.parse_output(line) + elif line.startswith('dynamicFormat.flag'): + op_desc.parse_op_format(line) + elif line.startswith('needCheckSupport.flag'): + op_desc.parse_check_support(line) + elif line.startswith('rangeLimit.value'): + op_desc.parse_range_limit(line) + elif line.startswith('opInterface.value'): + op_desc.parse_op_intf(line) + elif line.startswith('kernel.name'): + op_desc.parse_kern_name(line) + elif line.startswith('opFile.value'): + op_desc.parse_op_file(line) + elif line.startswith('dynamicShapeSupport.flag'): + op_desc.parse_dynamic_shape(line) + elif line.startswith('attr.list'): + op_desc.parse_attr_list(line) + elif line.startswith('attr_'): + op_desc.parse_attr_val(line) + _get_op_custom_options(op_descs, auto_gen_dir) + return op_descs diff --git a/precision_Problem/Is_standard/cmake/util/parse_ini_to_json.py b/precision_Problem/Is_standard/cmake/util/parse_ini_to_json.py new file mode 100644 index 0000000000000000000000000000000000000000..ac931e5d3594cb3d026cae8795ec7d4d078a76c6 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/parse_ini_to_json.py @@ -0,0 +1,338 @@ +# Copyright 2020-2021 Huawei Technologies Co., Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +parser ini to json +""" + +import json +import os +import stat +import sys + + +ATTR_TYPE_LIST = ["int", "float", "bool", "str", "listInt", "listFloat", "listBool", "listStr", "listListInt", + "type", "listType", "tensor", "listTensor"] +ATTR_PARAMTYPE_LIST = ["optional", "required"] +BOOL_FLAG_KEY = ["dynamicFormat", "dynamicShapeSupport", "dynamicRankSupport", "precision_reduce", "heavyOp", + "needCheckSupport", "enableVectorCore"] +BOOL_LIST = ["true", "false"] +DTYPE_LIST = ["float16", "float", "float32", "int8", "int16", "int32", "uint8", "uint16", "uint32", "bool", + "int64", "uint64", "qint8", "qint16", "qint32", "quint8", "quint16", "double", "complex64", + "complex128", "string", "resource", "dual", "dual_sub_int8", "dual_sub_uint8", "string_ref", + "int4", "bfloat16", "uint1"] +FORMAT_LIST = ["NCHW", "NHWC", "ND", "NC1HWC0", "FRACTAL_Z", "NC1C0HWPAD", "NHWC1C0", "FSR_NCHW", "FRACTAL_DECONV", + "C1HWNC0", "FRACTAL_DECONV_TRANSPOSE", "FRACTAL_DECONV_SP_STRIDE_TRANS", "NC1HWC0_C04", + "FRACTAL_Z_C04", "CHWN", "FRACTAL_DECONV_SP_STRIDE8_TRANS", "HWCN", "NC1KHKWHWC0", "BN_WEIGHT", + "FILTER_HWCK", "HASHTABLE_LOOKUP_LOOKUPS", "HASHTABLE_LOOKUP_KEYS", "HASHTABLE_LOOKUP_VALUE", + "HASHTABLE_LOOKUP_OUTPUT", "HASHTABLE_LOOKUP_HITS", "C1HWNCoC0", "MD", "NDHWC", "FRACTAL_ZZ", + "FRACTAL_NZ", "NCDHW", "DHWCN", "NDC1HWC0", "FRACTAL_Z_3D", "CN", "NC", "DHWNC", + "FRACTAL_Z_3D_TRANSPOSE", "FRACTAL_ZN_LSTM", "FRACTAL_ZN_RNN", "FRACTAL_Z_G", "NULL"] + + +def parse_ini_files(ini_files): + """ + parse ini files to json + Parameters: + ---------------- + ini_files:input file list + return:ops_info + ---------------- + """ + tbe_ops_info = {} + for ini_file in ini_files: + check_file_size(ini_file) + parse_ini_to_obj(ini_file, tbe_ops_info) + return tbe_ops_info + + +def check_file_size(input_file): + try: + file_size = os.path.getsize(input_file) + except OSError as os_error: + print('[ERROR] Failed to open "%s". %s' % (input_file, str(os_error))) + raise OSError from os_error + if file_size > 10*1024*1024: + print('[WARN] The size of %s exceeds 10MB, it may take more time to run, please wait.' % input_file) + + +def parse_ini_to_obj(ini_file, tbe_ops_info): + """ + parse ini file to json obj + Parameters: + ---------------- + ini_file:ini file path + tbe_ops_info:ops_info + ---------------- + """ + with open(ini_file) as ini_file: + lines = ini_file.readlines() + op_dict = {} + op_name = "" + find_op_type = False + for line in lines: + line = line.rstrip() + if line == "": + continue + if line.startswith("["): + if line.endswith("]"): + op_name = line[1:-1] + op_dict = {} + tbe_ops_info[op_name] = op_dict + find_op_type = True + elif "=" in line: + key1 = line[:line.index("=")] + key2 = line[line.index("=")+1:] + key1_0, key1_1 = key1.split(".") + if key1_0 not in op_dict: + op_dict[key1_0] = {} + if key1_1 in op_dict.get(key1_0): + raise RuntimeError("Op:" + op_name + " " + key1_0 + " " + + key1_1 + " is repeated!") + dic_key = op_dict.get(key1_0) + dic_key[key1_1] = key2 + else: + continue + if not find_op_type: + raise RuntimeError("Not find OpType in .ini file.") + + +def check_output_exist(op_dict, is_valid): + """ + Function Description: + Check output is exist + Parameter: op_dict + Parameter: is_valid + """ + if "output0" in op_dict: + output0_dict = op_dict.get("output0") + if output0_dict.get("name", None) is None: + is_valid = False + print("output0.name is required in .ini file!") + else: + is_valid = False + print("output0 is required in .ini file!") + return is_valid + + +def check_attr_dict(attr_dict, is_valid, attr): + """ + Function Description: + Check attr_dict + Parameter: attr_dict + Parameter: is_valid + Parameter: attr + """ + attr_type = attr_dict.get("type") + value = attr_dict.get("value") + param_type = attr_dict.get("paramType") + if attr_type is None or value is None: + is_valid = False + print("If attr.list is exist, {0}.type and {0}.value is required".format(attr)) + if param_type and param_type not in ATTR_PARAMTYPE_LIST: + is_valid = False + print("{0}.paramType only support {1}.".format(attr, ATTR_PARAMTYPE_LIST)) + if attr_type and attr_type not in ATTR_TYPE_LIST: + is_valid = False + print("{0}.type only support {1}.".format(attr, ATTR_TYPE_LIST)) + return is_valid + + +def check_attr(op_dict, is_valid): + """ + Function Description: + Check attr + Parameter: op_dict + Parameter: is_valid + """ + if "attr" in op_dict: + attr_dict = op_dict.get("attr") + attr_list_str = attr_dict.get("list", None) + if attr_list_str is None: + is_valid = False + print("attr.list is required in .ini file!") + else: + attr_list = attr_list_str.split(",") + for attr_name in attr_list: + attr = "attr_" + attr_name.strip() + attr_dict = op_dict.get(attr) + if attr_dict: + is_valid = check_attr_dict(attr_dict, is_valid, attr) + else: + is_valid = False + print("%s is required in .ini file, when attr.list is %s!" % (attr, attr_list_str)) + return is_valid + + +def check_bool_flag(op_dict, is_valid): + """ + Function Description: + check_bool_flag + Parameter: op_dict + Parameter: is_valid + """ + for key in BOOL_FLAG_KEY: + if key in op_dict: + op_bool_key = op_dict.get(key) + if op_bool_key.get("flag").strip() not in BOOL_LIST: + is_valid = False + print("{0}.flag only support {1}.".format(key, BOOL_LIST)) + return is_valid + + +def check_type_format(op_info, is_valid, op_info_key): + """ + Function Description: + Check type and format + Parameter: op_info + Parameter: is_valid + Parameter: op_info_key + """ + op_info_dtype_str = op_info.get("dtype") + op_info_dtype_num = 0 + op_info_format_num = 0 + if op_info_dtype_str: + op_info_dtype = op_info_dtype_str.split(",") + op_info_dtype_num = len(op_info_dtype) + for dtype in op_info_dtype: + if dtype.strip() not in DTYPE_LIST: + is_valid = False + print("{0}.dtype not support {1}.".format(op_info_key, dtype)) + op_info_format_str = op_info.get("format") + if op_info_format_str: + op_info_format = op_info_format_str.split(",") + op_info_format_num = len(op_info_format) + for op_format in op_info_format: + if op_format.strip() not in FORMAT_LIST: + is_valid = False + print("{0}.format not support {1}.".format(op_info_key, op_format)) + if op_info_dtype_num > 0 and op_info_format_num > 0: + if op_info_dtype_num != op_info_format_num: + is_valid = False + print("The number of {0}.dtype not match the number of {0}.format.".format(op_info_key)) + return is_valid + + +def check_op_info(tbe_ops): + """ + Function Description: + Check info. + Parameter: tbe_ops + Return Value: is_valid + """ + print("\n\n==============check valid for ops info start==============") + required_op_input_info_keys = ["paramType", "name"] + required_op_output_info_keys = ["paramType", "name"] + param_type_valid_value = ["dynamic", "optional", "required"] + is_valid = True + for op_key in tbe_ops: + op_dict = tbe_ops[op_key] + for op_info_key in op_dict: + if op_info_key.startswith("input"): + op_input_info = op_dict[op_info_key] + missing_keys = [] + for required_op_input_info_key in required_op_input_info_keys: + if required_op_input_info_key not in op_input_info: + missing_keys.append(required_op_input_info_key) + if len(missing_keys) > 0: + print("op: " + op_key + " " + op_info_key + " missing: " + + ",".join(missing_keys)) + is_valid = False + else: + if not op_input_info["paramType"] in param_type_valid_value: + print("op: " + op_key + " " + op_info_key + \ + " paramType not valid, valid key:[dynamic, " + "optional, required]") + is_valid = False + is_valid = check_type_format(op_input_info, is_valid, op_info_key) + if op_info_key.startswith("output"): + op_input_info = op_dict[op_info_key] + missing_keys = [] + for required_op_input_info_key in required_op_output_info_keys: + if required_op_input_info_key not in op_input_info: + missing_keys.append(required_op_input_info_key) + if len(missing_keys) > 0: + print("op: " + op_key + " " + op_info_key + " missing: " + + ",".join(missing_keys)) + is_valid = False + else: + if not op_input_info["paramType"] in param_type_valid_value: + print("op: " + op_key + " " + op_info_key + + " paramType not valid, valid key:[dynamic, " + "optional, required]") + is_valid = False + is_valid = check_type_format(op_input_info, is_valid, op_info_key) + is_valid = check_attr(op_dict, is_valid) + is_valid = check_bool_flag(op_dict, is_valid) + print("==============check valid for ops info end================\n\n") + return is_valid + + +def write_json_file(tbe_ops_info, json_file_path): + """ + Save info to json file + Parameters: + ---------------- + tbe_ops_info: ops_info + json_file_path: json file path + ---------------- + """ + json_file_real_path = os.path.realpath(json_file_path) + wr_flag = os.O_WRONLY | os.O_CREAT + wr_mode = stat.S_IWUSR | stat.S_IRUSR + with os.fdopen(os.open(json_file_real_path, wr_flag, wr_mode), 'w') as file_path: + # The owner have all rights,group only have read rights + os.chmod(json_file_real_path, stat.S_IWUSR + stat.S_IRGRP + + stat.S_IRUSR) + json.dump(tbe_ops_info, file_path, sort_keys=True, indent=4, + separators=(',', ':')) + print("Compile op info cfg successfully.") + + +def parse_ini_to_json(ini_file_paths, outfile_path): + """ + parse ini files to json file + Parameters: + ---------------- + ini_file_paths: list of ini file path + outfile_path: output file path + ---------------- + """ + tbe_ops_info = parse_ini_files(ini_file_paths) + if not check_op_info(tbe_ops_info): + print("Compile op info cfg failed.") + return False + write_json_file(tbe_ops_info, outfile_path) + return True + + +if __name__ == '__main__': + args = sys.argv + + OUTPUT_FILE_PATH = "tbe_ops_info.json" + ini_file_path_list = [] + + for arg in args: + if arg.endswith("ini"): + ini_file_path_list.append(arg) + OUTPUT_FILE_PATH = arg.replace(".ini", ".json") + if arg.endswith("json"): + OUTPUT_FILE_PATH = arg + + if len(ini_file_path_list) == 0: + ini_file_path_list.append("tbe_ops_info.ini") + + if not parse_ini_to_json(ini_file_path_list, OUTPUT_FILE_PATH): + sys.exit(1) + sys.exit(0) diff --git a/precision_Problem/Is_standard/cmake/util/preset_parse.py b/precision_Problem/Is_standard/cmake/util/preset_parse.py new file mode 100644 index 0000000000000000000000000000000000000000..8f1124b1db30f552915958bc14066b8783f6ef74 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/preset_parse.py @@ -0,0 +1,23 @@ +import json +import sys +import os + + +def get_config_opts(file): + src_dir = os.path.abspath(os.path.dirname(file)) + opts = '' + with open(file, 'r') as fd: + config = json.load(fd) + for conf in config: + if conf == 'configurePresets': + for node in config[conf]: + macros = node.get('cacheVariables') + if macros is not None: + for key in macros: + opts += '-D{}={} '.format(key, macros[key]['value']) + opts = opts.replace('${sourceDir}', src_dir) + print(opts) + + +if __name__ == "__main__": + get_config_opts(sys.argv[1]) diff --git a/precision_Problem/Is_standard/cmake/util/replay_codegen.py b/precision_Problem/Is_standard/cmake/util/replay_codegen.py new file mode 100644 index 0000000000000000000000000000000000000000..1baa364ef8b3a7dee9ea1f9ce53e7c06641a2d02 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/replay_codegen.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import os +import stat +import collections +import kernel_entry as keb +from tiling_data_def_build import gen_tiling +import code_channel_infer +import const_var + +PYF_PATH = os.path.dirname(__file__) + +ReplayCodeGenParams = collections.namedtuple('ReplayCodeGenParams',\ +['op_type', 'impl', 'tiling_file', 'kernel', 'entry', 'argn', 'op_replay_batch', 'max_block_dim', 'max_shape_size']) + + +class ReplayCodeGen: + def __init__(self, replayCodeGenParams): + self.op_type = replayCodeGenParams.op_type + self.impl = replayCodeGenParams.impl + self.tiling_file = replayCodeGenParams.tiling_file + self.tiling_data_file = '' + self.kernel = replayCodeGenParams.kernel + self.entry = replayCodeGenParams.entry + self.argn = replayCodeGenParams.argn + self.batch = False + self.outdir = '' + self.data_type = 'uint8_t' + self.blknum = 32 + self.op_replay_batch = replayCodeGenParams.op_replay_batch + self.max_block_dim = replayCodeGenParams.max_block_dim + self.max_shape_size = replayCodeGenParams.max_shape_size + + def set_batch(self, is_batch): + self.batch = is_batch + + def set_outdir(self, outdir): + self.outdir = outdir + + def gen_replay(self, ops_product: str): + kerentry = os.path.join(self.outdir, self.kernel + '_entry.cce') + kerimpl = os.path.join(self.outdir, self.kernel + '_impl.cpp') + replayimpl = os.path.join(self.outdir, self.kernel + '_replay.cpp') + if self.batch: + reptmp = os.path.join(PYF_PATH, 'batch_replay_impl.temp') + else: + reptmp = os.path.join(PYF_PATH, 'replay_impl.temp') + kertmp = os.path.join(PYF_PATH, 'kernel_impl.temp') + self._gen_kentry(kerentry) + self._gen_kimpl_code(kerimpl, kertmp) + self._gen_tiling_data_header() + self._gen_replay_code(replayimpl, reptmp, ops_product) + + def _gen_tiling_data_header(self): + self.tiling_data_file = os.path.join(self.outdir, self.kernel + '_tiling_data.h') + gen_tiling(self.tiling_file, self.tiling_data_file) + + def _gen_kimpl_code(self, src, tmpfile): + with open(tmpfile, 'r') as fd: + temp = fd.read() + temp = temp.replace('__CCE_FILE__', self.impl) + with os.fdopen(os.open(src, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(temp) + + def _gen_replay_code(self, src, tmpfile, ops_product: str): + with open(tmpfile, 'r') as fd: + temp = fd.read() + temp = temp.replace('__ARG_NUM__', str(self.argn)) + argdef = [] + kargs = [] + for i in range(0, self.argn): + argdef.append('{} *'.format(self.data_type)) + kargs.append('({} *)GetArg({})'.format(self.data_type, i)) + temp = temp.replace('__ARGS_DEF__', ', '.join(argdef)) + temp = temp.replace('__KERNEL_ARGS__', ', '.join(kargs)) + temp = temp.replace('__KERNEL_FUN__', self.entry) + core_type_infer = 'core_type' + code_channel = code_channel_infer.infer_code_channel(code_channel_infer.InfoCodeChanelParams(self.impl,\ + self.tiling_data_file, self.kernel, self.outdir, ops_product, None)) + if code_channel == code_channel_infer.CODE_VEC: + core_type_infer = '0' + elif code_channel == code_channel_infer.CODE_CUBE: + core_type_infer = '1' + temp = temp.replace('__CORE_TYPE__', core_type_infer) + # regist function + temp = temp.replace('__OPS_PRODUCT__', ops_product) + temp = temp.replace('__OPTYPE__', self.op_type) + with os.fdopen(os.open(src, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(temp) + + def _gen_kentry(self, src): + kf = '' + pre_alloc_str = 'A' * 256 + if self.batch: + kf += keb.batch_code_gen("K{:02d}_{}{}".format(0, self.entry, pre_alloc_str), self.argn, self.data_type) + else: + kf += keb.mc_code_gen("K{:02d}_{}{}".format(0, self.entry, pre_alloc_str),\ + self.argn, self.data_type, self.blknum) + with os.fdopen(os.open(src, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(kf) diff --git a/precision_Problem/Is_standard/cmake/util/replay_impl.temp b/precision_Problem/Is_standard/cmake/util/replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..1d30dd8658e0a72200b3d5222e11d29170e21f57 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/replay_impl.temp @@ -0,0 +1,120 @@ +#include +#include +#include +#include +#include +#include +#include "replay_def.h" +#include "code_gen.h" +#include "replay_fun.h" +#include "register/op_check.h" +#define __ASCENDC_REPLAY_CODE__ +using namespace std; +using namespace optiling; +using namespace AscendCReplay; + +extern "C" void __KERNEL_FUN__ (__ARGS_DEF__, const char *); +extern "C" int elf_append(char *elf, uint32_t elfSize, char *jit, int kernum, int blknum[], char *atext[], + int alen[], int atlen, const char* kernelname[]); + +#define KERNEL_N 1 +#define ARG_N (__ARG_NUM__) +#define MAX_L (1024 * 1024 * 100) +#define MAX_E (1024 * 1024) + +int __KERNEL_FUN___replay___OPS_PRODUCT__(ReplayFuncParam& param, const int core_type) +{ + // gen type 1 : direct call codes 0: load .o file + if (param.gentype < 0 || param.gentype > 1) { + printf("Error: call replay gen type is %d, should only be 1 or 0\n", param.gentype); + return 0; + } else if (param.gentype == 1 && param.objptr == nullptr) { + printf("Error: call replay with direct call mode, but code obj addr is null\n"); + return 0; + } else if (param.gentype == 0 && param.output_kernel_file == nullptr) { + printf("Error: call replay with object file mode, but object file path is null\n"); + return 0; + } + // core_type 0:MIX 1:CUBE 2:VEC + if (core_type < 0 || core_type > 2) { + printf("Error: call replay core type is %d !\n", core_type); + return 0; + } + g_coreType = __CORE_TYPE__; + g_taskRation = param.task_ration; + g_tilingKey = param.tiling_key; + + unsigned char *buf, *jit; + char *kernel[KERNEL_N * 32]; + int len[KERNEL_N * 32]; + int blknum[KERNEL_N]; + int max; + block_num = param.block_dim; + g_ubBase = block_num; + uint8_t *code = (uint8_t *)malloc(MAX_L); + uint8_t *pos = code; + struct timespec tp1, tp2; + + clock_gettime(CLOCK_MONOTONIC, &tp1); + if (block_num > 32) { + printf("Error: block_num > 32\n"); + return 0; + } + //__OP_FOPEN__ + for (int i = 0; i < KERNEL_N; i++) { + for (int j = 0; j < ARG_N; j++) + AddArg(j, ARG_STEP * (j + 1)); + for (block_idx = 0; block_idx < block_num; block_idx++) { + //__OP_SET_KERNEL__ + int code_idx = i * block_num + block_idx; +#ifdef FP_CEILING + SetCtrlFloatEnable(); +#else + SetCtrlFloatDisable(); +#endif + CodeInit(pos, false); + __KERNEL_FUN__(__KERNEL_ARGS__, param.tiling_data); + CodeEnd(); + kernel[code_idx] = (char *)pos; + len[code_idx] = CodeLen(); + pos += len[code_idx]; + printf("kernel %d core %ld code generated len %d\n", i, block_idx, len[code_idx]); + } + blknum[i] = block_num; + } + //__OP_FCLOSE__ + clock_gettime(CLOCK_MONOTONIC, &tp2); + buf = (unsigned char *)malloc(MAX_E); + int fd = open(param.entry_file, O_RDONLY); + if (fd < 0) { + printf("[error]: cannot find entry.o : %s\n", param.entry_file); + return 0; + } + uint32_t bufSize = read(fd, buf, MAX_E); + if (bufSize <= 0) { + printf("[error]: entry.o : %s is too small ! \n", param.entry_file); + } + close(fd); + jit = (unsigned char *)malloc(MAX_L); + printf("total code generated %ld\n", pos - code); + int sz = elf_append((char *)buf, bufSize, (char *)jit, KERNEL_N, blknum, kernel, len, pos - code, ¶m.kernel_name); + if (tp1.tv_sec != tp2.tv_sec) { + printf("%ld NS\n", tp2.tv_nsec + 1000000000 - tp1.tv_nsec); + } else { + printf("%ld NS\n", tp2.tv_nsec - tp1.tv_nsec); + } + printf("new elf size %d\n", sz); + if (param.gentype == 0) { + fd = open(param.output_kernel_file, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); + (void)write(fd, jit, sz); + close(fd); + free(jit); + } else if (param.gentype == 1) { + *param.objptr = (char*)jit; + } + free(buf); + free(code); + return sz; +} + +REG_REPLAY_FUNC(__OPTYPE__, __OPS_PRODUCT__, __KERNEL_FUN___replay___OPS_PRODUCT__); diff --git a/precision_Problem/Is_standard/cmake/util/tiling_data_def_build.py b/precision_Problem/Is_standard/cmake/util/tiling_data_def_build.py new file mode 100644 index 0000000000000000000000000000000000000000..4c5b099b73596ea6bbbb125785b15acd0811cf33 --- /dev/null +++ b/precision_Problem/Is_standard/cmake/util/tiling_data_def_build.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python +# coding=utf-8 +""" +Function: +The replay funtion entry +Copyright Information: +Huawei Technologies Co., Ltd. All Rights Reserved © 2020 +""" + +import sys +import os +import stat +import re +import const_var + + +def gen_tiling(tiling_header_file: str, tiling_file_out: str): + if not os.path.exists(tiling_header_file): + print("warning: no userdef tiling header file: ", tiling_header_file) + return + print("generate tiling def header file: ", tiling_file_out) + tmp_name = os.path.splitext(os.path.basename(tiling_header_file))[0].upper() + tiling_source = '#ifndef __{}_H__\n'.format(tmp_name) + tiling_source += '#define __{}_H__\n\n'.format(tmp_name) + tiling_source += '#include \n' + tiling_source += '#include \n\n' + tiling_source += '#include "kernel_tiling/kernel_tiling.h"\n\n' + end_source = "" + pattern = re.compile(r'[(](.*)[)]', re.S) + with open(tiling_header_file, 'r') as fd: + lines = fd.readlines() + for line in lines: + line = line.strip() + if (line.startswith('BEGIN_TILING_DATA_DEF')): + tiling_source += '#pragma pack(1)\n' + tiling_source += 'struct ' + struct_def = re.findall(pattern, line)[0] + tiling_source += struct_def + ' {\n' + elif (line.startswith('TILING_DATA_FIELD_DEF_ARR')): + field_params = re.findall(pattern, line)[0] + fds = field_params.split(',') + tiling_source += ' {} {}[{}] = {{}};\n'.format(fds[0].strip(), fds[2].strip(), fds[1].strip()) + elif (line.startswith('TILING_DATA_FIELD_DEF_STRUCT')): + field_params = re.findall(pattern, line)[0] + fds = field_params.split(',') + tiling_source += ' {} {};\n'.format(fds[0].strip(), fds[1].strip()) + elif (line.startswith('TILING_DATA_FIELD_DEF')): + field_params = re.findall(pattern, line)[0] + fds = field_params.split(',') + tiling_source += ' {} {} = 0;\n'.format(fds[0].strip(), fds[1].strip()) + elif (line.startswith('END_TILING_DATA_DEF')): + tiling_source += '};\n' + tiling_source += '#pragma pack()\n\n' + tiling_source += '#ifdef __NPU_TILING__\n' + tiling_source += \ + 'inline [aicore] void Init{stru}(const __gm__ uint8_t* tiling, {stru}* const_data)\n'\ + .format(stru=struct_def) + tiling_source += '{\n' + tiling_source += ' const __gm__ uint32_t *src = (const __gm__ uint32_t *)tiling;\n' + tiling_source += ' uint32_t *dst = (uint32_t *)const_data;\n' + tiling_source += ' for (auto i = 0; i < sizeof({}) / 4; i++) *(dst + i) = *(src + i);\n'\ + .format(struct_def) + tiling_source += '}\n' + tiling_source += '#else\n' + tiling_source += 'inline void Init{stru}(uint8_t* tiling, {stru}* const_data)\n'.format(stru=struct_def) + tiling_source += '{\n' + tiling_source += ' uint64_t *src = (uint64_t *)tiling;\n' + tiling_source += ' uint64_t *dst = (uint64_t *)const_data;\n' + tiling_source += ' for (auto i = 0; i < sizeof({}) / 8; i++) *(dst + i) = *(src + i);\n'\ + .format(struct_def) + tiling_source += '}\n' + tiling_source += '#endif\n\n' + end_source = ''' +#define GET_TILING_DATA(tiling_data, tiling_arg) \\ +{stru} tiling_data; \\ +Init{stru}(tiling_arg, &tiling_data)\n +'''.format(stru=struct_def) + tiling_source += end_source + tiling_source += '#endif' + with os.fdopen(os.open(tiling_file_out, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(tiling_source) + + +if __name__ == '__main__': + if len(sys.argv) <= 2: + raise RuntimeError('arguments must greater than 2') + gen_tiling(sys.argv[1], sys.argv[2]) diff --git a/precision_Problem/Is_standard/framework/CMakeLists.txt b/precision_Problem/Is_standard/framework/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6be9b492610f4d45b25bb7725648df9aac39a12 --- /dev/null +++ b/precision_Problem/Is_standard/framework/CMakeLists.txt @@ -0,0 +1,11 @@ +if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/mindspore") + if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/caffe_plugin") + add_subdirectory(caffe_plugin) + endif() + if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/tf_plugin") + add_subdirectory(tf_plugin) + endif() + if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/onnx_plugin") + add_subdirectory(onnx_plugin) + endif() +endif() diff --git a/precision_Problem/Is_standard/framework/tf_plugin/CMakeLists.txt b/precision_Problem/Is_standard/framework/tf_plugin/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6aba5c207d3b85ad16fdea69dd813dd6cc371b1 --- /dev/null +++ b/precision_Problem/Is_standard/framework/tf_plugin/CMakeLists.txt @@ -0,0 +1,14 @@ + +aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} plugin_srcs) +add_library(cust_tf_parsers SHARED ${plugin_srcs}) +target_compile_definitions(cust_tf_parsers PRIVATE google=ascend_private) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_tf_parsers PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_tf_parsers PRIVATE intf_pub graph) +install(TARGETS cust_tf_parsers + LIBRARY DESTINATION packages/vendors/${vendor_name}/framework/tensorflow +) diff --git a/precision_Problem/Is_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc b/precision_Problem/Is_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc new file mode 100644 index 0000000000000000000000000000000000000000..bab9fa82344b81396870024ebaf61a0989f455c8 --- /dev/null +++ b/precision_Problem/Is_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc @@ -0,0 +1,23 @@ +/* Copyright (C) 2020-2021. Huawei Technologies Co., Ltd. All +rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the Apache License Version 2.0. + * You may not use this file except in compliance with the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * Apache License for more details at + * http://www.apache.org/licenses/LICENSE-2.0 + */ + +#include "register/register.h" + +namespace domi { +// register op info to GE +REGISTER_CUSTOM_OP("ReduceSum") + .FrameworkType(TENSORFLOW) // type: CAFFE, TENSORFLOW + .OriginOpType("ReduceSum") // name in tf module + .ParseParamsByOperatorFn(AutoMappingByOpFn); +} // namespace domi diff --git a/precision_Problem/Is_standard/op_host/CMakeLists.txt b/precision_Problem/Is_standard/op_host/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..40dd51cfac524b0a9607b7d8b2813edd2210c509 --- /dev/null +++ b/precision_Problem/Is_standard/op_host/CMakeLists.txt @@ -0,0 +1,82 @@ + +aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} ops_srcs) + +opbuild(OPS_SRC ${ops_srcs} + OUT_DIR ${ASCEND_AUTOGEN_PATH} +) + +add_library(cust_op_proto SHARED ${ops_srcs} ${ASCEND_AUTOGEN_PATH}/op_proto.cc) +target_compile_definitions(cust_op_proto PRIVATE OP_PROTO_LIB) +target_compile_options(cust_op_proto PRIVATE + -fvisibility=hidden +) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_op_proto PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_op_proto PRIVATE + intf_pub + exe_graph + register + tiling_api + -Wl,--whole-archive + rt2_registry + -Wl,--no-whole-archive +) +set_target_properties(cust_op_proto PROPERTIES OUTPUT_NAME + cust_opsproto_rt2.0 +) +add_library(cust_optiling SHARED ${ops_srcs}) +target_compile_definitions(cust_optiling PRIVATE OP_TILING_LIB) +target_compile_options(cust_optiling PRIVATE + -fvisibility=hidden +) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_optiling PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_optiling PRIVATE + intf_pub + exe_graph + register + tiling_api + -Wl,--whole-archive + rt2_registry + -Wl,--no-whole-archive +) +set_target_properties(cust_optiling PROPERTIES OUTPUT_NAME + cust_opmaster_rt2.0 +) + +file(GLOB aclnn_src ${ASCEND_AUTOGEN_PATH}/aclnn_*.cpp) +file(GLOB aclnn_inc ${ASCEND_AUTOGEN_PATH}/aclnn_*.h) +add_library(cust_opapi SHARED ${aclnn_src}) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_opapi PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_opapi PRIVATE intf_pub ascendcl nnopbase) + +add_custom_target(optiling_compat ALL + COMMAND ln -sf lib/linux/${CMAKE_SYSTEM_PROCESSOR}/$ + ${CMAKE_CURRENT_BINARY_DIR}/liboptiling.so +) + +install(TARGETS cust_op_proto + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_proto/lib/linux/${CMAKE_SYSTEM_PROCESSOR}) +install(FILES ${ASCEND_AUTOGEN_PATH}/op_proto.h + DESTINATION packages/vendors/${vendor_name}/op_proto/inc) +install(TARGETS cust_optiling + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_tiling/lib/linux/${CMAKE_SYSTEM_PROCESSOR}) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/liboptiling.so + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_tiling) +install(TARGETS cust_opapi + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_api/lib) +install(FILES ${aclnn_inc} + DESTINATION packages/vendors/${vendor_name}/op_api/include) diff --git a/precision_Problem/Is_standard/op_host/reduce_sum.cpp b/precision_Problem/Is_standard/op_host/reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..93baba23c3889cbb9cbcdcbf920ecc786c7de8e5 --- /dev/null +++ b/precision_Problem/Is_standard/op_host/reduce_sum.cpp @@ -0,0 +1,119 @@ + + +#include "reduce_sum_tiling.h" +#include "register/op_def_registry.h" + +#include "tiling/platform/platform_ascendc.h" +#include "graph/utils/type_utils.h" +#include "acl/acl.h" + +namespace optiling { +const uint32_t BLOCK_SIZE = 32; +const uint32_t BUFFER_NUM = 2; +static ge::graphStatus TilingFunc(gert::TilingContext* context) +{ + ReduceSumTilingData tiling; + + uint64_t ubSize; + auto ascendcPlatform = platform_ascendc::PlatformAscendC(context->GetPlatformInfo()); + ascendcPlatform.GetCoreMemSize(platform_ascendc::CoreMemType::UB, ubSize); + uint32_t dataType = 0; + ge::TypeUtils::GetDataTypeLength(context->GetInputDesc(0)->GetDataType(), dataType); + + + const gert::StorageShape* x1_shape = context->GetInputShape(0); + uint32_t size = x1_shape->GetStorageShape().GetDimNum(); + + uint16_t shape[10]; + for (int i = 0; i < x1_shape->GetStorageShape().GetDimNum(); i++){ + shape[i]=x1_shape->GetStorageShape().GetDim(i); + } + + +uint32_t alinum=32/dataType; +uint32_t copy_num=(shape[size-1]-1+alinum)/alinum*alinum; + + + + + + auto axes_tensor =context->GetInputTensor(1); + int32_t axis_size = axes_tensor->GetSize(); + std::cout<SetBlockDim(1); + tiling.SaveToBuffer(context->GetRawTilingData()->GetData(), context->GetRawTilingData()->GetCapacity()); + context->GetRawTilingData()->SetDataSize(tiling.GetDataSize()); + size_t *currentWorkspace = context->GetWorkspaceSizes(1); + currentWorkspace[0] = 0; + return ge::GRAPH_SUCCESS; +} +} + +namespace ge { +static ge::graphStatus InferShape(gert::InferShapeContext* context) +{ + const gert::Shape* x1_shape = context->GetInputShape(0); + gert::Shape* y_shape = context->GetOutputShape(0); + *y_shape = *x1_shape; + return GRAPH_SUCCESS; +} +static graphStatus InferDataType(gert::InferDataTypeContext* context) +{ + const auto inputDataType = context->GetInputDataType(0); + context->SetOutputDataType(0, inputDataType); + return ge::GRAPH_SUCCESS; +} +} + +namespace ops { +class ReduceSum : public OpDef { +public: + explicit ReduceSum(const char* name) : OpDef(name) + { + this->Input("x") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT, ge::DT_FLOAT16, ge::DT_INT32, ge::DT_INT8}) + .Format({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}) + .UnknownShapeFormat({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}); + this->Input("axis") + .ParamType(REQUIRED) + .DataType({ge::DT_INT32, ge::DT_INT32, ge::DT_INT32, ge::DT_INT32}) + .Format({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}) + .UnknownShapeFormat({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}); + this->Output("y") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT, ge::DT_FLOAT16, ge::DT_INT32, ge::DT_INT8}) + .Format({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}) + .UnknownShapeFormat({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}); + + this->Attr("keep_dims").AttrType(OPTIONAL).Bool(false); + this->Attr("ignore_nan").AttrType(OPTIONAL).Bool(false); + this->Attr("dtype").AttrType(OPTIONAL).String("float"); + + this->SetInferShape(ge::InferShape).SetInferDataType(ge::InferDataType); + + this->AICore() + .SetTiling(optiling::TilingFunc); + this->AICore().AddConfig("ascend310b"); + + } +}; + +OP_ADD(ReduceSum); +} + diff --git a/precision_Problem/Is_standard/op_host/reduce_sum_tiling.h b/precision_Problem/Is_standard/op_host/reduce_sum_tiling.h new file mode 100644 index 0000000000000000000000000000000000000000..46539b1d9f27a194be50a3a620ee958d8bdf1e9d --- /dev/null +++ b/precision_Problem/Is_standard/op_host/reduce_sum_tiling.h @@ -0,0 +1,19 @@ + +#include "register/tilingdata_base.h" + +namespace optiling { +BEGIN_TILING_DATA_DEF(ReduceSumTilingData) + TILING_DATA_FIELD_DEF(uint32_t, keep_dim); + TILING_DATA_FIELD_DEF(uint32_t, ignore); + TILING_DATA_FIELD_DEF(uint32_t, dtype); + + TILING_DATA_FIELD_DEF(uint32_t, dataType); + TILING_DATA_FIELD_DEF(uint32_t, size); + TILING_DATA_FIELD_DEF_ARR(uint16_t, 10,shape); + TILING_DATA_FIELD_DEF(uint32_t, axis_size); + TILING_DATA_FIELD_DEF(uint32_t, AlginNum); + +END_TILING_DATA_DEF; + +REGISTER_TILING_DATA_CLASS(ReduceSum, ReduceSumTilingData) +} diff --git a/precision_Problem/Is_standard/op_kernel/CMakeLists.txt b/precision_Problem/Is_standard/op_kernel/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c94a952da2058b785affa6784d78b87dfe9b3d7 --- /dev/null +++ b/precision_Problem/Is_standard/op_kernel/CMakeLists.txt @@ -0,0 +1,68 @@ +# set custom compile options +if ("${CMAKE_BUILD_TYPE}x" STREQUAL "Debugx") + add_ops_compile_options(ALL OPTIONS -g -O0) +endif() + +foreach(compute_unit ${ASCEND_COMPUTE_UNIT}) + + # generate aic-${compute_unit}-ops-info.json + add_ops_info_target(TARGET ops_info_gen_${compute_unit} + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core/${compute_unit}/aic-${compute_unit}-ops-info.json + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/config/${compute_unit} + ) + + # generate ascendc impl py once + if (NOT TARGET ascendc_impl_gen) + add_ops_impl_target(TARGET ascendc_impl_gen + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl + ) + endif() + + # dynamic shape binary compile + if (${ENABLE_BINARY_PACKAGE} AND NOT ${ENABLE_CROSS_COMPILE}) + add_bin_compile_target(TARGET ascendc_bin_${compute_unit} + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + ADP_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/dynamic + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/binary/${compute_unit} + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/kernel + COMPUTE_UNIT ${compute_unit} + ) + add_dependencies(ascendc_bin_${compute_unit} ascendc_impl_gen) + endif() + + if (${ENABLE_CROSS_COMPILE} AND ${ENABLE_BINARY_PACKAGE}) + add_cross_compile_target( + TARGET bin_${compute_unit} + OUT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../kernel + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/ + ) + endif() +endforeach() + +# generate npu_supported_ops.json +add_npu_support_target(TARGET npu_supported_ops + OPS_INFO_DIR ${ASCEND_AUTOGEN_PATH} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core + INSTALL_DIR packages/vendors/${vendor_name}/framework/${ASCEND_FRAMEWORK_TYPE} +) + +if(ENABLE_TEST AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/testcases) + add_subdirectory(testcases) +endif() + +# install kernel file +if (${ENABLE_SOURCE_PACKAGE}) + file(GLOB KERNEL_FILES + ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/*.h + ${CMAKE_CURRENT_SOURCE_DIR}/*.py + ) + install(FILES ${KERNEL_FILES} + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl/dynamic + ) +endif() diff --git a/precision_Problem/Is_standard/op_kernel/reduce_sum.cpp b/precision_Problem/Is_standard/op_kernel/reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..1d2aa96f538032c911f5e4519010848fa058c8fd --- /dev/null +++ b/precision_Problem/Is_standard/op_kernel/reduce_sum.cpp @@ -0,0 +1,85 @@ +#include "kernel_operator.h" +using namespace AscendC; + +/* + * Copyright (c) Huawei Technologies Co., Ltd. 2022-2023. All rights reserved. + * + * Function : z = x + y + * This sample is a very basic sample that implements vector add on Ascend plaform. + */ +#include "kernel_operator.h" +using namespace AscendC; + + +class KernelAdd +{ + + +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR axis, GM_ADDR y, uint32_t size, uint16_t *shape, uint32_t axes_size, uint32_t dataType) + { + + + xGm.SetGlobalBuffer((__gm__ half *)x, 32); + + + + yGm.SetGlobalBuffer((__gm__ half *)y, 1); + + + pipe.InitBuffer(inQueueX, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(outQueueY, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(tmp1, 2048 * sizeof(float)); + pipe.InitBuffer(tmp2, 2048 * sizeof(float)); + pipe.InitBuffer(tmp3, 2048 * sizeof(float)); + + } + __aicore__ inline void Act() + { + LocalTensor xLocal = inQueueX.AllocTensor(); + LocalTensor yLocal = outQueueY.AllocTensor(); + DataCopy(xLocal, xGm, 32); + + auto p1 = tmp1.Get(); + auto p2 = tmp2.Get(); + auto p3 = tmp3.Get(); + + Cast(p1, xLocal, RoundMode::CAST_NONE, 32); + Cast(p2, yLocal, RoundMode::CAST_NONE, 32); + + ReduceSum(p2, p1, p3, 32); + Cast(yLocal, p2, RoundMode::CAST_TRUNC, 32); + yGm.SetValue(0, yLocal.GetValue(0)); + + inQueueX.FreeTensor(xLocal); + outQueueY.FreeTensor(yLocal); + + } + + + +private: + TPipe pipe; + TQue inQueueX; + + TQue outQueueY; + + TBuf tmp1, tmp2, tmp3; + + GlobalTensor xGm; + GlobalTensor yGm; + +}; + +extern "C" __global__ __aicore__ void reduce_sum(GM_ADDR x, GM_ADDR axes, GM_ADDR y, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + KernelAdd op; + op.Init(x, axes, y, tiling_data.size, + tiling_data.shape, tiling_data.axis_size, + tiling_data.dataType); + op.Act(); +} diff --git a/precision_Problem/Is_standard/scripts/help.info b/precision_Problem/Is_standard/scripts/help.info new file mode 100644 index 0000000000000000000000000000000000000000..f4b28d57a8150f0df6c386473b7554c7d087c90f --- /dev/null +++ b/precision_Problem/Is_standard/scripts/help.info @@ -0,0 +1 @@ + --install-path Install operator package to specific dir path \ No newline at end of file diff --git a/precision_Problem/Is_standard/scripts/install.sh b/precision_Problem/Is_standard/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/precision_Problem/Is_standard/scripts/install.sh @@ -0,0 +1,318 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +QUIET="y" + +while true +do + case $1 in + --quiet) + QUIET="y" + shift + ;; + --install-path=*) + INSTALL_PATH=$(echo $1 | cut -d"=" -f2-) + INSTALL_PATH=${INSTALL_PATH%*/} + shift + ;; + --*) + shift + ;; + *) + break + ;; + esac +done + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [ -n "${INSTALL_PATH}" ]; then + if [[ ! "${INSTALL_PATH}" = /* ]]; then + log "[ERROR] use absolute path for --install-path argument" + exit 1 + fi + if [ ! -d ${INSTALL_PATH} ]; then + mkdir ${INSTALL_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${INSTALL_PATH} failed" + exit 1 + fi + fi + targetdir=${INSTALL_PATH} +elif [ -n "${ASCEND_CUSTOM_OPP_PATH}" ]; then + if [ ! -d ${ASCEND_CUSTOM_OPP_PATH} ]; then + mkdir -p ${ASCEND_CUSTOM_OPP_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${ASCEND_CUSTOM_OPP_PATH} failed" + fi + fi + targetdir=${ASCEND_CUSTOM_OPP_PATH} +else + if [ "x${ASCEND_OPP_PATH}" == "x" ]; then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 + fi + targetdir="${ASCEND_OPP_PATH}" +fi + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + has_same_file=-1 + for file_a in ${sourcedir}/$vendordir/$1/*; do + file_b=${file_a##*/}; + if [ "ls ${targetdir}/$vendordir/$1" = "" ]; then + log "[INFO] ${targetdir}/$vendordir/$1 is empty !!" + return 1 + fi + grep -q $file_b <<<`ls ${targetdir}/$vendordir/$1`; + if [[ $? -eq 0 ]]; then + echo -n "${file_b} " + has_same_file=0 + fi + done + if [ 0 -eq $has_same_file ]; then + if test $QUIET = "n"; then + echo "[INFO]: has old version in ${targetdir}/$vendordir/$1, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + + while true + do + read orn + if [ "$orn" = n ]; then + return 0 + elif [ "$orn" = m ]; then + break; + elif [ "$0rn" = r ]; then + [ -n "${targetdir}/$vendordir/$1/" ] && rm -rf "${targetdir}/$vendordir/$1"/* + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace or merge old ops $1 files .g....." + fi + + log "copy new ops $1 files ......" + if [ -d ${targetdir}/$vendordir/$1/ ]; then + chmod -R +w "$targetdir/$vendordir/$1/" >/dev/null 2>&1 + fi + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} +upgrade_proto() +{ + if [ ! -f ${sourcedir}/$vendordir/custom.proto ]; then + log "[INFO] no need to upgrade custom.proto files" + return 0 + fi + if [ ! -d ${targetdir}/$vendordir/framework/caffe ];then + log "[INFO] create ${targetdir}/$vendordir/framework/caffe." + mkdir -p ${targetdir}/$vendordir/framework/caffe + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/framework/caffe failed" + return 1 + fi + else + if [ -f ${targetdir}/$vendordir/framework/caffe/custom.proto ]; then + # 有老版本,判断是否要覆盖式安装 + if test $QUIET = "n"; then + echo "[INFO] ${targetdir}/$vendordir/framework/caffe has old version"\ + "custom.proto file. Do you want to replace? [y/n] " + + while true + do + read yn + if [ "$yn" = n ]; then + return 0 + elif [ "$yn" = y ]; then + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace old caffe.proto files ......" + fi + chmod -R +w "$targetdir/$vendordir/framework/caffe/" >/dev/null 2>&1 + cp -rf ${sourcedir}/$vendordir/custom.proto ${targetdir}/$vendordir/framework/caffe/ + if [ $? -ne 0 ];then + log "[ERROR] copy new custom.proto failed" + return 1 + fi + log "[INFO] copy custom.proto success" + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +delete_optiling_file() +{ + if [ ! -d ${targetdir}/vendors ];then + log "[INFO] $1 not exist, no need to uninstall" + return 0 + fi + sys_info=$(uname -m) + if [ ! -d ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/lib/linux/${sys_info} ];then + rm -rf ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/liboptiling.so + fi + return 0 +} + +log "[INFO] copy uninstall sh success" + +if [ ! -d ${targetdir}/vendors ];then + log "[INFO] create ${targetdir}/vendors." + mkdir -p ${targetdir}/vendors + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/vendors failed" + return 1 + fi +fi +chmod u+w ${targetdir}/vendors + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +delete_optiling_file op_impl +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +upgrade_proto +if [ $? -ne 0 ];then + exit 1 +fi + +# set the set_env.bash +if [ -n "${INSTALL_PATH}" ] && [ -d ${INSTALL_PATH} ]; then + _ASCEND_CUSTOM_OPP_PATH=${targetdir}/${vendordir} + bin_path="${_ASCEND_CUSTOM_OPP_PATH}/bin" + set_env_variable="#!/bin/bash\nexport ASCEND_CUSTOM_OPP_PATH=${_ASCEND_CUSTOM_OPP_PATH}:\${ASCEND_CUSTOM_OPP_PATH}" + if [ ! -d ${bin_path} ]; then + mkdir -p ${bin_path} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${bin_path} failed" + exit 1 + fi + fi + echo -e ${set_env_variable} > ${bin_path}/set_env.bash + if [ $? -ne 0 ]; then + log "[ERROR] write ASCEND_CUSTOM_OPP_PATH to set_env.bash failed" + exit 1 + else + log "[INFO] using requirements: when custom module install finished or before you run the custom module, \ + execute the command [ source ${bin_path}/set_env.bash ] to set the environment path" + fi +else + config_file=${targetdir}/vendors/config.ini + if [ ! -f ${config_file} ]; then + touch ${config_file} + chmod 640 ${config_file} + echo "load_priority=$vendor_name" > ${config_file} + if [ $? -ne 0 ];then + echo "echo load_priority failed" + exit 1 + fi + else + found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" + found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') + vendor=$(echo $found_vendor | tr -s ' ' ',') + if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" + fi + fi +fi + +chmod u-w ${targetdir}/vendors + +if [ -d ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/ ]; then + chmod -R 440 ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/* >/dev/null 2>&1 +fi +if [ -f ${targetdir}/ascend_install.info ]; then + chmod -R 440 ${targetdir}/ascend_install.info +fi +if [ -f ${targetdir}/scene.info ]; then + chmod -R 440 ${targetdir}/scene.info +fi +if [ -f ${targetdir}/version.info ]; then + chmod -R 440 ${targetdir}/version.info +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/Is_standard/scripts/upgrade.sh b/precision_Problem/Is_standard/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/precision_Problem/Is_standard/scripts/upgrade.sh @@ -0,0 +1,151 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [[ "x${ASCEND_OPP_PATH}" == "x" ]];then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 +fi + +targetdir=${ASCEND_OPP_PATH} + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + vendor_installed_dir=$(ls "$targetdir/vendors" 2> /dev/null) + for i in $vendor_installed_dir;do + vendor_installed_file=$(ls "$vendor_installed_dir/$vendor_name/$i" 2> /dev/null) + if [ "$i" = "$vendor_name" ] && [ "$vendor_installed_file" != "" ]; then + echo "[INFO]: $vendor_name custom opp package has been installed on the path $vendor_installed_dir, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + fi + while true + do + read mrn + if [ "$mrn" = m ]; then + break + elif [ "$mrn" = r ]; then + [ -n "$vendor_installed_file"] && rm -rf "$vendor_installed_file" + break + elif [ "$mrn" = n ]; then + return 0 + else + echo "[WARNING]: Input error, please input m or r or n to choose!" + fi + done + done + log "[INFO] replace old ops $1 files ......" + fi + + log "copy new ops $1 files ......" + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +log "[INFO] copy uninstall sh success" + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +config_file=${targetdir}/vendors/config.ini +found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" +found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') +vendor=$(echo $found_vendor | tr -s ' ' ',') +if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" +fi + +changemode() +{ + if [ -d ${targetdir} ];then + chmod -R 550 ${targetdir}>/dev/null 2>&1 + fi + + return 0 +} +echo "[ops_custom]changemode..." +#changemode +if [ $? -ne 0 ];then + exit 1 +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/No_standard/CMakeLists.txt b/precision_Problem/No_standard/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..584132d80993d309434fb1303de83910a1989aba --- /dev/null +++ b/precision_Problem/No_standard/CMakeLists.txt @@ -0,0 +1,69 @@ +cmake_minimum_required(VERSION 3.16.0) +project(opp) +if(ENABLE_CROSS_COMPILE) + if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL x86_64) + set(CROSS_COMPILE_PLATFORM aarch64) + else() + set(CROSS_COMPILE_PLATFORM x86_64) + endif() + set(PLATFORM ${CMAKE_SYSTEM_PROCESSOR}) + set(CMAKE_COMPILE_COMPILER_LIBRARY ${ASCEND_CANN_PACKAGE_PATH}/${PLATFORM}-linux/devlib/linux/${CROSS_COMPILE_PLATFORM}/) + set(CMAKE_COMPILE_RUNTIME_LIBRARY ${ASCEND_CANN_PACKAGE_PATH}/${PLATFORM}-linux/devlib/${CROSS_COMPILE_PLATFORM}/) + set(CMAKE_SYSTEM_PROCESSOR ${CROSS_COMPILE_PLATFORM}) + set(CMAKE_COMPILE ${CMAKE_CXX_COMPILER}) + set(CMAKE_CXX_COMPILER ${CMAKE_CROSS_PLATFORM_COMPILER}) +else() + set(CMAKE_COMPILE ${CMAKE_CXX_COMPILER}) +endif() + +include(cmake/config.cmake) +include(cmake/func.cmake) +include(cmake/intf.cmake) + +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/framework) + add_subdirectory(framework) +endif() +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/op_host) + add_subdirectory(op_host) +endif() +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/op_kernel) + add_subdirectory(op_kernel) +endif() +if(ENABLE_TEST AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/testcases) + add_subdirectory(testcases) +endif() + +# modify vendor_name in install.sh and upgrade.sh +add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/scripts/install.sh ${CMAKE_BINARY_DIR}/scripts/upgrade.sh + COMMAND mkdir -p ${CMAKE_BINARY_DIR}/scripts + COMMAND cp -r ${CMAKE_SOURCE_DIR}/scripts/* ${CMAKE_BINARY_DIR}/scripts/ + COMMAND sed -i "s/vendor_name=customize/vendor_name=${vendor_name}/g" ${CMAKE_BINARY_DIR}/scripts/* +) +add_custom_target(modify_vendor ALL DEPENDS ${CMAKE_BINARY_DIR}/scripts/install.sh ${CMAKE_BINARY_DIR}/scripts/upgrade.sh) +install(DIRECTORY ${CMAKE_BINARY_DIR}/scripts/ DESTINATION . FILE_PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_READ) + +install(FILES ${CMAKE_SOURCE_DIR}/custom.proto DESTINATION packages OPTIONAL) + +get_system_info(SYSTEM_INFO) + +# gen version.info +add_custom_target(gen_version_info ALL + COMMAND bash ${CMAKE_CURRENT_SOURCE_DIR}/cmake/util/gen_version_info.sh ${ASCEND_CANN_PACKAGE_PATH} ${CMAKE_CURRENT_BINARY_DIR} +) + +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/version.info + DESTINATION packages/vendors/${vendor_name}/) + +# CPack config +set(CPACK_PACKAGE_NAME ${CMAKE_PROJECT_NAME}) +set(CPACK_PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) +set(CPACK_PACKAGE_DESCRIPTION "CPack opp project") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CPack opp project") +set(CPACK_PACKAGE_DIRECTORY ${CMAKE_INSTALL_PREFIX}) +set(CPACK_PACKAGE_FILE_NAME "custom_opp_${SYSTEM_INFO}.run") +set(CPACK_GENERATOR External) +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_EXTERNAL_ENABLE_STAGING TRUE) +set(CPACK_EXTERNAL_PACKAGE_SCRIPT ${CMAKE_SOURCE_DIR}/cmake/makeself.cmake) +set(CPACK_EXTERNAL_BUILT_PACKAGES ${CPACK_PACKAGE_DIRECTORY}/_CPack_Packages/Linux/External/${CPACK_PACKAGE_FILE_NAME}/${CPACK_PACKAGE_FILE_NAME}) +include(CPack) diff --git a/precision_Problem/No_standard/CMakePresets.json b/precision_Problem/No_standard/CMakePresets.json new file mode 100644 index 0000000000000000000000000000000000000000..8b71810007d0ce1f0fa2d043738d3991d1d84cb5 --- /dev/null +++ b/precision_Problem/No_standard/CMakePresets.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "cmakeMinimumRequired": { + "major": 3, + "minor": 19, + "patch": 0 + }, + "configurePresets": [ + { + "name": "default", + "displayName": "Default Config", + "description": "Default build using Unix Makefiles generator", + "generator": "Unix Makefiles", + "binaryDir": "${sourceDir}/build_out", + "cacheVariables": { + "CMAKE_BUILD_TYPE": { + "type": "STRING", + "value": "Release" + }, + "ENABLE_SOURCE_PACKAGE": { + "type": "BOOL", + "value": "True" + }, + "ENABLE_BINARY_PACKAGE": { + "type": "BOOL", + "value": "True" + }, + "ASCEND_COMPUTE_UNIT": { + "type": "STRING", + "value": "ascend310b" + }, + "ENABLE_TEST": { + "type": "BOOL", + "value": "True" + }, + "vendor_name": { + "type": "STRING", + "value": "customize" + }, + "ASCEND_CANN_PACKAGE_PATH": { + "type": "PATH", + "value": "/usr/local/Ascend/ascend-toolkit/latest" + }, + "ASCEND_PYTHON_EXECUTABLE": { + "type": "STRING", + "value": "python3" + }, + "CMAKE_INSTALL_PREFIX": { + "type": "PATH", + "value": "${sourceDir}/build_out" + }, + "ENABLE_CROSS_COMPILE": { + "type": "BOOL", + "value": "False" + }, + "CMAKE_CROSS_PLATFORM_COMPILER": { + "type": "PATH", + "value": "/usr/bin/aarch64-linux-gnu-g++" + } + } + } + ] +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build.sh b/precision_Problem/No_standard/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..27d1968d1ce027ac0a047357957b12edf96d1195 --- /dev/null +++ b/precision_Problem/No_standard/build.sh @@ -0,0 +1,80 @@ +#!/bin/bash +script_path=$(realpath $(dirname $0)) + + +mkdir -p build_out +rm -rf build_out/* +cd build_out + +opts=$(python3 $script_path/cmake/util/preset_parse.py $script_path/CMakePresets.json) +ENABLE_CROSS="-DENABLE_CROSS_COMPILE=True" +ENABLE_BINARY="-DENABLE_BINARY_PACKAGE=True" +cmake_version=$(cmake --version | grep "cmake version" | awk '{print $3}') + +cmake_run_package() +{ + target=$1 + cmake --build . --target $target -j16 + if [ $? -ne 0 ]; then exit 1; fi + + if [ $target = "package" ]; then + if test -d ./op_kernel/binary ; then + ./cust*.run + if [ $? -ne 0 ]; then exit 1; fi + cmake --build . --target binary -j16 + if [ $? -ne 0 ]; then + echo "[ERROR] Kernel compile failed, the run package will not be generated." + rm -rf ./cust*.run && rm -rf ./cust*.run.json && exit 1; + fi + cmake --build . --target $target -j16 + fi + fi +} + +if [[ $opts =~ $ENABLE_CROSS ]] && [[ $opts =~ $ENABLE_BINARY ]] +then + target=package + if [ "$1"x != ""x ]; then target=$1; fi + if [ "$cmake_version" \< "3.19.0" ] ; then + cmake .. $opts -DENABLE_CROSS_COMPILE=0 + else + cmake .. --preset=default -DENABLE_CROSS_COMPILE=0 + fi + cmake_run_package $target + cp -r kernel ../ + rm -rf * + if [ "$cmake_version" \< "3.19.0" ] ; then + cmake .. $opts + else + cmake .. --preset=default + fi + + cmake --build . --target $target -j16 + if [ $? -ne 0 ]; then + echo "[ERROR] Kernel compile failed, the run package will not be generated." + rm -rf ./cust*.run && rm -rf ./cust*.run.json && exit 1; + fi + if [ $target = "package" ]; then + if test -d ./op_kernel/binary ; then + ./cust*.run + fi + fi + rm -rf ../kernel + +else + target=package + if [ "$1"x != ""x ]; then target=$1; fi + if [ "$cmake_version" \< "3.19.0" ] ; then + cmake .. $opts + else + cmake .. --preset=default + fi + cmake_run_package $target +fi + + +# for debug +# cd build_out +# make +# cpack +# verbose append -v \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/CMakeCache.txt b/precision_Problem/No_standard/build_out/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be85a726d8b7ce446b14bd60acffb611441b5fb --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeCache.txt @@ -0,0 +1,425 @@ +# This is the CMakeCache file. +# For build in directory: /Package_Cann/test/No_standard/build_out +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ASCEND_CANN_PACKAGE_PATH:PATH=/usr/local/Ascend/ascend-toolkit/latest + +//No help, variable specified on the command line. +ASCEND_COMPUTE_UNIT:STRING=ascend310b + +//No help, variable specified on the command line. +ASCEND_PYTHON_EXECUTABLE:STRING=python3 + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//No help, variable specified on the command line. +CMAKE_CROSS_PLATFORM_COMPILER:PATH=/usr/bin/aarch64-linux-gnu-g++ + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//No help, variable specified on the command line. +CMAKE_INSTALL_PREFIX:PATH=/Package_Cann/test/No_standard/build_out + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=opp + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Enable to build RPM source packages +CPACK_SOURCE_RPM:BOOL=OFF + +//Enable to build TBZ2 source packages +CPACK_SOURCE_TBZ2:BOOL=ON + +//Enable to build TGZ source packages +CPACK_SOURCE_TGZ:BOOL=ON + +//Enable to build TXZ source packages +CPACK_SOURCE_TXZ:BOOL=ON + +//Enable to build TZ source packages +CPACK_SOURCE_TZ:BOOL=ON + +//Enable to build ZIP source packages +CPACK_SOURCE_ZIP:BOOL=OFF + +//No help, variable specified on the command line. +ENABLE_BINARY_PACKAGE:BOOL=True + +//No help, variable specified on the command line. +ENABLE_CROSS_COMPILE:BOOL=False + +//No help, variable specified on the command line. +ENABLE_SOURCE_PACKAGE:BOOL=True + +//No help, variable specified on the command line. +ENABLE_TEST:BOOL=True + +//Value Computed by CMake +opp_BINARY_DIR:STATIC=/Package_Cann/test/No_standard/build_out + +//Value Computed by CMake +opp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +opp_SOURCE_DIR:STATIC=/Package_Cann/test/No_standard + +//No help, variable specified on the command line. +vendor_name:STRING=customize + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Package_Cann/test/No_standard/build_out +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/Package_Cann/test/No_standard +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=5 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_RPM +CPACK_SOURCE_RPM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TBZ2 +CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TGZ +CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TXZ +CPACK_SOURCE_TXZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TZ +CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_ZIP +CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1 + diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.10.0+") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.10.0+") +set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64") + + + +set(CMAKE_SYSTEM "Linux-5.10.0+") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.10.0+") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,803 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,791 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/precision_Problem/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..84340a0327a6e9ed0df4adb9ecac6ffda6c87025 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Package_Cann/test/No_standard") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Package_Cann/test/No_standard/build_out") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/CMakeOutput.log b/precision_Problem/No_standard/build_out/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..2a545e83e7a48afcebc68fbdecad01d26e9018d2 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/CMakeOutput.log @@ -0,0 +1,437 @@ +The system is: Linux - 5.10.0+ - aarch64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/Package_Cann/test/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/Package_Cann/test/No_standard/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c5e4f/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c5e4f.dir/build.make CMakeFiles/cmTC_c5e4f.dir/build +gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/' + /usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c5e4f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccF1G1lj.s +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/aarch64-linux-gnu/11/include + /usr/local/include + /usr/include/aarch64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o /tmp/ccF1G1lj.s +GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_c5e4f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5e4f.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -o cmTC_c5e4f +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5e4f' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c5e4f.' + /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvPBbw9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_c5e4f /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5e4f' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c5e4f.' +gmake[1]: Leaving directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/aarch64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/aarch64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c5e4f/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c5e4f.dir/build.make CMakeFiles/cmTC_c5e4f.dir/build] + ignore line: [gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c5e4f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccF1G1lj.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/aarch64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o /tmp/ccF1G1lj.s] + ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_c5e4f] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5e4f.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -o cmTC_c5e4f ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5e4f' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c5e4f.'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvPBbw9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_c5e4f /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccvPBbw9.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_c5e4f] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_c5e4f.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_fd186/fast && /usr/bin/gmake -f CMakeFiles/cmTC_fd186.dir/build.make CMakeFiles/cmTC_fd186.dir/build +gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/' + /usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_fd186.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccxYMiiS.s +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11" +ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/11 + /usr/include/aarch64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/aarch64-linux-gnu/11/include + /usr/local/include + /usr/include/aarch64-linux-gnu + /usr/include +End of search list. +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 3e6e780af1232722b47e0979fda82402 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxYMiiS.s +GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_fd186 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd186.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_fd186 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_fd186' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_fd186.' + /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjc2MCu.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_fd186 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_fd186' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_fd186.' +gmake[1]: Leaving directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/aarch64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/aarch64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/aarch64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/aarch64-linux-gnu/c++/11] ==> [/usr/include/aarch64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_fd186/fast && /usr/bin/gmake -f CMakeFiles/cmTC_fd186.dir/build.make CMakeFiles/cmTC_fd186.dir/build] + ignore line: [gmake[1]: Entering directory '/Package_Cann/test/No_standard/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_fd186.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccxYMiiS.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/aarch64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/aarch64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 3e6e780af1232722b47e0979fda82402] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxYMiiS.s] + ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_fd186] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd186.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_fd186 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_fd186' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_fd186.'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjc2MCu.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_fd186 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccjc2MCu.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_fd186] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_fd186.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/CMakeRuleHashes.txt b/precision_Problem/No_standard/build_out/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..3203f38acf8b34f93ef5fb37eac10a752a7b821b --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,18 @@ +# Hashes of file build rules. +fc49c36149720c74e3d4468798eba7b1 CMakeFiles/gen_version_info +106f4d5d8ed098670b9c384a316751e8 CMakeFiles/modify_vendor +c31e8771e27da55409d482fa28ad0d90 op_host/CMakeFiles/optiling_compat +d1a8db870d720ecb87278659a945ea2f op_kernel/CMakeFiles/ascendc_bin_ascend310b +101dfcdbaf1073ff487e946f5a8efff8 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +ac2562a204adb2b3ed75b44701ca7dc7 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0 +7c88e9e2f03c95e5b8d45fc36ff6aa29 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1 +fbfea8cec4c9072c969387d7f258d9f8 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2 +ebd53830620e349f320cb5b1c9832b24 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3 +858f4f53e024605f54ea6fcb1cb63350 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy +43d7f41cd2162bb770240c062cfef892 op_kernel/CMakeFiles/ascendc_impl_gen +43d7f41cd2162bb770240c062cfef892 op_kernel/CMakeFiles/npu_supported_ops +43d7f41cd2162bb770240c062cfef892 op_kernel/CMakeFiles/ops_info_gen_ascend310b +4d18c7c06f5999c6bb303693943923c0 op_kernel/tbe/.impl_timestamp +046f50afef67fbb6d968a55549df2185 op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +da76942fdfa458dc97491d13b6493bfd op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +74b470842ccef39c1657faa217d342eb scripts/install.sh diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/Makefile.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f06127479a218fb96edb87ee3490a59a2be08537 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/Makefile.cmake @@ -0,0 +1,155 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeSystem.cmake" + "../cmake/config.cmake" + "../cmake/func.cmake" + "../cmake/intf.cmake" + "../framework/CMakeLists.txt" + "../framework/tf_plugin/CMakeLists.txt" + "../op_host/CMakeLists.txt" + "../op_kernel/CMakeLists.txt" + "/usr/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.22/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.22/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.22/Modules/CPack.cmake" + "/usr/share/cmake-3.22/Modules/CPackComponent.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-3.22/Templates/CPackConfig.cmake.in" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.22.1/CMakeSystem.cmake" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CPackConfig.cmake" + "CPackSourceConfig.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "framework/CMakeFiles/CMakeDirectoryInformation.cmake" + "framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake" + "op_host/CMakeFiles/CMakeDirectoryInformation.cmake" + "op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/modify_vendor.dir/DependInfo.cmake" + "CMakeFiles/gen_version_info.dir/DependInfo.cmake" + "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake" + "op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake" + "op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake" + "op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake" + "op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/binary.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake" + ) diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/Makefile2 b/precision_Problem/No_standard/build_out/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..2d78095bba0fedd1eef9484436f7b2ccd120d6f9 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/Makefile2 @@ -0,0 +1,649 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/modify_vendor.dir/all +all: CMakeFiles/gen_version_info.dir/all +all: framework/all +all: op_host/all +all: op_kernel/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: framework/preinstall +preinstall: op_host/preinstall +preinstall: op_kernel/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/modify_vendor.dir/clean +clean: CMakeFiles/gen_version_info.dir/clean +clean: framework/clean +clean: op_host/clean +clean: op_kernel/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory framework + +# Recursive "all" directory target. +framework/all: framework/tf_plugin/all +.PHONY : framework/all + +# Recursive "preinstall" directory target. +framework/preinstall: framework/tf_plugin/preinstall +.PHONY : framework/preinstall + +# Recursive "clean" directory target. +framework/clean: framework/tf_plugin/clean +.PHONY : framework/clean + +#============================================================================= +# Directory level rules for directory framework/tf_plugin + +# Recursive "all" directory target. +framework/tf_plugin/all: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all +.PHONY : framework/tf_plugin/all + +# Recursive "preinstall" directory target. +framework/tf_plugin/preinstall: +.PHONY : framework/tf_plugin/preinstall + +# Recursive "clean" directory target. +framework/tf_plugin/clean: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean +.PHONY : framework/tf_plugin/clean + +#============================================================================= +# Directory level rules for directory op_host + +# Recursive "all" directory target. +op_host/all: op_host/CMakeFiles/cust_op_proto.dir/all +op_host/all: op_host/CMakeFiles/cust_optiling.dir/all +op_host/all: op_host/CMakeFiles/cust_opapi.dir/all +op_host/all: op_host/CMakeFiles/optiling_compat.dir/all +.PHONY : op_host/all + +# Recursive "preinstall" directory target. +op_host/preinstall: +.PHONY : op_host/preinstall + +# Recursive "clean" directory target. +op_host/clean: op_host/CMakeFiles/cust_op_proto.dir/clean +op_host/clean: op_host/CMakeFiles/cust_optiling.dir/clean +op_host/clean: op_host/CMakeFiles/cust_opapi.dir/clean +op_host/clean: op_host/CMakeFiles/optiling_compat.dir/clean +.PHONY : op_host/clean + +#============================================================================= +# Directory level rules for directory op_kernel + +# Recursive "all" directory target. +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all +op_kernel/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all +op_kernel/all: op_kernel/CMakeFiles/npu_supported_ops.dir/all +.PHONY : op_kernel/all + +# Recursive "preinstall" directory target. +op_kernel/preinstall: +.PHONY : op_kernel/preinstall + +# Recursive "clean" directory target. +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/binary.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/npu_supported_ops.dir/clean +.PHONY : op_kernel/clean + +#============================================================================= +# Target rules for target CMakeFiles/modify_vendor.dir + +# All Build rule for target. +CMakeFiles/modify_vendor.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=11 "Built target modify_vendor" +.PHONY : CMakeFiles/modify_vendor.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/modify_vendor.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : CMakeFiles/modify_vendor.dir/rule + +# Convenience name for target. +modify_vendor: CMakeFiles/modify_vendor.dir/rule +.PHONY : modify_vendor + +# clean rule for target. +CMakeFiles/modify_vendor.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/clean +.PHONY : CMakeFiles/modify_vendor.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gen_version_info.dir + +# All Build rule for target. +CMakeFiles/gen_version_info.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target gen_version_info" +.PHONY : CMakeFiles/gen_version_info.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gen_version_info.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : CMakeFiles/gen_version_info.dir/rule + +# Convenience name for target. +gen_version_info: CMakeFiles/gen_version_info.dir/rule +.PHONY : gen_version_info + +# clean rule for target. +CMakeFiles/gen_version_info.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/clean +.PHONY : CMakeFiles/gen_version_info.dir/clean + +#============================================================================= +# Target rules for target framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir + +# All Build rule for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all: + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=9,10 "Built target cust_tf_parsers" +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + +# Build rule for subdir invocation for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule + +# Convenience name for target. +cust_tf_parsers: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule +.PHONY : cust_tf_parsers + +# clean rule for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean: + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/cust_op_proto.dir + +# All Build rule for target. +op_host/CMakeFiles/cust_op_proto.dir/all: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=2,3,4 "Built target cust_op_proto" +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/cust_op_proto.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/rule + +# Convenience name for target. +cust_op_proto: op_host/CMakeFiles/cust_op_proto.dir/rule +.PHONY : cust_op_proto + +# clean rule for target. +op_host/CMakeFiles/cust_op_proto.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/clean +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/cust_optiling.dir + +# All Build rule for target. +op_host/CMakeFiles/cust_optiling.dir/all: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=7,8 "Built target cust_optiling" +.PHONY : op_host/CMakeFiles/cust_optiling.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/cust_optiling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/cust_optiling.dir/rule + +# Convenience name for target. +cust_optiling: op_host/CMakeFiles/cust_optiling.dir/rule +.PHONY : cust_optiling + +# clean rule for target. +op_host/CMakeFiles/cust_optiling.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/clean +.PHONY : op_host/CMakeFiles/cust_optiling.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/cust_opapi.dir + +# All Build rule for target. +op_host/CMakeFiles/cust_opapi.dir/all: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=5,6 "Built target cust_opapi" +.PHONY : op_host/CMakeFiles/cust_opapi.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/cust_opapi.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/cust_opapi.dir/rule + +# Convenience name for target. +cust_opapi: op_host/CMakeFiles/cust_opapi.dir/rule +.PHONY : cust_opapi + +# clean rule for target. +op_host/CMakeFiles/cust_opapi.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/clean +.PHONY : op_host/CMakeFiles/cust_opapi.dir/clean + +#============================================================================= +# Target rules for target op_host/CMakeFiles/optiling_compat.dir + +# All Build rule for target. +op_host/CMakeFiles/optiling_compat.dir/all: op_host/CMakeFiles/cust_optiling.dir/all + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/depend + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target optiling_compat" +.PHONY : op_host/CMakeFiles/optiling_compat.dir/all + +# Build rule for subdir invocation for target. +op_host/CMakeFiles/optiling_compat.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_host/CMakeFiles/optiling_compat.dir/rule + +# Convenience name for target. +optiling_compat: op_host/CMakeFiles/optiling_compat.dir/rule +.PHONY : optiling_compat + +# clean rule for target. +op_host/CMakeFiles/optiling_compat.dir/clean: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/clean +.PHONY : op_host/CMakeFiles/optiling_compat.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=13 "Built target ops_info_gen_ascend310b" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule +.PHONY : ops_info_gen_ascend310b + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_impl_gen.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=1 "Built target ascendc_impl_gen" +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule + +# Convenience name for target. +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule +.PHONY : ascendc_impl_gen + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/binary.dir + +# All Build rule for target. +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target binary" +.PHONY : op_kernel/CMakeFiles/binary.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/binary.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/binary.dir/rule + +# Convenience name for target. +binary: op_kernel/CMakeFiles/binary.dir/rule +.PHONY : binary + +# clean rule for target. +op_kernel/CMakeFiles/binary.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/clean +.PHONY : op_kernel/CMakeFiles/binary.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule +.PHONY : ascendc_bin_ascend310b + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_1" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_2" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_reduce_sum_3" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/npu_supported_ops.dir + +# All Build rule for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=12 "Built target npu_supported_ops" +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/rule + +# Convenience name for target. +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/rule +.PHONY : npu_supported_ops + +# clean rule for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/clean +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/TargetDirectories.txt b/precision_Problem/No_standard/build_out/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..50db8e5d633dad28b9699001e9fe50e75cbbd9a1 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,58 @@ +/Package_Cann/test/No_standard/build_out/CMakeFiles/modify_vendor.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/gen_version_info.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/framework/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/install/strip.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/binary.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/package.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/package_source.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/install.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/install/local.dir +/Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/cmake.check_cache b/precision_Problem/No_standard/build_out/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/build.make b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6c2bea2055c69a25cc6f67a9d88791f5e453ee0c --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for gen_version_info. + +# Include any custom commands dependencies for this target. +include CMakeFiles/gen_version_info.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gen_version_info.dir/progress.make + +CMakeFiles/gen_version_info: + bash /Package_Cann/test/No_standard/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Package_Cann/test/No_standard/build_out + +gen_version_info: CMakeFiles/gen_version_info +gen_version_info: CMakeFiles/gen_version_info.dir/build.make +.PHONY : gen_version_info + +# Rule to build all files generated by this target. +CMakeFiles/gen_version_info.dir/build: gen_version_info +.PHONY : CMakeFiles/gen_version_info.dir/build + +CMakeFiles/gen_version_info.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gen_version_info.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gen_version_info.dir/clean + +CMakeFiles/gen_version_info.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/gen_version_info.dir/depend + diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4183a837bc0dec14a4def868f73d30454795d838 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/gen_version_info" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/gen_version_info.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..94061306968c7012026090d774e6ed8954710fe1 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for gen_version_info. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..714ce8ff0ea68770397b4b735a816647351f4c4c --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for gen_version_info. diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/progress.make b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/gen_version_info.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7505cee3629c3d05535ba5a24bc8c1bb1189f0c2 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Package_Cann/test/No_standard/build_out/scripts/upgrade.sh" "/Package_Cann/test/No_standard/build_out/scripts/install.sh" + ) + + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/build.make b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3e2c1ad3d773ce09c7ad6fd7fb5127a54b67f6a3 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/build.make @@ -0,0 +1,98 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for modify_vendor. + +# Include any custom commands dependencies for this target. +include CMakeFiles/modify_vendor.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/modify_vendor.dir/progress.make + +CMakeFiles/modify_vendor: scripts/install.sh +CMakeFiles/modify_vendor: scripts/upgrade.sh + +scripts/install.sh: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Package_Cann/test/No_standard/build_out/scripts + cp -r /Package_Cann/test/No_standard/scripts/* /Package_Cann/test/No_standard/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Package_Cann/test/No_standard/build_out/scripts/* + +scripts/upgrade.sh: scripts/install.sh + @$(CMAKE_COMMAND) -E touch_nocreate scripts/upgrade.sh + +modify_vendor: CMakeFiles/modify_vendor +modify_vendor: scripts/install.sh +modify_vendor: scripts/upgrade.sh +modify_vendor: CMakeFiles/modify_vendor.dir/build.make +.PHONY : modify_vendor + +# Rule to build all files generated by this target. +CMakeFiles/modify_vendor.dir/build: modify_vendor +.PHONY : CMakeFiles/modify_vendor.dir/build + +CMakeFiles/modify_vendor.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/modify_vendor.dir/cmake_clean.cmake +.PHONY : CMakeFiles/modify_vendor.dir/clean + +CMakeFiles/modify_vendor.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/modify_vendor.dir/depend + diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..563285175969cc11e838c67e32b7fd052a517b5f --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/modify_vendor" + "scripts/install.sh" + "scripts/upgrade.sh" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/modify_vendor.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bda5864a979e6a287be963ee99667bd4c0d2ed79 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for modify_vendor. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4290d3f2e262181b1ffff8509a18a20ec4278023 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for modify_vendor. diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/progress.make b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..27952ed76a534aed5b8a5fa4bfd9bb2d3e51eeba --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/modify_vendor.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 11 + diff --git a/precision_Problem/No_standard/build_out/CMakeFiles/progress.marks b/precision_Problem/No_standard/build_out/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..b1bd38b62a0800a4f6a80c34e21c5acffae52c7e --- /dev/null +++ b/precision_Problem/No_standard/build_out/CMakeFiles/progress.marks @@ -0,0 +1 @@ +13 diff --git a/precision_Problem/No_standard/build_out/CPackConfig.cmake b/precision_Problem/No_standard/build_out/CPackConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5c0dc704d668711c3a14d293f1eec035e50fd1f5 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CPackConfig.cmake @@ -0,0 +1,71 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BUILD_SOURCE_DIRS "/Package_Cann/test/No_standard;/Package_Cann/test/No_standard/build_out") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "opp built using CMake") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_ENABLE_STAGING "TRUE") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Package_Cann/test/No_standard/cmake/makeself.cmake") +set(CPACK_GENERATOR "External") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Package_Cann/test/No_standard/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "opp 0.1.1") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION "CPack opp project") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CPack opp project") +set(CPACK_PACKAGE_DIRECTORY "/Package_Cann/test/No_standard/build_out") +set(CPACK_PACKAGE_FILE_NAME "custom_opp_ubuntu_aarch64.run") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "opp 0.1.1") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "opp 0.1.1") +set(CPACK_PACKAGE_NAME "opp") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.1.1") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.22/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.22/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/Package_Cann/test/No_standard/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/precision_Problem/No_standard/build_out/CPackSourceConfig.cmake b/precision_Problem/No_standard/build_out/CPackSourceConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8e8d547faab8602bd484ed70e6fd7515ef52c696 --- /dev/null +++ b/precision_Problem/No_standard/build_out/CPackSourceConfig.cmake @@ -0,0 +1,79 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BUILD_SOURCE_DIRS "/Package_Cann/test/No_standard;/Package_Cann/test/No_standard/build_out") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "opp built using CMake") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_ENABLE_STAGING "TRUE") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Package_Cann/test/No_standard/cmake/makeself.cmake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INSTALLED_DIRECTORIES "/Package_Cann/test/No_standard;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "opp 0.1.1") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION "CPack opp project") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CPack opp project") +set(CPACK_PACKAGE_DIRECTORY "/Package_Cann/test/No_standard/build_out") +set(CPACK_PACKAGE_FILE_NAME "opp-0.1.1-Source") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "opp 0.1.1") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "opp 0.1.1") +set(CPACK_PACKAGE_NAME "opp") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.1.1") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.22/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.22/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/Package_Cann/test/No_standard;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "opp-0.1.1-Source") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/Package_Cann/test/No_standard/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/precision_Problem/No_standard/build_out/Makefile b/precision_Problem/No_standard/build_out/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..4d55c2f88860a01e9186572851342a807e6c9709 --- /dev/null +++ b/precision_Problem/No_standard/build_out/Makefile @@ -0,0 +1,463 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named modify_vendor + +# Build rule for target. +modify_vendor: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 modify_vendor +.PHONY : modify_vendor + +# fast build rule for target. +modify_vendor/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/modify_vendor.dir/build.make CMakeFiles/modify_vendor.dir/build +.PHONY : modify_vendor/fast + +#============================================================================= +# Target rules for targets named gen_version_info + +# Build rule for target. +gen_version_info: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gen_version_info +.PHONY : gen_version_info + +# fast build rule for target. +gen_version_info/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gen_version_info.dir/build.make CMakeFiles/gen_version_info.dir/build +.PHONY : gen_version_info/fast + +#============================================================================= +# Target rules for targets named cust_tf_parsers + +# Build rule for target. +cust_tf_parsers: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_tf_parsers +.PHONY : cust_tf_parsers + +# fast build rule for target. +cust_tf_parsers/fast: + $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build +.PHONY : cust_tf_parsers/fast + +#============================================================================= +# Target rules for targets named cust_op_proto + +# Build rule for target. +cust_op_proto: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_op_proto +.PHONY : cust_op_proto + +# fast build rule for target. +cust_op_proto/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build +.PHONY : cust_op_proto/fast + +#============================================================================= +# Target rules for targets named cust_optiling + +# Build rule for target. +cust_optiling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_optiling +.PHONY : cust_optiling + +# fast build rule for target. +cust_optiling/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build +.PHONY : cust_optiling/fast + +#============================================================================= +# Target rules for targets named cust_opapi + +# Build rule for target. +cust_opapi: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cust_opapi +.PHONY : cust_opapi + +# fast build rule for target. +cust_opapi/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build +.PHONY : cust_opapi/fast + +#============================================================================= +# Target rules for targets named optiling_compat + +# Build rule for target. +optiling_compat: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 optiling_compat +.PHONY : optiling_compat + +# fast build rule for target. +optiling_compat/fast: + $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build +.PHONY : optiling_compat/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend310b + +# Build rule for target. +ops_info_gen_ascend310b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend310b +.PHONY : ops_info_gen_ascend310b + +# fast build rule for target. +ops_info_gen_ascend310b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build +.PHONY : ops_info_gen_ascend310b/fast + +#============================================================================= +# Target rules for targets named ascendc_impl_gen + +# Build rule for target. +ascendc_impl_gen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_impl_gen +.PHONY : ascendc_impl_gen + +# fast build rule for target. +ascendc_impl_gen/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build +.PHONY : ascendc_impl_gen/fast + +#============================================================================= +# Target rules for targets named binary + +# Build rule for target. +binary: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 binary +.PHONY : binary + +# fast build rule for target. +binary/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build +.PHONY : binary/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b + +# Build rule for target. +ascendc_bin_ascend310b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b +.PHONY : ascendc_bin_ascend310b + +# fast build rule for target. +ascendc_bin_ascend310b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build +.PHONY : ascendc_bin_ascend310b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend310b_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_gen_ops_config +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310b_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310b_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_copy + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_copy +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_0 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_0 +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_0/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_1 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_1 +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_1/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_1/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_2 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_2 +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_2/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_2/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_reduce_sum_3 + +# Build rule for target. +ascendc_bin_ascend310b_reduce_sum_3: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_reduce_sum_3 +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_3/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_3/fast + +#============================================================================= +# Target rules for targets named npu_supported_ops + +# Build rule for target. +npu_supported_ops: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 npu_supported_ops +.PHONY : npu_supported_ops + +# fast build rule for target. +npu_supported_ops/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build +.PHONY : npu_supported_ops/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... ascendc_bin_ascend310b" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310b_reduce_sum_0" + @echo "... ascendc_bin_ascend310b_reduce_sum_1" + @echo "... ascendc_bin_ascend310b_reduce_sum_2" + @echo "... ascendc_bin_ascend310b_reduce_sum_3" + @echo "... ascendc_bin_ascend310b_reduce_sum_copy" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... gen_version_info" + @echo "... modify_vendor" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... optiling_compat" + @echo "... cust_op_proto" + @echo "... cust_opapi" + @echo "... cust_optiling" + @echo "... cust_tf_parsers" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..54b3f0bb85d7d5b3b3bc46f0ecb2ea1b3cf12ade --- /dev/null +++ b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json @@ -0,0 +1,26 @@ +{ + "componentGroups" : {}, + "components" : {}, + "errorOnAbsoluteInstallDestination" : false, + "formatVersionMajor" : 1, + "formatVersionMinor" : 0, + "installationTypes" : {}, + "packageDescriptionFile" : "/usr/share/cmake-3.22/Templates/CPack.GenericDescription.txt", + "packageDescriptionSummary" : "CPack opp project", + "packageName" : "opp", + "packageVersion" : "0.1.1", + "projects" : + [ + { + "component" : "ALL", + "components" : [], + "directory" : "/Package_Cann/test/No_standard/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..68064786722235034ed8b67ce532cce276c8dec0 --- /dev/null +++ b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,1040 @@ +#!/bin/bash +# This script was generated using Makeself 2.4.5 +# The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL) +# 2022.3.19-Modified the MS_Help function and some options +# Huawei Technologies Co., Ltd. + +ORIG_UMASK=`umask` + +CRCsum="3041702791" +MD5="00000000000000000000000000000000" +SHA="83564fdb0efb6398c2c16910aa031cf959b4e60afe89867f33033a9c0e1bdeaa" +SIGNATURE="" +TMPROOT=${TMPDIR:="$HOME"} +if ! test -d "$TMPROOT"; then + TMPROOT="$PWD" +fi +export TMPDIR="$TMPROOT" +USER_PWD="$PWD" +if ! test -d "$USER_PWD"; then + exit 1 +fi +export USER_PWD +ARCHIVE_DIR=`dirname "$0"` +export ARCHIVE_DIR + +name_of_file="$0 " +pwd_of_file="$PWD" +label="version:1.0" +script="./install.sh" +scriptargs="" +cleanup_script="" +licensetxt="" +helpheader=' --install-path Install operator package to specific dir path +' +targetdir="makeself-397763-20240915013443" +filesizes="132381" +totalsize="132381" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="672" + +print_cmd_arg="" +if type printf > /dev/null; then + print_cmd="printf" +elif test -x /usr/ucb/echo; then + print_cmd="/usr/ucb/echo" +else + print_cmd="echo" +fi + +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:$PATH + export PATH +fi + +if test -d /usr/sfw/bin; then + PATH=$PATH:/usr/sfw/bin + export PATH +fi + +unset CDPATH + +MS_Printf() +{ + $print_cmd $print_cmd_arg "$1" +} + +MS_PrintLicense() +{ + PAGER=${PAGER:=more} + if test x"$licensetxt" != x; then + PAGER_PATH=`exec <&- 2>&-; which $PAGER || command -v $PAGER || type $PAGER` + if test -x "$PAGER_PATH"; then + echo "$licensetxt" | $PAGER + else + echo "$licensetxt" + fi + if test x"$accept" != xy; then + while true + do + MS_Printf "Please type y to accept, n otherwise: " + read yn + if test x"$yn" = xn; then + keep=n + eval $finish; exit 1 + break; + elif test x"$yn" = xy; then + break; + fi + done + fi + fi +} + +MS_diskspace() +{ + ( + df -kP "$1" | tail -1 | awk '{ if ($4 ~ /%/) {print $3} else {print $4} }' + ) +} + +MS_dd() +{ + blocks=`expr $3 / 1024` + bytes=`expr $3 % 1024` + # Test for ibs, obs and conv feature + if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then + dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ + { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ + test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null + else + dd if="$1" bs=$2 skip=1 2> /dev/null + fi +} + +MS_dd_Progress() +{ + if test x"$noprogress" = xy; then + MS_dd "$@" + return $? + fi + file="$1" + offset=$2 + length=$3 + pos=0 + bsize=4194304 + while test $bsize -gt $length; do + bsize=`expr $bsize / 4` + done + blocks=`expr $length / $bsize` + bytes=`expr $length % $bsize` + ( + dd ibs=$offset skip=1 2>/dev/null + pos=`expr $pos \+ $bsize` + MS_Printf " 0%% " 1>&2 + if test $blocks -gt 0; then + while test $pos -le $length; do + dd bs=$bsize count=1 2>/dev/null + pcent=`expr $length / 100` + pcent=`expr $pos / $pcent` + if test $pcent -lt 100; then + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + if test $pcent -lt 10; then + MS_Printf " $pcent%% " 1>&2 + else + MS_Printf " $pcent%% " 1>&2 + fi + fi + pos=`expr $pos \+ $bsize` + done + fi + if test $bytes -gt 0; then + dd bs=$bytes count=1 2>/dev/null + fi + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + MS_Printf " 100%% " 1>&2 + ) < "$file" +} + +MS_Help() +{ + cat << EOH >&2 +Usage: $0 [options] +Options: + --help | -h Print this message + --info Print embedded info : title, default target directory, embedded script ... + --list Print the list of files in the archive + --check Checks integrity and version dependency of the archive + --quiet Quiet install mode, skip human-computer interactions + --nox11 Do not spawn an xterm + --noexec Do not run embedded script + --extract= Extract directly to a target directory (absolute or relative) + Usually used with --noexec to just extract files without running + --tar arg1 [arg2 ...] Access the contents of the archive through the tar command +${helpheader} +EOH +} + +MS_Verify_Sig() +{ + GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + test -x "$GPG_PATH" || GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + test -x "$MKTEMP_PATH" || MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + temp_sig=`mktemp -t XXXXX` + echo $SIGNATURE | base64 --decode > "$temp_sig" + gpg_output=`MS_dd "$1" $offset $totalsize | LC_ALL=C "$GPG_PATH" --verify "$temp_sig" - 2>&1` + gpg_res=$? + rm -f "$temp_sig" + if test $gpg_res -eq 0 && test `echo $gpg_output | grep -c Good` -eq 1; then + if test `echo $gpg_output | grep -c $sig_key` -eq 1; then + test x"$quiet" = xn && echo "GPG signature is good" >&2 + else + echo "GPG Signature key does not match" >&2 + exit 2 + fi + else + test x"$quiet" = xn && echo "GPG signature failed to verify" >&2 + exit 2 + fi +} + +MS_Check() +{ + OLD_PATH="$PATH" + PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest` + PATH="$OLD_PATH" + + SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum` + test -x "$SHA_PATH" || SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum` + + if test x"$quiet" = xn; then + MS_Printf "Verifying archive integrity..." + fi + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + fsize=`cat "$1" | wc -c | tr -d " "` + if test $totalsize -ne `expr $fsize - $offset`; then + echo " Unexpected archive size." >&2 + exit 2 + fi + verb=$2 + i=1 + for s in $filesizes + do + crc=`echo $CRCsum | cut -d" " -f$i` + if test -x "$SHA_PATH"; then + if test x"`basename $SHA_PATH`" = xshasum; then + SHA_ARG="-a 256" + fi + sha=`echo $SHA | cut -d" " -f$i` + if test x"$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded SHA256 checksum." >&2 + else + shasum=`MS_dd_Progress "$1" $offset $s | eval "$SHA_PATH $SHA_ARG" | cut -b-64`; + if test x"$shasum" != x"$sha"; then + echo "Error in SHA256 checksums: $shasum is different from $sha" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " SHA256 checksums are OK." >&2 + fi + crc="0000000000"; + fi + fi + if test -x "$MD5_PATH"; then + if test x"`basename $MD5_PATH`" = xdigest; then + MD5_ARG="-a md5" + fi + md5=`echo $MD5 | cut -d" " -f$i` + if test x"$md5" = x00000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 + else + md5sum=`MS_dd_Progress "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; + if test x"$md5sum" != x"$md5"; then + echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " MD5 checksums are OK." >&2 + fi + crc="0000000000"; verb=n + fi + fi + if test x"$crc" = x0000000000; then + test x"$verb" = xy && echo " $1 does not contain a CRC checksum." >&2 + else + sum1=`MS_dd_Progress "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'` + if test x"$sum1" != x"$crc"; then + echo "Error in checksums: $sum1 is different from $crc" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " CRC checksums are OK." >&2 + fi + fi + i=`expr $i + 1` + offset=`expr $offset + $s` + done + if test x"$quiet" = xn; then + echo " All good." + fi +} + +MS_Decompress() +{ + if test x"$decrypt_cmd" != x""; then + { eval "$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "gzip -cd" + else + eval "gzip -cd" + fi + + if test $? -ne 0; then + echo " ... Decompression failed." >&2 + fi +} + +UnTAR() +{ + if test x"$quiet" = xn; then + tar $1vf - 2>&1 || { echo " ... Extraction failed." >&2; kill -15 $$; } + else + tar $1f - 2>&1 || { echo Extraction failed. >&2; kill -15 $$; } + fi +} + +MS_exec_cleanup() { + if test x"$cleanup" = xy && test x"$cleanup_script" != x""; then + cleanup=n + cd "$tmpdir" + eval "\"$cleanup_script\" $scriptargs $cleanupargs" + fi +} + +MS_cleanup() +{ + echo 'Signal caught, cleaning up' >&2 + MS_exec_cleanup + cd "$TMPROOT" + rm -rf "$tmpdir" + eval $finish; exit 15 +} + +Script_Args_Check() +{ + script_supported_args=$(echo ${helpheader} | grep -o -E "\-\-[^ ]+" | awk -F"=" {'print $1'}) + arg_to_test=$(echo $1|awk -F"=" {'print $1'}) + + for arg in ${script_supported_args}; + do + if test x"$arg_to_test" = x"$arg" ;then + return + fi + done + + MS_Help + exit 1 +} + +finish=true +xterm_loop= +noprogress=n +nox11=n +copy=none +ownership=n +verbose=n +cleanup=y +cleanupargs= +sig_key= + +initargs="$@" + +while [ -n "$*" ] +do + case "$1" in + -h | --help) + MS_Help + exit 0 + ;; + -q | --quiet) + quiet=y + noprogress=y + shift + ;; + --info) + echo Identification: "$label" + echo Target directory: "$targetdir" + echo Uncompressed size: 380 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun Sep 15 01:34:43 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Package_Cann/test/No_standard/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Package_Cann/test/No_standard/cmake/util/makeself/makeself-header.sh\" \\ + \"--help-header\" \\ + \"./help.info\" \\ + \"--gzip\" \\ + \"--complevel\" \\ + \"4\" \\ + \"--nomd5\" \\ + \"--sha256\" \\ + \"./\" \\ + \"custom_opp_ubuntu_aarch64.run\" \\ + \"version:1.0\" \\ + \"./install.sh\"" + if test x"$script" != x; then + echo Script run after extraction: + echo " " $script $scriptargs + fi + if test x"" = xcopy; then + echo "Archive will copy itself to a temporary location" + fi + if test x"n" = xy; then + echo "Root permissions required for extraction" + fi + if test x"n" = xy; then + echo "directory $targetdir is permanent" + else + echo "$targetdir will be removed after extraction" + fi + exit 0 + ;; + --list) + echo Target directory: $targetdir + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | UnTAR t + offset=`expr $offset + $s` + done + exit 0 + ;; + --tar) + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + arg1="$2" + shift 2 || { MS_Help; exit 1; } + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | tar "$arg1" - "$@" + offset=`expr $offset + $s` + done + exit 0 + ;; + --check) + MS_Check "$0" y + scriptargs="$scriptargs $1" + shift + ;; + --noexec) + script="" + cleanup_script="" + shift + ;; + --extract=*) + keep=y + targetdir=`echo $1 | cut -d"=" -f2 ` + if ! shift; then MS_Help; exit 1; fi + ;; + --nox11) + nox11=y + shift + ;; + --xwin) + if test "n" = n; then + finish="echo Press Return to close this window...; read junk" + fi + xterm_loop=1 + shift + ;; + --phase2) + copy=phase2 + shift + ;; + --repack | --repack-path=*) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + if [[ ! "$1" =~ ^-.* ]]; then + scriptargs="$scriptargs '$1'" + shift + fi + ;; + *) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + ;; + esac +done + +quiet_para="" +if test x"$quiet" = xy; then + quiet_para="--quiet " +fi +scriptargs="--$name_of_file""--\"$pwd_of_file\""" $quiet_para""$scriptargs" + +if test x"$quiet" = xy -a x"$verbose" = xy; then + echo Cannot be verbose and quiet at the same time. >&2 + exit 1 +fi + +if test x"n" = xy -a `id -u` -ne 0; then + echo "Administrative privileges required for this archive (use su or sudo)" >&2 + exit 1 +fi + +if test x"$copy" \!= xphase2; then + MS_PrintLicense +fi + +case "$copy" in +copy) + tmpdir="$TMPROOT"/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$ + mkdir "$tmpdir" || { + echo "Could not create temporary directory $tmpdir" >&2 + exit 1 + } + SCRIPT_COPY="$tmpdir/makeself" + echo "Copying to a temporary location..." >&2 + cp "$0" "$SCRIPT_COPY" + chmod +x "$SCRIPT_COPY" + cd "$TMPROOT" + exec "$SCRIPT_COPY" --phase2 -- $initargs + ;; +phase2) + finish="$finish ; rm -rf `dirname $0`" + ;; +esac + +if test x"$nox11" = xn; then + if tty -s; then # Do we have a terminal? + : + else + if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? + if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable + GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology" + for a in $GUESS_XTERMS; do + if type $a >/dev/null 2>&1; then + XTERM=$a + break + fi + done + chmod a+x $0 || echo Please add execution rights on $0 + if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! + exec $XTERM -e "$0 --xwin $initargs" + else + exec $XTERM -e "./$0 --xwin $initargs" + fi + fi + fi + fi +fi + +if test x"$targetdir" = x.; then + tmpdir="." +else + if test x"$keep" = xy; then + if test x"$nooverwrite" = xy && test -d "$targetdir"; then + echo "Target directory $targetdir already exists, aborting." >&2 + exit 1 + fi + if test x"$quiet" = xn; then + echo "Creating directory $targetdir" >&2 + fi + tmpdir="$targetdir" + dashp="-p" + else + tmpdir="$TMPROOT/selfgz$$$RANDOM" + dashp="" + fi + mkdir $dashp "$tmpdir" || { + echo 'Cannot create target directory' $tmpdir >&2 + echo 'You should try option --extract=' >&2 + eval $finish + exit 1 + } +fi + +location="`pwd`" +if test x"$SETUP_NOCHECK" != x1; then + MS_Check "$0" +fi +offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + +if test x"$verbose" = xy; then + MS_Printf "About to extract 380 KB in $tmpdir ... Proceed ? [Y/n] " + read yn + if test x"$yn" = xn; then + eval $finish; exit 1 + fi +fi + +if test x"$quiet" = xn; then + # Decrypting with openssl will ask for password, + # the prompt needs to start on new line + if test x"n" = x"openssl"; then + echo "Decrypting and uncompressing $label..." + else + MS_Printf "Uncompressing $label" + fi +fi +res=3 +if test x"$keep" = xn; then + trap MS_cleanup 1 2 3 15 +fi + +if test x"$nodiskspace" = xn; then + leftspace=`MS_diskspace "$tmpdir"` + if test -n "$leftspace"; then + if test "$leftspace" -lt 380; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (380 KB)" >&2 + if test x"$keep" = xn; then + echo "Consider setting TMPDIR to a directory with more free space." + fi + eval $finish; exit 1 + fi + fi +fi + +for s in $filesizes +do + if MS_dd_Progress "$0" $offset $s | MS_Decompress | ( cd "$tmpdir"; umask $ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then + if test x"$ownership" = xy; then + (cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) + fi + else + echo >&2 + echo "Unable to decompress $0" >&2 + eval $finish; exit 1 + fi + offset=`expr $offset + $s` +done +if test x"$quiet" = xn; then + echo +fi + +cd "$tmpdir" +res=0 +if test x"$script" != x; then + if test x"$export_conf" = x"y"; then + MS_BUNDLE="$0" + MS_LABEL="$label" + MS_SCRIPT="$script" + MS_SCRIPTARGS="$scriptargs" + MS_ARCHDIRNAME="$archdirname" + MS_KEEP="$KEEP" + MS_NOOVERWRITE="$NOOVERWRITE" + MS_COMPRESS="$COMPRESS" + MS_CLEANUP="$cleanup" + export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS + export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS + fi + + if test x"$verbose" = x"y"; then + yn="x" + while test x"$yn" != x -a x"$yn" != xy -a x"$yn" != xY -a x"$yn" != xn -a x"$yn" != xN + do + MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " + read yn + if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then + eval "\"$script\" $scriptargs \"\$@\""; res=$?; + elif test x"$yn" = xn -o x"$yn" = xN; then + echo "Unable to decompress $script ,because of aborting! ";res=$? + else + echo "Input value is unacceptable,please try again." + fi + done + else + eval "\"$script\" $scriptargs \"\$@\""; res=$? + fi + if test "$res" -ne 0; then + test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 + fi +fi + +MS_exec_cleanup + +if test x"$keep" = xn; then + cd "$TMPROOT" + rm -rf "$tmpdir" +fi +eval $finish; exit $res +3f< u{+!c KB; 8tN*sܝb%Bݎ;!d&.(\Ag vat!F吘P@T +D SQhcٞϝ^~ޛ9-ƠI>)H,mI%@LR$ղTsKKK$STHɠO +XeNMڃ$b6fcyH`-m̼f)iIyEݮ icJv^SA]:Li_ M)|`7PLdfMK6֪]̜~ ilDYSUv[ℙϳv2&#,X =_]`fOىFHMk[Hd8gX-6#T֤Ɣn5Q5g[A(1sb] }=kZjjľnԂ#֨lUc%V,N쮥mY6`ivMaE.,98Z6.؂\lAZZfEQ~TtU0=m4r֭R1)f@7Qi +hHEj@*%K[EZػU*,*-nxA +9pJs莔r(KK5|"ch +RpHk;F[ WQƕ`MJICHK +,ti0PXQgY-+L{_g׆Ur禾==[ +CȨb,ѪTf궪"fk%cDG$IgX=ƚӉp&OpFRDwN:=~}םo=cw}OGo;~csGw8 CTFhy-ʸEjVJ[F<l!q88D*mtRi ;˂ +'MQ9L|+m+C$8s(nTUm EmYAgV9l`P1Ay>MRyg1LI̾i-9l=CG-{~L{gh=PӺelm\Xd)[P5.%-ae:DVQI+d,I06z_wUV7x}&R0glfΣ&M#P)gO,G$)a%w;PԢ"Um%!$ì(ż' MP_aU8l?rJ^ S{B|tXʚ3to:a=UW+:C.5ݐݫ'越xGSXީX2Z]M67-L+R7U=2U׼-(}%ٕM-lPAv} 6G; +᭘{`NTFA팆[Ҁ6}p + |Ly6x'b4U5:D e{eTԩsomE'.^|}sϙB9 +b1!_0|.a(')U•LOMA*_ h TA*F*,L?r6VM;$qVi !Rg[ +"x"C9Ӑ:LfiChVάihxF*d!>ٞ(zdDC$2w&ΑSPsd,sXjƐݻDd 됝jv!vYl +f)|% 1u|JqT+Iy5y+ >.k ^ᡱctc~4 i ۗkoj_JF!\;X0T$]墛.A$ +W5R)L/BG*Յ3\|pېJČ(.Lv.-弩$"d5V2M<518(YRj/O;;xtnޱVNśIPt -7S {?!CY=5D`EOU0dq9a혼0EߙQfwBy훁YY h|p6-_ +̡ ~&sC:o E:YUs#^|8./'%Ɓzb~a ӜC@,|o?[g9>/x1#RpN+q/G^ +pP|J_,|])9p%!cɇOn/tssícRH?nۣmn}BGP?B=4_APuT)/ ϱ~ؿP?twm'{kMwd_;jh-o]8Ccu8O%cxnP%mţݤ&{~^ۼQwx꿺ctnѺKƏ]<ӉOq@oHƐ hC~G?G Sy.@{`Tn!Ȟ^Ľ;U׺:v<ï&fxt_Pq dwh<}}Prhw[16 Ck?艹ۊw>3wdL7]X&&.qe.=PG^\?c0\IC8 t?Q'0o rnxvx8=^ǞsYx/v][,u;]I+*|$rY8qo0q?"sގr BE';pLcz<"6<&fBI8Np|܇,?_}rvoFHOu[ ipmaR,NZ` RuͭH m(3.o/$cȯۊ 5 A_A*%. U[|#;Kr2!ن'WKTcJIkR"=BխLh6,0!NOL^"@ <%2gWP}r ?eOB7/.}I֎8|:N"|r{ "H7^vƨ4|M=C@y <_@[wl\/,@(q=\~sC2]"T@zps܇C]Oh" I>S|r\SYXdzLgXQ{2~6s)XEVNv {~)2,Ogs>m;gk~-y/Zk@grԁs?ͬ~Q#%3ZB4M p:^>^~x~'8~oF(s?KmBm4n? ~~?8 ?_BP r9v>`>D=#?.xgt" ̥{h=ho?/"<%7wyt!( {ox_тw~I#y%bxA/Ѣ8c8?ϕhyEaK/- +'}qÙi ]_hi&CV3L%?ߧwQ$rQJ֖pMa;ss%tCZBQ$bc23Pc75- MKKSӀ>%Uչ咓mÊ- iކjiI)PY8hW:$K)Y2VVN #};}Fd  +V`D L̘l"ʤPHexJ=hZm.|Y|%恉m{a4tkh +-F 8zeoNA)TXV77 13[ .%k,gaH]vp0OAbmJ 7%`nve0]/ab{sNn<'fcQ(dwMMMV~閝2A46<#g-uS|¨cqTSB b2$)7) +vU*C>*unE O8T?iMLcopJծ%˜ԙU:v.#R -Q2W-G9!0<Ԃpi L "oc;U"֤D-gOkWjDzJ'+1a.q_: vqtNdgGTn VS;I7֏B +rD/5Xp孂>Ğd(7 @f=H.yvs![)d8`!FHIvr2໪NVskp!( Р %OA !->fpFذzW C +>(1龍C*]'qC8A#<:NIĞ·ptp<<`Aq#J׹K}X Bл}F +Y*tڟS\4ߪ)IWR*TÂB g]2Mex6:NƳyKDF{^USpV.ѩ$~4V6ItIDd|*:_'/d|\2N>$)d|5t2N^:y^u2.N{2N1:/'uS^r%G%{"69>,aķ0m ķI&C|䗰~obN \cr*%95u7յ33SQra,◢AzXՕ7ig%h,>vv]320>Q_~EԉZ~~8ȏxA;֌9pg=X~E c~\CwA"`wX{Y?axkwBwsW,77֓$ 7#UE46\>mml6qeg4:pβC6WxnW6kuf6s ǁFyWttxtz5myfJm󉆺ǯҎv䮫#@>>4O7Tf3c+#(͆gW*'WW9F]e7ȹ~I5BZc֎xa 9,RIeL}vB}u"Dgz2AB_@i`;E5|ihE"\QJ歚JaR_G| 㿊wT=A^̴V62iZǂG']@籿~nq*[_WY֞U_@uU=>tnqϊ47BP?߀|2 aʋ? ~هG.`iUQ>~W>n-k#ZPqU][y'ך?_ſq}K> g aXg +w(}yPX@{t8WF]ozSO_Kz/_j_ye'~CO@{ƶzN +DZX]Z]z'/q|[*u`k l-wy~f;E_[B?۠H(sbCeU,>z{7`oZ Do0W5VSqy1|l7QoaaqqH{fQ݂l8;mH5=$I5zWz55 &vJ1)fQMh[”y}"^+̧EUV%'{H|)kHmħo y嫱-ǎq~spq޹sx Dž\a 5p \#sbϝ!ςw[`>ּWA^f%Lw/b{ӝg./gUn'9].G/{lYO4$ٿL1:X=Lޢr+(:w]h+/'/{jY}R +>:]hd79^v2 +']FdpQ8ٽ@~gOmmmmȖ[C]K3ȖEv0<%ɖE0<ݐ jЇlI$dCR\?7&n6^~P(HzR⹮ ax_ΰJmpJGW)=١}9١}dV%o6~-&4 G(>t=-.ʠa5oWWɩIůѸE-N}_qAO?3A:ŧq4N_qrh^ ߭$;Gɩ5ZmЍq{Tkk"]}8{@v>9gSWkψ ]}MWk$W˛ҧ_uQl5mS5wI:ORk~M-0Uk]8U? F_P׋_.-t}!DG[K8~Qf{]tnw*@<~mCkkmontb8¨ 9n#S#tܤiBgY4epU@!|̗!0LQ?*ap |90tF£FWC +$hgdA&r*W Z^"U I{[&ɥk Mh^ R%np;N}JIFz +Q -ď O㦓Kٝ0]5cT]lz1o8K{$7Gd"V,s6<Js<=XL `_ȹmۍ<A yjlD3psrfDC0[WyԶĨnfZX 2@֦[(B27|ӧ?ӧ** }ͧͿx߾[/tɣo|w^G%a[-4"9oN1j*Ā66}R9'i'&Y+`x=-b<8Z(oЋ-  >rocyrօ8_'3&MǍaU~#vHv>yѠyy͋)%;Zw$E0I5ȎOtkkkTưdY&E}I" +ܪaX5]ahꬽsi)sm'^d -*R7dڑbVrQ5-uYaۄ|)&Ȁi +ҫN`d7n +:ꩃnw9x$~L)>hیTw8{ĉ+Mp]C) +`3UIL& X޴F[/*} ⴒͷllQ-Z.Ԣ]ruz37-tLE%{R؅,]\Y +v[i)Zf'>i4|nnr_*.NL3&d@Kb""Pd._'BVsmlùC{!$r!U֋e.|>'*F?ȳ@OYU~&^12`@&F# C&Aʦ'wG7#laU<0\r 1ǫXUeE U簣?5Ev5Vrh@EszvIV0]o&@_'_*;CˈI KMO,Y].aI򒇱([]ik? 7nr;UƊ\O#H_ef2|Npli%op(uXׁzoV47=u.FB9hJ#28)XMh Qob1sYnA&0EXŢ7u_a>w4:ú&B-:Fa˷KM9ƜR-: `֔(2䰦%=vĈc`Ym8:CX˷%<{7Ť;w0ngЎ644Sf +YZ S*#*AylAgYT5k7 W5^=W~G{@J` %(= KÅ: ez) ru_[(Eg XV¤Ͻ KVTDN ++DdXjJ`f}=ܤT>1G~S5E=:oY.Mв\ {%lqWn; *(tҗe(Y|q/ *op`FZsY^q;)_,<×&S^ZNX:US 8_ΆUyBlMŶRŁ1Ք{arZ/J?2 {tVx /nbs;ayQGBwsU!2.fP2VVD)ݠ5wKkQҡ>,{wҙ;;pnφWv̄4RMC 5%HI;NevZ2R Eu?Xՠ>Lu1 U?X7eiag:ج帏6;Fx|ca#[͡yG\aD>#Ю(7$㥐-B1 7s!5BüÍ\耗785/#-H x +@9xZXƣ_tNɁMt- Z$q#TȭgcCBhKhxw{~tg{kZrTò1=)ι8Gs1ܲO9hR3yMX] ~59m($aGm1><{8r _0#Gs<&or"p\0~3'8h>?7Q[ o|a{'8ٷ9X+G³ ϣ4#,vmƿ圾c؈ϣhrz?[) >ڧ6 m&QuHC&vycfkGN_4rڧx )kX<*_cNC_]o <Jf4=ٶ栭:;v l3HN_~>Ea!˧d[Gs|~ & s0y=G^0w;ʥ|"DvyHFq "dP [ BV-}C,&VnaMLJu)"rrei%+Dm(~c`3^*hPrd,i-w>-N4(i4װy?]ӄJ $3ooZ|0:^E݇pcxv;Vffv/{wǀwЮ;{K^l5Fzz=JA[b.4Otə˾J܎SD0=eKl2oJ ;}?Bc=qJ/5rNMi+Ii?W7X3FZTMT-L*~NY|51%?Fk ΨۜӌNي$lY1+Z(kJ*eft*adb$ Tx5Iׇb)Qd|zN?}_BD_?qtڶ$$;#JZ0+QZTV N&U2dB2ńI*YiYv2܌e T1^q5! F3=<FKV +P8  +<9f/)S3E7777;cl)G0YRoזԄlIY,pMV-&M[!+_IXF^wLNղȤ91S #0,#QI+!Zh Yʨ('Y˶9ievs/0p.%EO\(Ee#afD-dRPYYLEf֐L& 5HURdB$%s3Jw棞Yh-t,m-`g&r*@o^|16є#iÌ-7g314l:I&D6IsM?r3?6k ΨӌNM;Z?J$;Ḯ%eNKV& < +b)*{Cl?7?/0+RHW'.tx?A{ QT5c( KK##ۆe(x,ZiU5䬡&djȈiR=9Q,k4CLf:{x6`3q xr_S_*ooo4<g _4H0:K iv6`mVd]{X~H4Ybp00;g7<`0Ăa$\?+GK1 dX`1T>뚸H{ l֗iτzA|?;[8uL8z6M-׺L8ws^~9uל.*0i&oWX8>ŝI WOJ U.]㌁}v`.4(Ҳ&є tt[PО?]BwiO51i61]4Gӎb~bexE?<vG]>}(`1ؿM<]ſ?4E ǝCΩqԒï/uѪKve׌]/k躛[tU_ڞn=G%B?>=l<~I#b/Ԋs'L!a$LDf&30g&!QVv hE*˺ڲ躖}llJmuGj眛{䁙{sq8w;?+Q{[7ٽv[,6<3/MSۯzzu7oWW/ۡگRK+=6瓽g}_fgv}wmhIUҋOQuo>+|ӌͫ9|Ot/zl߁rTOT;ؑ`m')=%'R쨸Ao /uc/֤39:7fM6/|[0[1%1Cs-"F⭷-¾{7& ]ZJHE!%#P&zvv>EЖaąOWhMt2U>R(iD~ ]Zd,7S$fϽ-$g/Mʴ`(Nq3V#QIΎŚŲB S+\_/7잁+dsTO>uH[CVG:u+JKv o k ̔]>;IN9v~C|D.+n~;ZRGR&54X-Vg +G4JH u,۷`w:M}\7 bE­07Zٰ,l]v̊ڹUne猝ȶ,XPGѼ˷DT|mZ@8XK졣jY}u}I[pZZ D Mr&6ќujYz;. j yZD.eМ(W,zڇS\e_SLBX'JW˻h:(E] +7XӬ5$9rAF[(3<Ȇu;:vrPLka)&91R5>sR K>4TA9Lw_@՛`jˈsRN@%F‘ZOMNb:gW+~S:LϜԁ sDU{_ 't;f Er#M)r4Y ҤA-I`9Ж&mKx. 0J8tc5+IvuTGu;LG$Fjb#־ىA +Ԯ4վ"s.,nnMgc 9CMAvT{'$EWܦҐ$t {Po\4ޤ~;&lO8?< Nq;k%< sf~Dkw烥E;-\ҜG6 +|B&T0sg\O"bZp֛0OxG/y;>1d&jzL-2VF/)=?jWH9釚z8,NeX>SZuFw8דYiB7й8U_R +? R!W砓%5X,$ɏ8spdjakv&/9KN? E ,Sv5k4(bq[|EP/;n2)r9 멮JrE63oǩbAɅ6.yݽ +2wJq}W<0؄tE +N .hv+r:t)\{ts.sv" XYXU )[!ý{F\Z\;D-қI%,=In跓x̽+H瓘Yϲ'rLLI^tZm_6oaKSi257[53&}_,3Pl(huvSeά-C vrc,ߘ?)m)1iyJ9V[yOﱊ+c!;81ƑwoR"r0O|qi:{W3_in1&+)j{#{BRIJB㌱j{ 7smw)m\>>߬t5ޫ\=dzqoV 5x-sm8}7vewKoTϋm-[mE|DE<sg7x#E|Hg__V.ߢxE_?*SN|~ߪZZ7?,yoW|/QzUQx\х|V9Pī_Q?+>KA W1> +ËﶗbYUC81tC;ooTC~i; +vC |)ǁk9 5nX Fok(ܰB[87l3ݰr;^6 #8SuCN.>2A2/ɰXFy]*z*Q`ߤpC5g)z~EpF?B;/]K8p|=]a8{vは>0pOk|=7WR65nd[olο . |:gLQn~6*^ S^ \3<|!v yMx;p!7,>#a)8pxxC_ wܰx=g<|3[oa+oUہn{ +0 _ +ܘFg| +[Wo>Wn0oX2K/C87/>*l_ z|#Ϝa N[g7lvZ;_ |W]#"$_ [r[_ + |p^Cǀo | Kǁǁ'g/>< |8*naw_ <|=pui@x9[k8l|;~; j{.^>x~a 7P6| >MGwzeWm8uui;8Ol }=W.o#=@I +Ay~/llll>>g>LOAA~A~//>>w>>>߱}П}es~IO=tI@Kz%Ho= z:7=}6}=}lEl%ltzz.}Aw}Ћ>>诱}]ll2:Ag>~z&z%ۯmlllzyaQq {lll l/}/}?d_ew}?a_gY%6ۗ}1r̻llGl>>yd?񤧃@ $]% 7JH=7xl<z&d>>K>&}З}Эlt탾/t7N}Y탾탾^>;>;>5l=l:/lb1j㌡5K 197Ç&e(?߾1iMww4uz՟mU>+F=*_f G/~>f4k\|QU{fUr%f&AQЊrDM-j+heBlmK[+R@ҟK2$8Rne +X2pQ6}dַ[Z9~}}1 5Q7R3SNOkrK|)䯁N!V6ɔJG|*څ2~AEҋaHon+C! 9ө7ucha/]]M_y6/%K 3Գ7ɑ?A[JD2 kj-7vtʈ\})/T {2d3B!7K>f k|dA>9)C>LyT'}U{+{͓.JJWFWCo}+=>n1w+ fܝUa>tCCJW&G]i]vF,M~y//8r67#_]6>W6)oOCnj.=-o3o/Q _%_2o'_"__'q4_/O%_]67/se_6uڭ_ el\_d3o T)K ?Ps4f71P~S/n@y_6*7_bA// S[U{,(ew~_ϑ|9D/{n9_6_/z* Pce)w/q<~g "w/7' +Kiw/R(_!_#o;/ϓ).+ג/O)eN7~|G\-~||bSe?g|]nD(eG%nel"%~|nx&elg|REelߺjel'|29QoptE(e?GN=C~|?\;"C%c;Yʕy| N{*<@eloelin}#)3nD7$%\<3e?GN%|<5eM"_wˊ*y)'r/TޖzJT[Yo{v|_~||rKKf-wZ +~q4"7_" /'_]6O>W-/q׸3rƴe,Z# ]t6g#]t)אA).& ݏtˑCғHHS8Vi-H#݀RHG#݌tҗ"ݎkH'#݉zV%hW|Γ8߇}8^kr]Ъk*ZG1^79h` aUb~)d%0vfFμPĎaY%׺t,S#_TU٣|k}MjdYamJ4{Z#{jes,)a4'O?L&0//AX+ ׍ace3"d$a%;;g 0 1+x;zكحW/v#>Lb,JVYX=}|v}1sclY'"z:@*`V I9[Y>c{ kesMe|h=a9abl ܂ku;t=),¶"a}h0>M?T'KUE9H|dX]v5 ˳|YƼنz k@Ǝ\ k5:x;uӞɽӅCۡ7|p$Nso/ף b 4 +d"tCVׂn_Fx^&oYy>qy~=ΧU-:jX1\{*(k,>m<O3pwk\MErv⸥PᲓ2 PnL ;mpeNB xP幯zp\sLrmpwM_ʍl_^C\[QoE<`)䎠|9fEjup+zp7z kbXl+O^cBtL__T/Au:°GCˤ_WBDd01(VjqZڍUb 彴lPIg)Wj]$o'Xٸ2ddZ}mpmomcFb +Mw ݃nѦ2D=m~2dx7sSmf2h'6?vc +yuef1\a^nu Yc2#v;خ?<~c8+d q/h5jXrwL_x_Ȫ |#m/hP>5Km=Kr1 >~>!+􇍏,~uR,ѿ5>>u[YgBw|IEog_% ~>+Q#}R㎐FPID/?Xw۾hz~fHI;:kw8rmD=T%Zrq/N[ν>ɸw'ޭ{73&ޭκw{7h{[,U2],3>Rn;f_kUoOVXh ޑf/ϻxټ_D{3ռ-Xf^IXJMgn^8Z`sq8us,}u鳋L9׹ȼ2efJK]sWa3ϧg)ؑiر5kb"=H*п~9z˙Ts~/SNq_@c-!5ٺzЧbrplr&z-'#=d>&~>߃0k_d[t`<zB;mJFʬedX/G?ߥS-1Z+|y#쾶=W=l5\ה+)ÓyOXZrU̽ulht8Q^ $j%[<y*]!$EyMNvzG7)er#:*\'}mLׇr۝<6%rI0<>\7#3.>7 /ۄr^>:;>>y|rhɫ>:gGC)N}>y)95>vIח#5;ka}v9lK|-rˑlg;˵ˑ>\(ϩ/W"u t}(ݩ}y5N$˳˕<\?<.r>y96\Ϯ/OD^S}ۘ]N@^)WrF7y|N}(7ũyM/߮tʅq>\ CEv9#_}NvW _}9z>'o^_il_b^%c7lr݈ck9;Z13'vGX=HXczkHb֐Z+/Oog]|/Z (,.~Q]|я3vLw.ʱ+\}6tdn\'64B|w" .pM|,|cDC xn91oolda1vcnɑs 1֘(}NY[60y;ci}.3(cq-铁p5?Q-#=j5 D)WnΠ}F +aW֠Ly#~|['d%eNZ,bE]_c—T_v̓Qz{x9 Γa +[Š-vaEpa!]9~{ƅ  +46tR+>6![q꭮yj\➓'$&`:Z| ~faӣ3Ԛ +^7<ιCa=uZUÎ/*džAr^Z{$+79&崿$={Y?Ϣ4 C ?Hp[bZ~,oKp^Zin̳\vki9Uk2o٠tG e(/%5ǜՙîdX= s[<ڰl7{qIu7gְq:ް)' +6QVORxوW63Zϛp|}|#27ฟ}|=2_[u8kq,_=9_μ{^ĉwa!/Vy/0uo< U|^\/G1uϫ@a1 TƛSsݾ\yy.ߠ`96_>, r~[.qw8zt?cNsxzz rO<ç[n/;OV{_^&1.O>䖍rMyr[r\K-`ܷ7:@suN{3O~-)59uj]>sd|~jZlb|;]-1;na-VFg>Kln>İ|9n>ql'/?Aw{ϑ$_#@9o/q㚲tCTߒͷl|Pަ7_Pqlnxln>Nϑ|Q7_Hu|Er_6|b9R/o/\,~|?tEe_6|b9@/V7DW|i/%򣃴_6ߵn>Q*)J7_T$_ڿh|R||er3:sEɗ+:+(˽]E>ۢ^`-srs+;:rG|B3w.R3ʞ|oGʞ| +٬/R!w+teOW[W97_RNVks+eP/n>r_6ߣnȹel|se_6}nyr_6| e?OT\e?GNTɓƫ MT +^/Y7W/bqr;Ծ^nH@7|~7_" 7O֨c|r Uik{jVu[bﯸ&6 +.C:ba]Կ߰>iAk-ӂֳ~HYp͍ quyde_zP +LZ)A b]S7/ Z; k=A3s% AkĢubu7ˉjl +zŵ?͋#O]0|5|= Z/-Ϗ/tZi^/\HXܿa.[lr_Z05jL(3!!, i߬A7-y6&WXn0yUMNa`A+HaFV[Z#'||ȊrK!WcoAy5K \ȋob yd hz滐xNF^GVk(&d O9x?+S{ Ƨ ^ú[sj]wuOg;G(S2*FD&+ +\Řoc;GlG\;敁,S11&S}}Ⱦjor'5J.=lOJ]*.v?WWq?9lOH|8d-lOn">m&|kl|>Ob ̇63CRm6e'Bos}+Gm\نkBVzP%q9bxF|qex^8o>ܦ,Qf_j;)G>ḆݶL|l`9gMH#,,GF=˺U!|CBFeao/}}n߅r2CEZ` +ȥ}GHU/7ϸH^A'g_R +h[ڧl$ú 2^؅fz։5bRo 6C)ۼ \ܧ}7F0vP6nj3^soo{5FHe(iRPD?YGx>.|aۂ8omFevk7ݔs6wl!-ޠsmNG=p>Ű^Aڦv-p>Ͱ^Q醵CBw5fWjͰ:yG4 v[o,5c=6?E\M|ma2srC%}rb-6xB oxEeNܷeR~ H|?I=Er!W~{xpOzJ[O2$#ɋ5{GVމڇه:Dn+>6ilE(~x~ +6@>A8/lP?{PD㳀Ɨk8+/mKի0E^O4`j +hBȟk?R>۱Cr՟+J;"8Ns(Mi{(| !@>xE>#c 8mX |P>xߴ}'4 +p_Z +t_~ƃģ F:0>Gj`DUl|#$?|{#JWZ?q +iGR;#J 셴~9}V+< MI}>ƻG5CwPV᳀֮;uXT˾TB|-hzV*eLT*Ɨ).?l5Esm*sgxxD!w97| +6H +x_sT +|wj<_vy +/>џxDC_O5qqM j<4y +GyU +?17k06>W!cO%wW8$(xcO%7rZ;u'+}5 + |[a +1W_Xƃ _Z |ï5~%/#xvHܯ%a]ģo=BяO܎џ8_yt\|?g!sT<:v]_;[/v^~t'M;7t{qW:ν77;"Ds'9?џ_ǿO܎Oqq%'4^:G/^qqU>?W2G >_8G5>*GB{u'xx?񈎧>џ_ӯKyџOW7y\Q/#n+'m|#Moxq_9䉯xqY 6>xT?Ɨ)yƻ+gxoT_e]wWκ6_w_nݕ|?ƿ G%xwsWGaƵ+g}O'4%-#_W<9{.Ʃ+g] GqÌ_WκLG%ˁџxYVԫ k|Oh9"}u:x0]78qj>Izqtqt ~Q^q^cusmxD㻁ڸCy GBǣOrN8P}&uQPmm +_/wN7A e~[8WX\W_km1^s?I m^~H#׬J_h!5.wx9m~&ƹfP|?p# |zz_U;^u>8î= kԗNE>/ħO?~>|ϧO?~>|ޑyFdp=`GVi0:9&jO|?p>!:_/|Z]:j'ד*]~6zVG,L(^oq]PyG .߅8?H>stN֬1mGɃeWh _u$*Wdv_s ~UGC ] +0>'! +j. =-oRxƏϐ;Կ;5)mWӳl7>A6eB}arB5s'~\slEr>E{ETqrg3N$RԘȯyV k1X.o!us:h}sY5˜o%kb=uw'YXjNn,5ZXywAI;uYgL`H{Pny38;XVXp CXQQjv/ȋ%!? +Yi=cºs,{;dž9$d>r|O69e9#m>eoBȮ9+K{ƞ,~K?loKgMd{dWjqkuvaS/N]v{h܌>^%2];cЮ%r^f~y_")YPyr}w_K߿OilE v#qX|}X%X~&_C_+v.`2>l>2sv!e/ Fj|) y';cXsLsXbǔv||?{r|gϙgӗ%>9؜^?'c: +}oŢh~]m~wa,<_.}Pytq}3rWͱ>ڎE^x?rz1):< DGU#b_SǗ[hEb.ee3G7,gAc5ǒȐGV^y(}mbʦ;Di[XQ Üyn1N ݘ8n^$=qA uO[?9qTU7wAz;踒4^Mc폗-K1o8 +_D}9n[dJ==mM +1ON =%~`ϰֻh q΃ګG.'G4 +aM=J_ QzZj>sO+r?VAɩq$t[6r JMZcxuy^楈W/Kx@0ܥ8Gɹyxm.ZrK>GjaOC +U911='S|אEK<^J%&SO)_V/}al4g9?7܋wGU/bTU VX9*3At>x:,d(9#_V>*Z-,eoT}M%S; [*dH7W﬐~% +y! ׼`,;>ac0-.o~?✍(=ƽW ޗS5@p?#Lav~(yG^% o?RoӱK@/_胨W|K`ݣs1 +K ..; 1S(i#GRk'sqƾ7u,| x#7,ognOԟBti>KHxĘ ^y?K ~OKŶ2 Xp0 crՔn#o;~PoBwo>Rգj:qYSLʧ6u=#~uVb#F=6]xl+3:2ߪ'1'ZG%kE3LGr<`|5+W C)9V`+Iqݏ޻*ɘqA `ةM'Y|8b?47NjՑ1cȳ?AEZ>^+/!{v]O(B](-;/nwC7_+刃?-uu9i;?[ +0WĘ.7 κAתQ+SOx: ˇԕ2{:+.UhQ⤧ְu'*8]UOvAp|wod\5SeW(IZbcЖif]-lvP؏}f;/ ?dX)ShwUA'hȽ~,^QfX2^' HꮞP }ڪ|7&1]X{a1ѤGΘz}0kLS`.}YU^KWUTj98w:.#nWT1 qkO}#F8jP$zBtǟ\C߂WWzLbm\+PcG?>Gc2De2P&.:f eo;ee_.*Sl[2B٠4]H٠Ԭe˜<ý{ ~}t7)K2qŢA~߯Zw!m|M|w6U({j-CA^}(ddl/U1z~7OCx!d#h8m{)/Xz̘ wf1F"m#ָf1cH0TmtlQ.yaSΝy9"wfs%Q57G0N\wFC^mZ&>n'Gc]!AߞL>crm}:b>7M6scAp +56yl[z7F0Pkq<2ZX90X]S-3}EC/Ϝ~\**`jڷpEc0|Gz&[kj^™ ZxG +9^wj1kCMFiQ5ͦ-ܲwA̛z>6}"Q̈ߣ("mYȿyOή\H݇g  FfV5^_.k $l:ZOW!.@,O=1y1w@>֋?̝JsIjmV \#sfb#/s !;Kl?SF~,E륜o ؃;+ac[W>,ϸ15g.6Wq %O +}c7z poV(1Z &q:]3C($XѶi$=z/L~mmTb{!2I>MK[3 HQPA@- XZ`ZkgL&!<{{z?zZ KGf2:X/: +c QNZ56orVê=pS(utw +dB< ~q ʝ{#qZ΋EVߝ4`.-xg;c7|{8r@&9I>N5ײ? 8,$-xϭ7٧\a@Þ(,`bI~1~Ol~tCmftIrGΗqO$#,KnxYs @ +"Ray“wFN0=:_b=>L;AY9ЭDlEC{|y Os#B}n+쎷u --_Zt>m!uu7e2[M\InmCmvw9fn:HMr]bn'\(s{&6m &GG9׫yropڥDGj +{\@:s|PG~<;e'cSx(tg=g܏UJ@LJW{xh;i+^dIJ:!ga7SY/>fm^ sxԖ b'*7hU *_ 5xz2kieBLuJ@59J(4WE=r_w~w~+J5 6Hx" ԻD{@x1I42^\. PO˦PpjUn:xkd^|l/4(/qG&mf2М{'=g=ϼY7Lhm=cJ_Re|X۾s^Q괓.y +e|Do.S6x(Q{tAeG^_̧s&=ntܯw+: 6\C<,{g~ݧ8n_: yu-9'D[Ę:}/S· @V^aYWZp'ꊜ.c}ve(ctwZmMzvms}Y*B%B.lm/ v`9m7:4ߜtDuG(2jL6MMݪL}9F³+l[waui{K ˓:dömX:x,Cicu_rت޸ w ~G|m;|_ڲe_3ϦvoxBc›iІ1O45:iٝvlaۺZ1ml-leڶ "9/exu{ap.lA]e`7yaANز&)Nf?5[v R׾ږ͠mYaǴe;ߨ +7^QWp;֌X%;=-<]iҵ]M~}q#ۭ}'7~~<2KAfO?N86ynKe'I {j +(|1/|Ǿdfއdm;ϝ#|0ǽ{rpOT1PT5k3C?D=;[`GO ӫw֓gGY~*ȼexPwO*bߓOc-*;,9ۛ9-}x/u:sIö͓d֟ݙ}V3 +ߜH]i__D[]0Q9?m0?Kt>u5bT_>ʼncfS?K?hUcm<6]N`G(.xxknN?* WT䈶J]p*NUZW\#:9.Ƴ_rk+V+ ;>+u^Jw:ֆgl ,\>z4FfjV ae^pTL5GЇG~(u(0KnԡlI/vhg~c͚a¡>{x16ƍL7T|sNE_?2Erno0Bd{yPB GuEǦ*g%Z:.)8saxQoHt-tqY M?ږ ))܄zP&]RWhÕPuE+_Cy$Ǝ`U]m١x>Ve +XF.er"}T?;;,\l;W +ؗOw0q+qX9xx<9Ao<ǐH+ҍt$MW]2p{0:ħENCnцvݏI ;~0qFj݉gq۳}p h9Ε0&[4GF_={u栟ӏ'yX>w"A5E]uˍTxqיD>Dm,cܒMh1yJфxddI]+.ćs_1J}r8?zPq;"&b^2c6&}t7՘Et 7kEO/Zǫ d6woeŪM6HT]_'=9:j (cxw5%+D^zomz:Rԑom|P78x'g,}sJ+SVhf;`8fzf{&'1)%Aw7מ&i[`>lex_Z>vs3 (L؇z}-y^T>գ.y/qm]j&~J8ڸ:>AĎ}ȝe#SW]ZOp-b( Os upL:7]HէIh=8t :ƭӟkz# vc">ߒs`v6a|O6zag̏p>Pt朆 կW.A޷]2aJ?:O6Qɣ^syS +6ط3l^bhuPп~:g޺Ge92ss#+t~q!bn'{Zw~nCD7ro VqwQďw{͎4oܴe{r*6 +}0m=N?3u9п}xj'oYs\0 Hi!ZpyT ?~Ooi c? qzF<#Я$Fu (r}CІ+>xʱ.eե`VPɿH[ \u`)}9c$s9p憩9:FEG@πc-_)&F:{9uKYh~xu/瘯 ׁ.Y{|\(׻ugc%i8'xc#Qц:isV~&DCD+.NO 5<"~R`J5*^X&g>"uۏWJ>Ӻ~bv+ Y.G|otJ1_9}eHg?Y=\FH{ pC;μ$o(srNe;Qe^/쯈MW?:OM3"{; .?eζ8i=uQke +={[g%{f%}W) î8 f=-ש&6['+9+| I?]w/Y-bA2- \%b Rr!xܖ?7\nqM.Rm_f\nOm#Kц\ <ex`Qf)Ô!9 23g|zX4t,ͧ}%C|zH|si>ͽ4ޑ4_)zU ]WՁKEb6g!AU7|b<#:<1NIi]AR:uzֽNY״ R:|ƪbi%_oQg9'57Jw\~(lUu© +^NG~d ߖB?}9!g. iLE;:P|فJ7/yEJǷW>1 zm}dDDDo]&yv˓~b-58/>ic%dZPw*O&mX2ƾ̾67R#ګkQ~锯2/O\k|JZ+g~Jˇh+I垑-;e/KhxY]զjuRFF3%wsS?;+ +5}Cj _dq\"&='5WY!<6S5W#>}|n}jNs["/wi^ײ271vr.曈Q[{ ?~ ?'քe=Qe)Os@}ϓ8>3re6w/Yyw]$5V9˲DcBW9xheYTbu,r\nz3ͼHo4_lE0 p?`1V V{Zh}8#O!=4>>0nZҵ*?^BЩp-B2=62︀k*HWF>974fU\oB}G*GHx:y7r!y1^u!{wz1w+ǃbw%w%-$sb+Dž/6-nb;={ǘeb~;| +I;G;2&>cmn_zz0>K[C;=*pK;~ZD;S3LӕCή)cGyO0>ξ)0oAz(t+ۧ}fi< ,0Uk'_Ζ I8? wb\&߯_g&2SH@{m0"o0`񧎣n&5_>½#_a}h=U;7K'%'<||ASSϦ$]ܟުFpϳ_S/hupUX?k2w,*<:u \_N=g"|j6Ǐ`z~r\\41;צJ|F~(T㬜vUP7/Z[1&l9a8YZo⼚ǣ  +2EwFunC ͽ°"8W˿#BUiQukJ6zec/Hro<pr']u9b!kyqc{ X#/-% pSf"Ƙ& +d<4MyL0]3nc2v= N6a67v eEWNۡR<@>cw{xyvx xn7OL/~3|qĹI}͔Oj懲[K 8tdEw_.Qdk#]W^xm3캊AC]*FIX;yY⛺f#!ܿpYj]3y&ȡ\oZ~~:H\S;>t[X!5k +\M;?d1Zٟ\_Q`g}U>J_Eq/g%vʸU߷BRI76qI1<:;~nH?| 5O^y>/>=bNY)>uo [~<>zG雷FkOj6)Ŀ}yECcS^FO}q~u~ s})?oq_ZefŦu7Gt?[QE<׍ܳ>m㾱\%:k:7d̐ >I'};9U"\KZ_!G1ʻ& ~( +{P"5n]qkKS>p{scs±psA;3w"p29@Ls6,Ag8sd=_jmLUdפ Vv1 I)<)=o7ϳe^kw+`]qTݬ٪{nS'J;3{KݳL5nvN3`k.m2a)`Ecd8珳>|9c:k=*TluFkY6u_}?`]-dl]bkҀÇ䡒Uu1 ~$aɀ֯߷xߌ#ig?h|ĜOA//"=ڰM)`) 7}V||9֣Y6+}}vzw mC%6h3}\l0)eOhCo?ۡhr_G/qOKkSnGڅ kOA杖X'x[4ߠFo$:Ox5 gK1డZ4="k5FuDsnpFꇋGa".bX/wh}y< ҎuwvSPBޠ>tq{݋ 5QUjؠ:yYϽoۊڡیHSr95Q-k +><O?d5%A]- oJq}~G._}SiXƱ"H_:q]M>)q档mO y 8szjO+udMN!}%0i<=2m̓u'>c^ NMm،оzg3Wxt*3l?m!Ei+ԛCkH0^_R3]"٪㚓N\3PqLA\0F\;5&j9q oyL"]鷗 qhGs+ 4(K>ݰ(i3hlu?wϦz@cӠP(u2ʱ1a~'zzfʹ57%=]G0GN}|K~$}g x;bᅄ>ʧ6pkb=O _tdZ_S=qr7T}ΟE{S0T~3ߣb[?K&]*z>Hz1W9(AzSƆˍ瀟8}2x_zCqljo`KBSDmx?r!&| 1Ytޱݕ.#ͷ)H]q8|{#yvxv|ϼeK9mǩ91S=D=?I;\^ϟ~ߖr8RG38Y.}qZ}i+Iߟ07Tr|;>:gAu5w%}'1WxC<Ϭ>w5 Cf7{Hc-ޯ&<4Ͳc~5z\w~oCN~t_ݮ<||[W_:_;V2K}?hY;Im՝oQ?*Z EduMy@ x"v@<Wu (RkG2J[_3h ""؊yW9}xQW9J"h:Vښ)m=mvc;|z#l}upa=V`LWXPxX:k_(#oX sB]FݝSX:1Ni}S>ŴQ3 ]G`}zI#c0#0qC|DhMW ףgFM =+G'i0;9M2>g{W%9/8fDn/PgN7J[<=}cutٟrNkm + mWn'dCe"m" A| +5>F:En_8k-ջewWP<Ub +t_F_"k6ⴭӌ):e|8ԼR0 Hc6uvAr7$0wyιXG43EΰhsW@ׂ}}']9GְZ^F+\d9`~H=Ÿ?GW\iU6ԏe"[=uz+s*qO7s+;j۔a[yrN'W?rQUqA |xy'/.缀fh +eOuu;< ܿy:w/IL>HY߷pS_9ŹH}ܿ샓D#fF3J'JQҹSz|D]> -Y/v>\}E (]|MX?f=nvgn}_Xqoَ 8Z{Yߢr_Yqs +/]cs\wOY'O{}DU/,W[EEЧf0^Ϝt|d^oWO6TMOË߼^e Wx5*«v +rL0kI]]h5Vv%p~rH]'IОwK B IZ`QΦMKh/}w~L2? yɍɻlrIOr{z06oR#.n~g0l%1Jg Qcci:50e2)wEV#px^~s8ss%K s 1ǩ +ip亼'W¯6,_ʱQCܵkO5/Rr#džcـ2"̤{ij1ʑw(״6;[; ņ6{aqy>* ׇg8{E#4|MkM0uy)ZYsz^sVU~o=tYmgFh9ނ>Dܴs8 xÞ'}[*_xwU/3OTOx͊ +ٷȆ/d1O`%>b7h;~!ׂ.saTj ZK\yTdl55Ft`HU[W,7^ $u9Ey^Yqɀݹ_L=ki&fIK?،÷>#[~-x31<9 = Poɼ'OimQqK7uklHobQ>ҙ킍9<.Cȴ$ޣ( %vFS[^ىitT< "}#s k^kgn4JS[I}QzX 5À늴ynz=Eݠu/4t&ܮh\E iOzX܆yߊ߁O y'>B|;'@hݖ!ޒwԀO!N3Aӌ>I{7}|3dyoWO!_07[yaNQ[}%k~7~k=Yk2WlVA-y >f?\U61fU636ԧVEW{ߔ]&}3^1;~4ri=W@ Ci~z[ۦk6E l9f˙6r-\ilh~sAO;ngYI{dZi]adb,N"E9=n7ERO^^!&ؾ/"7(ܭARGX)ylή8rhQ+A~ 6itKg##=ߠ+ZMkmX֦؞{FM)  ч=v[y]8_aNBџl53M|DCw87j|Lfm _7agS7ӡ\=9|R]k?DEM6T_[,(yO?t}:%WS/Ef9 bv,שljaˊfJ2h-i_ +iKt6ud[Z.(Ƃ-^张C{KL7a\ ND)H<pv?6HZf6fi zu}k\xľ#;[e E,j<bٽW`BL::BE `x8σ l +k:Xһdz |>ܸ:{ +@Sǁr8 CQG]3,?ƌ: |꣒Ԅg\PC[>6 +^ c2AF)`Z0w "ӳ- R9GV <`&T(IE3]^vɩV>oMm[shZ1ڲ4nk~Ҏh2ob<d79%(o+y9{G7evj A_!~\⨀$nn.,rki5[Ɔ Ǧ}3F'V'GYSNZ(q:uՒgN-(-EH YCT`?0a|iTB?/㯱욡[Όʍcc^6 Lͧ\#ŏH9҃ծ~u[}Qx;fWcf<R']anRFe(0>b|γBݎMWnSB\M.ET}ߨ5yFE꼐W.E?Qֿ?ګ'򟩍+kGR n4;WkOg cssqn^/gN6:vi:=)n~L AbϞmo`#JSrBg; ΋hov[Em\D-עSb}Fm!~R=p^>axU} +;I0 Wj޿mhݠKiv7lGuEORcxeZ#eFke~b֚πhUO:Z|~h]ARO0:7_jEpl->(m7nw\1 df~ԁ2#QUJ)~ϻG+!x:;31e9=im+֚8jbQR@Yf.w̵VVvXM{^Ѵ]X9ǫĿy]iL)99M8 +oCl0]SPMq%觫#1E,AṌ:Z8a.ng귯l%|+,Ԯ+- ozfgb;t+a\`qx`Zc^;g(ւs%nK$0cfq +3BHòI”='F-5R.)&G,Hp*(\?tѥE?h:^(ovg PL:?Қwd>j + + (ET-ˑL W^#ۢQ+[az| +3Y ?Z/_vMX2TrN Nz ]oa$A7|D&×CSHIXηhmGBMLm{,sݴkQ(V!"!R{QH +_]LIKBi&){B[_H_G;D%jRk\GS>B3CQ탕ӊU/K1/:+E&d9"j,M9aaJZNGۢSH".ǺdXPC]s_ޘ2뇘=4ozAa/V?!%*DG: zT\DD}wӢgPk^DQz^^Tf# ,4/˴?VI\IS'0e2yTCYgNg43a_eĭLDf(bpU;X"eLCϕ2'ɘR=h %;tx}7NbPa}<#vL"!I%<戚\'&帊ýխ@~IdZzr1j1= +E~)MQzp*Jf:1RӢ`$/R{(IxCj*UihKwUT! !97S UygCȖ9az\<7esΘDگL~)C}~62;65go- #Zr3afCW"դ=U9t! +*-;X . +E uqOFT0$˹ZM4- 㥾kiUĨb)|:Wі?}=lo|3L{S yRǬ!~$$[Oc<<=SwrRt}yNhNe&OsuRTbkiԗA%7.Ar{a47A W㓻PFWaq/92cUvn9Ab _no%Mu,z@g d2q'jH+ T#!V1MıFO+3' TyR7g4[W~{K;*+kJ/7J\>FFțA~?G /_~Q8m@7 2 ch0~vp p2F-#w^ø 1øM~{go I&"@p6k?_ayx~xL]-k{KͲ`K>eo|,{#Yv0'MG컀8|2˚Oe?eC3xY?,{ ,{G Yv6Og;7I;#l.Ms xKY$Y ->}0,Yo=eI,ne{u1>|% `pO0oJ +?,yx ݯΟG?Ǹ?пh||xu xv)/WYv8Mk#;6`}`[ =m!%zm84z'>C-E'8|g?{VLyN' _??J(AK9я低?G訮s\f$! cc IXsgF h$#4fƱ%QF,$-U /UKqWՇnIK^x$z{4N^W}Xs{>{Ϲ{!V:6v~7.oσ<v~!t)\>TqkDﯵSާ6(!mĒq6\کxuj|Ư!%\-9/vɈg~>_e?!ڪ0[ \3Wu>tb<5YD\r^)~OLN݌vVi2!?|o^mx߁:d K|7pz2Ħcc2ć1$jrs#{,;+'W]q}rDޙikm; r> 8x~mT&, J~U~a"=_VL#J\OHd- #T| Hg[f\Mvt/%z;|zrj|@OUW.[@D!@3." +ڗ@_hYD!GdeQzu>Y 3A1/=Q|*'Tw^J&S'WcD3i Qn'Iwg +䖇-Eބ*g=i [׮ї#a}w]Dym bҚͿ#qhC쓆jh<&0I? B~!S4~!=rdŀbhNCtaF) +T")zmQ0U]п$Wr6qAGGӂ#گS@c3sh7O!O]cE>fd1zyᝅyWsHd:'ul~'J=/$ݍErX3(6 i69a{`ZfI̝+p؜ΈNW,j 2XA^ƯU:rn 2JT}8?A6XcbUoRgӠYuPѫcLT" }H+߬#]z.UE=&w'YkoB_|wIgKT{r%e< 13 FCG ~?m$/ܣ?c)11ƼJSp )eIXs{{yF.SiTJ0Sr#\jzC#%)gs-i (&c%0͂1lhAa2矚lX!rx= ]'F -߯+)1֏a`rj0q} !ěuJxNT@?;@6 }@Fo&읞2'0Q ?r?&+6aN@_.v1 ե7czd ϣ-5z:{A8NOyaA]& )KwmoX..F-Wgcx䋵cMY6`@BTCy8`XC;Ú>d}Jq]q~F`WYK?c +xB\% #O ruC[B4S3Vvg !J&3e> +]k[3И?S _ꓫ 6${uhdGJ +Жu#rZO|'VJ=ekNB,coЈA;"_3?gf ?Dm!9o ~hc)෉0Gzt:g7[Of~XPGSjmu4/]]ݳF6c&HJ5k{K_U`fZ_)H4`LQ ')_ ~ |֕ hۨ|])a/ +etT'̆jc0ӹוa><`eŕ NJ? 4w[s` q9q) r cZo}6!:[諭]k}k<-ٿBI󯖭z9p`jzꞴephe84#pLiڟ/, J)Jgל[Mre +3ͻ[_VЛZԳܗ"b< 39O~OF%DD +Yڛڗ|=ԳTKْ})ٽX[E}B޸8Vd*1|F7q6)<!5ܼFP80+ x6p<+m>x.x7 OlI+_؅٫T68xB͆R;F7MNlhhֱ PXԾ +lW` f.y&OK![Q+4Ž1qja! iA·J2fk4D*C#y:m9;W%Y SgݝkES)/;[\R5G-"$l0O.űI蠠[*2z昘iF"`yC`` X'Qv>}vãDC}YܩzkfZ\U!x T@G__tua磟~Q{kU84KŢPАnSS:C_.GSEbl=3i1%ї)jW!\o\A-)ƞEeEݥ<=^b@J^+$c+Ѷ/yxρƓW.^Fbz90 olyy]hg}ns*X@,.cko\gAǬpW(n' Wl6iz ~/F{H]a\St& pC `dN-pXbk_KI݄>lǜ𬅶7duhE!sA0*vʓꖎo'd_|w7OqΞS^}jW|*gAO>7F~jf +էуYCh)EpB)Yh8@Ji߭hKA<~h8օ!\[(ۤ[}̝++=)K +w/-%j[S_vCN + QQoppDa=,Vb(}>YY\ -x[<Ih^? f *fsoRབ+p)%O:vh[., c,אiV)>1hK4h[C6cqzp3ꥐS)ݠtvpwտ$ki/;u_Oq +LަJ۵;՗_gZZ:nf䧧-0cTIz[UlNZj{Ӗa)q[:m ϔsPv%ָ6~k+{%8}`[sy}[jvF+A +P*(]}1o|$nڤaU㨉[!$!>/AJh?3і'a#;Y:v~AOo-AAkŠ8/SaqUE㳢M\ +~W/s[{bnq>yܳ3Nsl΢ȆA[&$ l̄oFi{b?~ˉqOOT)`h:1  +?.t/Q {z{ >+&~QKv~ݔ̄YɌȥ W|`\.YQ7lB3ݴj_ +znh~r%| gg`]y4{GhYXڥ x/R.'vIJ 2@F%5ܔ!+m dDF2:`ꔫN's:e8QxrIA1EO)8( R2@( Nr/\S >EN_ѓ)=;]WH%g[)d*' !1 ]ARΗTB=%!Ҫ1蟎ܕ14 rSi˗۰DI.<;#[1?_6);I[I,N.>K.e+%7sIv lWrɅSݮ\29ww{Bnʵg6W*| c$d !X22T+TS^I8w%iJy >J/)%lb\ɰ׬s'*媂tE{2ezS(R+dHA+hƦURdYym:R zҎ1W֓xxW\2ˆ4X{F2+zr& Id, %)W֓+KVF8D]O)px!EIfi77W7K0qw,3^@6e;F2xHFoI9#"}HV(sujT1顲A +QHi'=^+PBxSy*ݒ]lR@(eOX=>7FR>㉒0;ub5+Vy-J+4r~TFz8|r2.~!Vsމ +/8_q(?q3?ϰ-bu?ƍ!(8&Z~~ Ž4ܷwkx`u,?j|%B[Szv$sޟƲ'rq.O=ޯX^r?ź7#TrANE?qň~ z13$}ΙG_?&y _T)O8LЧpN_ )a"1>fu@ӿtmٺQ}qvPjroc{޹p6a +cV_wX|_}Rd@ٱcDؔÔE2v2fB JCs6~m"'D|i9i׬(M.}gwѩw1mu Ձ<ޭ>r9Y$Y;QHC󈱴^V^ZYj/8li@_}QՄ_Z!xo`JxA/K6OekQI-[هs?n..H}xXǜF{Mq਺\[Gng(FrA_XAŸH )O4͖Lt XwD9VGy0_ vSbZ>$0gdl&t;aE M"EX.UFfa%щZd.M >e?6 uttm]f/jgZyb\_Ze? 1>;/jAZA'y{ZzbXUPCˣ?G?nA,Z(6k_[lj%wRdeMT4f6cllk~ކ9RP +Y>/+¯~~I;9ƏAسo?%|~oo_6a럿wWg/,宑̬}CM܇ί7o߿cy =s+o~g~מ;+tiOܶU\o;7z~u؍vzoώśo~7_懟o?Ñ{ooo/[r70lU-w,ܳ~_T]0=Pxژc]a$:?%RtI_bKH /F rtk:&:G.J +sE3J.:~ܽ6:[ ;4V >hzøhBIgK86NhҐ?CCo| +oBy:%:a:ao_4iDm =FF~1./hߩ'_/W|t|ƸN?> >?*?#i̔[ѯ$autO5+[τ}{24\?Zq7hg={s51eJc7j[F5Fh& 7iī 4߫f JհZ >׀RC?oj/4$oҊ; ,^`to + +}O +%3x#aQHJq$汫3 &fPRKqU,LW=@2K!oYZP>ۭ'vvF(U Nfp|,7|o@YKG>rfOC+,&tl|8#4HU~ D紆_ ,g忢!kkq繿႗X^@.p48pb\>MZkK=$2\K\|$>zxO9`6~kܞ#Mg#׳?@j @ (#ݮ1^z {0kUD,]nBC{\ρk=jӏ6^T^B*Z] Ja`$Oԗ%N{Eu49k +v¶ݎZYJܞ㍀RRζ;ξk;~|OF;W7 +4:юuu6d6N]GN\ٞjru‰鱻gcc͎=;~ މ\3MvT!:eʡ#9~IhR Chr;noIѽdW=H]B]NΌµ"aqUįl{ MYs`'XL9v}\0ЊZ6 ͱ*v[ElD GVgQɔY8tGp UDJ-Y:J?-qf=cF}QcO3]&5O`苞=7:Ꚋ<[PSIj)Ȅ~znwѳ4 < +s憺皝Fem[Q i!ffV܀aYPT -pj .%t&_yvڋ@<L$j49gݥhu<u>NWVUu2jn.^,ߧ/񴐌2q]FnOG ur=^R]|dnEAi9J#2VtHt|Փ07"kyYͬoN$n~ KE/y`@MEWjUV ˏ?Wed*TǠlyKrg.rap6Le:}Ϸ0kH@.7ʘc]rD6giyA۫W.+5wl.6T 断(\KP2 + W҆?ʰoIqA.rAiL漐\dNKW]˭*s6sheU&L/}ks,\A?5ڼk}i~W䖑iGt+OtUkhekϦḍBs!f-U5cFqG|exextWE rJV嬨n"9|gR h~uIS$j\vm-뚌Ly.ww[}L :ZTGpJrN+Ejw镪V(J~;V>E9+.($өs/.e=Vu*W-L/-^I`?O+*+ 3/gdɏJh/ΩZwѼYknXWTf2|+oM]YV號"YjQ$ҲY 2XUX|*~kWt+3WXӄft!ʌ:uBy΅ZUK௬h.ͭ.'`6Z9ǹ_IG`{mqLX^A6r\DԱDK}?VmmI6Ϻk.ery_6KҲX"K5FxVn~Qf? i})jq +o Qx>OPnqOZ<]=Uxf+3xUn/Txŗ(|_=g~{~=O췫T_Ӭv+-j +r/"Yyl>~Q +j +Oxz +OLW~/QkeK&9n7mnϷ]-&y$x`I幗Va𷿳)Z4SU]?Sw vu-|nՙ羶6 'b?8~ܚ2Jp~n{7g] ;7o^|7[ |?p~>nW? d[x3.lN繕|38tq&9w>y8ܥ܆-hl8B*p{Un9a)f,k| p~n5ŵܰqp558=.fࣀ~aJj-YsS~8Oy.Oxp~.B)』>x*c{ +6K-8?Sd7D3/n? m!t~^< <_5l ek |'< <x nMA(<< a]yn:pmb>x!{x*Ӂ3v>|+g/~3q?9V'k<|v?V;o>nZ|?p&n ax YKZZ8x)! +x: +ׁW |1bw_| p?x e_< x-x#x3Zແϔqk~aY Z';;Y#gB!nC?<F끧t skDs~]z$+fC + ?rJZ\&u'@o I'~#-r~Џs~Op~Oq~;8Ĩ~q~/r~/s~Яr~Яq~пr~~~~>AAAqIQA?As~Ю(zT%ziAA%0;@ @'qNq~it&AOq~>Ο7q~7s~зp~зr~ 8?;8?8?rΟՋ9?{8?J󃾟~'GF!z+8翠~~Dst~~~~-gG;A#Du'}#}>A(nT%ziAA%0;@ @'qNq~it&AOq~>?5oooop~wp~wq~??s~p~+8?蕜t}? 9?8?G8?譜Խk+#Z`s49~VdtT?H|y+q_i8]ҘQdX'x_7gjcau +M$iѶeG׆8clhX_CG)6J6r=<P|~?\S iĥ֩u0>;9Fur맽cG-/Οݖ]'FQGCgǧoK\bLq,K3R,ի99/R"qB;\du,2_P3:ɟ}Gֿ~U?m]8N~ɪ>IeBu_$*~U$񢬟/Vų~N3gt񄬟et ;y2FYVY?;@k+e~WLDG3]~NQb/)ns=YBsmSD/U?d1Aώ3Ud$[KqMB"xLc{GcaNH~ 9:Fd=e6Nvu{lq,7Wgr=~NoKhc?<_W/َ3&~zx +~UWi5w]鹢~T\񜬟su8牭~C~~C'QJ}ϧ]SE~6S?#.[_`x_!}'c.%}e/,0+qEi:׎]`tӹ~LR+|FSSt6߇IJT-~]3_ ib< kL=GcP7Ezg{fjƫA绰5m.t Fi?]Fg撱4fj~E3"oi˽~MXz9ꦱ[ -~3i|s[:v8y}W31C{k:g<"aQT[ږ#>1zޖuF;{>cOkFg`Ѹ9BcȦ.>D~t^]c,c&}c8N :);\F8i8A #,獚8f˞mkzq\n:oҌc_PX΁u6 ~F/>Ⱥ>膷g~ sL>Px_ӌOh4^E7'hͻj@91c {z=1w165a %ovkF{fZiyn|Nע^#t8nn$i8J׶G+4# F\Ưyx&#0[m^bK dVKg/tsowGS\5^t'Ņi_Mro+m3]c,yTO}Eu3'}X f=t)Ce= aۮ5NqX[ ՚ #9.6!11:&á=ɤ6/1_=n|; D l&7SO[1[3SA)^]HC/$'{|_=޿-I{lQয়S4&;EEiu^iwP]O;?pi̥y~kOxz{]z'U v~Hܝi9OQkBci;l֟ϟx:|IIJѴ4=9STӴ>2zʵ׆:s<5['[j |?ߙ IX$+2IP7d2Ժ`!j_mB,+jK#XZ[&δV* ek؊56 d{g$ߟ'<{{ɰqk˰ N_ ~j̸?;E/u>ei|W4~Wumi,?JQ ֔ƇxoG&?JC[L;4^]=xq`_i[w}vți" 4wDq7ai ?.\hhJ.qomK,linf|\m[EE{j`[YqehJ/+U.MA?{ ?a>m{*iH;i-N]ohh3B{fBn} p`j]_w/B(}8ʾ{q\]aߥ9VGXӈfZ.f(}T*6ྡ\Ps: .kzm"a{~t~ܤȴ|[Z#-g i_F9s,CaMǸBRj{ oEG>4r,79rvJ$ɵO\vX;(0xu"QpxRD?,VJ; +C<=9+k3 oi\#R8iCctT&J}WO׿Va\ب׿6vZڠֿ>]cJ^Զ[|Wnrm%\:.Q_f+OɎ$'ziΌW<uY!ZoK|Tee%׭W,vuҹKEnXcd1ʋ.Nsk/`ܝױVey;zΣױֱtu,k[jaZ~fYuG#aֱ4miih֗Xbk-|:ևX~֏s,9Oֱޒx\xbnM{u׏u,#::_%m:OZSſ8X:NZa  ;'0;NNP'%WbNzgXH,gZg^e:Nz3IoE:z'ؙV_:yNzbK/^I7R~w 2]nw3x^8Oze&8β^!tz8βW;I{mH7I/p8Lw^lk#H'FXF~&gϮ#Iwu_:7XwI{IN/.'=wmw kmqk=׺N/3#Nz+ I/pU*NNz󬋤=:_/wB[ä'.IӻIw_/'V_Vo9^`;L5,76z:=ԃKu,ױcg׃KU􎓞=s^+Ku$(zw/{Wxރ&<\x>Aװ\B6j k*}2Zê BQkX7v^O[z{*3pz]ְ8w-װ^ְs*+fBħwZ<{Eu|\v|"߯Ps\j25mְuOěK[vkIG5!|ְ +Z%M%ۯm#r 7qOWsXO>A~~w#5!-sú`݂ǗzzXw:N|e=Xl\_t!WT~\F^Y|G54ou#a\[U?~=a /|l`0O;ד`ǯ;m׮ǧv6-Wcr| +(O4|s +vjq +vBl׮%-#/,kWr=vs:i<⻶9^|i9%թ͡ Ovpt\4H_>\v<.W &x[\p^t'f*7lt9ۮ˓brŬ[](Lϥ,j-%Pu86mcDyVko·;ʍ>Ma}L*ּl[gcD>1LO:SN(SkBOJy' H8f]\W2t((HYY?ѵ =䙩 L}wkez,!(`oߤZW J3b[/Aa%\!V :-CX ]-2-0ĚJo]*_x5 iLRհIkb}v<{uҶ'CӬiH;``yn]iWrVASii;3t>|ӭVd@.tk4tچs{ty["-,c5ZO`Lye,ON\! SPLy,/C7O$˰jMyCɷ|^f4/ȷڔ絎BG X^]:WgZ#6t>o6Җ%C" |X^.zi~+DViy<(O[ϲ1̺K|u>0k%gm`y=U>0n/Y^Osu'gҖ6iaͬگM㋈ {G-2"O_7M?qc Dž5.\,rq]*wlCwb:XϓSAC`@IDcD +qT's7 kY|(;MŻ&E! ~m:rCma}/c )Iv0pw< ܰGߍ+/ζ£E|t0tc`}o\ovg,X`k\tr[ lv*`;`0vX_OH/;Ep`@֠_M̔cc{–~?Bc}Xہ>ؓ%T-L6ݘwHc!?P?[[-{Ere7|'=FC;>0kϱ/=C-I:M8F nL9u5-!чeگ$qBZ,{JCc3%'IS<N3⨆0İ϶-@hǦ~޾8Jf2$??C)~o~+W8񻖿7b{𻒿|F +3$!ѻ +{pv.#l(z]Կ}]5lWN _uw7~"ӝ}9 DyWA٧e싟i-`.f4ؼLsuU^u.}^4Gߗi3adƈ9lLxӟi4miiuJQpDDx{F?vs~4P44I>ZA֣ *o;{ _SCC AZkDmH,3 eW d\wg:7i[s~T?jnz&~_{o}K;}oٴ㽩ky +xCgry%nǰ1'6X8̋>~mABϽ<^Gcߧ.vo\%[ ">=_;N\ɽ}e"~F=XwK΋~-WB^럀ې·Iϋ|4x8'pHw^k<ܓW-^S +BҫL7'ǡ[UrN->rE}0x3x^?-3xk%rK7qu^m'=0ēNoI<9vod;m0x{"> x˽vrIiΰ\9טxZ.OEȽq)4%񌾜i͐kT{Dδ.g{0*Nδ&I2qg'.1=Sx?tn>]COYp=y.qGlU=~,ZgY}iL҉8r;VdZC|!a)kC/3U{LkJ:*7o&)K岊1m{Rr.Ue^xOۍ,k70z:Y;YnG|M,WUL6Bzrbp҃^zs>{SKizuWܫI\kɽ)z8yϳnrNW'yRɽ)zO9Γ*==_8W1Eo^|k_:_: >{S~(=x)z;/.3x޽NzH}T{SrNKWiH^H_:B+NӻI/pi;NJ'V;%W'FYmENzQˤ/NzQ_H20'QNKEooBzw KcB/ޱtqFPʏ{R>Sݰ1Wtt͞_ +O{Q&اͰgo{ #gֲoE~gygE^//Ğ㏿}鑶șx9/ϻ?w?~z||j}i['r{DF2#R4 tM~yyV 3B>#r?pv=;^tW8^/cK܃(WkcBa4P*BYl+3z*DE5,</aF -Q6$ءaac)E<_X ]V Ǘrlz߅rl|.etYp[>.7滑𢰰W ee0#E}İA]Vp~:{Npb>"Tn ¯\a=֫Um5HwEUp@*i>1q[1:ᲞwGȽh;fģ~7zy'`Kog(n6riqvdX;_<<wko*=0zo^Ӟ=[fgӊH}BrjCX3JscB{=fN0W#6:=#C(akx?95?Bw;Or_a]V.1u??veXxnlkEZvl65:0 e3zX^RF'{h=q]N4ܘ#n/ք'qC.O6*ʛ y~t 9:7~uGUݏ~Yw3ga:ݝ:a8Qv-?6un_YRi QW/m`$_%7iY&>{S}uFwl8okg_ڵ}' e}-|?L>^oRi+}G^\*mV_|Q|"7lT#a;ED}lE`h~BZS&v_| q~{QXABJW'ŗ3}ȳCA[wRiWanCSyCN{I3sZk=@f侞@R'"A'I\E>rЛ=5xٟg5X˒DW}+<`&Y6rN4Jk! _hxV^ùo4!S o ))O+kOHpo F.}$g'<>/H N_ Ù%xo_R>KxI=Uܓb3|)O?.=ɕXË+op?< oeRrA [Xq]$/ K@/$B NxXg3m^5ɟ|NLѹNI~IeB)KŀT]Rel]#Ը#|y1OH)F2ÿuv?a\._dLx@{^mx%;T3 1?)x% _?OIH +#gC +6S [I EG H_?OxH|Oo? `ÿẀ3~[< +xO?3%!=?C%'Y~?kvɏv o#<- w  /"UoU !uW/#s|_?W¿ ½Iu73pq O|V1KHE5K|e'<:I(wt],>ߐ(R)(?"ךzVQ[µ{.+ ng]?!z_j'ܫAj'\%sIxLcEx@n…skn4{ȧZ?B>M1NOkxpL×S o ~Xlh$<@? * > ~MOWSҧXWIXM) F.WKOc5OxXG~_ӯ}f7K| +?>՜c +^-_M7E?>3VL >V#0K|X_CS9 C_AO } +.S }½'\I|)tc8dk?YNK| +d{?OK xX^ O} S5r_Vpk )tq V~j2Ckx,Wo|9mF;u wY K^D-OxHhEkJcY{톬Ҹj}%:-ۗ?D9k3Oqj<5/DW]yy:o~t#ljDAx?=]ˋv*3?:erCym›=>7-ԸO%mL~η +GExNBϢxy>=t_$ĮcK,[Yt̿z;ݩ2;WWGF7c%ʹ&YF_I$zEhzTLP'v_.y<{UK?Ph ~yƟkv])>n=QލX6Qj[o8RrNO)&| +~J_ J%."mh>{x`j[%'"g?B=t(_>O)Ǧ Z>'닿-elkwnjmD/OK !{Pog+hqua澇h?;ur'uez\#ɲD;W}׈ݐQ^=x.H>~|~_vZ?9mĸt\6_Hqzɵ&ߎ_H]w/|6C:?$AӠT~0~bC2X#(u٢IIߚ%.L4M smI=G;|z#}3o'x>3?unN$77eJ9ruل15ܧq|Go9v|FoEAg>8XˀqvK hxO}wQt5'TQ?i)߮ڏ /qD܃=c&"euoPM}hi}2U棏;+"C#ILQw*G66eF'Ȏ$Acϼ~Wb ͎ K(|ʭLPq} YT- [e+\ޝ +YɒC|ˆ~{~]s]1YӺ[ݟ lunw:Vysk4y:';ۜV{_)/y{}?{:f![;3IlM;z.շV{Q%>ƹ-=eu>{z,*s5ݢ, ;KZwލU KzC!ycM8c=+m7T%inn,r!GGsO6}~3>bsn!ysᘂ|?oa1qaybɣ~2?O,GҎϦ-kǖ%"K{'@\0f?@c]^ߋ{5՝o^ r4c仔H#Mgz/¶rF붥< 8z>! O_zm'aw.qljqA>DQ˕~_Ey,[4dB{+}c_qeGDv+<x }Ƅo\N%~K*D|NBԂߵ͟}m.`k{ 63geNNJ;ov܅i!^(C2, yy/D)T Iݱ^ rEʰ sFЭWmm` sclƖ\qBrbe.81ۿȓs +U$!8_/hx3#W_ CY;I}?bU}࿍]~w%uy ^}77xPixźCfoX?~o_Ʊ{LŲt<%eP#C\:csD]g\lxNJ?E\U(G¥FDQ~1^}Ӗ \Ru2u"SߘcmATsF^vkQ/Dwˎ;&їdF~{6{5M>JSį̧N"MƮ4BBb_?m;pƱ[GA74apt /GB>lwt b\moN<nM{o6?,ПZ!؈CG{x7agK A?BHiOǂ/`,* "_]gA.&x'fuy|uHbL9'Dm14eS>3^?4L>)O.g$^Sϋ2ڻܑ%="h"Z ZJ~.1f)_v8֨ó$_`'#q/;w]C|cO1=+zP$cҿhVGH5Nqj 귳/^ 2p?En]}c}JOqhNvhz + 7n1Dːg 4f +ΫxB粊2\+E _KhuƏ}nqNYr'wAVMOawo55^9̝aġ_4r8W/Bϼr_oESo/C1ÀY)f<}a%?k(;> GBݐc(l|␨OL"pts߷KmlD}bX{7kw _}BQ߾O௹@'w>_KcEy䥨'C|읃ˊf.).`G^O +cÆWOΈtQvʾF٭1 gz N^e_gTF.3;cֿF +_)C|AhGYد y#r[!V1mn\}CRu?7xҺ; x\VxR1hkuWK[CFG]-ö2noLk++c|µ2ꊳ/s+ܡ=˄k׭–c6)Wz`?.6>0h{&r;FQudv@ȏ] BQ򂯉8eJ;Vr zC ;xoSJmeax'"<&O(FNLJ\3z;dH\mT &Tmi1w7 +ԥq%VȪX_?k[5n~YS#,mdqj|tkw(Q.i} :k{WjʋnFO+lgYGvZ 1h9AЁ<:N'К'q\!n򴾦_3y?_MC[ -DrD#0} +:JOXAp WH2퇰D_U|UO+rc53kg,fG*}-ۄg^Ȼ=5rRإǼFuvz##(/x}-uZX7 \bMù9+z0Tϻ1;)<`Z&~?.%V nwp+1UE kt}5׉ױN{Ds繉۫iqDzJQ=mb'<#%H [ȨvUFD^gsGW,ԍ}i/xwMeoϹXXпJNl:ƧDŽ˲D9HIUr#:ps29>+$c mU(BYSqVa<=a;SƣbGnGг C] _NQ?6<͏'9CZRkkЇFp.k:u3ڗ.ܠc'f(.ž2c(5ꎘ|3G G>[<}&_Rw~xc;WdMGdB3vX@<9_ ʤy{rkBq{DW,xW=u.>6`odžm<>=vᘧc|,4zih] "/mfw5Kϓ=ZR<>HyxӶy䉺ٟ]l_Y/ϻy^w,u>ZkgÈ[7Xm=~~&6?;'z"V%}Ժ_(Ęp/_ |7. ^r^ӭz!V!_ո#G+pҁ2g?!ܿôE| x}rkJoߡ0`EJ D|_eYWh|P%Z%.bf6 +vvԟzax}l(Enۡp;6uU;xTa,|l@^ӷ@32 +;e2ne "8uTڃ95;N^t^">ڝ^F*BlS(lR{\ +unǥQp-#6\2(zF]}Ue}(OZ}Լ -@^zŤ}s. 5&ʓlQ#? 6k \ sXs!;m~%6~J4L%޹oޯ{=ޕWگS<2=m1tydŷ){07gig9~<78x3;[jne=|6yWT64Wփ彉,ӲCYeZ '>b)otvz_8OaQ]W oQ2.ul_~Oe\XC](uwe~5߽P&CE!u^`^6'ʍyt?ڊrCnk@}Wɕ)ꕰ6Tzˮgz9&h|X07Z83CJ6z{}=_^^w9y}_ϫw?=\_G ;yVB<WZ8PLx^x-۠'&n!652~\(_v۬nsi;yQ!?YިNt[pM|q'N Oxxhi,AZy(ּ=zn `KֶjA9<~۞vi+@e]4ʏsy,˲ c3V rjP+)X}sg#Ibp]?(TОօEM^%gfBDލLwgZ&-]H; )VvǭCdYnt5>V CSkvw9D}yG Ub83M6ކ1<؅rgf /IJAӴ_\9.F}w@1mX>uCesYc*B_1n +>q` 9ۉѶʮsW" j 6 LW[mqFktue x]̸[gN7҇Zޣqk h[?}~m/b.kV~/zgvq#[ [Pm[W~7Q7uzg09<+Wl3gpdp̼ x21SgZ2@z<T = 47odчis:ogcquyiK?krzۂ8sD|>xhAL~:Pw yeF7F~CGw(߶4;rl݀q&Wt򣛐sJcAѿ%)Yz>Iqw(w"{ }пq؋@?zo.l=ƖVK8iVQ7u Az[ڙ~ȶҟQm_/ʛuK c{}DhQޥ`7>c FUOqN*i>wp%R} NhLG'ik>UzEr`# +h*EN%Sw+Ε0*hp c{1]q']0121yM %}-Ѕ}AZ&֣(<_BSf9<99ws8/OC'pTmĖ ~^/}޴3mfÆ{76fw^o=[Y܊uҌ]Omgv7ijS=߄3zlN\[G'Jٖ$Sw{t +}a95Zg1G&B.]hF/c"?}v[cb3;/~_RyX)>*ơNq~7s[^ 1S6mk;g#8_0ƪ|Pk. ܗ(Il/R(`^|Ɠa{lt~􌽾pܤY 냵z+k˳0ʽ9hRY6ƪa&y!MIAVē#?^1s3RTlx>` ϿR^k\/M¦=3EhpO 0LF~QVHbZonl4P}]d#e{66vY{R=d=v38TdB\cor jON qkhq]O>zIwźPYC=:@?/Ms~Pfz vy +7X(粝GPꔒ ȥˠ(YvYŽ̰ѫ8^<=9:˶ӢQ&G["+ib xee8cf/T56n8Y=(l{6z\>y[З9 YЭ]Dg7Vy1ܕ-s"MOAk~87h5#N MU4fM0ƸIvN~K%˪-wfIJA{[f2i;U6;.h8ibJ\:I=jӳ,L{gm8KDܟS60])}+<| 0^~ ?\;)=#d;yz~|VogliyWly/ Z9εd7sːwBؿf Y QV/ۥ+Dv{20-ZiisJ3g]"kwɹUiݡG$nټh ^垱Kt(k3O>_;CidWA]5\%Z~C -M_}/³<-?sʶp.2,/M!bu֏2 9kʏ}z6Cvߛ=.2LvQ22ˏ; ̶> <ú=NY3nn;y&CrƻOǽޔ1whI}78euR&*mtNo8.~yhW<{el:FЗPgˏ>l;/|G" k۟>Aƥb<غ_DqH뽽͆vfMh#˅ռ>cA;dX6KɅ6k]TWO@_'ۣ +RT춇vka^>Xޓ'ׯ9O3ovt/hw:яՇS}ZGPGobS/y(ݹϊ6;v ڮvog鐊V-ۣ_WX_2PTp=͹{:h+c&2KdxxelBc/QF:ZU<|oLMOUIynsK4SFPgG{!رX;>y>gtI?+}?!Y3gG];p嘺w҃'lBz|~>I:Ǖn1AĄ9c㜱猹~gUE1gؽҗɍIagYW{&K4"WAlyy8k1geU7=P#X?Qζ/cFqxΉu+'4'xO ϐ{;ƅݫЩ|˟dzवKa`3u&u'oteN71S_Y-x +h ;f!槾Q.ˆw~xap-L +~n׬cF.3J\olOSD9:<1sGx!8^+/JLg23zyWýȚH}e{s|>C}9/3+4Omn7pAݮ}YО: O<$z=`>:o!ߏZo.Ѫ~8%ʛ;99V}+̼s/_y4}A{}ML^JSpM|:}v̬RrOv62T\cnf%se˞eKy ,{;ԋnX3;}.D玞jVxWzcmm? w*7xAjTQ_|eGQ>o#ߌv O?8 + Ʋg-7vhg~ jyM/ #΄.o>(cx 7$V,ZЗVeЀE߂]8O Mlh.B=Bo6M?}oJ>t{?K4qseƀ7B xg2))>߲<K$6~?&tjUc S#l?ƍ_G;m?/lQهs:A>H3]2iPVwx`$ >mx)}g'hOY_X~y}3 _qWȏ 2#ʊX/o(Y{g,˦Ocf@?_Vy7,aBnr㽿z}ރ0^@od/tt6\u%MT|>.]q/^5,BO ቆq0|qg}֛귾^m]5;o w~[(CeE=߭Jaef_N〰؇w?up>uv6CڱvO4?o:rʹ兏~.ny8z|e@}'ϟwcqs~ȵ}~~Xʉ>Snt7c&L et5օ_~BO"if4͓Pup'2FaqbDh:i87 w(=]gMOcUۙiOiLSôƾROww/`쌕>9͢_lo^gm\amO+;mm] +e9ѹ n({h٤1F%dfqۻ)ac[sGG;n|W])xvӿRcKu=տu#1\_>8eu1~c/{x:nMO8jy9m?HxLݼuH;۹OqV2FWgܷzIo4Zrn{-?s6>{8O mWgu'gwkxrf C>9_CXF]ޮuy9˽JCjA1n^(<SwP ?ڦ'`j>`w>n=p 嵟#q~VRa;-sb'^<<;Bz9^``vr(O8<z'ʍ|/KKyE[SαuDžvL7eLuU'~Ɣ9О{7YG֏簺-j-3od/sW=u1M|xwp'rq>(>/3z~zcFDPT(E&Mmbw؞>p)V"5çӯ;qo70=tY-y/05c g9qfqqMi"8uFLNL3Ǚ3 D+R *9R9%w{"?'-<>ɶ)]VuNy/~1:y|NwO?Ѕ~ۑۍ~]6=j=RwhcQjΑb049VrM zb͆ÉFm49.hHN|vy2~>| ᬔNzv։6MtS΅Z'|eu:ҋѻy%⿷uS}C~caݿп[Ar<ey;c[)~V8q‰[) ~nysb(ہ>{vS蕒?'wWɭP߁ǒ}>铻>Ug])7:e6NC< e6SޝoJyK0M{Q?6h_^wԪrA9Ona{3Nrs%a v{r&)?:^8F[OԹD㏬G.&}ԍzuTk6٥@g~n|o8vK׺FtY/a<78{/auVȭK$m6W]%nE/! -{ .Ѿ>p ;ȐIKyLJPu3N]a:j +/oK䟴7x"oPNA';/oHd߇瓰'k{e4/H=}*uJ[XdߊRn'Vuog_z[kI[FfOF7<6:U'o}oNzͷߓ{ؿ)=8U_0ˑ^gB?翽’Mz/(Q߿j)ǝZkzqZSL֚^xbi/=!WF1gb4_CXwo_?og~~S?]4P?<)`Agwӧ=3mD٫h3a͸e\QoMH'ѧnkrK&2qɥhWޓh_ a c&髑'd;ysxWm]m6q}Moos}>}%o1);5y~fT߱S=w侗wWK +"[۳<wq!u@̎æ ow1~__ֿ =&=!pO|/}:hA,iF{Qgp +,_X܁]yvί?n*fcOR)ֽdL~+a?ty3+[)`hvNxRUr}y?Pww:kЖjE~ͶYDv "6p=r>HP}~㫧J~t{sDPVss>{G +#v7u0>𑆣~s:065G< hәr;c y?ױ/= 3w,;c|dz fj(u[\/჆+KŘktˠwC;/EsNXi/K$ʴ4Jc_-X=[x85+ʷ<$i> mEosF:^:ČlS:yB ͨ3sPnA; Ȗs{b܄,oo&bZf ;r]{}z_ͪ-Ky1hBn<2kSr5Aɋ=W5Uq+Sn(/#firZ cj wHaU{ 'k{s؏s&E+z&ZܢQD>VvC};\@g'ܣLuEq]c ![U x{^'سY_=rQۣ#=go7WRrlCOxN9k)[Cyug-[^>z}(bnOO_{A~̹ t^|qXgW{8S:=֌u&7{іNyxMKпLfP[ Cxzs|m?#N^Qۭ}CM~;uKܳBolfw-m>=k4gYY;csj?!3xGrx?+GNRdHk);ȖsD\iPd9Zѝ{@=__?:MXțQ!BMug~;Azspz99z9Y%MJ8 sfD{/SĻM<}EM/`<75:ȝu2N8l{YBQN{|zWz,H \4,ߤ_4C?[^-Z:vjX/lƖ%vz\QxO* SП2ۉ<ܴ";։:Я5nD_佝G+P\AOn1<עL”'x`|Isv ȉw@7JG+dGu;||܌о" 6?d&tM~h26봰9]7\݅ ~.mڜA[jWs{'ʯnцCƠot;veZosDZl[mf[Yܰww.o{ܜtŔ62oqZ챌cryC Q~ w86yJ_|ɫz6d(睲-C<! K]&܃ڳrڏO{_Ǔlk};|̥_=g&^S1|~q]Ţ'Wh7C(ok# yw=QN{fk>qMwzB;F2Qq.~cdk:D;O]WҽޘNޟ3G >n~G-mЎ,H 9&_ϳ{6sׅ66VߕPuܾ}(N|Fw]?cosa>w2(wɺʺ]>|Z[ސ%>O7EG/-V |?oo坘}d!x2~uqɭ;%8={ʛ)W*ABx,m$d@0Q}[a^ܫ=(eWOP/ןʐ!frUqe27(x2>x/O7>n)qޢ%D**[TN[MEmtCde?( iBM]{?gRB68@g"'$d?%M쏧i}[!%҇).Nni<p| ;jlm%y/wo]<#1w~LjxQyY! $\Y)q~cG7C=(~Q7oo60:W^QMukr=O%ݦVCs7**0>]g -nAM5^1_MBΕb2q{'홌"ޝcoeyi|ҽ7<9ؖVW-/=UPy~WsG_>JsCyA~͟Kܞm'Cn)vrwYW?de3|em^ߵbFlTy! g& ^xi:6 1hy$7h`6!ԕ mߍYV?xe}Bg?SD7rKa Uuh61R"KSF7R6!:;:v$M_B;:| <);lyS8Uw껨BdxGø{<_ND +s +VڧK+ G{C">1RoJS$퍲G>lX˻9Lж6\pD3!6 SW}]-D^k?OZkQl"ApK[dxs\eކLw~h~5W×H)21_Ǘl/, b ]e߫3!xojrgx6bL/%͉PߊPgVY uKn>`:e~~u;voH1 c[_d#xw[7Ϫp^6V~ۀZr.ygj\o+c׬ +P]Um>Кiyq OϑW+?:Y4$~w?x='lh YRtritv)W~2\@=jmYɺX.:u10!>6:hlP=]?wc]9AOw}} +yXavQ ++7ۂ;'-Eq[Q~saoJDˀC8TdyGkZH +y6s}QLߪ}o (m}ؾTxurGj5ubn+{'. t+|N~H 3a/7Aw+ +ڹ6} 胲GƢA +987 ہggt\9"#7_'e}cvvfk z Kx4bR3)y=|/e:?XZO ċEJ[:Ơ{#!֋Y/C|{%Oxp1WGN +xؔч{\Yypom3ߋoX{2ua#J~N9K{G "s3+;G%?)3Eɮ~$ķg2>|e/̺k<8.Hߒ' A?Lu~9=5ov֟g8ou_xc2lGƂ(ȇoQ{_bYq_Ĭi.'=}xr#GD[E"\W6%:i&}ߡB*GsT{ 6-9nk=/Eg+/]Ƥ7m-G~ؾנDuYzT +z}H>9/#W_ypU[I|t+?&S#qkubґaGH+ˁfIQ53iJsZg[j~sZnkQpb}XiI/HZ~9э6֞;onXmu75N[v4s_'˨J#Ew/no71nxN*ד0WCw@\ݹ;?sE޺4ݑ?('2iS/d n%,(x:O +9z;'V +˻,lϚ /31f@x&5k~7tydzEQHzW[6 ';`g[\YM/͛!r_c #*nَvm8l׆]#6} cc;m+T򼺼}XoE[!??QU:5R ^~g?\&2ݗr/b"⿦FֻNo%%+ڛavUhoK/9۬Txre{oG[e֢ͷg`;MWm87mN< ;,W3 +.pۨSmw*+煾^mB{)s܆6e;ؼXDٹc&@Tx u-@zTDӜאԨWo +yeA\џA;t[P~Av1 fп[ύgC Wt@9E1?}VtлDӫû𧉦=HF0K5 1+ZR>N{_x߽1ܝo3Օu5 \|qŌE V_Y]X?w:ճ4YU39UW-E5i*}.j|ԓ򪅵Tx Q쌹AYfDRY. R-xnQ9-[Ty>oί ]!Ub[]*_x)wfU5kTlnpB!2eWUϙ[gG@W_4=%TUεH4LP|T/"t2kN%ĿE+fUͬcjZM5O˯򊫧M2bƔˮp_< H ̚_13pM[UV.Uۯꅳmg,SϮ_W,MN{fApa^KUS + RT ;uIs(G3fUK)8rS_tK٣H>X]W4)<`SI|hv(Uz!TĐ2~┙Vt P_XQfVke;q]59s16KeÐBWޥhmJ5s ]  Duim ~.Ԧ%b-WգQ^7|RN5fD-+fWiM5:x] WyjMpܤ#| _%k+Ȃ~[1 + ]nT"Y8m,:Pmtl [vI@x>3|fU-Z8 bj++AF,tKe󪪀.LŠ)'QJ\9U_\#jR*գT]4 P>j: /MSMUΟ~3*.iǦLH=Ly9,8=fݿJN4ޕ3&cַwNUi;A%5^ϫ{FmzV{>,yWzgڹϒ*ii7^Bw…#J^R55U h4;|awfMѹAW9 ю1N224z;~=?xW4n/is+OiǦpu5#/trq_$D 3q4jƕ]7zȲS>ě1ybyZ6촊ѪvwY5)39t//.,ux/^&d {mmb`4TQPO /`vwO)؞n 1W̮ɼ_&sE gIPণ_P :g΢ "X[HbƢuS9\F +0Mʭ6\P+9`+NbՓE5u*RX⊲Uzn_|KER2_Q mgS_X.IbE2ή^8Fh/.I&|{ͩ"h: ko8Ƥ 0'_9)W{/_~jt.}D< :dӑ{ ^ye._(gH*OazRь\}pt۔^VPKqTni9tԪӥQs+J"nRJ)DIO8ndAm.5頋jzOsFM>Ԗѳ]Ust4J~a%CL5څJet;1wwJM͢] _3j2r-B{Sљw6̰sVyegU-AJPHםKL%˛ Мw"eRepT-It 8Awix*޲)^59F4B*֤։VYQ[UHҴ/:TVio\tnt.U-2?I ZE)y/_Ƭ\LoRS0Tx^E|ҟ:2Y:D)# ֵ#YU]&'fənG%^\n^55ķb7I.^sb]K]7u +[;8,BIT:[t"96r"v|*dPDM$lT!Z9_ +3Tη RIqv ѻ@YaϬ,ZXJ<Dz̭iqMltY / Jpqƭ\2KRkUǴiACV!Ycɲ%kTJn4On!M9u[aDjGWϮLB)X v~]_Τ* K^wWo1m'SM2~ !*<ң71>ӝ~歪Z\޲~j,b/?ߴV/9Emu5UN̦¤b{ZY0%Yj{E)*:XiL&5/2a\7)^DfBdUm%CtGN"ڒU +>~j9,Mŧ,X\w+9Ĵ238p$j1 )aUS^SMm+_f$tشICNNAXruB*'&Ѫe*R<Ā_KJORK¯dRŤ.D9.пij MZQgXm-uȮ[@U/Y-v [xEsᒨ)àTWZ% C:6;Y/t ȜFY:wYop[ur\:טz"WHZFj5ҩc\n 4wkĸN8ǁ$|֢*emFW76_:^D!-qU&~L -^յ ZW) ]}Ԟ:afW/T$u=A=24=\P(=M2FsIۢ3VrXH҅tclfsw. +ˏl5]V`KK|.d(@_e\"Uݤ,+__+7:]Zt ߗԣqf§gG^jV5WK僀2*ebj;WM[\f48@L>ƗJdbH#E\D:RBL[<]y82LJO*74Uk%pÏ!*IYYXJkwZH&L.>ӅH I$Ft}E5u)kZ;1!}%\N4bW%F_;~8HT &"%#*1^D:/lÔYFGebMmJ%h5ri:xNZfJ'_aAO DLcuPo6SW󤺡w骼4%irO{ǵupNTu{(AN>yZZF,fufTUuFKǓ8'(VEvVr'ɷ$5Nr:%ZWtNGLK4z rA_(;MMO͢xu8D>hh $$q .g3я^̉-{ tƇ;/WkRKKK!wj*8R;%[uDL9@`mz9t Im':tg[`ő_筅/I!hLUV`pS#Ur_d'[m1hN0S0r$IO 4z9vOfFV["͏Xku:$}5&gjP\t͎9(drnq":PM X[4zI<[;zIgߎ _~5F%uiO77WѡF)Ԯ˽f5HҕqJHKC-=]<]8ҹ9t&̄4*u23gmܓ˅y7k;)2o4$=FƬșA>2䂙b'|!yϯ^8OͷYDE] VQgN%3_“qVϦe"CdN/cQ +͇GoAHdTX7u>Z'-e&λq|LQi6d^XG+BvEʫs{pK}fƋFͲ.Γ-CUM̙VB4ԝ!K*]61d'~N.Ju%+)rf9obl +zCvzU/;EjkCJZ{Kίq g9>]=!ģ;3T!O|݅Bx886Duw':Zx.#<w'6)<7.1<n;x< x^g+(x= :?؊x65Oύx>g'O񜏧dzBHswD<}?ύD݊ !O$!Dx>g :NK$6y:sh"q.c^Gx³(X;81,x +g'ٹ !xuV"1_xD`Dxnx52؊1EЃ‰ w!{/M$9t&x /99rOI$~ vQqi~u hn#^6%2$dkK AT>0Z4r1޿q\ |+zoCl]YVG;0 p #ò.pp? 8F;`CzvYA{-? 9}`I?G`goC3sYڏ-` 0`5J }`/;>w?@ c_!`ʛ.17p'˟;4 q/<=h;?CQ Cjv@Go#T +p}z'0mHo+:*>mT/ePUj_ S0>h'8O[ >#`VvV5PxYJ{><`ht'y̛w%q ~xwƉěO|Yajr*Mʧ>زز*|8i?%qʯɾN?;+ :gzD$.v%v'xI&&=!tcj|7mߥ_3_Emϭck4 +bLy!c1#d% HakfV]Ip D'{{=;ssE]>GdijZ`߻gGpȞWMถXOpr4_+ ٠¶}*ڇe"*$"=AA |Z)}oPy`s+{} 5'qg'&&T>3 g><]n,ETq-o@n+isSKNoqs3a(&r|OB~z_sv44_SW^wYMӕiOj>˅]C^V'%].L?trθXEÑ('g#Xf<@R<=z/ mZ08P*'X2QLصAy?^ d,hS)/ 7pG>ǎ9n(Lx:ʵZ>5^"Ui#Aa`KQGަfX=.yǽ~&cl=L{}nnb _/d"}TӘTyXƑḒ1]?ev=ٽNGA]|L}V2ݕS40=>֗ >! + 4UL-&%Ss >ѳڍA~![2Qg }|3qk"#џS /p~ge4b <TZ ĆZ ou\1Bo+}O?S"-fOz1ƠWg +>֓޿>yť<[^ǵu;Bt\Bm |{ٙTܻg/$SR(gc4ݙ=;jTؗ曙;BЋ_waɓȁpͿ#:Z)_x支_FJ|'D;BW6j8THўkk:c/SsdS2 w*OJ6gD|WÔISHTk'f/v>I5y{)"ӂIנ_~c\CJ?~7!~a_ogHE jv%;[OjLIQ11SO"8y#f oQrm#b>AV93-+_iqWG˜oRmmcn3☶Q]B#m>G$Uʹۣ"vi^rby~SSgjQ $" &407HBC-LPgݘ7sqɶAqv|E]as@1mhی6#m^ѵݶ1m'=-}g? ]1x4wvKXLof4xde-v/9J͐B!˼&p!2 {,T^~YĠer|_( |>QynPCƀ2jGl\8L酌t +ٗ?ҬdgKɦ39 m>/xE0d@ip>DuS}=iůYwKs7jòXm6nW$nWrqkJ0ȟ_D4p.@hh2g(I:vw &/zqy,|I:܀}J7[ƒbKByNwqL19n3r4L{>t~vnzFl FΏOLЭ>y)Qqz8AO?{XoE ߗy1661$ÒAs +tW~ =Oχ}w\wuBi{dg݂|V F_| '?: (-;btzfWwaz&v]̽%b;5E;khDYUڳ'>ޛxmv·fKE}aH0o/EE>}94^Z{ O Z$Ck}^ٯ9:=s%Qgk1<\)DJq],V"S:Yf'DtYx$4%/DӋ<ͤGg)SI$H [bO*gp_f"C|O8NUݭc{>.N /UMw&v:~O>+s!}|72hN#W'&GTҼǴ~X ڛೀ&}Q|ĿדֻksTKiS6,FNKQNIxC\AZ"so~ZG#v%wO`lŦݻV<3DytJs!NЅtMq 褃h/ve"KV<}h3+}0L+b"h>Lrmr5fae)h#膴+ l|E]i^I=ŊQaWfʧOT;c⶧{CFO ӓӗ܇CבʗW͘W)/(WVӮe_rK +/K#yY2Klq3Le|hGl *kbv3"VR.7uґڔêk&n%H} "[%NH{3{7bf;h$~^񤏎?#pr\n!!+{y)@cWzߑ|>r>z8kT +u&SAxv٩\= -䦹Y'5vĆ@2d1qIt63ZO%ȯWbgLh#ӡЉ!Dhъ ܎H~ȯQfQgG_O[pSG3uP~CŲv- +RVI~3kF2dv[lQɬےو|N~ N>bN>bN~.sbÜ09_t;pLfc ?K+.v-_j;m$F&kK]#:eu[_[;6)|)M\樴n)x%;/+ ?Aۮ=:9};N/8(.jXSkߤ]>֑n޶e^޺V.法_gK϶N.~9 +^_l~o[˪퉰-F9G6tj+C\;er N۵j|Auhe)Vv K?ogv:· vӝآF +ZGS8p\ong뀰nghO#Yp=.緷3.^Z5mH6nƭcla1:673حMƍ ɸg]l,uy]߲u`[6v O'So9Fi6$V9 &vtdv#9iPoZ%n;q]t1'1˓D4%фI37gIQ}"qxы\fWGmI*q_WxpU馟X+2x#z|1[W/͓ |.@n;S+NFEXֱizYu`4d)bqJaVZܾW4^P.|nT)#Ts$+Aݴ= xB.-,A^!fߜRbd2.&jJ"& MTJWTBy" ` g0 >thbg&2tjݰtRrh$`XNڐA7%;G['knGn2ِΑ[ܢ~u8ޑQD z4]w^NBNSv P"uz/////(^FR;J \V.q +XeA?UP;KZ[r+&akY/<&JC*ZR+kӹ =]~%/ڿzI ݒjT6?zRB>SIL}"3UmoKN,)SR+cq*+hsAwsKx_*[*%[$LT[ c ytmk>+Rۿ1QyTA%VȧayL!dl~ɺVnY=B_7U +xaa`[zE@Uv~JK^t?Wnkn1v"gON^NլPx>goncOy{m9MM͍ͧf9u59gZrߔ>WDtS-˩Xt= SXs4!,-iozaӟsd95ޡz1\3gNmh>%^"y:xa_BA۽oXMM,BV7kΏ׆.G~%\ClHأmvMo)6l !ɥ&(Ov{lh9v(<†oٰŮy T;Oo]=ʛlhMy $L<Ն6]b Wc:l Աh42H8=b4"چvjX?d>Ά.;~&lHS5`?t6ܜn?}ߵI^ٰNU=_>dy +[ weYާHX}cGߦRY*zWOLMomY@Mo,o{Fc/Vhк'c%V6>Mѧ)_;N6=ŧb3t((i_6>5MU76`&W9^X¯PP%v?ey{vcF-B*]ſ~LboZ`oh8xJ A*v^JNnK5Hc ߳vݓ\|&7}.mlt00ٚss[s%$s=MgtL d /=+MfD]?_6knii̹hkRïtù(L#qB|{YGD&I*oɕTEq0#3,‘An-acoFKU +ƚMx[> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${INSTALL_PATH} failed" + exit 1 + fi + fi + targetdir=${INSTALL_PATH} +elif [ -n "${ASCEND_CUSTOM_OPP_PATH}" ]; then + if [ ! -d ${ASCEND_CUSTOM_OPP_PATH} ]; then + mkdir -p ${ASCEND_CUSTOM_OPP_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${ASCEND_CUSTOM_OPP_PATH} failed" + fi + fi + targetdir=${ASCEND_CUSTOM_OPP_PATH} +else + if [ "x${ASCEND_OPP_PATH}" == "x" ]; then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 + fi + targetdir="${ASCEND_OPP_PATH}" +fi + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + has_same_file=-1 + for file_a in ${sourcedir}/$vendordir/$1/*; do + file_b=${file_a##*/}; + if [ "ls ${targetdir}/$vendordir/$1" = "" ]; then + log "[INFO] ${targetdir}/$vendordir/$1 is empty !!" + return 1 + fi + grep -q $file_b <<<`ls ${targetdir}/$vendordir/$1`; + if [[ $? -eq 0 ]]; then + echo -n "${file_b} " + has_same_file=0 + fi + done + if [ 0 -eq $has_same_file ]; then + if test $QUIET = "n"; then + echo "[INFO]: has old version in ${targetdir}/$vendordir/$1, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + + while true + do + read orn + if [ "$orn" = n ]; then + return 0 + elif [ "$orn" = m ]; then + break; + elif [ "$0rn" = r ]; then + [ -n "${targetdir}/$vendordir/$1/" ] && rm -rf "${targetdir}/$vendordir/$1"/* + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace or merge old ops $1 files .g....." + fi + + log "copy new ops $1 files ......" + if [ -d ${targetdir}/$vendordir/$1/ ]; then + chmod -R +w "$targetdir/$vendordir/$1/" >/dev/null 2>&1 + fi + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} +upgrade_proto() +{ + if [ ! -f ${sourcedir}/$vendordir/custom.proto ]; then + log "[INFO] no need to upgrade custom.proto files" + return 0 + fi + if [ ! -d ${targetdir}/$vendordir/framework/caffe ];then + log "[INFO] create ${targetdir}/$vendordir/framework/caffe." + mkdir -p ${targetdir}/$vendordir/framework/caffe + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/framework/caffe failed" + return 1 + fi + else + if [ -f ${targetdir}/$vendordir/framework/caffe/custom.proto ]; then + # 有老版本,判断是否要覆盖式安装 + if test $QUIET = "n"; then + echo "[INFO] ${targetdir}/$vendordir/framework/caffe has old version"\ + "custom.proto file. Do you want to replace? [y/n] " + + while true + do + read yn + if [ "$yn" = n ]; then + return 0 + elif [ "$yn" = y ]; then + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace old caffe.proto files ......" + fi + chmod -R +w "$targetdir/$vendordir/framework/caffe/" >/dev/null 2>&1 + cp -rf ${sourcedir}/$vendordir/custom.proto ${targetdir}/$vendordir/framework/caffe/ + if [ $? -ne 0 ];then + log "[ERROR] copy new custom.proto failed" + return 1 + fi + log "[INFO] copy custom.proto success" + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +delete_optiling_file() +{ + if [ ! -d ${targetdir}/vendors ];then + log "[INFO] $1 not exist, no need to uninstall" + return 0 + fi + sys_info=$(uname -m) + if [ ! -d ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/lib/linux/${sys_info} ];then + rm -rf ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/liboptiling.so + fi + return 0 +} + +log "[INFO] copy uninstall sh success" + +if [ ! -d ${targetdir}/vendors ];then + log "[INFO] create ${targetdir}/vendors." + mkdir -p ${targetdir}/vendors + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/vendors failed" + return 1 + fi +fi +chmod u+w ${targetdir}/vendors + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +delete_optiling_file op_impl +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +upgrade_proto +if [ $? -ne 0 ];then + exit 1 +fi + +# set the set_env.bash +if [ -n "${INSTALL_PATH}" ] && [ -d ${INSTALL_PATH} ]; then + _ASCEND_CUSTOM_OPP_PATH=${targetdir}/${vendordir} + bin_path="${_ASCEND_CUSTOM_OPP_PATH}/bin" + set_env_variable="#!/bin/bash\nexport ASCEND_CUSTOM_OPP_PATH=${_ASCEND_CUSTOM_OPP_PATH}:\${ASCEND_CUSTOM_OPP_PATH}" + if [ ! -d ${bin_path} ]; then + mkdir -p ${bin_path} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${bin_path} failed" + exit 1 + fi + fi + echo -e ${set_env_variable} > ${bin_path}/set_env.bash + if [ $? -ne 0 ]; then + log "[ERROR] write ASCEND_CUSTOM_OPP_PATH to set_env.bash failed" + exit 1 + else + log "[INFO] using requirements: when custom module install finished or before you run the custom module, \ + execute the command [ source ${bin_path}/set_env.bash ] to set the environment path" + fi +else + config_file=${targetdir}/vendors/config.ini + if [ ! -f ${config_file} ]; then + touch ${config_file} + chmod 640 ${config_file} + echo "load_priority=$vendor_name" > ${config_file} + if [ $? -ne 0 ];then + echo "echo load_priority failed" + exit 1 + fi + else + found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" + found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') + vendor=$(echo $found_vendor | tr -s ' ' ',') + if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" + fi + fi +fi + +chmod u-w ${targetdir}/vendors + +if [ -d ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/ ]; then + chmod -R 440 ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/* >/dev/null 2>&1 +fi +if [ -f ${targetdir}/ascend_install.info ]; then + chmod -R 440 ${targetdir}/ascend_install.info +fi +if [ -f ${targetdir}/scene.info ]; then + chmod -R 440 ${targetdir}/scene.info +fi +if [ -f ${targetdir}/version.info ]; then + chmod -R 440 ${targetdir}/version.info +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h new file mode 100644 index 0000000000000000000000000000000000000000..9b58ad3d7da8d9a0f59c48a460b401621f637513 --- /dev/null +++ b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h @@ -0,0 +1,55 @@ + +/* + * calution: this file was generated automaticlly donot change it. +*/ + +#ifndef ACLNN_REDUCE_SUM_H_ +#define ACLNN_REDUCE_SUM_H_ + +#include "aclnn/acl_meta.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* funtion: aclnnReduceSumGetWorkspaceSize + * parameters : + * x : required + * axis : required + * keepDimsOptional : optional + * ignoreNanOptional : optional + * dtypeOptional : optional + * out : required + * workspaceSize : size of workspace(output). + * executor : executor context(output). + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSumGetWorkspaceSize( + const aclTensor *x, + const aclTensor *axis, + bool keepDimsOptional, + bool ignoreNanOptional, + char *dtypeOptional, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor); + +/* funtion: aclnnReduceSum + * parameters : + * workspace : workspace memory addr(input). + * workspaceSize : size of workspace(input). + * executor : executor context(input). + * stream : acl stream. + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSum( + void *workspace, + uint64_t workspaceSize, + aclOpExecutor *executor, + aclrtStream stream); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so new file mode 100644 index 0000000000000000000000000000000000000000..670beb70b7be554167a49645f8d56aacfa76751b Binary files /dev/null and b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so differ diff --git a/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h new file mode 100644 index 0000000000000000000000000000000000000000..bd92dfc8e50c484c0f3be8db7d437fec17d8cae7 --- /dev/null +++ b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h @@ -0,0 +1,20 @@ +#ifndef OP_PROTO_H_ +#define OP_PROTO_H_ + +#include "graph/operator_reg.h" +#include "register/op_impl_registry.h" + +namespace ge { + +REG_OP(ReduceSum) + .INPUT(x, ge::TensorType::ALL()) + .INPUT(axis, ge::TensorType::ALL()) + .OUTPUT(y, ge::TensorType::ALL()) + .ATTR(keep_dims, Bool, false) + .ATTR(ignore_nan, Bool, false) + .ATTR(dtype, String, "float") + .OP_END_FACTORY_REG(ReduceSum); + +} + +#endif diff --git a/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/precision_Problem/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh @@ -0,0 +1,151 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [[ "x${ASCEND_OPP_PATH}" == "x" ]];then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 +fi + +targetdir=${ASCEND_OPP_PATH} + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + vendor_installed_dir=$(ls "$targetdir/vendors" 2> /dev/null) + for i in $vendor_installed_dir;do + vendor_installed_file=$(ls "$vendor_installed_dir/$vendor_name/$i" 2> /dev/null) + if [ "$i" = "$vendor_name" ] && [ "$vendor_installed_file" != "" ]; then + echo "[INFO]: $vendor_name custom opp package has been installed on the path $vendor_installed_dir, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + fi + while true + do + read mrn + if [ "$mrn" = m ]; then + break + elif [ "$mrn" = r ]; then + [ -n "$vendor_installed_file"] && rm -rf "$vendor_installed_file" + break + elif [ "$mrn" = n ]; then + return 0 + else + echo "[WARNING]: Input error, please input m or r or n to choose!" + fi + done + done + log "[INFO] replace old ops $1 files ......" + fi + + log "copy new ops $1 files ......" + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +log "[INFO] copy uninstall sh success" + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +config_file=${targetdir}/vendors/config.ini +found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" +found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') +vendor=$(echo $found_vendor | tr -s ' ' ',') +if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" +fi + +changemode() +{ + if [ -d ${targetdir} ];then + chmod -R 550 ${targetdir}>/dev/null 2>&1 + fi + + return 0 +} +echo "[ops_custom]changemode..." +#changemode +if [ $? -ne 0 ];then + exit 1 +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/No_standard/build_out/autogen/aclnn_reduce_sum.cpp b/precision_Problem/No_standard/build_out/autogen/aclnn_reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b0d111731c2f533763a50a39a642cc4934e93a77 --- /dev/null +++ b/precision_Problem/No_standard/build_out/autogen/aclnn_reduce_sum.cpp @@ -0,0 +1,201 @@ +#include +#include "graph/types.h" +#include "aclnn_reduce_sum.h" + +namespace { +typedef struct { + uint32_t id; + const char *funcName; + bool hasReg; +} NnopbaseDfxId; +typedef struct { + ge::DataType dtype; + ge::Format format; +} TensorDesc; +typedef struct { + TensorDesc *inputsDesc; + size_t inputsNum; + TensorDesc *outputsDesc; + size_t outputsNum; +} SupportInfo; +typedef struct { + SupportInfo *supportInfo; + size_t num; +} OpSocSupportInfo; +typedef struct { + OpSocSupportInfo *socSupportInfo; + size_t num; +} OpSupportList; +enum SocType { + SOC_VERSION_ASCEND910A = 1, + SOC_VERSION_ASCEND910B, + SOC_VERSION_ASCEND910C, + SOC_VERSION_ASCEND910D, + SOC_VERSION_ASCEND310P, + SOC_VERSION_ASCEND310B, + SOC_VERSION_BS9SX1A, + SOC_VERSION_MC61AM21A, + SOC_VERSION_ASCEND610Lite +}; +enum NnopbaseAttrDtype { + kNnopbaseBool = 0U, + kNnopbaseFloat, + kNnopbaseInt, + kNnopbaseString, + kNnopbaseAttrEnd +}; +uint32_t socSupportList[] = {SOC_VERSION_ASCEND310B}; +uint32_t socSupportListLen = 1; + +TensorDesc inputDesc0_0[2] = + {{ge::DT_FLOAT, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc inputDesc0_1[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc inputDesc0_2[2] = + {{ge::DT_INT32, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc inputDesc0_3[2] = + {{ge::DT_INT8, ge::FORMAT_ND}, + {ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc outputDesc0_0[1] = + {{ge::DT_FLOAT, ge::FORMAT_ND}}; +TensorDesc outputDesc0_1[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc0_2[1] = + {{ge::DT_INT32, ge::FORMAT_ND}}; +TensorDesc outputDesc0_3[1] = + {{ge::DT_INT8, ge::FORMAT_ND}}; +SupportInfo list0_0 = {inputDesc0_0, 2, outputDesc0_0, 1}; +SupportInfo list0_1 = {inputDesc0_1, 2, outputDesc0_1, 1}; +SupportInfo list0_2 = {inputDesc0_2, 2, outputDesc0_2, 1}; +SupportInfo list0_3 = {inputDesc0_3, 2, outputDesc0_3, 1}; +SupportInfo supportInfo0[4] = {list0_0, list0_1, list0_2, list0_3}; +OpSocSupportInfo socSupportInfo0= {supportInfo0, 4}; + +OpSocSupportInfo opSocSupportList[1] = {socSupportInfo0}; +OpSupportList supportList = {opSocSupportList, 1}; + +[[maybe_unused]] uint32_t NNOPBASE_ReduceSum = 0U; +} // namespace + +extern void NnopbaseOpLogE(const aclnnStatus code, const char *const expr); + +#ifdef __cplusplus +extern "C" { +#endif + +extern aclnnStatus NnopbaseCreateExecutorSpace(void **space); +extern void *NnopbaseGetExecutor(void *space, const char *opType, char *inputsDesc, uint32_t inputNum, + char *outputsDesc, uint32_t outputNum, char *attrsDesc, uint32_t attrsNum); +extern aclnnStatus NnopbaseAddInput(void *executor, const aclTensor *tensor, const uint32_t index); +extern aclnnStatus NnopbaseAddIgnoreContinuesInput(void *executor, + const aclTensor *tensor, const uint32_t index); +extern aclnnStatus NnopbaseAddIntArrayInput(void *executor, const aclIntArray *array, const uint32_t index); +extern aclnnStatus NnopbaseAddBoolArrayInput(void *executor, const aclBoolArray *array, const uint32_t index); +extern aclnnStatus NnopbaseAddFloatArrayInput(void *executor, const aclFloatArray *array, const uint32_t index); +extern aclnnStatus NnopbaseAddOutput(void *executor, const aclTensor *tensor, const uint32_t index); +extern aclnnStatus NnopbaseAddDynamicInput(void *executor, const aclTensorList *tensor_list, const uint32_t index); +extern aclnnStatus NnopbaseAddDynamicOutput(void *executor, const aclTensorList *tensor_list, const uint32_t index); +extern aclnnStatus NnopbaseAddAttrWithDtype(void *executor, void *attrAddr, size_t attrLen, const size_t index, const NnopbaseAttrDtype dtype); +extern aclnnStatus NnopbaseAddIntArrayAttr(void *executor, const aclIntArray* array, const size_t index); +extern aclnnStatus NnopbaseAddFloatArrayAttr(void *executor, const aclFloatArray* array, const size_t index); +extern aclnnStatus NnopbaseAddBoolArrayAttr(void *executor, const aclBoolArray* array, const size_t index); +extern aclnnStatus NnopbaseAddArrayAttrWithDtype(void *executor, void *array, const size_t len, const size_t elementSize, const size_t index, const NnopbaseAttrDtype dtype); +extern uint64_t NnopbaseMsprofSysTime(); +extern aclnnStatus NnopbaseAddTilingId(void *executor, NnopbaseDfxId *tilingId); +extern void NnopbaseReportApiInfo(const uint64_t beginTime, NnopbaseDfxId &dfxId); +extern aclnnStatus NnopbaseRunForWorkspace(void *executor, uint64_t *workspaceLen); +extern aclnnStatus NnopbaseRunWithWorkspace(void *executor, aclrtStream stream, void *workspace, uint64_t workspaceSize); +extern aclnnStatus NnopbaseAddSupportList(void *executor, OpSupportList *list, uint32_t *socSupportList, size_t socSupportListLen); +extern aclnnStatus NnopbaseAddScalarInput(void *executor, const aclScalar *scalar, const uint32_t index, const int32_t srcIndex, const ge::DataType dtype); +extern aclnnStatus NnopbaseAddScalarListInput(void *executor, const aclScalarList *scalarList, const uint32_t index, const int32_t srcIndex, const ge::DataType dtype); +extern void NnopbaseAddOpTypeId(void *executor, const uint32_t opTypeId); + +#define ACLNN_SUCCESS 0 +#define ACLNN_ERR_PARAM_NULLPTR 161001 + +#define NNOPBASE_ASSERT_OK_RETVAL(v) \ + do { \ + const aclnnStatus _chk_stutus = (v); \ + if (_chk_stutus != ACLNN_SUCCESS) { \ + NnopbaseOpLogE(_chk_stutus, #v); \ + return _chk_stutus; \ + } \ + } while (false) + +#define NNOPBASE_ASSERT_NOTNULL_RETVAL(v) \ + do { \ + if ((v) == nullptr) { \ + NnopbaseOpLogE(ACLNN_ERR_PARAM_NULLPTR, #v " != nullptr"); \ + return ACLNN_ERR_PARAM_NULLPTR; \ + } \ + } while (false) + +aclnnStatus aclnnReduceSumGetWorkspaceSize( + const aclTensor *x, + const aclTensor *axis, + bool keepDimsOptional, + bool ignoreNanOptional, + char *dtypeOptional, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + static NnopbaseDfxId tilingId = {0x60000, "aclnnReduceSumTiling", false}; + void *nnopExecutor; + static void *executorSpace = NULL; + const char *opType = "ReduceSum"; + char inputDesc[] = {1, 1}; + char outputDesc[] = {1}; + char attrDesc[] = {0, 0, 0}; + + NNOPBASE_ASSERT_NOTNULL_RETVAL(x); + NNOPBASE_ASSERT_NOTNULL_RETVAL(axis); + NNOPBASE_ASSERT_NOTNULL_RETVAL(out); + + if (!executorSpace) { + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseCreateExecutorSpace(&executorSpace)); + } + nnopExecutor = NnopbaseGetExecutor(executorSpace, opType, inputDesc, sizeof(inputDesc) / sizeof(char), outputDesc, + sizeof(outputDesc) / sizeof(char), attrDesc, sizeof(attrDesc) / sizeof(char)); + NNOPBASE_ASSERT_NOTNULL_RETVAL(nnopExecutor); + NNOPBASE_ASSERT_NOTNULL_RETVAL(executor); + *executor = reinterpret_cast(nnopExecutor); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddTilingId(*executor, &tilingId)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddInput(*executor, x, 0)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddInput(*executor, axis, 1)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(&keepDimsOptional), sizeof(bool), 0, kNnopbaseBool)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(&ignoreNanOptional), sizeof(bool), 1, kNnopbaseBool)); + if (dtypeOptional) { + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(dtypeOptional), strlen(dtypeOptional) + 1, 2, kNnopbaseString)); + } else { + static char *dtypeOptionalDef = "float"; + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddAttrWithDtype(*executor, static_cast(dtypeOptionalDef), strlen(dtypeOptionalDef) + 1, 2, kNnopbaseString)); + } + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddOutput(*executor, out, 0)); + NNOPBASE_ASSERT_OK_RETVAL(NnopbaseAddSupportList(*executor, &supportList, socSupportList, socSupportListLen)); + aclnnStatus ret = NnopbaseRunForWorkspace(*executor, workspaceSize); + NnopbaseReportApiInfo(timeStamp, dfxId); + return ret; +} + +aclnnStatus aclnnReduceSum( + void *workspace, + uint64_t workspaceSize, + aclOpExecutor *executor, + aclrtStream stream) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + aclnnStatus ret = NnopbaseRunWithWorkspace(executor, stream, workspace, workspaceSize); + NnopbaseReportApiInfo(timeStamp, dfxId); + return ret; +} + +#ifdef __cplusplus +} +#endif diff --git a/precision_Problem/No_standard/build_out/autogen/aclnn_reduce_sum.h b/precision_Problem/No_standard/build_out/autogen/aclnn_reduce_sum.h new file mode 100644 index 0000000000000000000000000000000000000000..9b58ad3d7da8d9a0f59c48a460b401621f637513 --- /dev/null +++ b/precision_Problem/No_standard/build_out/autogen/aclnn_reduce_sum.h @@ -0,0 +1,55 @@ + +/* + * calution: this file was generated automaticlly donot change it. +*/ + +#ifndef ACLNN_REDUCE_SUM_H_ +#define ACLNN_REDUCE_SUM_H_ + +#include "aclnn/acl_meta.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* funtion: aclnnReduceSumGetWorkspaceSize + * parameters : + * x : required + * axis : required + * keepDimsOptional : optional + * ignoreNanOptional : optional + * dtypeOptional : optional + * out : required + * workspaceSize : size of workspace(output). + * executor : executor context(output). + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSumGetWorkspaceSize( + const aclTensor *x, + const aclTensor *axis, + bool keepDimsOptional, + bool ignoreNanOptional, + char *dtypeOptional, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor); + +/* funtion: aclnnReduceSum + * parameters : + * workspace : workspace memory addr(input). + * workspaceSize : size of workspace(input). + * executor : executor context(input). + * stream : acl stream. + */ +__attribute__((visibility("default"))) +aclnnStatus aclnnReduceSum( + void *workspace, + uint64_t workspaceSize, + aclOpExecutor *executor, + aclrtStream stream); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/precision_Problem/No_standard/build_out/autogen/aic-ascend310b-ops-info.ini b/precision_Problem/No_standard/build_out/autogen/aic-ascend310b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..b6ad90c780db3a377dbf118c66ad4a7ea465cea7 --- /dev/null +++ b/precision_Problem/No_standard/build_out/autogen/aic-ascend310b-ops-info.ini @@ -0,0 +1,40 @@ +[ReduceSum] +input0.name=x +input0.dtype=float32,float16,int32,int8 +input0.format=ND,ND,ND,ND +input0.unknownshape_format=ND,ND,ND,ND +input0.shape=all +input0.paramType=required +input1.name=axis +input1.dtype=int32,int32,int32,int32 +input1.format=ND,ND,ND,ND +input1.unknownshape_format=ND,ND,ND,ND +input1.shape=all +input1.paramType=required +output0.name=y +output0.dtype=float32,float16,int32,int8 +output0.format=ND,ND,ND,ND +output0.unknownshape_format=ND,ND,ND,ND +output0.shape=all +output0.paramType=required +attr.list=keep_dims,ignore_nan,dtype +attr_keep_dims.type=bool +attr_keep_dims.value=all +attr_keep_dims.paramType=optional +attr_keep_dims.defaultValue=false +attr_ignore_nan.type=bool +attr_ignore_nan.value=all +attr_ignore_nan.paramType=optional +attr_ignore_nan.defaultValue=false +attr_dtype.type=str +attr_dtype.value=all +attr_dtype.paramType=optional +attr_dtype.defaultValue=float +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=reduce_sum +opInterface.value=reduce_sum diff --git a/precision_Problem/No_standard/build_out/autogen/custom_compile_options.ini b/precision_Problem/No_standard/build_out/autogen/custom_compile_options.ini new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/precision_Problem/No_standard/build_out/autogen/libascend_all_ops.so b/precision_Problem/No_standard/build_out/autogen/libascend_all_ops.so new file mode 100644 index 0000000000000000000000000000000000000000..b0f4a44a1bb1943cfa12cfe43788685e3ee00f04 Binary files /dev/null and b/precision_Problem/No_standard/build_out/autogen/libascend_all_ops.so differ diff --git a/precision_Problem/No_standard/build_out/autogen/op_proto.cc b/precision_Problem/No_standard/build_out/autogen/op_proto.cc new file mode 100644 index 0000000000000000000000000000000000000000..ea46ba47b545dc908a6c1eb639b05377ac58b9bf --- /dev/null +++ b/precision_Problem/No_standard/build_out/autogen/op_proto.cc @@ -0,0 +1,5 @@ +#include "op_proto.h" +namespace ge { + +} + diff --git a/precision_Problem/No_standard/build_out/autogen/op_proto.h b/precision_Problem/No_standard/build_out/autogen/op_proto.h new file mode 100644 index 0000000000000000000000000000000000000000..bd92dfc8e50c484c0f3be8db7d437fec17d8cae7 --- /dev/null +++ b/precision_Problem/No_standard/build_out/autogen/op_proto.h @@ -0,0 +1,20 @@ +#ifndef OP_PROTO_H_ +#define OP_PROTO_H_ + +#include "graph/operator_reg.h" +#include "register/op_impl_registry.h" + +namespace ge { + +REG_OP(ReduceSum) + .INPUT(x, ge::TensorType::ALL()) + .INPUT(axis, ge::TensorType::ALL()) + .OUTPUT(y, ge::TensorType::ALL()) + .ATTR(keep_dims, Bool, false) + .ATTR(ignore_nan, Bool, false) + .ATTR(dtype, String, "float") + .OP_END_FACTORY_REG(ReduceSum); + +} + +#endif diff --git a/precision_Problem/No_standard/build_out/cmake_install.cmake b/precision_Problem/No_standard/build_out/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8d97a77cc9a0d3ab0f3099636625a49820ce77e1 --- /dev/null +++ b/precision_Problem/No_standard/build_out/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: /Package_Cann/test/No_standard + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Package_Cann/test/No_standard/build_out/framework/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Package_Cann/test/No_standard/build_out/op_host/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Package_Cann/test/No_standard/build_out/op_kernel/cmake_install.cmake") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE DIRECTORY PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_READ FILES "/Package_Cann/test/No_standard/build_out/scripts/") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/custom.proto") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/version.info") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/Package_Cann/test/No_standard/build_out/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/precision_Problem/No_standard/build_out/custom_opp_ubuntu_aarch64.run b/precision_Problem/No_standard/build_out/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..68064786722235034ed8b67ce532cce276c8dec0 --- /dev/null +++ b/precision_Problem/No_standard/build_out/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,1040 @@ +#!/bin/bash +# This script was generated using Makeself 2.4.5 +# The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL) +# 2022.3.19-Modified the MS_Help function and some options +# Huawei Technologies Co., Ltd. + +ORIG_UMASK=`umask` + +CRCsum="3041702791" +MD5="00000000000000000000000000000000" +SHA="83564fdb0efb6398c2c16910aa031cf959b4e60afe89867f33033a9c0e1bdeaa" +SIGNATURE="" +TMPROOT=${TMPDIR:="$HOME"} +if ! test -d "$TMPROOT"; then + TMPROOT="$PWD" +fi +export TMPDIR="$TMPROOT" +USER_PWD="$PWD" +if ! test -d "$USER_PWD"; then + exit 1 +fi +export USER_PWD +ARCHIVE_DIR=`dirname "$0"` +export ARCHIVE_DIR + +name_of_file="$0 " +pwd_of_file="$PWD" +label="version:1.0" +script="./install.sh" +scriptargs="" +cleanup_script="" +licensetxt="" +helpheader=' --install-path Install operator package to specific dir path +' +targetdir="makeself-397763-20240915013443" +filesizes="132381" +totalsize="132381" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="672" + +print_cmd_arg="" +if type printf > /dev/null; then + print_cmd="printf" +elif test -x /usr/ucb/echo; then + print_cmd="/usr/ucb/echo" +else + print_cmd="echo" +fi + +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:$PATH + export PATH +fi + +if test -d /usr/sfw/bin; then + PATH=$PATH:/usr/sfw/bin + export PATH +fi + +unset CDPATH + +MS_Printf() +{ + $print_cmd $print_cmd_arg "$1" +} + +MS_PrintLicense() +{ + PAGER=${PAGER:=more} + if test x"$licensetxt" != x; then + PAGER_PATH=`exec <&- 2>&-; which $PAGER || command -v $PAGER || type $PAGER` + if test -x "$PAGER_PATH"; then + echo "$licensetxt" | $PAGER + else + echo "$licensetxt" + fi + if test x"$accept" != xy; then + while true + do + MS_Printf "Please type y to accept, n otherwise: " + read yn + if test x"$yn" = xn; then + keep=n + eval $finish; exit 1 + break; + elif test x"$yn" = xy; then + break; + fi + done + fi + fi +} + +MS_diskspace() +{ + ( + df -kP "$1" | tail -1 | awk '{ if ($4 ~ /%/) {print $3} else {print $4} }' + ) +} + +MS_dd() +{ + blocks=`expr $3 / 1024` + bytes=`expr $3 % 1024` + # Test for ibs, obs and conv feature + if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then + dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ + { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ + test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null + else + dd if="$1" bs=$2 skip=1 2> /dev/null + fi +} + +MS_dd_Progress() +{ + if test x"$noprogress" = xy; then + MS_dd "$@" + return $? + fi + file="$1" + offset=$2 + length=$3 + pos=0 + bsize=4194304 + while test $bsize -gt $length; do + bsize=`expr $bsize / 4` + done + blocks=`expr $length / $bsize` + bytes=`expr $length % $bsize` + ( + dd ibs=$offset skip=1 2>/dev/null + pos=`expr $pos \+ $bsize` + MS_Printf " 0%% " 1>&2 + if test $blocks -gt 0; then + while test $pos -le $length; do + dd bs=$bsize count=1 2>/dev/null + pcent=`expr $length / 100` + pcent=`expr $pos / $pcent` + if test $pcent -lt 100; then + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + if test $pcent -lt 10; then + MS_Printf " $pcent%% " 1>&2 + else + MS_Printf " $pcent%% " 1>&2 + fi + fi + pos=`expr $pos \+ $bsize` + done + fi + if test $bytes -gt 0; then + dd bs=$bytes count=1 2>/dev/null + fi + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + MS_Printf " 100%% " 1>&2 + ) < "$file" +} + +MS_Help() +{ + cat << EOH >&2 +Usage: $0 [options] +Options: + --help | -h Print this message + --info Print embedded info : title, default target directory, embedded script ... + --list Print the list of files in the archive + --check Checks integrity and version dependency of the archive + --quiet Quiet install mode, skip human-computer interactions + --nox11 Do not spawn an xterm + --noexec Do not run embedded script + --extract= Extract directly to a target directory (absolute or relative) + Usually used with --noexec to just extract files without running + --tar arg1 [arg2 ...] Access the contents of the archive through the tar command +${helpheader} +EOH +} + +MS_Verify_Sig() +{ + GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + test -x "$GPG_PATH" || GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + test -x "$MKTEMP_PATH" || MKTEMP_PATH=`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp` + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + temp_sig=`mktemp -t XXXXX` + echo $SIGNATURE | base64 --decode > "$temp_sig" + gpg_output=`MS_dd "$1" $offset $totalsize | LC_ALL=C "$GPG_PATH" --verify "$temp_sig" - 2>&1` + gpg_res=$? + rm -f "$temp_sig" + if test $gpg_res -eq 0 && test `echo $gpg_output | grep -c Good` -eq 1; then + if test `echo $gpg_output | grep -c $sig_key` -eq 1; then + test x"$quiet" = xn && echo "GPG signature is good" >&2 + else + echo "GPG Signature key does not match" >&2 + exit 2 + fi + else + test x"$quiet" = xn && echo "GPG signature failed to verify" >&2 + exit 2 + fi +} + +MS_Check() +{ + OLD_PATH="$PATH" + PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest` + PATH="$OLD_PATH" + + SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum` + test -x "$SHA_PATH" || SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum` + + if test x"$quiet" = xn; then + MS_Printf "Verifying archive integrity..." + fi + offset=`head -n "$skip" "$1" | wc -c | tr -d " "` + fsize=`cat "$1" | wc -c | tr -d " "` + if test $totalsize -ne `expr $fsize - $offset`; then + echo " Unexpected archive size." >&2 + exit 2 + fi + verb=$2 + i=1 + for s in $filesizes + do + crc=`echo $CRCsum | cut -d" " -f$i` + if test -x "$SHA_PATH"; then + if test x"`basename $SHA_PATH`" = xshasum; then + SHA_ARG="-a 256" + fi + sha=`echo $SHA | cut -d" " -f$i` + if test x"$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded SHA256 checksum." >&2 + else + shasum=`MS_dd_Progress "$1" $offset $s | eval "$SHA_PATH $SHA_ARG" | cut -b-64`; + if test x"$shasum" != x"$sha"; then + echo "Error in SHA256 checksums: $shasum is different from $sha" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " SHA256 checksums are OK." >&2 + fi + crc="0000000000"; + fi + fi + if test -x "$MD5_PATH"; then + if test x"`basename $MD5_PATH`" = xdigest; then + MD5_ARG="-a md5" + fi + md5=`echo $MD5 | cut -d" " -f$i` + if test x"$md5" = x00000000000000000000000000000000; then + test x"$verb" = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 + else + md5sum=`MS_dd_Progress "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; + if test x"$md5sum" != x"$md5"; then + echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " MD5 checksums are OK." >&2 + fi + crc="0000000000"; verb=n + fi + fi + if test x"$crc" = x0000000000; then + test x"$verb" = xy && echo " $1 does not contain a CRC checksum." >&2 + else + sum1=`MS_dd_Progress "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'` + if test x"$sum1" != x"$crc"; then + echo "Error in checksums: $sum1 is different from $crc" >&2 + exit 2 + elif test x"$quiet" = xn; then + MS_Printf " CRC checksums are OK." >&2 + fi + fi + i=`expr $i + 1` + offset=`expr $offset + $s` + done + if test x"$quiet" = xn; then + echo " All good." + fi +} + +MS_Decompress() +{ + if test x"$decrypt_cmd" != x""; then + { eval "$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "gzip -cd" + else + eval "gzip -cd" + fi + + if test $? -ne 0; then + echo " ... Decompression failed." >&2 + fi +} + +UnTAR() +{ + if test x"$quiet" = xn; then + tar $1vf - 2>&1 || { echo " ... Extraction failed." >&2; kill -15 $$; } + else + tar $1f - 2>&1 || { echo Extraction failed. >&2; kill -15 $$; } + fi +} + +MS_exec_cleanup() { + if test x"$cleanup" = xy && test x"$cleanup_script" != x""; then + cleanup=n + cd "$tmpdir" + eval "\"$cleanup_script\" $scriptargs $cleanupargs" + fi +} + +MS_cleanup() +{ + echo 'Signal caught, cleaning up' >&2 + MS_exec_cleanup + cd "$TMPROOT" + rm -rf "$tmpdir" + eval $finish; exit 15 +} + +Script_Args_Check() +{ + script_supported_args=$(echo ${helpheader} | grep -o -E "\-\-[^ ]+" | awk -F"=" {'print $1'}) + arg_to_test=$(echo $1|awk -F"=" {'print $1'}) + + for arg in ${script_supported_args}; + do + if test x"$arg_to_test" = x"$arg" ;then + return + fi + done + + MS_Help + exit 1 +} + +finish=true +xterm_loop= +noprogress=n +nox11=n +copy=none +ownership=n +verbose=n +cleanup=y +cleanupargs= +sig_key= + +initargs="$@" + +while [ -n "$*" ] +do + case "$1" in + -h | --help) + MS_Help + exit 0 + ;; + -q | --quiet) + quiet=y + noprogress=y + shift + ;; + --info) + echo Identification: "$label" + echo Target directory: "$targetdir" + echo Uncompressed size: 380 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun Sep 15 01:34:43 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Package_Cann/test/No_standard/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Package_Cann/test/No_standard/cmake/util/makeself/makeself-header.sh\" \\ + \"--help-header\" \\ + \"./help.info\" \\ + \"--gzip\" \\ + \"--complevel\" \\ + \"4\" \\ + \"--nomd5\" \\ + \"--sha256\" \\ + \"./\" \\ + \"custom_opp_ubuntu_aarch64.run\" \\ + \"version:1.0\" \\ + \"./install.sh\"" + if test x"$script" != x; then + echo Script run after extraction: + echo " " $script $scriptargs + fi + if test x"" = xcopy; then + echo "Archive will copy itself to a temporary location" + fi + if test x"n" = xy; then + echo "Root permissions required for extraction" + fi + if test x"n" = xy; then + echo "directory $targetdir is permanent" + else + echo "$targetdir will be removed after extraction" + fi + exit 0 + ;; + --list) + echo Target directory: $targetdir + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | UnTAR t + offset=`expr $offset + $s` + done + exit 0 + ;; + --tar) + offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + arg1="$2" + shift 2 || { MS_Help; exit 1; } + for s in $filesizes + do + MS_dd "$0" $offset $s | MS_Decompress | tar "$arg1" - "$@" + offset=`expr $offset + $s` + done + exit 0 + ;; + --check) + MS_Check "$0" y + scriptargs="$scriptargs $1" + shift + ;; + --noexec) + script="" + cleanup_script="" + shift + ;; + --extract=*) + keep=y + targetdir=`echo $1 | cut -d"=" -f2 ` + if ! shift; then MS_Help; exit 1; fi + ;; + --nox11) + nox11=y + shift + ;; + --xwin) + if test "n" = n; then + finish="echo Press Return to close this window...; read junk" + fi + xterm_loop=1 + shift + ;; + --phase2) + copy=phase2 + shift + ;; + --repack | --repack-path=*) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + if [[ ! "$1" =~ ^-.* ]]; then + scriptargs="$scriptargs '$1'" + shift + fi + ;; + *) + Script_Args_Check $1 + scriptargs="$scriptargs '$1'" + shift + ;; + esac +done + +quiet_para="" +if test x"$quiet" = xy; then + quiet_para="--quiet " +fi +scriptargs="--$name_of_file""--\"$pwd_of_file\""" $quiet_para""$scriptargs" + +if test x"$quiet" = xy -a x"$verbose" = xy; then + echo Cannot be verbose and quiet at the same time. >&2 + exit 1 +fi + +if test x"n" = xy -a `id -u` -ne 0; then + echo "Administrative privileges required for this archive (use su or sudo)" >&2 + exit 1 +fi + +if test x"$copy" \!= xphase2; then + MS_PrintLicense +fi + +case "$copy" in +copy) + tmpdir="$TMPROOT"/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$ + mkdir "$tmpdir" || { + echo "Could not create temporary directory $tmpdir" >&2 + exit 1 + } + SCRIPT_COPY="$tmpdir/makeself" + echo "Copying to a temporary location..." >&2 + cp "$0" "$SCRIPT_COPY" + chmod +x "$SCRIPT_COPY" + cd "$TMPROOT" + exec "$SCRIPT_COPY" --phase2 -- $initargs + ;; +phase2) + finish="$finish ; rm -rf `dirname $0`" + ;; +esac + +if test x"$nox11" = xn; then + if tty -s; then # Do we have a terminal? + : + else + if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? + if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable + GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology" + for a in $GUESS_XTERMS; do + if type $a >/dev/null 2>&1; then + XTERM=$a + break + fi + done + chmod a+x $0 || echo Please add execution rights on $0 + if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! + exec $XTERM -e "$0 --xwin $initargs" + else + exec $XTERM -e "./$0 --xwin $initargs" + fi + fi + fi + fi +fi + +if test x"$targetdir" = x.; then + tmpdir="." +else + if test x"$keep" = xy; then + if test x"$nooverwrite" = xy && test -d "$targetdir"; then + echo "Target directory $targetdir already exists, aborting." >&2 + exit 1 + fi + if test x"$quiet" = xn; then + echo "Creating directory $targetdir" >&2 + fi + tmpdir="$targetdir" + dashp="-p" + else + tmpdir="$TMPROOT/selfgz$$$RANDOM" + dashp="" + fi + mkdir $dashp "$tmpdir" || { + echo 'Cannot create target directory' $tmpdir >&2 + echo 'You should try option --extract=' >&2 + eval $finish + exit 1 + } +fi + +location="`pwd`" +if test x"$SETUP_NOCHECK" != x1; then + MS_Check "$0" +fi +offset=`head -n "$skip" "$0" | wc -c | tr -d " "` + +if test x"$verbose" = xy; then + MS_Printf "About to extract 380 KB in $tmpdir ... Proceed ? [Y/n] " + read yn + if test x"$yn" = xn; then + eval $finish; exit 1 + fi +fi + +if test x"$quiet" = xn; then + # Decrypting with openssl will ask for password, + # the prompt needs to start on new line + if test x"n" = x"openssl"; then + echo "Decrypting and uncompressing $label..." + else + MS_Printf "Uncompressing $label" + fi +fi +res=3 +if test x"$keep" = xn; then + trap MS_cleanup 1 2 3 15 +fi + +if test x"$nodiskspace" = xn; then + leftspace=`MS_diskspace "$tmpdir"` + if test -n "$leftspace"; then + if test "$leftspace" -lt 380; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (380 KB)" >&2 + if test x"$keep" = xn; then + echo "Consider setting TMPDIR to a directory with more free space." + fi + eval $finish; exit 1 + fi + fi +fi + +for s in $filesizes +do + if MS_dd_Progress "$0" $offset $s | MS_Decompress | ( cd "$tmpdir"; umask $ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then + if test x"$ownership" = xy; then + (cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) + fi + else + echo >&2 + echo "Unable to decompress $0" >&2 + eval $finish; exit 1 + fi + offset=`expr $offset + $s` +done +if test x"$quiet" = xn; then + echo +fi + +cd "$tmpdir" +res=0 +if test x"$script" != x; then + if test x"$export_conf" = x"y"; then + MS_BUNDLE="$0" + MS_LABEL="$label" + MS_SCRIPT="$script" + MS_SCRIPTARGS="$scriptargs" + MS_ARCHDIRNAME="$archdirname" + MS_KEEP="$KEEP" + MS_NOOVERWRITE="$NOOVERWRITE" + MS_COMPRESS="$COMPRESS" + MS_CLEANUP="$cleanup" + export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS + export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS + fi + + if test x"$verbose" = x"y"; then + yn="x" + while test x"$yn" != x -a x"$yn" != xy -a x"$yn" != xY -a x"$yn" != xn -a x"$yn" != xN + do + MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " + read yn + if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then + eval "\"$script\" $scriptargs \"\$@\""; res=$?; + elif test x"$yn" = xn -o x"$yn" = xN; then + echo "Unable to decompress $script ,because of aborting! ";res=$? + else + echo "Input value is unacceptable,please try again." + fi + done + else + eval "\"$script\" $scriptargs \"\$@\""; res=$? + fi + if test "$res" -ne 0; then + test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 + fi +fi + +MS_exec_cleanup + +if test x"$keep" = xn; then + cd "$TMPROOT" + rm -rf "$tmpdir" +fi +eval $finish; exit $res +3f< u{+!c KB; 8tN*sܝb%Bݎ;!d&.(\Ag vat!F吘P@T +D SQhcٞϝ^~ޛ9-ƠI>)H,mI%@LR$ղTsKKK$STHɠO +XeNMڃ$b6fcyH`-m̼f)iIyEݮ icJv^SA]:Li_ M)|`7PLdfMK6֪]̜~ ilDYSUv[ℙϳv2&#,X =_]`fOىFHMk[Hd8gX-6#T֤Ɣn5Q5g[A(1sb] }=kZjjľnԂ#֨lUc%V,N쮥mY6`ivMaE.,98Z6.؂\lAZZfEQ~TtU0=m4r֭R1)f@7Qi +hHEj@*%K[EZػU*,*-nxA +9pJs莔r(KK5|"ch +RpHk;F[ WQƕ`MJICHK +,ti0PXQgY-+L{_g׆Ur禾==[ +CȨb,ѪTf궪"fk%cDG$IgX=ƚӉp&OpFRDwN:=~}םo=cw}OGo;~csGw8 CTFhy-ʸEjVJ[F<l!q88D*mtRi ;˂ +'MQ9L|+m+C$8s(nTUm EmYAgV9l`P1Ay>MRyg1LI̾i-9l=CG-{~L{gh=PӺelm\Xd)[P5.%-ae:DVQI+d,I06z_wUV7x}&R0glfΣ&M#P)gO,G$)a%w;PԢ"Um%!$ì(ż' MP_aU8l?rJ^ S{B|tXʚ3to:a=UW+:C.5ݐݫ'越xGSXީX2Z]M67-L+R7U=2U׼-(}%ٕM-lPAv} 6G; +᭘{`NTFA팆[Ҁ6}p + |Ly6x'b4U5:D e{eTԩsomE'.^|}sϙB9 +b1!_0|.a(')U•LOMA*_ h TA*F*,L?r6VM;$qVi !Rg[ +"x"C9Ӑ:LfiChVάihxF*d!>ٞ(zdDC$2w&ΑSPsd,sXjƐݻDd 됝jv!vYl +f)|% 1u|JqT+Iy5y+ >.k ^ᡱctc~4 i ۗkoj_JF!\;X0T$]墛.A$ +W5R)L/BG*Յ3\|pېJČ(.Lv.-弩$"d5V2M<518(YRj/O;;xtnޱVNśIPt -7S {?!CY=5D`EOU0dq9a혼0EߙQfwBy훁YY h|p6-_ +̡ ~&sC:o E:YUs#^|8./'%Ɓzb~a ӜC@,|o?[g9>/x1#RpN+q/G^ +pP|J_,|])9p%!cɇOn/tssícRH?nۣmn}BGP?B=4_APuT)/ ϱ~ؿP?twm'{kMwd_;jh-o]8Ccu8O%cxnP%mţݤ&{~^ۼQwx꿺ctnѺKƏ]<ӉOq@oHƐ hC~G?G Sy.@{`Tn!Ȟ^Ľ;U׺:v<ï&fxt_Pq dwh<}}Prhw[16 Ck?艹ۊw>3wdL7]X&&.qe.=PG^\?c0\IC8 t?Q'0o rnxvx8=^ǞsYx/v][,u;]I+*|$rY8qo0q?"sގr BE';pLcz<"6<&fBI8Np|܇,?_}rvoFHOu[ ipmaR,NZ` RuͭH m(3.o/$cȯۊ 5 A_A*%. U[|#;Kr2!ن'WKTcJIkR"=BխLh6,0!NOL^"@ <%2gWP}r ?eOB7/.}I֎8|:N"|r{ "H7^vƨ4|M=C@y <_@[wl\/,@(q=\~sC2]"T@zps܇C]Oh" I>S|r\SYXdzLgXQ{2~6s)XEVNv {~)2,Ogs>m;gk~-y/Zk@grԁs?ͬ~Q#%3ZB4M p:^>^~x~'8~oF(s?KmBm4n? ~~?8 ?_BP r9v>`>D=#?.xgt" ̥{h=ho?/"<%7wyt!( {ox_тw~I#y%bxA/Ѣ8c8?ϕhyEaK/- +'}qÙi ]_hi&CV3L%?ߧwQ$rQJ֖pMa;ss%tCZBQ$bc23Pc75- MKKSӀ>%Uչ咓mÊ- iކjiI)PY8hW:$K)Y2VVN #};}Fd  +V`D L̘l"ʤPHexJ=hZm.|Y|%恉m{a4tkh +-F 8zeoNA)TXV77 13[ .%k,gaH]vp0OAbmJ 7%`nve0]/ab{sNn<'fcQ(dwMMMV~閝2A46<#g-uS|¨cqTSB b2$)7) +vU*C>*unE O8T?iMLcopJծ%˜ԙU:v.#R -Q2W-G9!0<Ԃpi L "oc;U"֤D-gOkWjDzJ'+1a.q_: vqtNdgGTn VS;I7֏B +rD/5Xp孂>Ğd(7 @f=H.yvs![)d8`!FHIvr2໪NVskp!( Р %OA !->fpFذzW C +>(1龍C*]'qC8A#<:NIĞ·ptp<<`Aq#J׹K}X Bл}F +Y*tڟS\4ߪ)IWR*TÂB g]2Mex6:NƳyKDF{^USpV.ѩ$~4V6ItIDd|*:_'/d|\2N>$)d|5t2N^:y^u2.N{2N1:/'uS^r%G%{"69>,aķ0m ķI&C|䗰~obN \cr*%95u7յ33SQra,◢AzXՕ7ig%h,>vv]320>Q_~EԉZ~~8ȏxA;֌9pg=X~E c~\CwA"`wX{Y?axkwBwsW,77֓$ 7#UE46\>mml6qeg4:pβC6WxnW6kuf6s ǁFyWttxtz5myfJm󉆺ǯҎv䮫#@>>4O7Tf3c+#(͆gW*'WW9F]e7ȹ~I5BZc֎xa 9,RIeL}vB}u"Dgz2AB_@i`;E5|ihE"\QJ歚JaR_G| 㿊wT=A^̴V62iZǂG']@籿~nq*[_WY֞U_@uU=>tnqϊ47BP?߀|2 aʋ? ~هG.`iUQ>~W>n-k#ZPqU][y'ך?_ſq}K> g aXg +w(}yPX@{t8WF]ozSO_Kz/_j_ye'~CO@{ƶzN +DZX]Z]z'/q|[*u`k l-wy~f;E_[B?۠H(sbCeU,>z{7`oZ Do0W5VSqy1|l7QoaaqqH{fQ݂l8;mH5=$I5zWz55 &vJ1)fQMh[”y}"^+̧EUV%'{H|)kHmħo y嫱-ǎq~spq޹sx Dž\a 5p \#sbϝ!ςw[`>ּWA^f%Lw/b{ӝg./gUn'9].G/{lYO4$ٿL1:X=Lޢr+(:w]h+/'/{jY}R +>:]hd79^v2 +']FdpQ8ٽ@~gOmmmmȖ[C]K3ȖEv0<%ɖE0<ݐ jЇlI$dCR\?7&n6^~P(HzR⹮ ax_ΰJmpJGW)=١}9١}dV%o6~-&4 G(>t=-.ʠa5oWWɩIůѸE-N}_qAO?3A:ŧq4N_qrh^ ߭$;Gɩ5ZmЍq{Tkk"]}8{@v>9gSWkψ ]}MWk$W˛ҧ_uQl5mS5wI:ORk~M-0Uk]8U? F_P׋_.-t}!DG[K8~Qf{]tnw*@<~mCkkmontb8¨ 9n#S#tܤiBgY4epU@!|̗!0LQ?*ap |90tF£FWC +$hgdA&r*W Z^"U I{[&ɥk Mh^ R%np;N}JIFz +Q -ď O㦓Kٝ0]5cT]lz1o8K{$7Gd"V,s6<Js<=XL `_ȹmۍ<A yjlD3psrfDC0[WyԶĨnfZX 2@֦[(B27|ӧ?ӧ** }ͧͿx߾[/tɣo|w^G%a[-4"9oN1j*Ā66}R9'i'&Y+`x=-b<8Z(oЋ-  >rocyrօ8_'3&MǍaU~#vHv>yѠyy͋)%;Zw$E0I5ȎOtkkkTưdY&E}I" +ܪaX5]ahꬽsi)sm'^d -*R7dڑbVrQ5-uYaۄ|)&Ȁi +ҫN`d7n +:ꩃnw9x$~L)>hیTw8{ĉ+Mp]C) +`3UIL& X޴F[/*} ⴒͷllQ-Z.Ԣ]ruz37-tLE%{R؅,]\Y +v[i)Zf'>i4|nnr_*.NL3&d@Kb""Pd._'BVsmlùC{!$r!U֋e.|>'*F?ȳ@OYU~&^12`@&F# C&Aʦ'wG7#laU<0\r 1ǫXUeE U簣?5Ev5Vrh@EszvIV0]o&@_'_*;CˈI KMO,Y].aI򒇱([]ik? 7nr;UƊ\O#H_ef2|Npli%op(uXׁzoV47=u.FB9hJ#28)XMh Qob1sYnA&0EXŢ7u_a>w4:ú&B-:Fa˷KM9ƜR-: `֔(2䰦%=vĈc`Ym8:CX˷%<{7Ť;w0ngЎ644Sf +YZ S*#*AylAgYT5k7 W5^=W~G{@J` %(= KÅ: ez) ru_[(Eg XV¤Ͻ KVTDN ++DdXjJ`f}=ܤT>1G~S5E=:oY.Mв\ {%lqWn; *(tҗe(Y|q/ *op`FZsY^q;)_,<×&S^ZNX:US 8_ΆUyBlMŶRŁ1Ք{arZ/J?2 {tVx /nbs;ayQGBwsU!2.fP2VVD)ݠ5wKkQҡ>,{wҙ;;pnφWv̄4RMC 5%HI;NevZ2R Eu?Xՠ>Lu1 U?X7eiag:ج帏6;Fx|ca#[͡yG\aD>#Ю(7$㥐-B1 7s!5BüÍ\耗785/#-H x +@9xZXƣ_tNɁMt- Z$q#TȭgcCBhKhxw{~tg{kZrTò1=)ι8Gs1ܲO9hR3yMX] ~59m($aGm1><{8r _0#Gs<&or"p\0~3'8h>?7Q[ o|a{'8ٷ9X+G³ ϣ4#,vmƿ圾c؈ϣhrz?[) >ڧ6 m&QuHC&vycfkGN_4rڧx )kX<*_cNC_]o <Jf4=ٶ栭:;v l3HN_~>Ea!˧d[Gs|~ & s0y=G^0w;ʥ|"DvyHFq "dP [ BV-}C,&VnaMLJu)"rrei%+Dm(~c`3^*hPrd,i-w>-N4(i4װy?]ӄJ $3ooZ|0:^E݇pcxv;Vffv/{wǀwЮ;{K^l5Fzz=JA[b.4Otə˾J܎SD0=eKl2oJ ;}?Bc=qJ/5rNMi+Ii?W7X3FZTMT-L*~NY|51%?Fk ΨۜӌNي$lY1+Z(kJ*eft*adb$ Tx5Iׇb)Qd|zN?}_BD_?qtڶ$$;#JZ0+QZTV N&U2dB2ńI*YiYv2܌e T1^q5! F3=<FKV +P8  +<9f/)S3E7777;cl)G0YRoזԄlIY,pMV-&M[!+_IXF^wLNղȤ91S #0,#QI+!Zh Yʨ('Y˶9ievs/0p.%EO\(Ee#afD-dRPYYLEf֐L& 5HURdB$%s3Jw棞Yh-t,m-`g&r*@o^|16є#iÌ-7g314l:I&D6IsM?r3?6k ΨӌNM;Z?J$;Ḯ%eNKV& < +b)*{Cl?7?/0+RHW'.tx?A{ QT5c( KK##ۆe(x,ZiU5䬡&djȈiR=9Q,k4CLf:{x6`3q xr_S_*ooo4<g _4H0:K iv6`mVd]{X~H4Ybp00;g7<`0Ăa$\?+GK1 dX`1T>뚸H{ l֗iτzA|?;[8uL8z6M-׺L8ws^~9uל.*0i&oWX8>ŝI WOJ U.]㌁}v`.4(Ҳ&є tt[PО?]BwiO51i61]4Gӎb~bexE?<vG]>}(`1ؿM<]ſ?4E ǝCΩqԒï/uѪKve׌]/k躛[tU_ڞn=G%B?>=l<~I#b/Ԋs'L!a$LDf&30g&!QVv hE*˺ڲ躖}llJmuGj眛{䁙{sq8w;?+Q{[7ٽv[,6<3/MSۯzzu7oWW/ۡگRK+=6瓽g}_fgv}wmhIUҋOQuo>+|ӌͫ9|Ot/zl߁rTOT;ؑ`m')=%'R쨸Ao /uc/֤39:7fM6/|[0[1%1Cs-"F⭷-¾{7& ]ZJHE!%#P&zvv>EЖaąOWhMt2U>R(iD~ ]Zd,7S$fϽ-$g/Mʴ`(Nq3V#QIΎŚŲB S+\_/7잁+dsTO>uH[CVG:u+JKv o k ̔]>;IN9v~C|D.+n~;ZRGR&54X-Vg +G4JH u,۷`w:M}\7 bE­07Zٰ,l]v̊ڹUne猝ȶ,XPGѼ˷DT|mZ@8XK졣jY}u}I[pZZ D Mr&6ќujYz;. j yZD.eМ(W,zڇS\e_SLBX'JW˻h:(E] +7XӬ5$9rAF[(3<Ȇu;:vrPLka)&91R5>sR K>4TA9Lw_@՛`jˈsRN@%F‘ZOMNb:gW+~S:LϜԁ sDU{_ 't;f Er#M)r4Y ҤA-I`9Ж&mKx. 0J8tc5+IvuTGu;LG$Fjb#־ىA +Ԯ4վ"s.,nnMgc 9CMAvT{'$EWܦҐ$t {Po\4ޤ~;&lO8?< Nq;k%< sf~Dkw烥E;-\ҜG6 +|B&T0sg\O"bZp֛0OxG/y;>1d&jzL-2VF/)=?jWH9釚z8,NeX>SZuFw8דYiB7й8U_R +? R!W砓%5X,$ɏ8spdjakv&/9KN? E ,Sv5k4(bq[|EP/;n2)r9 멮JrE63oǩbAɅ6.yݽ +2wJq}W<0؄tE +N .hv+r:t)\{ts.sv" XYXU )[!ý{F\Z\;D-қI%,=In跓x̽+H瓘Yϲ'rLLI^tZm_6oaKSi257[53&}_,3Pl(huvSeά-C vrc,ߘ?)m)1iyJ9V[yOﱊ+c!;81ƑwoR"r0O|qi:{W3_in1&+)j{#{BRIJB㌱j{ 7smw)m\>>߬t5ޫ\=dzqoV 5x-sm8}7vewKoTϋm-[mE|DE<sg7x#E|Hg__V.ߢxE_?*SN|~ߪZZ7?,yoW|/QzUQx\х|V9Pī_Q?+>KA W1> +ËﶗbYUC81tC;ooTC~i; +vC |)ǁk9 5nX Fok(ܰB[87l3ݰr;^6 #8SuCN.>2A2/ɰXFy]*z*Q`ߤpC5g)z~EpF?B;/]K8p|=]a8{vは>0pOk|=7WR65nd[olο . |:gLQn~6*^ S^ \3<|!v yMx;p!7,>#a)8pxxC_ wܰx=g<|3[oa+oUہn{ +0 _ +ܘFg| +[Wo>Wn0oX2K/C87/>*l_ z|#Ϝa N[g7lvZ;_ |W]#"$_ [r[_ + |p^Cǀo | Kǁǁ'g/>< |8*naw_ <|=pui@x9[k8l|;~; j{.^>x~a 7P6| >MGwzeWm8uui;8Ol }=W.o#=@I +Ay~/llll>>g>LOAA~A~//>>w>>>߱}П}es~IO=tI@Kz%Ho= z:7=}6}=}lEl%ltzz.}Aw}Ћ>>诱}]ll2:Ag>~z&z%ۯmlllzyaQq {lll l/}/}?d_ew}?a_gY%6ۗ}1r̻llGl>>yd?񤧃@ $]% 7JH=7xl<z&d>>K>&}З}Эlt탾/t7N}Y탾탾^>;>;>5l=l:/lb1j㌡5K 197Ç&e(?߾1iMww4uz՟mU>+F=*_f G/~>f4k\|QU{fUr%f&AQЊrDM-j+heBlmK[+R@ҟK2$8Rne +X2pQ6}dַ[Z9~}}1 5Q7R3SNOkrK|)䯁N!V6ɔJG|*څ2~AEҋaHon+C! 9ө7ucha/]]M_y6/%K 3Գ7ɑ?A[JD2 kj-7vtʈ\})/T {2d3B!7K>f k|dA>9)C>LyT'}U{+{͓.JJWFWCo}+=>n1w+ fܝUa>tCCJW&G]i]vF,M~y//8r67#_]6>W6)oOCnj.=-o3o/Q _%_2o'_"__'q4_/O%_]67/se_6uڭ_ el\_d3o T)K ?Ps4f71P~S/n@y_6*7_bA// S[U{,(ew~_ϑ|9D/{n9_6_/z* Pce)w/q<~g "w/7' +Kiw/R(_!_#o;/ϓ).+ג/O)eN7~|G\-~||bSe?g|]nD(eG%nel"%~|nx&elg|REelߺjel'|29QoptE(e?GN=C~|?\;"C%c;Yʕy| N{*<@eloelin}#)3nD7$%\<3e?GN%|<5eM"_wˊ*y)'r/TޖzJT[Yo{v|_~||rKKf-wZ +~q4"7_" /'_]6O>W-/q׸3rƴe,Z# ]t6g#]t)אA).& ݏtˑCғHHS8Vi-H#݀RHG#݌tҗ"ݎkH'#݉zV%hW|Γ8߇}8^kr]Ъk*ZG1^79h` aUb~)d%0vfFμPĎaY%׺t,S#_TU٣|k}MjdYamJ4{Z#{jes,)a4'O?L&0//AX+ ׍ace3"d$a%;;g 0 1+x;zكحW/v#>Lb,JVYX=}|v}1sclY'"z:@*`V I9[Y>c{ kesMe|h=a9abl ܂ku;t=),¶"a}h0>M?T'KUE9H|dX]v5 ˳|YƼنz k@Ǝ\ k5:x;uӞɽӅCۡ7|p$Nso/ף b 4 +d"tCVׂn_Fx^&oYy>qy~=ΧU-:jX1\{*(k,>m<O3pwk\MErv⸥PᲓ2 PnL ;mpeNB xP幯zp\sLrmpwM_ʍl_^C\[QoE<`)䎠|9fEjup+zp7z kbXl+O^cBtL__T/Au:°GCˤ_WBDd01(VjqZڍUb 彴lPIg)Wj]$o'Xٸ2ddZ}mpmomcFb +Mw ݃nѦ2D=m~2dx7sSmf2h'6?vc +yuef1\a^nu Yc2#v;خ?<~c8+d q/h5jXrwL_x_Ȫ |#m/hP>5Km=Kr1 >~>!+􇍏,~uR,ѿ5>>u[YgBw|IEog_% ~>+Q#}R㎐FPID/?Xw۾hz~fHI;:kw8rmD=T%Zrq/N[ν>ɸw'ޭ{73&ޭκw{7h{[,U2],3>Rn;f_kUoOVXh ޑf/ϻxټ_D{3ռ-Xf^IXJMgn^8Z`sq8us,}u鳋L9׹ȼ2efJK]sWa3ϧg)ؑiر5kb"=H*п~9z˙Ts~/SNq_@c-!5ٺzЧbrplr&z-'#=d>&~>߃0k_d[t`<zB;mJFʬedX/G?ߥS-1Z+|y#쾶=W=l5\ה+)ÓyOXZrU̽ulht8Q^ $j%[<y*]!$EyMNvzG7)er#:*\'}mLׇr۝<6%rI0<>\7#3.>7 /ۄr^>:;>>y|rhɫ>:gGC)N}>y)95>vIח#5;ka}v9lK|-rˑlg;˵ˑ>\(ϩ/W"u t}(ݩ}y5N$˳˕<\?<.r>y96\Ϯ/OD^S}ۘ]N@^)WrF7y|N}(7ũyM/߮tʅq>\ CEv9#_}NvW _}9z>'o^_il_b^%c7lr݈ck9;Z13'vGX=HXczkHb֐Z+/Oog]|/Z (,.~Q]|я3vLw.ʱ+\}6tdn\'64B|w" .pM|,|cDC xn91oolda1vcnɑs 1֘(}NY[60y;ci}.3(cq-铁p5?Q-#=j5 D)WnΠ}F +aW֠Ly#~|['d%eNZ,bE]_c—T_v̓Qz{x9 Γa +[Š-vaEpa!]9~{ƅ  +46tR+>6![q꭮yj\➓'$&`:Z| ~faӣ3Ԛ +^7<ιCa=uZUÎ/*džAr^Z{$+79&崿$={Y?Ϣ4 C ?Hp[bZ~,oKp^Zin̳\vki9Uk2o٠tG e(/%5ǜՙîdX= s[<ڰl7{qIu7gְq:ް)' +6QVORxوW63Zϛp|}|#27ฟ}|=2_[u8kq,_=9_μ{^ĉwa!/Vy/0uo< U|^\/G1uϫ@a1 TƛSsݾ\yy.ߠ`96_>, r~[.qw8zt?cNsxzz rO<ç[n/;OV{_^&1.O>䖍rMyr[r\K-`ܷ7:@suN{3O~-)59uj]>sd|~jZlb|;]-1;na-VFg>Kln>İ|9n>ql'/?Aw{ϑ$_#@9o/q㚲tCTߒͷl|Pަ7_Pqlnxln>Nϑ|Q7_Hu|Er_6|b9R/o/\,~|?tEe_6|b9@/V7DW|i/%򣃴_6ߵn>Q*)J7_T$_ڿh|R||er3:sEɗ+:+(˽]E>ۢ^`-srs+;:rG|B3w.R3ʞ|oGʞ| +٬/R!w+teOW[W97_RNVks+eP/n>r_6ߣnȹel|se_6}nyr_6| e?OT\e?GNTɓƫ MT +^/Y7W/bqr;Ծ^nH@7|~7_" 7O֨c|r Uik{jVu[bﯸ&6 +.C:ba]Կ߰>iAk-ӂֳ~HYp͍ quyde_zP +LZ)A b]S7/ Z; k=A3s% AkĢubu7ˉjl +zŵ?͋#O]0|5|= Z/-Ϗ/tZi^/\HXܿa.[lr_Z05jL(3!!, i߬A7-y6&WXn0yUMNa`A+HaFV[Z#'||ȊrK!WcoAy5K \ȋob yd hz滐xNF^GVk(&d O9x?+S{ Ƨ ^ú[sj]wuOg;G(S2*FD&+ +\Řoc;GlG\;敁,S11&S}}Ⱦjor'5J.=lOJ]*.v?WWq?9lOH|8d-lOn">m&|kl|>Ob ̇63CRm6e'Bos}+Gm\نkBVzP%q9bxF|qex^8o>ܦ,Qf_j;)G>ḆݶL|l`9gMH#,,GF=˺U!|CBFeao/}}n߅r2CEZ` +ȥ}GHU/7ϸH^A'g_R +h[ڧl$ú 2^؅fz։5bRo 6C)ۼ \ܧ}7F0vP6nj3^soo{5FHe(iRPD?YGx>.|aۂ8omFevk7ݔs6wl!-ޠsmNG=p>Ű^Aڦv-p>Ͱ^Q醵CBw5fWjͰ:yG4 v[o,5c=6?E\M|ma2srC%}rb-6xB oxEeNܷeR~ H|?I=Er!W~{xpOzJ[O2$#ɋ5{GVމڇه:Dn+>6ilE(~x~ +6@>A8/lP?{PD㳀Ɨk8+/mKի0E^O4`j +hBȟk?R>۱Cr՟+J;"8Ns(Mi{(| !@>xE>#c 8mX |P>xߴ}'4 +p_Z +t_~ƃģ F:0>Gj`DUl|#$?|{#JWZ?q +iGR;#J 셴~9}V+< MI}>ƻG5CwPV᳀֮;uXT˾TB|-hzV*eLT*Ɨ).?l5Esm*sgxxD!w97| +6H +x_sT +|wj<_vy +/>џxDC_O5qqM j<4y +GyU +?17k06>W!cO%wW8$(xcO%7rZ;u'+}5 + |[a +1W_Xƃ _Z |ï5~%/#xvHܯ%a]ģo=BяO܎џ8_yt\|?g!sT<:v]_;[/v^~t'M;7t{qW:ν77;"Ds'9?џ_ǿO܎Oqq%'4^:G/^qqU>?W2G >_8G5>*GB{u'xx?񈎧>џ_ӯKyџOW7y\Q/#n+'m|#Moxq_9䉯xqY 6>xT?Ɨ)yƻ+gxoT_e]wWκ6_w_nݕ|?ƿ G%xwsWGaƵ+g}O'4%-#_W<9{.Ʃ+g] GqÌ_WκLG%ˁџxYVԫ k|Oh9"}u:x0]78qj>Izqtqt ~Q^q^cusmxD㻁ڸCy GBǣOrN8P}&uQPmm +_/wN7A e~[8WX\W_km1^s?I m^~H#׬J_h!5.wx9m~&ƹfP|?p# |zz_U;^u>8î= kԗNE>/ħO?~>|ϧO?~>|ޑyFdp=`GVi0:9&jO|?p>!:_/|Z]:j'ד*]~6zVG,L(^oq]PyG .߅8?H>stN֬1mGɃeWh _u$*Wdv_s ~UGC ] +0>'! +j. =-oRxƏϐ;Կ;5)mWӳl7>A6eB}arB5s'~\slEr>E{ETqrg3N$RԘȯyV k1X.o!us:h}sY5˜o%kb=uw'YXjNn,5ZXywAI;uYgL`H{Pny38;XVXp CXQQjv/ȋ%!? +Yi=cºs,{;dž9$d>r|O69e9#m>eoBȮ9+K{ƞ,~K?loKgMd{dWjqkuvaS/N]v{h܌>^%2];cЮ%r^f~y_")YPyr}w_K߿OilE v#qX|}X%X~&_C_+v.`2>l>2sv!e/ Fj|) y';cXsLsXbǔv||?{r|gϙgӗ%>9؜^?'c: +}oŢh~]m~wa,<_.}Pytq}3rWͱ>ڎE^x?rz1):< DGU#b_SǗ[hEb.ee3G7,gAc5ǒȐGV^y(}mbʦ;Di[XQ Üyn1N ݘ8n^$=qA uO[?9qTU7wAz;踒4^Mc폗-K1o8 +_D}9n[dJ==mM +1ON =%~`ϰֻh q΃ګG.'G4 +aM=J_ QzZj>sO+r?VAɩq$t[6r JMZcxuy^楈W/Kx@0ܥ8Gɹyxm.ZrK>GjaOC +U911='S|אEK<^J%&SO)_V/}al4g9?7܋wGU/bTU VX9*3At>x:,d(9#_V>*Z-,eoT}M%S; [*dH7W﬐~% +y! ׼`,;>ac0-.o~?✍(=ƽW ޗS5@p?#Lav~(yG^% o?RoӱK@/_胨W|K`ݣs1 +K ..; 1S(i#GRk'sqƾ7u,| x#7,ognOԟBti>KHxĘ ^y?K ~OKŶ2 Xp0 crՔn#o;~PoBwo>Rգj:qYSLʧ6u=#~uVb#F=6]xl+3:2ߪ'1'ZG%kE3LGr<`|5+W C)9V`+Iqݏ޻*ɘqA `ةM'Y|8b?47NjՑ1cȳ?AEZ>^+/!{v]O(B](-;/nwC7_+刃?-uu9i;?[ +0WĘ.7 κAתQ+SOx: ˇԕ2{:+.UhQ⤧ְu'*8]UOvAp|wod\5SeW(IZbcЖif]-lvP؏}f;/ ?dX)ShwUA'hȽ~,^QfX2^' HꮞP }ڪ|7&1]X{a1ѤGΘz}0kLS`.}YU^KWUTj98w:.#nWT1 qkO}#F8jP$zBtǟ\C߂WWzLbm\+PcG?>Gc2De2P&.:f eo;ee_.*Sl[2B٠4]H٠Ԭe˜<ý{ ~}t7)K2qŢA~߯Zw!m|M|w6U({j-CA^}(ddl/U1z~7OCx!d#h8m{)/Xz̘ wf1F"m#ָf1cH0TmtlQ.yaSΝy9"wfs%Q57G0N\wFC^mZ&>n'Gc]!AߞL>crm}:b>7M6scAp +56yl[z7F0Pkq<2ZX90X]S-3}EC/Ϝ~\**`jڷpEc0|Gz&[kj^™ ZxG +9^wj1kCMFiQ5ͦ-ܲwA̛z>6}"Q̈ߣ("mYȿyOή\H݇g  FfV5^_.k $l:ZOW!.@,O=1y1w@>֋?̝JsIjmV \#sfb#/s !;Kl?SF~,E륜o ؃;+ac[W>,ϸ15g.6Wq %O +}c7z poV(1Z &q:]3C($XѶi$=z/L~mmTb{!2I>MK[3 HQPA@- XZ`ZkgL&!<{{z?zZ KGf2:X/: +c QNZ56orVê=pS(utw +dB< ~q ʝ{#qZ΋EVߝ4`.-xg;c7|{8r@&9I>N5ײ? 8,$-xϭ7٧\a@Þ(,`bI~1~Ol~tCmftIrGΗqO$#,KnxYs @ +"Ray“wFN0=:_b=>L;AY9ЭDlEC{|y Os#B}n+쎷u --_Zt>m!uu7e2[M\InmCmvw9fn:HMr]bn'\(s{&6m &GG9׫yropڥDGj +{\@:s|PG~<;e'cSx(tg=g܏UJ@LJW{xh;i+^dIJ:!ga7SY/>fm^ sxԖ b'*7hU *_ 5xz2kieBLuJ@59J(4WE=r_w~w~+J5 6Hx" ԻD{@x1I42^\. PO˦PpjUn:xkd^|l/4(/qG&mf2М{'=g=ϼY7Lhm=cJ_Re|X۾s^Q괓.y +e|Do.S6x(Q{tAeG^_̧s&=ntܯw+: 6\C<,{g~ݧ8n_: yu-9'D[Ę:}/S· @V^aYWZp'ꊜ.c}ve(ctwZmMzvms}Y*B%B.lm/ v`9m7:4ߜtDuG(2jL6MMݪL}9F³+l[waui{K ˓:dömX:x,Cicu_rت޸ w ~G|m;|_ڲe_3ϦvoxBc›iІ1O45:iٝvlaۺZ1ml-leڶ "9/exu{ap.lA]e`7yaANز&)Nf?5[v R׾ږ͠mYaǴe;ߨ +7^QWp;֌X%;=-<]iҵ]M~}q#ۭ}'7~~<2KAfO?N86ynKe'I {j +(|1/|Ǿdfއdm;ϝ#|0ǽ{rpOT1PT5k3C?D=;[`GO ӫw֓gGY~*ȼexPwO*bߓOc-*;,9ۛ9-}x/u:sIö͓d֟ݙ}V3 +ߜH]i__D[]0Q9?m0?Kt>u5bT_>ʼncfS?K?hUcm<6]N`G(.xxknN?* WT䈶J]p*NUZW\#:9.Ƴ_rk+V+ ;>+u^Jw:ֆgl ,\>z4FfjV ae^pTL5GЇG~(u(0KnԡlI/vhg~c͚a¡>{x16ƍL7T|sNE_?2Erno0Bd{yPB GuEǦ*g%Z:.)8saxQoHt-tqY M?ږ ))܄zP&]RWhÕPuE+_Cy$Ǝ`U]m١x>Ve +XF.er"}T?;;,\l;W +ؗOw0q+qX9xx<9Ao<ǐH+ҍt$MW]2p{0:ħENCnцvݏI ;~0qFj݉gq۳}p h9Ε0&[4GF_={u栟ӏ'yX>w"A5E]uˍTxqיD>Dm,cܒMh1yJфxddI]+.ćs_1J}r8?zPq;"&b^2c6&}t7՘Et 7kEO/Zǫ d6woeŪM6HT]_'=9:j (cxw5%+D^zomz:Rԑom|P78x'g,}sJ+SVhf;`8fzf{&'1)%Aw7מ&i[`>lex_Z>vs3 (L؇z}-y^T>գ.y/qm]j&~J8ڸ:>AĎ}ȝe#SW]ZOp-b( Os upL:7]HէIh=8t :ƭӟkz# vc">ߒs`v6a|O6zag̏p>Pt朆 կW.A޷]2aJ?:O6Qɣ^syS +6ط3l^bhuPп~:g޺Ge92ss#+t~q!bn'{Zw~nCD7ro VqwQďw{͎4oܴe{r*6 +}0m=N?3u9п}xj'oYs\0 Hi!ZpyT ?~Ooi c? qzF<#Я$Fu (r}CІ+>xʱ.eե`VPɿH[ \u`)}9c$s9p憩9:FEG@πc-_)&F:{9uKYh~xu/瘯 ׁ.Y{|\(׻ugc%i8'xc#Qц:isV~&DCD+.NO 5<"~R`J5*^X&g>"uۏWJ>Ӻ~bv+ Y.G|otJ1_9}eHg?Y=\FH{ pC;μ$o(srNe;Qe^/쯈MW?:OM3"{; .?eζ8i=uQke +={[g%{f%}W) î8 f=-ש&6['+9+| I?]w/Y-bA2- \%b Rr!xܖ?7\nqM.Rm_f\nOm#Kц\ <ex`Qf)Ô!9 23g|zX4t,ͧ}%C|zH|si>ͽ4ޑ4_)zU ]WՁKEb6g!AU7|b<#:<1NIi]AR:uzֽNY״ R:|ƪbi%_oQg9'57Jw\~(lUu© +^NG~d ߖB?}9!g. iLE;:P|فJ7/yEJǷW>1 zm}dDDDo]&yv˓~b-58/>ic%dZPw*O&mX2ƾ̾67R#ګkQ~锯2/O\k|JZ+g~Jˇh+I垑-;e/KhxY]զjuRFF3%wsS?;+ +5}Cj _dq\"&='5WY!<6S5W#>}|n}jNs["/wi^ײ271vr.曈Q[{ ?~ ?'քe=Qe)Os@}ϓ8>3re6w/Yyw]$5V9˲DcBW9xheYTbu,r\nz3ͼHo4_lE0 p?`1V V{Zh}8#O!=4>>0nZҵ*?^BЩp-B2=62︀k*HWF>974fU\oB}G*GHx:y7r!y1^u!{wz1w+ǃbw%w%-$sb+Dž/6-nb;={ǘeb~;| +I;G;2&>cmn_zz0>K[C;=*pK;~ZD;S3LӕCή)cGyO0>ξ)0oAz(t+ۧ}fi< ,0Uk'_Ζ I8? wb\&߯_g&2SH@{m0"o0`񧎣n&5_>½#_a}h=U;7K'%'<||ASSϦ$]ܟުFpϳ_S/hupUX?k2w,*<:u \_N=g"|j6Ǐ`z~r\\41;צJ|F~(T㬜vUP7/Z[1&l9a8YZo⼚ǣ  +2EwFunC ͽ°"8W˿#BUiQukJ6zec/Hro<pr']u9b!kyqc{ X#/-% pSf"Ƙ& +d<4MyL0]3nc2v= N6a67v eEWNۡR<@>cw{xyvx xn7OL/~3|qĹI}͔Oj懲[K 8tdEw_.Qdk#]W^xm3캊AC]*FIX;yY⛺f#!ܿpYj]3y&ȡ\oZ~~:H\S;>t[X!5k +\M;?d1Zٟ\_Q`g}U>J_Eq/g%vʸU߷BRI76qI1<:;~nH?| 5O^y>/>=bNY)>uo [~<>zG雷FkOj6)Ŀ}yECcS^FO}q~u~ s})?oq_ZefŦu7Gt?[QE<׍ܳ>m㾱\%:k:7d̐ >I'};9U"\KZ_!G1ʻ& ~( +{P"5n]qkKS>p{scs±psA;3w"p29@Ls6,Ag8sd=_jmLUdפ Vv1 I)<)=o7ϳe^kw+`]qTݬ٪{nS'J;3{KݳL5nvN3`k.m2a)`Ecd8珳>|9c:k=*TluFkY6u_}?`]-dl]bkҀÇ䡒Uu1 ~$aɀ֯߷xߌ#ig?h|ĜOA//"=ڰM)`) 7}V||9֣Y6+}}vzw mC%6h3}\l0)eOhCo?ۡhr_G/qOKkSnGڅ kOA杖X'x[4ߠFo$:Ox5 gK1డZ4="k5FuDsnpFꇋGa".bX/wh}y< ҎuwvSPBޠ>tq{݋ 5QUjؠ:yYϽoۊڡیHSr95Q-k +><O?d5%A]- oJq}~G._}SiXƱ"H_:q]M>)q档mO y 8szjO+udMN!}%0i<=2m̓u'>c^ NMm،оzg3Wxt*3l?m!Ei+ԛCkH0^_R3]"٪㚓N\3PqLA\0F\;5&j9q oyL"]鷗 qhGs+ 4(K>ݰ(i3hlu?wϦz@cӠP(u2ʱ1a~'zzfʹ57%=]G0GN}|K~$}g x;bᅄ>ʧ6pkb=O _tdZ_S=qr7T}ΟE{S0T~3ߣb[?K&]*z>Hz1W9(AzSƆˍ瀟8}2x_zCqljo`KBSDmx?r!&| 1Ytޱݕ.#ͷ)H]q8|{#yvxv|ϼeK9mǩ91S=D=?I;\^ϟ~ߖr8RG38Y.}qZ}i+Iߟ07Tr|;>:gAu5w%}'1WxC<Ϭ>w5 Cf7{Hc-ޯ&<4Ͳc~5z\w~oCN~t_ݮ<||[W_:_;V2K}?hY;Im՝oQ?*Z EduMy@ x"v@<Wu (RkG2J[_3h ""؊yW9}xQW9J"h:Vښ)m=mvc;|z#l}upa=V`LWXPxX:k_(#oX sB]FݝSX:1Ni}S>ŴQ3 ]G`}zI#c0#0qC|DhMW ףgFM =+G'i0;9M2>g{W%9/8fDn/PgN7J[<=}cutٟrNkm + mWn'dCe"m" A| +5>F:En_8k-ջewWP<Ub +t_F_"k6ⴭӌ):e|8ԼR0 Hc6uvAr7$0wyιXG43EΰhsW@ׂ}}']9GְZ^F+\d9`~H=Ÿ?GW\iU6ԏe"[=uz+s*qO7s+;j۔a[yrN'W?rQUqA |xy'/.缀fh +eOuu;< ܿy:w/IL>HY߷pS_9ŹH}ܿ샓D#fF3J'JQҹSz|D]> -Y/v>\}E (]|MX?f=nvgn}_Xqoَ 8Z{Yߢr_Yqs +/]cs\wOY'O{}DU/,W[EEЧf0^Ϝt|d^oWO6TMOË߼^e Wx5*«v +rL0kI]]h5Vv%p~rH]'IОwK B IZ`QΦMKh/}w~L2? yɍɻlrIOr{z06oR#.n~g0l%1Jg Qcci:50e2)wEV#px^~s8ss%K s 1ǩ +ip亼'W¯6,_ʱQCܵkO5/Rr#džcـ2"̤{ij1ʑw(״6;[; ņ6{aqy>* ׇg8{E#4|MkM0uy)ZYsz^sVU~o=tYmgFh9ނ>Dܴs8 xÞ'}[*_xwU/3OTOx͊ +ٷȆ/d1O`%>b7h;~!ׂ.saTj ZK\yTdl55Ft`HU[W,7^ $u9Ey^Yqɀݹ_L=ki&fIK?،÷>#[~-x31<9 = Poɼ'OimQqK7uklHobQ>ҙ킍9<.Cȴ$ޣ( %vFS[^ىitT< "}#s k^kgn4JS[I}QzX 5À늴ynz=Eݠu/4t&ܮh\E iOzX܆yߊ߁O y'>B|;'@hݖ!ޒwԀO!N3Aӌ>I{7}|3dyoWO!_07[yaNQ[}%k~7~k=Yk2WlVA-y >f?\U61fU636ԧVEW{ߔ]&}3^1;~4ri=W@ Ci~z[ۦk6E l9f˙6r-\ilh~sAO;ngYI{dZi]adb,N"E9=n7ERO^^!&ؾ/"7(ܭARGX)ylή8rhQ+A~ 6itKg##=ߠ+ZMkmX֦؞{FM)  ч=v[y]8_aNBџl53M|DCw87j|Lfm _7agS7ӡ\=9|R]k?DEM6T_[,(yO?t}:%WS/Ef9 bv,שljaˊfJ2h-i_ +iKt6ud[Z.(Ƃ-^张C{KL7a\ ND)H<pv?6HZf6fi zu}k\xľ#;[e E,j<bٽW`BL::BE `x8σ l +k:Xһdz |>ܸ:{ +@Sǁr8 CQG]3,?ƌ: |꣒Ԅg\PC[>6 +^ c2AF)`Z0w "ӳ- R9GV <`&T(IE3]^vɩV>oMm[shZ1ڲ4nk~Ҏh2ob<d79%(o+y9{G7evj A_!~\⨀$nn.,rki5[Ɔ Ǧ}3F'V'GYSNZ(q:uՒgN-(-EH YCT`?0a|iTB?/㯱욡[Όʍcc^6 Lͧ\#ŏH9҃ծ~u[}Qx;fWcf<R']anRFe(0>b|γBݎMWnSB\M.ET}ߨ5yFE꼐W.E?Qֿ?ګ'򟩍+kGR n4;WkOg cssqn^/gN6:vi:=)n~L AbϞmo`#JSrBg; ΋hov[Em\D-עSb}Fm!~R=p^>axU} +;I0 Wj޿mhݠKiv7lGuEORcxeZ#eFke~b֚πhUO:Z|~h]ARO0:7_jEpl->(m7nw\1 df~ԁ2#QUJ)~ϻG+!x:;31e9=im+֚8jbQR@Yf.w̵VVvXM{^Ѵ]X9ǫĿy]iL)99M8 +oCl0]SPMq%觫#1E,AṌ:Z8a.ng귯l%|+,Ԯ+- ozfgb;t+a\`qx`Zc^;g(ւs%nK$0cfq +3BHòI”='F-5R.)&G,Hp*(\?tѥE?h:^(ovg PL:?Қwd>j + + (ET-ˑL W^#ۢQ+[az| +3Y ?Z/_vMX2TrN Nz ]oa$A7|D&×CSHIXηhmGBMLm{,sݴkQ(V!"!R{QH +_]LIKBi&){B[_H_G;D%jRk\GS>B3CQ탕ӊU/K1/:+E&d9"j,M9aaJZNGۢSH".ǺdXPC]s_ޘ2뇘=4ozAa/V?!%*DG: zT\DD}wӢgPk^DQz^^Tf# ,4/˴?VI\IS'0e2yTCYgNg43a_eĭLDf(bpU;X"eLCϕ2'ɘR=h %;tx}7NbPa}<#vL"!I%<戚\'&帊ýխ@~IdZzr1j1= +E~)MQzp*Jf:1RӢ`$/R{(IxCj*UihKwUT! !97S UygCȖ9az\<7esΘDگL~)C}~62;65go- #Zr3afCW"դ=U9t! +*-;X . +E uqOFT0$˹ZM4- 㥾kiUĨb)|:Wі?}=lo|3L{S yRǬ!~$$[Oc<<=SwrRt}yNhNe&OsuRTbkiԗA%7.Ar{a47A W㓻PFWaq/92cUvn9Ab _no%Mu,z@g d2q'jH+ T#!V1MıFO+3' TyR7g4[W~{K;*+kJ/7J\>FFțA~?G /_~Q8m@7 2 ch0~vp p2F-#w^ø 1øM~{go I&"@p6k?_ayx~xL]-k{KͲ`K>eo|,{#Yv0'MG컀8|2˚Oe?eC3xY?,{ ,{G Yv6Og;7I;#l.Ms xKY$Y ->}0,Yo=eI,ne{u1>|% `pO0oJ +?,yx ݯΟG?Ǹ?пh||xu xv)/WYv8Mk#;6`}`[ =m!%zm84z'>C-E'8|g?{VLyN' _??J(AK9я低?G訮s\f$! cc IXsgF h$#4fƱ%QF,$-U /UKqWՇnIK^x$z{4N^W}Xs{>{Ϲ{!V:6v~7.oσ<v~!t)\>TqkDﯵSާ6(!mĒq6\کxuj|Ư!%\-9/vɈg~>_e?!ڪ0[ \3Wu>tb<5YD\r^)~OLN݌vVi2!?|o^mx߁:d K|7pz2Ħcc2ć1$jrs#{,;+'W]q}rDޙikm; r> 8x~mT&, J~U~a"=_VL#J\OHd- #T| Hg[f\Mvt/%z;|zrj|@OUW.[@D!@3." +ڗ@_hYD!GdeQzu>Y 3A1/=Q|*'Tw^J&S'WcD3i Qn'Iwg +䖇-Eބ*g=i [׮ї#a}w]Dym bҚͿ#qhC쓆jh<&0I? B~!S4~!=rdŀbhNCtaF) +T")zmQ0U]п$Wr6qAGGӂ#گS@c3sh7O!O]cE>fd1zyᝅyWsHd:'ul~'J=/$ݍErX3(6 i69a{`ZfI̝+p؜ΈNW,j 2XA^ƯU:rn 2JT}8?A6XcbUoRgӠYuPѫcLT" }H+߬#]z.UE=&w'YkoB_|wIgKT{r%e< 13 FCG ~?m$/ܣ?c)11ƼJSp )eIXs{{yF.SiTJ0Sr#\jzC#%)gs-i (&c%0͂1lhAa2矚lX!rx= ]'F -߯+)1֏a`rj0q} !ěuJxNT@?;@6 }@Fo&읞2'0Q ?r?&+6aN@_.v1 ե7czd ϣ-5z:{A8NOyaA]& )KwmoX..F-Wgcx䋵cMY6`@BTCy8`XC;Ú>d}Jq]q~F`WYK?c +xB\% #O ruC[B4S3Vvg !J&3e> +]k[3И?S _ꓫ 6${uhdGJ +Жu#rZO|'VJ=ekNB,coЈA;"_3?gf ?Dm!9o ~hc)෉0Gzt:g7[Of~XPGSjmu4/]]ݳF6c&HJ5k{K_U`fZ_)H4`LQ ')_ ~ |֕ hۨ|])a/ +etT'̆jc0ӹוa><`eŕ NJ? 4w[s` q9q) r cZo}6!:[諭]k}k<-ٿBI󯖭z9p`jzꞴephe84#pLiڟ/, J)Jgל[Mre +3ͻ[_VЛZԳܗ"b< 39O~OF%DD +Yڛڗ|=ԳTKْ})ٽX[E}B޸8Vd*1|F7q6)<!5ܼFP80+ x6p<+m>x.x7 OlI+_؅٫T68xB͆R;F7MNlhhֱ PXԾ +lW` f.y&OK![Q+4Ž1qja! iA·J2fk4D*C#y:m9;W%Y SgݝkES)/;[\R5G-"$l0O.űI蠠[*2z昘iF"`yC`` X'Qv>}vãDC}YܩzkfZ\U!x T@G__tua磟~Q{kU84KŢPАnSS:C_.GSEbl=3i1%ї)jW!\o\A-)ƞEeEݥ<=^b@J^+$c+Ѷ/yxρƓW.^Fbz90 olyy]hg}ns*X@,.cko\gAǬpW(n' Wl6iz ~/F{H]a\St& pC `dN-pXbk_KI݄>lǜ𬅶7duhE!sA0*vʓꖎo'd_|w7OqΞS^}jW|*gAO>7F~jf +էуYCh)EpB)Yh8@Ji߭hKA<~h8օ!\[(ۤ[}̝++=)K +w/-%j[S_vCN + QQoppDa=,Vb(}>YY\ -x[<Ih^? f *fsoRབ+p)%O:vh[., c,אiV)>1hK4h[C6cqzp3ꥐS)ݠtvpwտ$ki/;u_Oq +LަJ۵;՗_gZZ:nf䧧-0cTIz[UlNZj{Ӗa)q[:m ϔsPv%ָ6~k+{%8}`[sy}[jvF+A +P*(]}1o|$nڤaU㨉[!$!>/AJh?3і'a#;Y:v~AOo-AAkŠ8/SaqUE㳢M\ +~W/s[{bnq>yܳ3Nsl΢ȆA[&$ l̄oFi{b?~ˉqOOT)`h:1  +?.t/Q {z{ >+&~QKv~ݔ̄YɌȥ W|`\.YQ7lB3ݴj_ +znh~r%| gg`]y4{GhYXڥ x/R.'vIJ 2@F%5ܔ!+m dDF2:`ꔫN's:e8QxrIA1EO)8( R2@( Nr/\S >EN_ѓ)=;]WH%g[)d*' !1 ]ARΗTB=%!Ҫ1蟎ܕ14 rSi˗۰DI.<;#[1?_6);I[I,N.>K.e+%7sIv lWrɅSݮ\29ww{Bnʵg6W*| c$d !X22T+TS^I8w%iJy >J/)%lb\ɰ׬s'*媂tE{2ezS(R+dHA+hƦURdYym:R zҎ1W֓xxW\2ˆ4X{F2+zr& Id, %)W֓+KVF8D]O)px!EIfi77W7K0qw,3^@6e;F2xHFoI9#"}HV(sujT1顲A +QHi'=^+PBxSy*ݒ]lR@(eOX=>7FR>㉒0;ub5+Vy-J+4r~TFz8|r2.~!Vsމ +/8_q(?q3?ϰ-bu?ƍ!(8&Z~~ Ž4ܷwkx`u,?j|%B[Szv$sޟƲ'rq.O=ޯX^r?ź7#TrANE?qň~ z13$}ΙG_?&y _T)O8LЧpN_ )a"1>fu@ӿtmٺQ}qvPjroc{޹p6a +cV_wX|_}Rd@ٱcDؔÔE2v2fB JCs6~m"'D|i9i׬(M.}gwѩw1mu Ձ<ޭ>r9Y$Y;QHC󈱴^V^ZYj/8li@_}QՄ_Z!xo`JxA/K6OekQI-[هs?n..H}xXǜF{Mq਺\[Gng(FrA_XAŸH )O4͖Lt XwD9VGy0_ vSbZ>$0gdl&t;aE M"EX.UFfa%щZd.M >e?6 uttm]f/jgZyb\_Ze? 1>;/jAZA'y{ZzbXUPCˣ?G?nA,Z(6k_[lj%wRdeMT4f6cllk~ކ9RP +Y>/+¯~~I;9ƏAسo?%|~oo_6a럿wWg/,宑̬}CM܇ί7o߿cy =s+o~g~מ;+tiOܶU\o;7z~u؍vzoώśo~7_懟o?Ñ{ooo/[r70lU-w,ܳ~_T]0=Pxژc]a$:?%RtI_bKH /F rtk:&:G.J +sE3J.:~ܽ6:[ ;4V >hzøhBIgK86NhҐ?CCo| +oBy:%:a:ao_4iDm =FF~1./hߩ'_/W|t|ƸN?> >?*?#i̔[ѯ$autO5+[τ}{24\?Zq7hg={s51eJc7j[F5Fh& 7iī 4߫f JհZ >׀RC?oj/4$oҊ; ,^`to + +}O +%3x#aQHJq$汫3 &fPRKqU,LW=@2K!oYZP>ۭ'vvF(U Nfp|,7|o@YKG>rfOC+,&tl|8#4HU~ D紆_ ,g忢!kkq繿႗X^@.p48pb\>MZkK=$2\K\|$>zxO9`6~kܞ#Mg#׳?@j @ (#ݮ1^z {0kUD,]nBC{\ρk=jӏ6^T^B*Z] Ja`$Oԗ%N{Eu49k +v¶ݎZYJܞ㍀RRζ;ξk;~|OF;W7 +4:юuu6d6N]GN\ٞjru‰鱻gcc͎=;~ މ\3MvT!:eʡ#9~IhR Chr;noIѽdW=H]B]NΌµ"aqUįl{ MYs`'XL9v}\0ЊZ6 ͱ*v[ElD GVgQɔY8tGp UDJ-Y:J?-qf=cF}QcO3]&5O`苞=7:Ꚋ<[PSIj)Ȅ~znwѳ4 < +s憺皝Fem[Q i!ffV܀aYPT -pj .%t&_yvڋ@<L$j49gݥhu<u>NWVUu2jn.^,ߧ/񴐌2q]FnOG ur=^R]|dnEAi9J#2VtHt|Փ07"kyYͬoN$n~ KE/y`@MEWjUV ˏ?Wed*TǠlyKrg.rap6Le:}Ϸ0kH@.7ʘc]rD6giyA۫W.+5wl.6T 断(\KP2 + W҆?ʰoIqA.rAiL漐\dNKW]˭*s6sheU&L/}ks,\A?5ڼk}i~W䖑iGt+OtUkhekϦḍBs!f-U5cFqG|exextWE rJV嬨n"9|gR h~uIS$j\vm-뚌Ly.ww[}L :ZTGpJrN+Ejw镪V(J~;V>E9+.($өs/.e=Vu*W-L/-^I`?O+*+ 3/gdɏJh/ΩZwѼYknXWTf2|+oM]YV號"YjQ$ҲY 2XUX|*~kWt+3WXӄft!ʌ:uBy΅ZUK௬h.ͭ.'`6Z9ǹ_IG`{mqLX^A6r\DԱDK}?VmmI6Ϻk.ery_6KҲX"K5FxVn~Qf? i})jq +o Qx>OPnqOZ<]=Uxf+3xUn/Txŗ(|_=g~{~=O췫T_Ӭv+-j +r/"Yyl>~Q +j +Oxz +OLW~/QkeK&9n7mnϷ]-&y$x`I幗Va𷿳)Z4SU]?Sw vu-|nՙ羶6 'b?8~ܚ2Jp~n{7g] ;7o^|7[ |?p~>nW? d[x3.lN繕|38tq&9w>y8ܥ܆-hl8B*p{Un9a)f,k| p~n5ŵܰqp558=.fࣀ~aJj-YsS~8Oy.Oxp~.B)』>x*c{ +6K-8?Sd7D3/n? m!t~^< <_5l ek |'< <x nMA(<< a]yn:pmb>x!{x*Ӂ3v>|+g/~3q?9V'k<|v?V;o>nZ|?p&n ax YKZZ8x)! +x: +ׁW |1bw_| p?x e_< x-x#x3Zແϔqk~aY Z';;Y#gB!nC?<F끧t skDs~]z$+fC + ?rJZ\&u'@o I'~#-r~Џs~Op~Oq~;8Ĩ~q~/r~/s~Яr~Яq~пr~~~~>AAAqIQA?As~Ю(zT%ziAA%0;@ @'qNq~it&AOq~>Ο7q~7s~зp~зr~ 8?;8?8?rΟՋ9?{8?J󃾟~'GF!z+8翠~~Dst~~~~-gG;A#Du'}#}>A(nT%ziAA%0;@ @'qNq~it&AOq~>?5oooop~wp~wq~??s~p~+8?蕜t}? 9?8?G8?譜Խk+#Z`s49~VdtT?H|y+q_i8]ҘQdX'x_7gjcau +M$iѶeG׆8clhX_CG)6J6r=<P|~?\S iĥ֩u0>;9Fur맽cG-/Οݖ]'FQGCgǧoK\bLq,K3R,ի99/R"qB;\du,2_P3:ɟ}Gֿ~U?m]8N~ɪ>IeBu_$*~U$񢬟/Vų~N3gt񄬟et ;y2FYVY?;@k+e~WLDG3]~NQb/)ns=YBsmSD/U?d1Aώ3Ud$[KqMB"xLc{GcaNH~ 9:Fd=e6Nvu{lq,7Wgr=~NoKhc?<_W/َ3&~zx +~UWi5w]鹢~T\񜬟su8牭~C~~C'QJ}ϧ]SE~6S?#.[_`x_!}'c.%}e/,0+qEi:׎]`tӹ~LR+|FSSt6߇IJT-~]3_ ib< kL=GcP7Ezg{fjƫA绰5m.t Fi?]Fg撱4fj~E3"oi˽~MXz9ꦱ[ -~3i|s[:v8y}W31C{k:g<"aQT[ږ#>1zޖuF;{>cOkFg`Ѹ9BcȦ.>D~t^]c,c&}c8N :);\F8i8A #,獚8f˞mkzq\n:oҌc_PX΁u6 ~F/>Ⱥ>膷g~ sL>Px_ӌOh4^E7'hͻj@91c {z=1w165a %ovkF{fZiyn|Nע^#t8nn$i8J׶G+4# F\Ưyx&#0[m^bK dVKg/tsowGS\5^t'Ņi_Mro+m3]c,yTO}Eu3'}X f=t)Ce= aۮ5NqX[ ՚ #9.6!11:&á=ɤ6/1_=n|; D l&7SO[1[3SA)^]HC/$'{|_=޿-I{lQয়S4&;EEiu^iwP]O;?pi̥y~kOxz{]z'U v~Hܝi9OQkBci;l֟ϟx:|IIJѴ4=9STӴ>2zʵ׆:s<5['[j |?ߙ IX$+2IP7d2Ժ`!j_mB,+jK#XZ[&δV* ek؊56 d{g$ߟ'<{{ɰqk˰ N_ ~j̸?;E/u>ei|W4~Wumi,?JQ ֔ƇxoG&?JC[L;4^]=xq`_i[w}vți" 4wDq7ai ?.\hhJ.qomK,linf|\m[EE{j`[YqehJ/+U.MA?{ ?a>m{*iH;i-N]ohh3B{fBn} p`j]_w/B(}8ʾ{q\]aߥ9VGXӈfZ.f(}T*6ྡ\Ps: .kzm"a{~t~ܤȴ|[Z#-g i_F9s,CaMǸBRj{ oEG>4r,79rvJ$ɵO\vX;(0xu"QpxRD?,VJ; +C<=9+k3 oi\#R8iCctT&J}WO׿Va\ب׿6vZڠֿ>]cJ^Զ[|Wnrm%\:.Q_f+OɎ$'ziΌW<uY!ZoK|Tee%׭W,vuҹKEnXcd1ʋ.Nsk/`ܝױVey;zΣױֱtu,k[jaZ~fYuG#aֱ4miih֗Xbk-|:ևX~֏s,9Oֱޒx\xbnM{u׏u,#::_%m:OZSſ8X:NZa  ;'0;NNP'%WbNzgXH,gZg^e:Nz3IoE:z'ؙV_:yNzbK/^I7R~w 2]nw3x^8Oze&8β^!tz8βW;I{mH7I/p8Lw^lk#H'FXF~&gϮ#Iwu_:7XwI{IN/.'=wmw kmqk=׺N/3#Nz+ I/pU*NNz󬋤=:_/wB[ä'.IӻIw_/'V_Vo9^`;L5,76z:=ԃKu,ױcg׃KU􎓞=s^+Ku$(zw/{Wxރ&<\x>Aװ\B6j k*}2Zê BQkX7v^O[z{*3pz]ְ8w-װ^ְs*+fBħwZ<{Eu|\v|"߯Ps\j25mְuOěK[vkIG5!|ְ +Z%M%ۯm#r 7qOWsXO>A~~w#5!-sú`݂ǗzzXw:N|e=Xl\_t!WT~\F^Y|G54ou#a\[U?~=a /|l`0O;ד`ǯ;m׮ǧv6-Wcr| +(O4|s +vjq +vBl׮%-#/,kWr=vs:i<⻶9^|i9%թ͡ Ovpt\4H_>\v<.W &x[\p^t'f*7lt9ۮ˓brŬ[](Lϥ,j-%Pu86mcDyVko·;ʍ>Ma}L*ּl[gcD>1LO:SN(SkBOJy' H8f]\W2t((HYY?ѵ =䙩 L}wkez,!(`oߤZW J3b[/Aa%\!V :-CX ]-2-0ĚJo]*_x5 iLRհIkb}v<{uҶ'CӬiH;``yn]iWrVASii;3t>|ӭVd@.tk4tچs{ty["-,c5ZO`Lye,ON\! SPLy,/C7O$˰jMyCɷ|^f4/ȷڔ絎BG X^]:WgZ#6t>o6Җ%C" |X^.zi~+DViy<(O[ϲ1̺K|u>0k%gm`y=U>0n/Y^Osu'gҖ6iaͬگM㋈ {G-2"O_7M?qc Dž5.\,rq]*wlCwb:XϓSAC`@IDcD +qT's7 kY|(;MŻ&E! ~m:rCma}/c )Iv0pw< ܰGߍ+/ζ£E|t0tc`}o\ovg,X`k\tr[ lv*`;`0vX_OH/;Ep`@֠_M̔cc{–~?Bc}Xہ>ؓ%T-L6ݘwHc!?P?[[-{Ere7|'=FC;>0kϱ/=C-I:M8F nL9u5-!чeگ$qBZ,{JCc3%'IS<N3⨆0İ϶-@hǦ~޾8Jf2$??C)~o~+W8񻖿7b{𻒿|F +3$!ѻ +{pv.#l(z]Կ}]5lWN _uw7~"ӝ}9 DyWA٧e싟i-`.f4ؼLsuU^u.}^4Gߗi3adƈ9lLxӟi4miiuJQpDDx{F?vs~4P44I>ZA֣ *o;{ _SCC AZkDmH,3 eW d\wg:7i[s~T?jnz&~_{o}K;}oٴ㽩ky +xCgry%nǰ1'6X8̋>~mABϽ<^Gcߧ.vo\%[ ">=_;N\ɽ}e"~F=XwK΋~-WB^럀ې·Iϋ|4x8'pHw^k<ܓW-^S +BҫL7'ǡ[UrN->rE}0x3x^?-3xk%rK7qu^m'=0ēNoI<9vod;m0x{"> x˽vrIiΰ\9טxZ.OEȽq)4%񌾜i͐kT{Dδ.g{0*Nδ&I2qg'.1=Sx?tn>]COYp=y.qGlU=~,ZgY}iL҉8r;VdZC|!a)kC/3U{LkJ:*7o&)K岊1m{Rr.Ue^xOۍ,k70z:Y;YnG|M,WUL6Bzrbp҃^zs>{SKizuWܫI\kɽ)z8yϳnrNW'yRɽ)zO9Γ*==_8W1Eo^|k_:_: >{S~(=x)z;/.3x޽NzH}T{SrNKWiH^H_:B+NӻI/pi;NJ'V;%W'FYmENzQˤ/NzQ_H20'QNKEooBzw KcB/ޱtqFPʏ{R>Sݰ1Wtt͞_ +O{Q&اͰgo{ #gֲoE~gygE^//Ğ㏿}鑶șx9/ϻ?w?~z||j}i['r{DF2#R4 tM~yyV 3B>#r?pv=;^tW8^/cK܃(WkcBa4P*BYl+3z*DE5,</aF -Q6$ءaac)E<_X ]V Ǘrlz߅rl|.etYp[>.7滑𢰰W ee0#E}İA]Vp~:{Npb>"Tn ¯\a=֫Um5HwEUp@*i>1q[1:ᲞwGȽh;fģ~7zy'`Kog(n6riqvdX;_<<wko*=0zo^Ӟ=[fgӊH}BrjCX3JscB{=fN0W#6:=#C(akx?95?Bw;Or_a]V.1u??veXxnlkEZvl65:0 e3zX^RF'{h=q]N4ܘ#n/ք'qC.O6*ʛ y~t 9:7~uGUݏ~Yw3ga:ݝ:a8Qv-?6un_YRi QW/m`$_%7iY&>{S}uFwl8okg_ڵ}' e}-|?L>^oRi+}G^\*mV_|Q|"7lT#a;ED}lE`h~BZS&v_| q~{QXABJW'ŗ3}ȳCA[wRiWanCSyCN{I3sZk=@f侞@R'"A'I\E>rЛ=5xٟg5X˒DW}+<`&Y6rN4Jk! _hxV^ùo4!S o ))O+kOHpo F.}$g'<>/H N_ Ù%xo_R>KxI=Uܓb3|)O?.=ɕXË+op?< oeRrA [Xq]$/ K@/$B NxXg3m^5ɟ|NLѹNI~IeB)KŀT]Rel]#Ը#|y1OH)F2ÿuv?a\._dLx@{^mx%;T3 1?)x% _?OIH +#gC +6S [I EG H_?OxH|Oo? `ÿẀ3~[< +xO?3%!=?C%'Y~?kvɏv o#<- w  /"UoU !uW/#s|_?W¿ ½Iu73pq O|V1KHE5K|e'<:I(wt],>ߐ(R)(?"ךzVQ[µ{.+ ng]?!z_j'ܫAj'\%sIxLcEx@n…skn4{ȧZ?B>M1NOkxpL×S o ~Xlh$<@? * > ~MOWSҧXWIXM) F.WKOc5OxXG~_ӯ}f7K| +?>՜c +^-_M7E?>3VL >V#0K|X_CS9 C_AO } +.S }½'\I|)tc8dk?YNK| +d{?OK xX^ O} S5r_Vpk )tq V~j2Ckx,Wo|9mF;u wY K^D-OxHhEkJcY{톬Ҹj}%:-ۗ?D9k3Oqj<5/DW]yy:o~t#ljDAx?=]ˋv*3?:erCym›=>7-ԸO%mL~η +GExNBϢxy>=t_$ĮcK,[Yt̿z;ݩ2;WWGF7c%ʹ&YF_I$zEhzTLP'v_.y<{UK?Ph ~yƟkv])>n=QލX6Qj[o8RrNO)&| +~J_ J%."mh>{x`j[%'"g?B=t(_>O)Ǧ Z>'닿-elkwnjmD/OK !{Pog+hqua澇h?;ur'uez\#ɲD;W}׈ݐQ^=x.H>~|~_vZ?9mĸt\6_Hqzɵ&ߎ_H]w/|6C:?$AӠT~0~bC2X#(u٢IIߚ%.L4M smI=G;|z#}3o'x>3?unN$77eJ9ruل15ܧq|Go9v|FoEAg>8XˀqvK hxO}wQt5'TQ?i)߮ڏ /qD܃=c&"euoPM}hi}2U棏;+"C#ILQw*G66eF'Ȏ$Acϼ~Wb ͎ K(|ʭLPq} YT- [e+\ޝ +YɒC|ˆ~{~]s]1YӺ[ݟ lunw:Vysk4y:';ۜV{_)/y{}?{:f![;3IlM;z.շV{Q%>ƹ-=eu>{z,*s5ݢ, ;KZwލU KzC!ycM8c=+m7T%inn,r!GGsO6}~3>bsn!ysᘂ|?oa1qaybɣ~2?O,GҎϦ-kǖ%"K{'@\0f?@c]^ߋ{5՝o^ r4c仔H#Mgz/¶rF붥< 8z>! O_zm'aw.qljqA>DQ˕~_Ey,[4dB{+}c_qeGDv+<x }Ƅo\N%~K*D|NBԂߵ͟}m.`k{ 63geNNJ;ov܅i!^(C2, yy/D)T Iݱ^ rEʰ sFЭWmm` sclƖ\qBrbe.81ۿȓs +U$!8_/hx3#W_ CY;I}?bU}࿍]~w%uy ^}77xPixźCfoX?~o_Ʊ{LŲt<%eP#C\:csD]g\lxNJ?E\U(G¥FDQ~1^}Ӗ \Ru2u"SߘcmATsF^vkQ/Dwˎ;&їdF~{6{5M>JSį̧N"MƮ4BBb_?m;pƱ[GA74apt /GB>lwt b\moN<nM{o6?,ПZ!؈CG{x7agK A?BHiOǂ/`,* "_]gA.&x'fuy|uHbL9'Dm14eS>3^?4L>)O.g$^Sϋ2ڻܑ%="h"Z ZJ~.1f)_v8֨ó$_`'#q/;w]C|cO1=+zP$cҿhVGH5Nqj 귳/^ 2p?En]}c}JOqhNvhz + 7n1Dːg 4f +ΫxB粊2\+E _KhuƏ}nqNYr'wAVMOawo55^9̝aġ_4r8W/Bϼr_oESo/C1ÀY)f<}a%?k(;> GBݐc(l|␨OL"pts߷KmlD}bX{7kw _}BQ߾O௹@'w>_KcEy䥨'C|읃ˊf.).`G^O +cÆWOΈtQvʾF٭1 gz N^e_gTF.3;cֿF +_)C|AhGYد y#r[!V1mn\}CRu?7xҺ; x\VxR1hkuWK[CFG]-ö2noLk++c|µ2ꊳ/s+ܡ=˄k׭–c6)Wz`?.6>0h{&r;FQudv@ȏ] BQ򂯉8eJ;Vr zC ;xoSJmeax'"<&O(FNLJ\3z;dH\mT &Tmi1w7 +ԥq%VȪX_?k[5n~YS#,mdqj|tkw(Q.i} :k{WjʋnFO+lgYGvZ 1h9AЁ<:N'К'q\!n򴾦_3y?_MC[ -DrD#0} +:JOXAp WH2퇰D_U|UO+rc53kg,fG*}-ۄg^Ȼ=5rRإǼFuvz##(/x}-uZX7 \bMù9+z0Tϻ1;)<`Z&~?.%V nwp+1UE kt}5׉ױN{Ds繉۫iqDzJQ=mb'<#%H [ȨvUFD^gsGW,ԍ}i/xwMeoϹXXпJNl:ƧDŽ˲D9HIUr#:ps29>+$c mU(BYSqVa<=a;SƣbGnGг C] _NQ?6<͏'9CZRkkЇFp.k:u3ڗ.ܠc'f(.ž2c(5ꎘ|3G G>[<}&_Rw~xc;WdMGdB3vX@<9_ ʤy{rkBq{DW,xW=u.>6`odžm<>=vᘧc|,4zih] "/mfw5Kϓ=ZR<>HyxӶy䉺ٟ]l_Y/ϻy^w,u>ZkgÈ[7Xm=~~&6?;'z"V%}Ժ_(Ęp/_ |7. ^r^ӭz!V!_ո#G+pҁ2g?!ܿôE| x}rkJoߡ0`EJ D|_eYWh|P%Z%.bf6 +vvԟzax}l(Enۡp;6uU;xTa,|l@^ӷ@32 +;e2ne "8uTڃ95;N^t^">ڝ^F*BlS(lR{\ +unǥQp-#6\2(zF]}Ue}(OZ}Լ -@^zŤ}s. 5&ʓlQ#? 6k \ sXs!;m~%6~J4L%޹oޯ{=ޕWگS<2=m1tydŷ){07gig9~<78x3;[jne=|6yWT64Wփ彉,ӲCYeZ '>b)otvz_8OaQ]W oQ2.ul_~Oe\XC](uwe~5߽P&CE!u^`^6'ʍyt?ڊrCnk@}Wɕ)ꕰ6Tzˮgz9&h|X07Z83CJ6z{}=_^^w9y}_ϫw?=\_G ;yVB<WZ8PLx^x-۠'&n!652~\(_v۬nsi;yQ!?YިNt[pM|q'N Oxxhi,AZy(ּ=zn `KֶjA9<~۞vi+@e]4ʏsy,˲ c3V rjP+)X}sg#Ibp]?(TОօEM^%gfBDލLwgZ&-]H; )VvǭCdYnt5>V CSkvw9D}yG Ub83M6ކ1<؅rgf /IJAӴ_\9.F}w@1mX>uCesYc*B_1n +>q` 9ۉѶʮsW" j 6 LW[mqFktue x]̸[gN7҇Zޣqk h[?}~m/b.kV~/zgvq#[ [Pm[W~7Q7uzg09<+Wl3gpdp̼ x21SgZ2@z<T = 47odчis:ogcquyiK?krzۂ8sD|>xhAL~:Pw yeF7F~CGw(߶4;rl݀q&Wt򣛐sJcAѿ%)Yz>Iqw(w"{ }пq؋@?zo.l=ƖVK8iVQ7u Az[ڙ~ȶҟQm_/ʛuK c{}DhQޥ`7>c FUOqN*i>wp%R} NhLG'ik>UzEr`# +h*EN%Sw+Ε0*hp c{1]q']0121yM %}-Ѕ}AZ&֣(<_BSf9<99ws8/OC'pTmĖ ~^/}޴3mfÆ{76fw^o=[Y܊uҌ]Omgv7ijS=߄3zlN\[G'Jٖ$Sw{t +}a95Zg1G&B.]hF/c"?}v[cb3;/~_RyX)>*ơNq~7s[^ 1S6mk;g#8_0ƪ|Pk. ܗ(Il/R(`^|Ɠa{lt~􌽾pܤY 냵z+k˳0ʽ9hRY6ƪa&y!MIAVē#?^1s3RTlx>` ϿR^k\/M¦=3EhpO 0LF~QVHbZonl4P}]d#e{66vY{R=d=v38TdB\cor jON qkhq]O>zIwźPYC=:@?/Ms~Pfz vy +7X(粝GPꔒ ȥˠ(YvYŽ̰ѫ8^<=9:˶ӢQ&G["+ib xee8cf/T56n8Y=(l{6z\>y[З9 YЭ]Dg7Vy1ܕ-s"MOAk~87h5#N MU4fM0ƸIvN~K%˪-wfIJA{[f2i;U6;.h8ibJ\:I=jӳ,L{gm8KDܟS60])}+<| 0^~ ?\;)=#d;yz~|VogliyWly/ Z9εd7sːwBؿf Y QV/ۥ+Dv{20-ZiisJ3g]"kwɹUiݡG$nټh ^垱Kt(k3O>_;CidWA]5\%Z~C -M_}/³<-?sʶp.2,/M!bu֏2 9kʏ}z6Cvߛ=.2LvQ22ˏ; ̶> <ú=NY3nn;y&CrƻOǽޔ1whI}78euR&*mtNo8.~yhW<{el:FЗPgˏ>l;/|G" k۟>Aƥb<غ_DqH뽽͆vfMh#˅ռ>cA;dX6KɅ6k]TWO@_'ۣ +RT춇vka^>Xޓ'ׯ9O3ovt/hw:яՇS}ZGPGobS/y(ݹϊ6;v ڮvog鐊V-ۣ_WX_2PTp=͹{:h+c&2KdxxelBc/QF:ZU<|oLMOUIynsK4SFPgG{!رX;>y>gtI?+}?!Y3gG];p嘺w҃'lBz|~>I:Ǖn1AĄ9c㜱猹~gUE1gؽҗɍIagYW{&K4"WAlyy8k1geU7=P#X?Qζ/cFqxΉu+'4'xO ϐ{;ƅݫЩ|˟dzवKa`3u&u'oteN71S_Y-x +h ;f!槾Q.ˆw~xap-L +~n׬cF.3J\olOSD9:<1sGx!8^+/JLg23zyWýȚH}e{s|>C}9/3+4Omn7pAݮ}YО: O<$z=`>:o!ߏZo.Ѫ~8%ʛ;99V}+̼s/_y4}A{}ML^JSpM|:}v̬RrOv62T\cnf%se˞eKy ,{;ԋnX3;}.D玞jVxWzcmm? w*7xAjTQ_|eGQ>o#ߌv O?8 + Ʋg-7vhg~ jyM/ #΄.o>(cx 7$V,ZЗVeЀE߂]8O Mlh.B=Bo6M?}oJ>t{?K4qseƀ7B xg2))>߲<K$6~?&tjUc S#l?ƍ_G;m?/lQهs:A>H3]2iPVwx`$ >mx)}g'hOY_X~y}3 _qWȏ 2#ʊX/o(Y{g,˦Ocf@?_Vy7,aBnr㽿z}ރ0^@od/tt6\u%MT|>.]q/^5,BO ቆq0|qg}֛귾^m]5;o w~[(CeE=߭Jaef_N〰؇w?up>uv6CڱvO4?o:rʹ兏~.ny8z|e@}'ϟwcqs~ȵ}~~Xʉ>Snt7c&L et5օ_~BO"if4͓Pup'2FaqbDh:i87 w(=]gMOcUۙiOiLSôƾROww/`쌕>9͢_lo^gm\amO+;mm] +e9ѹ n({h٤1F%dfqۻ)ac[sGG;n|W])xvӿRcKu=տu#1\_>8eu1~c/{x:nMO8jy9m?HxLݼuH;۹OqV2FWgܷzIo4Zrn{-?s6>{8O mWgu'gwkxrf C>9_CXF]ޮuy9˽JCjA1n^(<SwP ?ڦ'`j>`w>n=p 嵟#q~VRa;-sb'^<<;Bz9^``vr(O8<z'ʍ|/KKyE[SαuDžvL7eLuU'~Ɣ9О{7YG֏簺-j-3od/sW=u1M|xwp'rq>(>/3z~zcFDPT(E&Mmbw؞>p)V"5çӯ;qo70=tY-y/05c g9qfqqMi"8uFLNL3Ǚ3 D+R *9R9%w{"?'-<>ɶ)]VuNy/~1:y|NwO?Ѕ~ۑۍ~]6=j=RwhcQjΑb049VrM zb͆ÉFm49.hHN|vy2~>| ᬔNzv։6MtS΅Z'|eu:ҋѻy%⿷uS}C~caݿп[Ar<ey;c[)~V8q‰[) ~nysb(ہ>{vS蕒?'wWɭP߁ǒ}>铻>Ug])7:e6NC< e6SޝoJyK0M{Q?6h_^wԪrA9Ona{3Nrs%a v{r&)?:^8F[OԹD㏬G.&}ԍzuTk6٥@g~n|o8vK׺FtY/a<78{/auVȭK$m6W]%nE/! -{ .Ѿ>p ;ȐIKyLJPu3N]a:j +/oK䟴7x"oPNA';/oHd߇瓰'k{e4/H=}*uJ[XdߊRn'Vuog_z[kI[FfOF7<6:U'o}oNzͷߓ{ؿ)=8U_0ˑ^gB?翽’Mz/(Q߿j)ǝZkzqZSL֚^xbi/=!WF1gb4_CXwo_?og~~S?]4P?<)`Agwӧ=3mD٫h3a͸e\QoMH'ѧnkrK&2qɥhWޓh_ a c&髑'd;ysxWm]m6q}Moos}>}%o1);5y~fT߱S=w侗wWK +"[۳<wq!u@̎æ ow1~__ֿ =&=!pO|/}:hA,iF{Qgp +,_X܁]yvί?n*fcOR)ֽdL~+a?ty3+[)`hvNxRUr}y?Pww:kЖjE~ͶYDv "6p=r>HP}~㫧J~t{sDPVss>{G +#v7u0>𑆣~s:065G< hәr;c y?ױ/= 3w,;c|dz fj(u[\/჆+KŘktˠwC;/EsNXi/K$ʴ4Jc_-X=[x85+ʷ<$i> mEosF:^:ČlS:yB ͨ3sPnA; Ȗs{b܄,oo&bZf ;r]{}z_ͪ-Ky1hBn<2kSr5Aɋ=W5Uq+Sn(/#firZ cj wHaU{ 'k{s؏s&E+z&ZܢQD>VvC};\@g'ܣLuEq]c ![U x{^'سY_=rQۣ#=go7WRrlCOxN9k)[Cyug-[^>z}(bnOO_{A~̹ t^|qXgW{8S:=֌u&7{іNyxMKпLfP[ Cxzs|m?#N^Qۭ}CM~;uKܳBolfw-m>=k4gYY;csj?!3xGrx?+GNRdHk);ȖsD\iPd9Zѝ{@=__?:MXțQ!BMug~;Azspz99z9Y%MJ8 sfD{/SĻM<}EM/`<75:ȝu2N8l{YBQN{|zWz,H \4,ߤ_4C?[^-Z:vjX/lƖ%vz\QxO* SП2ۉ<ܴ";։:Я5nD_佝G+P\AOn1<עL”'x`|Isv ȉw@7JG+dGu;||܌о" 6?d&tM~h26봰9]7\݅ ~.mڜA[jWs{'ʯnцCƠot;veZosDZl[mf[Yܰww.o{ܜtŔ62oqZ챌cryC Q~ w86yJ_|ɫz6d(睲-C<! K]&܃ڳrڏO{_Ǔlk};|̥_=g&^S1|~q]Ţ'Wh7C(ok# yw=QN{fk>qMwzB;F2Qq.~cdk:D;O]WҽޘNޟ3G >n~G-mЎ,H 9&_ϳ{6sׅ66VߕPuܾ}(N|Fw]?cosa>w2(wɺʺ]>|Z[ސ%>O7EG/-V |?oo坘}d!x2~uqɭ;%8={ʛ)W*ABx,m$d@0Q}[a^ܫ=(eWOP/ןʐ!frUqe27(x2>x/O7>n)qޢ%D**[TN[MEmtCde?( iBM]{?gRB68@g"'$d?%M쏧i}[!%҇).Nni<p| ;jlm%y/wo]<#1w~LjxQyY! $\Y)q~cG7C=(~Q7oo60:W^QMukr=O%ݦVCs7**0>]g -nAM5^1_MBΕb2q{'홌"ޝcoeyi|ҽ7<9ؖVW-/=UPy~WsG_>JsCyA~͟Kܞm'Cn)vrwYW?de3|em^ߵbFlTy! g& ^xi:6 1hy$7h`6!ԕ mߍYV?xe}Bg?SD7rKa Uuh61R"KSF7R6!:;:v$M_B;:| <);lyS8Uw껨BdxGø{<_ND +s +VڧK+ G{C">1RoJS$퍲G>lX˻9Lж6\pD3!6 SW}]-D^k?OZkQl"ApK[dxs\eކLw~h~5W×H)21_Ǘl/, b ]e߫3!xojrgx6bL/%͉PߊPgVY uKn>`:e~~u;voH1 c[_d#xw[7Ϫp^6V~ۀZr.ygj\o+c׬ +P]Um>Кiyq OϑW+?:Y4$~w?x='lh YRtritv)W~2\@=jmYɺX.:u10!>6:hlP=]?wc]9AOw}} +yXavQ ++7ۂ;'-Eq[Q~saoJDˀC8TdyGkZH +y6s}QLߪ}o (m}ؾTxurGj5ubn+{'. t+|N~H 3a/7Aw+ +ڹ6} 胲GƢA +987 ہggt\9"#7_'e}cvvfk z Kx4bR3)y=|/e:?XZO ċEJ[:Ơ{#!֋Y/C|{%Oxp1WGN +xؔч{\Yypom3ߋoX{2ua#J~N9K{G "s3+;G%?)3Eɮ~$ķg2>|e/̺k<8.Hߒ' A?Lu~9=5ov֟g8ou_xc2lGƂ(ȇoQ{_bYq_Ĭi.'=}xr#GD[E"\W6%:i&}ߡB*GsT{ 6-9nk=/Eg+/]Ƥ7m-G~ؾנDuYzT +z}H>9/#W_ypU[I|t+?&S#qkubґaGH+ˁfIQ53iJsZg[j~sZnkQpb}XiI/HZ~9э6֞;onXmu75N[v4s_'˨J#Ew/no71nxN*ד0WCw@\ݹ;?sE޺4ݑ?('2iS/d n%,(x:O +9z;'V +˻,lϚ /31f@x&5k~7tydzEQHzW[6 ';`g[\YM/͛!r_c #*nَvm8l׆]#6} cc;m+T򼺼}XoE[!??QU:5R ^~g?\&2ݗr/b"⿦FֻNo%%+ڛavUhoK/9۬Txre{oG[e֢ͷg`;MWm87mN< ;,W3 +.pۨSmw*+煾^mB{)s܆6e;ؼXDٹc&@Tx u-@zTDӜאԨWo +yeA\џA;t[P~Av1 fп[ύgC Wt@9E1?}VtлDӫû𧉦=HF0K5 1+ZR>N{_x߽1ܝo3Օu5 \|qŌE V_Y]X?w:ճ4YU39UW-E5i*}.j|ԓ򪅵Tx Q쌹AYfDRY. R-xnQ9-[Ty>oί ]!Ub[]*_x)wfU5kTlnpB!2eWUϙ[gG@W_4=%TUεH4LP|T/"t2kN%ĿE+fUͬcjZM5O˯򊫧M2bƔˮp_< H ̚_13pM[UV.Uۯꅳmg,SϮ_W,MN{fApa^KUS + RT ;uIs(G3fUK)8rS_tK٣H>X]W4)<`SI|hv(Uz!TĐ2~┙Vt P_XQfVke;q]59s16KeÐBWޥhmJ5s ]  Duim ~.Ԧ%b-WգQ^7|RN5fD-+fWiM5:x] WyjMpܤ#| _%k+Ȃ~[1 + ]nT"Y8m,:Pmtl [vI@x>3|fU-Z8 bj++AF,tKe󪪀.LŠ)'QJ\9U_\#jR*գT]4 P>j: /MSMUΟ~3*.iǦLH=Ly9,8=fݿJN4ޕ3&cַwNUi;A%5^ϫ{FmzV{>,yWzgڹϒ*ii7^Bw…#J^R55U h4;|awfMѹAW9 ю1N224z;~=?xW4n/is+OiǦpu5#/trq_$D 3q4jƕ]7zȲS>ě1ybyZ6촊ѪvwY5)39t//.,ux/^&d {mmb`4TQPO /`vwO)؞n 1W̮ɼ_&sE gIPণ_P :g΢ "X[HbƢuS9\F +0Mʭ6\P+9`+NbՓE5u*RX⊲Uzn_|KER2_Q mgS_X.IbE2ή^8Fh/.I&|{ͩ"h: ko8Ƥ 0'_9)W{/_~jt.}D< :dӑ{ ^ye._(gH*OazRь\}pt۔^VPKqTni9tԪӥQs+J"nRJ)DIO8ndAm.5頋jzOsFM>Ԗѳ]Ust4J~a%CL5څJet;1wwJM͢] _3j2r-B{Sљw6̰sVyegU-AJPHםKL%˛ Мw"eRepT-It 8Awix*޲)^59F4B*֤։VYQ[UHҴ/:TVio\tnt.U-2?I ZE)y/_Ƭ\LoRS0Tx^E|ҟ:2Y:D)# ֵ#YU]&'fənG%^\n^55ķb7I.^sb]K]7u +[;8,BIT:[t"96r"v|*dPDM$lT!Z9_ +3Tη RIqv ѻ@YaϬ,ZXJ<Dz̭iqMltY / Jpqƭ\2KRkUǴiACV!Ycɲ%kTJn4On!M9u[aDjGWϮLB)X v~]_Τ* K^wWo1m'SM2~ !*<ң71>ӝ~歪Z\޲~j,b/?ߴV/9Emu5UN̦¤b{ZY0%Yj{E)*:XiL&5/2a\7)^DfBdUm%CtGN"ڒU +>~j9,Mŧ,X\w+9Ĵ238p$j1 )aUS^SMm+_f$tشICNNAXruB*'&Ѫe*R<Ā_KJORK¯dRŤ.D9.пij MZQgXm-uȮ[@U/Y-v [xEsᒨ)àTWZ% C:6;Y/t ȜFY:wYop[ur\:טz"WHZFj5ҩc\n 4wkĸN8ǁ$|֢*emFW76_:^D!-qU&~L -^յ ZW) ]}Ԟ:afW/T$u=A=24=\P(=M2FsIۢ3VrXH҅tclfsw. +ˏl5]V`KK|.d(@_e\"Uݤ,+__+7:]Zt ߗԣqf§gG^jV5WK僀2*ebj;WM[\f48@L>ƗJdbH#E\D:RBL[<]y82LJO*74Uk%pÏ!*IYYXJkwZH&L.>ӅH I$Ft}E5u)kZ;1!}%\N4bW%F_;~8HT &"%#*1^D:/lÔYFGebMmJ%h5ri:xNZfJ'_aAO DLcuPo6SW󤺡w骼4%irO{ǵupNTu{(AN>yZZF,fufTUuFKǓ8'(VEvVr'ɷ$5Nr:%ZWtNGLK4z rA_(;MMO͢xu8D>hh $$q .g3я^̉-{ tƇ;/WkRKKK!wj*8R;%[uDL9@`mz9t Im':tg[`ő_筅/I!hLUV`pS#Ur_d'[m1hN0S0r$IO 4z9vOfFV["͏Xku:$}5&gjP\t͎9(drnq":PM X[4zI<[;zIgߎ _~5F%uiO77WѡF)Ԯ˽f5HҕqJHKC-=]<]8ҹ9t&̄4*u23gmܓ˅y7k;)2o4$=FƬșA>2䂙b'|!yϯ^8OͷYDE] VQgN%3_“qVϦe"CdN/cQ +͇GoAHdTX7u>Z'-e&λq|LQi6d^XG+BvEʫs{pK}fƋFͲ.Γ-CUM̙VB4ԝ!K*]61d'~N.Ju%+)rf9obl +zCvzU/;EjkCJZ{Kίq g9>]=!ģ;3T!O|݅Bx886Duw':Zx.#<w'6)<7.1<n;x< x^g+(x= :?؊x65Oύx>g'O񜏧dzBHswD<}?ύD݊ !O$!Dx>g :NK$6y:sh"q.c^Gx³(X;81,x +g'ٹ !xuV"1_xD`Dxnx52؊1EЃ‰ w!{/M$9t&x /99rOI$~ vQqi~u hn#^6%2$dkK AT>0Z4r1޿q\ |+zoCl]YVG;0 p #ò.pp? 8F;`CzvYA{-? 9}`I?G`goC3sYڏ-` 0`5J }`/;>w?@ c_!`ʛ.17p'˟;4 q/<=h;?CQ Cjv@Go#T +p}z'0mHo+:*>mT/ePUj_ S0>h'8O[ >#`VvV5PxYJ{><`ht'y̛w%q ~xwƉěO|Yajr*Mʧ>زز*|8i?%qʯɾN?;+ :gzD$.v%v'xI&&=!tcj|7mߥ_3_Emϭck4 +bLy!c1#d% HakfV]Ip D'{{=;ssE]>GdijZ`߻gGpȞWMถXOpr4_+ ٠¶}*ڇe"*$"=AA |Z)}oPy`s+{} 5'qg'&&T>3 g><]n,ETq-o@n+isSKNoqs3a(&r|OB~z_sv44_SW^wYMӕiOj>˅]C^V'%].L?trθXEÑ('g#Xf<@R<=z/ mZ08P*'X2QLصAy?^ d,hS)/ 7pG>ǎ9n(Lx:ʵZ>5^"Ui#Aa`KQGަfX=.yǽ~&cl=L{}nnb _/d"}TӘTyXƑḒ1]?ev=ٽNGA]|L}V2ݕS40=>֗ >! + 4UL-&%Ss >ѳڍA~![2Qg }|3qk"#џS /p~ge4b <TZ ĆZ ou\1Bo+}O?S"-fOz1ƠWg +>֓޿>yť<[^ǵu;Bt\Bm |{ٙTܻg/$SR(gc4ݙ=;jTؗ曙;BЋ_waɓȁpͿ#:Z)_x支_FJ|'D;BW6j8THўkk:c/SsdS2 w*OJ6gD|WÔISHTk'f/v>I5y{)"ӂIנ_~c\CJ?~7!~a_ogHE jv%;[OjLIQ11SO"8y#f oQrm#b>AV93-+_iqWG˜oRmmcn3☶Q]B#m>G$Uʹۣ"vi^rby~SSgjQ $" &407HBC-LPgݘ7sqɶAqv|E]as@1mhی6#m^ѵݶ1m'=-}g? ]1x4wvKXLof4xde-v/9J͐B!˼&p!2 {,T^~YĠer|_( |>QynPCƀ2jGl\8L酌t +ٗ?ҬdgKɦ39 m>/xE0d@ip>DuS}=iůYwKs7jòXm6nW$nWrqkJ0ȟ_D4p.@hh2g(I:vw &/zqy,|I:܀}J7[ƒbKByNwqL19n3r4L{>t~vnzFl FΏOLЭ>y)Qqz8AO?{XoE ߗy1661$ÒAs +tW~ =Oχ}w\wuBi{dg݂|V F_| '?: (-;btzfWwaz&v]̽%b;5E;khDYUڳ'>ޛxmv·fKE}aH0o/EE>}94^Z{ O Z$Ck}^ٯ9:=s%Qgk1<\)DJq],V"S:Yf'DtYx$4%/DӋ<ͤGg)SI$H [bO*gp_f"C|O8NUݭc{>.N /UMw&v:~O>+s!}|72hN#W'&GTҼǴ~X ڛೀ&}Q|ĿדֻksTKiS6,FNKQNIxC\AZ"so~ZG#v%wO`lŦݻV<3DytJs!NЅtMq 褃h/ve"KV<}h3+}0L+b"h>Lrmr5fae)h#膴+ l|E]i^I=ŊQaWfʧOT;c⶧{CFO ӓӗ܇CבʗW͘W)/(WVӮe_rK +/K#yY2Klq3Le|hGl *kbv3"VR.7uґڔêk&n%H} "[%NH{3{7bf;h$~^񤏎?#pr\n!!+{y)@cWzߑ|>r>z8kT +u&SAxv٩\= -䦹Y'5vĆ@2d1qIt63ZO%ȯWbgLh#ӡЉ!Dhъ ܎H~ȯQfQgG_O[pSG3uP~CŲv- +RVI~3kF2dv[lQɬےو|N~ N>bN>bN~.sbÜ09_t;pLfc ?K+.v-_j;m$F&kK]#:eu[_[;6)|)M\樴n)x%;/+ ?Aۮ=:9};N/8(.jXSkߤ]>֑n޶e^޺V.法_gK϶N.~9 +^_l~o[˪퉰-F9G6tj+C\;er N۵j|Auhe)Vv K?ogv:· vӝآF +ZGS8p\ong뀰nghO#Yp=.緷3.^Z5mH6nƭcla1:673حMƍ ɸg]l,uy]߲u`[6v O'So9Fi6$V9 &vtdv#9iPoZ%n;q]t1'1˓D4%фI37gIQ}"qxы\fWGmI*q_WxpU馟X+2x#z|1[W/͓ |.@n;S+NFEXֱizYu`4d)bqJaVZܾW4^P.|nT)#Ts$+Aݴ= xB.-,A^!fߜRbd2.&jJ"& MTJWTBy" ` g0 >thbg&2tjݰtRrh$`XNڐA7%;G['knGn2ِΑ[ܢ~u8ޑQD z4]w^NBNSv P"uz/////(^FR;J \V.q +XeA?UP;KZ[r+&akY/<&JC*ZR+kӹ =]~%/ڿzI ݒjT6?zRB>SIL}"3UmoKN,)SR+cq*+hsAwsKx_*[*%[$LT[ c ytmk>+Rۿ1QyTA%VȧayL!dl~ɺVnY=B_7U +xaa`[zE@Uv~JK^t?Wnkn1v"gON^NլPx>goncOy{m9MM͍ͧf9u59gZrߔ>WDtS-˩Xt= SXs4!,-iozaӟsd95ޡz1\3gNmh>%^"y:xa_BA۽oXMM,BV7kΏ׆.G~%\ClHأmvMo)6l !ɥ&(Ov{lh9v(<†oٰŮy T;Oo]=ʛlhMy $L<Ն6]b Wc:l Աh42H8=b4"چvjX?d>Ά.;~&lHS5`?t6ܜn?}ߵI^ٰNU=_>dy +[ weYާHX}cGߦRY*zWOLMomY@Mo,o{Fc/Vhк'c%V6>Mѧ)_;N6=ŧb3t((i_6>5MU76`&W9^X¯PP%v?ey{vcF-B*]ſ~LboZ`oh8xJ A*v^JNnK5Hc ߳vݓ\|&7}.mlt00ٚss[s%$s=MgtL d /=+MfD]?_6knii̹hkRïtù(L#qB|{YGD&I*oɕTEq0#3,‘An-acoFKU +ƚMx[ CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.i + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s" + cd /Package_Cann/test/No_standard/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s + +# Object files for target cust_tf_parsers +cust_tf_parsers_OBJECTS = \ +"CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o" + +# External object files for target cust_tf_parsers +cust_tf_parsers_EXTERNAL_OBJECTS = + +framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o +framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make +framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Package_Cann/test/No_standard/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_tf_parsers.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build: framework/tf_plugin/libcust_tf_parsers.so +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean: + cd /Package_Cann/test/No_standard/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -P CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/framework/tf_plugin /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/framework/tf_plugin /Package_Cann/test/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend + diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a373111024efe193ac9611741393575dded70aeb --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o" + "CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d" + "libcust_tf_parsers.pdb" + "libcust_tf_parsers.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_tf_parsers.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..430fb11e02adc38cf23ff1c82c9b687d0e8f2489 --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal @@ -0,0 +1,225 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o + /Package_Cann/test/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc + /usr/include/stdc-predef.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h + /usr/include/c++/11/functional + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/initializer_list + /usr/include/c++/11/array + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/bits/std_function.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/c++/11/cstdio + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/cerrno + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/unordered_map + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_map.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/vector.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d0c6fcf6594473e65a9a231cbf4009d654e51cd1 --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make @@ -0,0 +1,650 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o: ../framework/tf_plugin/tensorflow_reduce_sum_plugin.cc \ + /usr/include/stdc-predef.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/cerrno \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/c++/11/bits/unordered_map.h: + +/usr/include/c++/11/bits/enable_special_members.h: + +/usr/include/c++/11/bits/hashtable_policy.h: + +/usr/include/c++/11/bits/basic_string.tcc: + +/usr/include/asm-generic/errno.h: + +/usr/include/aarch64-linux-gnu/bits/types/error_t.h: + +/usr/include/linux/errno.h: + +/usr/include/aarch64-linux-gnu/bits/stdio_lim.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h: + +/usr/include/stdio.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/stdlib.h: + +/usr/include/c++/11/bits/basic_string.h: + +/usr/include/c++/11/bits/ostream_insert.h: + +/usr/include/c++/11/unordered_map: + +/usr/include/aarch64-linux-gnu/asm/errno.h: + +/usr/include/c++/11/cctype: + +/usr/include/aarch64-linux-gnu/bits/locale.h: + +/usr/include/locale.h: + +/usr/include/c++/11/cerrno: + +/usr/include/aarch64-linux-gnu/bits/stdio.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h: + +/usr/include/c++/11/bits/localefwd.h: + +/usr/include/c++/11/cstdint: + +/usr/include/c++/11/string: + +/usr/include/c++/11/bits/stl_multiset.h: + +/usr/include/c++/11/bits/stl_set.h: + +/usr/include/c++/11/set: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/ext/string_conversions.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/endian.h: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/include/c++/11/iosfwd: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/c++/11/bits/cxxabi_forced.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/include/c++/11/bits/invoke.h: + +/usr/include/c++/11/map: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/debug/assertions.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h: + +/usr/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/memory: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/c++/11/bits/stl_map.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/exception: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/errno.h: + +/usr/include/c++/11/utility: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/features-time64.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/include/c++/11/typeinfo: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/c++/11/array: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register.h: + +/usr/include/features.h: + +/usr/include/c++/11/bits/stl_multimap.h: + +/usr/include/aarch64-linux-gnu/bits/errno.h: + +/usr/include/aarch64-linux-gnu/bits/stdio2.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/c++/11/bits/stl_tree.h: + +/usr/include/c++/11/tuple: + +/usr/include/c++/11/type_traits: + +/usr/include/ctype.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/stdc-predef.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/c++/11/functional: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +../framework/tf_plugin/tensorflow_reduce_sum_plugin.cc: + +/usr/include/c++/11/atomic: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/c++/11/vector: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/bit: + +/usr/include/alloca.h: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/c++/11/cstdio: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/cwchar: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/c++/11/bits/charconv.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/include/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/time.h: + +/usr/include/c++/11/initializer_list: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/include/c++/11/bits/std_function.h: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/c++/11/clocale: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/c++/11/bits/hashtable.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h: + +/usr/include/c++/11/bits/erase_if.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ab564b315366e9116e7e5f75105bbec566fea95a --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_tf_parsers. diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e471fdc8bd7fbf949f581db94fd24c02afe34b2c --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_tf_parsers. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..c535bf42276cdcd86c6127c4fd95adfb8535b346 --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_tf_parsers_EXPORTS -Dgoogle=ascend_private + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3cf003af8a9836a80b800fb9146078a2b83b4dd --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_tf_parsers.so -o libcust_tf_parsers.so CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lgraph diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b700c2c902219d74619014853aade0d7ec177030 --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = 10 + diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..5ad5be28c1be93f2fd8bfad12a78050930390a13 Binary files /dev/null and b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o differ diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..a1716451fcb90fd33c1c0642d7bf2e5baee8a95b --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o.d @@ -0,0 +1,184 @@ +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o: \ + /Package_Cann/test/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc \ + /usr/include/stdc-predef.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/map /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_fmk_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/register_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/progress.marks b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/Makefile b/precision_Problem/No_standard/build_out/framework/tf_plugin/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..7a6d8cd19f7f9487256ddd49e3697ccd033ddcff --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/Makefile @@ -0,0 +1,253 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule +.PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule + +# Convenience name for target. +cust_tf_parsers: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule +.PHONY : cust_tf_parsers + +# fast build rule for target. +cust_tf_parsers/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build +.PHONY : cust_tf_parsers/fast + +tensorflow_reduce_sum_plugin.o: tensorflow_reduce_sum_plugin.cc.o +.PHONY : tensorflow_reduce_sum_plugin.o + +# target to build an object file +tensorflow_reduce_sum_plugin.cc.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.o +.PHONY : tensorflow_reduce_sum_plugin.cc.o + +tensorflow_reduce_sum_plugin.i: tensorflow_reduce_sum_plugin.cc.i +.PHONY : tensorflow_reduce_sum_plugin.i + +# target to preprocess a source file +tensorflow_reduce_sum_plugin.cc.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.i +.PHONY : tensorflow_reduce_sum_plugin.cc.i + +tensorflow_reduce_sum_plugin.s: tensorflow_reduce_sum_plugin.cc.s +.PHONY : tensorflow_reduce_sum_plugin.s + +# target to generate assembly for a file +tensorflow_reduce_sum_plugin.cc.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_reduce_sum_plugin.cc.s +.PHONY : tensorflow_reduce_sum_plugin.cc.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... cust_tf_parsers" + @echo "... tensorflow_reduce_sum_plugin.o" + @echo "... tensorflow_reduce_sum_plugin.i" + @echo "... tensorflow_reduce_sum_plugin.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/cmake_install.cmake b/precision_Problem/No_standard/build_out/framework/tf_plugin/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..655b0ded6e56d22be2caae3672490632d89c4766 --- /dev/null +++ b/precision_Problem/No_standard/build_out/framework/tf_plugin/cmake_install.cmake @@ -0,0 +1,67 @@ +# Install script for directory: /Package_Cann/test/No_standard/framework/tf_plugin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + diff --git a/precision_Problem/No_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so b/precision_Problem/No_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so new file mode 100644 index 0000000000000000000000000000000000000000..5d20870e402471988c823bea01c8b1bb8b7a46a9 Binary files /dev/null and b/precision_Problem/No_standard/build_out/framework/tf_plugin/libcust_tf_parsers.so differ diff --git a/precision_Problem/No_standard/build_out/install_manifest.txt b/precision_Problem/No_standard/build_out/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1f120f34f6d8399c6623df573f9b5db02c0c7cf --- /dev/null +++ b/precision_Problem/No_standard/build_out/install_manifest.txt @@ -0,0 +1,35 @@ +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_reduce_sum.h +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b/aic-ascend310b-ops-info.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/reduce_sum.py +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/reduce_sum.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/binary_info_config.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/binary_info_config.json +/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/reduce_sum.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/reduce_sum.cpp +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./help.info +/Package_Cann/test/No_standard/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json new file mode 100644 index 0000000000000000000000000000000000000000..e50634243e975572ee7551ea79d4a09989bede7b --- /dev/null +++ b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "a8b6c56680c52ac8c16779bd3080aa56e93d69905a5136f88f78511144dd5f8a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o new file mode 100644 index 0000000000000000000000000000000000000000..090d55623cf4869aa662cdbc2c38a87b57f18b85 Binary files /dev/null and b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o differ diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json new file mode 100644 index 0000000000000000000000000000000000000000..999f4f81c62e4b3aabd94ec1dd3451c1017872c3 --- /dev/null +++ b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "4c18f6864ed2c98b13f4d0d0ef028655cb35953ab386a4afacea612aab6c7500", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o new file mode 100644 index 0000000000000000000000000000000000000000..86f4262d4913f82bbb071d0142af3d3782c96c5d Binary files /dev/null and b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o differ diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json new file mode 100644 index 0000000000000000000000000000000000000000..ecb3d3deaa6d3587470a14596d1dbfd33670e6d3 --- /dev/null +++ b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "d8dc63b94b29bc53a33aea4b794e30e5b0a7321b7f0239deff9b24fb29ee2f50", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o new file mode 100644 index 0000000000000000000000000000000000000000..234f59fa06a971c1aa73801f3d5e99e434ac6a01 Binary files /dev/null and b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o differ diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json new file mode 100644 index 0000000000000000000000000000000000000000..ab167274bc794c22d6c28419dc354d4254dac855 --- /dev/null +++ b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "cf9debf69c81f9b99c329ea5e1b68f91ebde2e3004e6aa2c062f78c218fdda0a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o new file mode 100644 index 0000000000000000000000000000000000000000..ad0758e3affa845d1fc9d1a4e3784a2b5825b52f Binary files /dev/null and b/precision_Problem/No_standard/build_out/kernel/ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o differ diff --git a/precision_Problem/No_standard/build_out/kernel/config/ascend310b/binary_info_config.json b/precision_Problem/No_standard/build_out/kernel/config/ascend310b/binary_info_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e0f175db8211d04dbfc3c5a4fb022d472c35e4 --- /dev/null +++ b/precision_Problem/No_standard/build_out/kernel/config/ascend310b/binary_info_config.json @@ -0,0 +1,48 @@ +{ + "ReduceSum": { + "dynamicRankSupport": true, + "simplifiedKeyMode": 0, + "binaryList": [ + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + } + ] + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/kernel/config/ascend310b/reduce_sum.json b/precision_Problem/No_standard/build_out/kernel/config/ascend310b/reduce_sum.json new file mode 100644 index 0000000000000000000000000000000000000000..fb9b121ef0d420802ff3bd98b803c14cf75ab7ec --- /dev/null +++ b/precision_Problem/No_standard/build_out/kernel/config/ascend310b/reduce_sum.json @@ -0,0 +1,252 @@ +{ + "binList": [ + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json" + } + } + ] +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..84340a0327a6e9ed0df4adb9ecac6ffda6c87025 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Package_Cann/test/No_standard") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Package_Cann/test/No_standard/build_out") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..fb60b21e54589d9eb722c543ef51a799c5135b37 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Package_Cann/test/No_standard/build_out/autogen/op_proto.cc" "op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d" + "/Package_Cann/test/No_standard/op_host/reduce_sum.cpp" "op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..a0df07eb92b0bc7316c508805f32a797cbe0eea5 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o differ diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..1ed7057b6296548369550deec82907044631adf6 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d @@ -0,0 +1,252 @@ +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: \ + /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/No_standard/build_out/autogen/op_proto.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/memory /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/include/c++/11/map /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/c++/11/cstring \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6dd47427cb24da584a005724359a52ab82e85675 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make @@ -0,0 +1,126 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Include any dependencies generated for this target. +include op_host/CMakeFiles/cust_op_proto.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/cust_op_proto.dir/progress.make + +# Include the compile flags for this target's objects. +include op_host/CMakeFiles/cust_op_proto.dir/flags.make + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o -MF CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d -o CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o -c /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/op_host/reduce_sum.cpp > CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/op_host/reduce_sum.cpp -o CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: autogen/op_proto.cc +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o -MF CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d -o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o -c /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc > CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc -o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s + +# Object files for target cust_op_proto +cust_op_proto_OBJECTS = \ +"CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" \ +"CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + +# External object files for target cust_op_proto +cust_op_proto_EXTERNAL_OBJECTS = + +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/build.make +op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_op_proto.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +op_host/CMakeFiles/cust_op_proto.dir/build: op_host/libcust_opsproto_rt2.0.so +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/build + +op_host/CMakeFiles/cust_op_proto.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_op_proto.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/clean + +op_host/CMakeFiles/cust_op_proto.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5a3ba0031a6090052e7d3961ea57748aa372d787 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + "CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d" + "CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o" + "CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d" + "libcust_opsproto_rt2.0.pdb" + "libcust_opsproto_rt2.0.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_op_proto.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..320e4d06fffc3700a9b3ed9f7970d5c62f8baebf --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -0,0 +1,619 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o + /Package_Cann/test/No_standard/build_out/autogen/op_proto.cc + /usr/include/stdc-predef.h + /Package_Cann/test/No_standard/build_out/autogen/op_proto.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h + /usr/include/c++/11/functional + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/initializer_list + /usr/include/c++/11/array + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/bits/std_function.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/memory + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/c++/11/cstdio + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/cerrno + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/vector.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h + /usr/include/c++/11/unordered_set + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_set.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/include/c++/11/stdlib.h + /usr/include/c++/11/iostream + /usr/include/c++/11/ostream + /usr/include/c++/11/ios + /usr/include/c++/11/bits/ios_base.h + /usr/include/c++/11/bits/locale_classes.h + /usr/include/c++/11/bits/locale_classes.tcc + /usr/include/c++/11/system_error + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h + /usr/include/c++/11/stdexcept + /usr/include/c++/11/streambuf + /usr/include/c++/11/bits/streambuf.tcc + /usr/include/c++/11/bits/basic_ios.h + /usr/include/c++/11/bits/locale_facets.h + /usr/include/c++/11/cwctype + /usr/include/wctype.h + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h + /usr/include/c++/11/bits/streambuf_iterator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h + /usr/include/c++/11/bits/locale_facets.tcc + /usr/include/c++/11/bits/basic_ios.tcc + /usr/include/c++/11/bits/ostream.tcc + /usr/include/c++/11/istream + /usr/include/c++/11/bits/istream.tcc + /usr/include/c++/11/cstring + /usr/include/c++/11/limits + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h + /usr/include/c++/11/cstddef + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + /usr/include/stdc-predef.h + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/initializer_list + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/vector.tcc + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/array + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/cstring + /usr/include/string.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/stdlib.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdio + /usr/include/c++/11/cerrno + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/functional + /usr/include/c++/11/bits/std_function.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h + /usr/include/c++/11/iostream + /usr/include/c++/11/ostream + /usr/include/c++/11/ios + /usr/include/c++/11/bits/ios_base.h + /usr/include/c++/11/bits/locale_classes.h + /usr/include/c++/11/bits/locale_classes.tcc + /usr/include/c++/11/system_error + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h + /usr/include/c++/11/stdexcept + /usr/include/c++/11/streambuf + /usr/include/c++/11/bits/streambuf.tcc + /usr/include/c++/11/bits/basic_ios.h + /usr/include/c++/11/bits/locale_facets.h + /usr/include/c++/11/cwctype + /usr/include/wctype.h + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h + /usr/include/c++/11/bits/streambuf_iterator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h + /usr/include/c++/11/bits/locale_facets.tcc + /usr/include/c++/11/bits/basic_ios.tcc + /usr/include/c++/11/bits/ostream.tcc + /usr/include/c++/11/istream + /usr/include/c++/11/bits/istream.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h + /usr/include/c++/11/unordered_set + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_set.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/include/c++/11/limits + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h + /usr/include/c++/11/cstddef + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h + /usr/include/c++/11/mutex + /usr/include/c++/11/chrono + /usr/include/c++/11/ratio + /usr/include/c++/11/ctime + /usr/include/c++/11/bits/parse_numbers.h + /usr/include/c++/11/bits/std_mutex.h + /usr/include/c++/11/bits/unique_lock.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..a9972997a6083a0fdcdd33487e645670608f151d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make @@ -0,0 +1,1215 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + autogen/op_proto.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/include/c++/11/functional \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/cerrno \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/stdlib.h \ + /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h \ + /usr/include/c++/11/cwctype \ + /usr/include/wctype.h \ + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/include/c++/11/cstring \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/cstring \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h \ + /usr/include/c++/11/cwctype \ + /usr/include/wctype.h \ + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex \ + /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio \ + /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h: + +/usr/include/c++/11/bits/parse_numbers.h: + +/usr/include/c++/11/ctime: + +/usr/include/c++/11/ratio: + +/usr/include/c++/11/chrono: + +/usr/include/c++/11/mutex: + +/usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h: + +../op_host/reduce_sum_tiling.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/c++/11/bits/hashtable.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/include/c++/11/bits/ostream.tcc: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/c++/11/bits/streambuf_iterator.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/c++/11/iostream: + +/usr/include/wchar.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/cwchar: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/include/c++/11/cstdio: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/include/c++/11/initializer_list: + +/usr/include/c++/11/iosfwd: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/include/c++/11/bits/locale_facets.tcc: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h: + +/usr/include/c++/11/bit: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/vector: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/ostream: + +autogen/op_proto.cc: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/ctype.h: + +/usr/include/c++/11/type_traits: + +/usr/include/c++/11/bits/stl_tree.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/aarch64-linux-gnu/bits/stdio2.h: + +/usr/include/aarch64-linux-gnu/bits/errno.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/c++/11/streambuf: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/alloca.h: + +autogen/op_proto.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/c++/11/array: + +/usr/include/c++/11/cstddef: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/c++/11/system_error: + +/usr/include/c++/11/typeinfo: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/c++/11/exception: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/c++/11/limits: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/errno.h: + +/usr/include/features.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/c++/11/bits/unique_lock.h: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/include/features-time64.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h: + +/usr/include/c++/11/clocale: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/pthread.h: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/c++/11/atomic: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/cstring: + +/usr/include/c++/11/bits/erase_if.h: + +/usr/include/endian.h: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/c++/11/debug/assertions.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/c++/11/map: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h: + +/usr/include/c++/11/bits/std_function.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h: + +/usr/include/c++/11/memory: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/bits/cxxabi_forced.h: + +/usr/include/stdc-predef.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/string_conversions.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h: + +/usr/include/c++/11/string: + +/usr/include/c++/11/cstdint: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h: + +/usr/include/c++/11/bits/localefwd.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h: + +/usr/include/aarch64-linux-gnu/bits/stdio.h: + +/usr/include/c++/11/cerrno: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/locale.h: + +/usr/include/aarch64-linux-gnu/bits/locale.h: + +/usr/include/aarch64-linux-gnu/bits/string_fortified.h: + +/usr/include/c++/11/cctype: + +/usr/include/c++/11/bits/stl_multimap.h: + +/usr/include/aarch64-linux-gnu/asm/errno.h: + +/usr/include/c++/11/bits/ostream_insert.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/c++/11/bits/basic_string.h: + +/usr/include/stdlib.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/stdio.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/aarch64-linux-gnu/bits/strings_fortified.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h: + +/usr/include/time.h: + +/usr/include/aarch64-linux-gnu/bits/wctype-wchar.h: + +/usr/include/aarch64-linux-gnu/bits/types/error_t.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/c++/11/bits/basic_string.tcc: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h: + +/usr/include/c++/11/bits/stl_map.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h: + +/usr/include/c++/11/istream: + +/usr/include/c++/11/set: + +/usr/include/c++/11/bits/charconv.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securectype.h: + +/usr/include/c++/11/bits/ios_base.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/c++/11/bits/stl_set.h: + +/usr/include/aarch64-linux-gnu/bits/stdio_lim.h: + +/usr/include/c++/11/bits/stl_multiset.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h: + +/usr/include/c++/11/bits/std_mutex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h: + +/usr/include/c++/11/bits/basic_ios.tcc: + +/usr/include/c++/11/bits/enable_special_members.h: + +/usr/include/c++/11/bits/invoke.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h: + +/usr/include/c++/11/unordered_set: + +/usr/include/c++/11/bits/hashtable_policy.h: + +/usr/include/c++/11/bits/unordered_set.h: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h: + +/usr/include/c++/11/stdexcept: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h: + +/usr/include/c++/11/stdlib.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h: + +/usr/include/c++/11/tuple: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securec.h: + +/usr/include/c++/11/bits/streambuf.tcc: + +/usr/include/string.h: + +/usr/include/strings.h: + +/usr/include/c++/11/utility: + +/usr/include/c++/11/ios: + +/usr/include/c++/11/bits/locale_classes.h: + +/usr/include/c++/11/bits/locale_classes.tcc: + +/usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h: + +/usr/include/c++/11/bits/basic_ios.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/c++/11/bits/locale_facets.h: + +../op_host/reduce_sum.cpp: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/c++/11/cwctype: + +/usr/include/sched.h: + +/usr/include/wctype.h: + +/usr/include/c++/11/functional: + +/usr/include/linux/errno.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/c++/11/bits/istream.tcc: + +/usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h: diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..00aea2a2166cd0cf975b12f723dcde014eadd86f --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_op_proto. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..437958170a48b3a6c7d205ebff07d609573ed7a7 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_op_proto. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..500116bd6ec74c07207f47a6f4768ee037614eec --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -DOP_PROTO_LIB -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_op_proto_EXPORTS + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fvisibility=hidden -fPIC -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcd114a0455d9e96fea0294654255d3d2f0a3bbe --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_opsproto_rt2.0.so -o libcust_opsproto_rt2.0.so CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lexe_graph -lregister -ltiling_api -Wl,--whole-archive -lrt2_registry -Wl,--no-whole-archive diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..4b14cc1dc1aa37d472dbfc8a2fa41782337787bc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 2 +CMAKE_PROGRESS_2 = 3 +CMAKE_PROGRESS_3 = 4 + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..c34fbe55897d01f72d1cef924c623e722934aab3 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o differ diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..249acfdc5cb52897d99ceb0b8bf4de754b984767 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o.d @@ -0,0 +1,270 @@ +op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o: \ + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/cstring \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b4e5d58aacb0013f0ad75f5da34d46e54d13d834 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..ab416d0be42e4496531a66bf14cb2bd31e401770 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o differ diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..581dc39f6cee1c2df68237089ede6d7ca2db20ec --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d @@ -0,0 +1,142 @@ +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: \ + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp \ + /usr/include/stdc-predef.h /usr/include/string.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/bits/move.h /usr/include/c++/11/type_traits \ + /usr/include/c++/11/memory /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/initializer_list /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b0e76740e31bc72d7b25de03ba7515dcfd1140c6 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Include any dependencies generated for this target. +include op_host/CMakeFiles/cust_opapi.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/cust_opapi.dir/progress.make + +# Include the compile flags for this target's objects. +include op_host/CMakeFiles/cust_opapi.dir/flags.make + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: autogen/aclnn_reduce_sum.cpp +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o -c /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s + +# Object files for target cust_opapi +cust_opapi_OBJECTS = \ +"CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" + +# External object files for target cust_opapi +cust_opapi_EXTERNAL_OBJECTS = + +op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o +op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/build.make +op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_opapi.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +op_host/CMakeFiles/cust_opapi.dir/build: op_host/libcust_opapi.so +.PHONY : op_host/CMakeFiles/cust_opapi.dir/build + +op_host/CMakeFiles/cust_opapi.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_opapi.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/cust_opapi.dir/clean + +op_host/CMakeFiles/cust_opapi.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_opapi.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0812114a6eed2dece261c2eba55699f17a92a108 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o" + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o.d" + "libcust_opapi.pdb" + "libcust_opapi.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_opapi.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..a71888326a0790e06e4f17d235dc1510e4197bdf --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal @@ -0,0 +1,170 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.cpp + /usr/include/stdc-predef.h + /usr/include/string.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/include/c++/11/atomic + /usr/include/c++/11/bits/atomic_base.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/initializer_list + /usr/include/c++/11/tuple + /usr/include/c++/11/array + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/vector.tcc + /Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.h + /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d0b8d58be7fea2bfc7c1605a9864445a8d67e798 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make @@ -0,0 +1,499 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o: autogen/aclnn_reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + /usr/include/string.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + autogen/aclnn_reduce_sum.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/stdlib.h: + +/usr/include/c++/11/cstdint: + +/usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/debug/assertions.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/include/c++/11/memory: + +/usr/include/c++/11/array: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +autogen/aclnn_reduce_sum.h: + +/usr/include/c++/11/iosfwd: + +/usr/include/endian.h: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/c++/11/exception: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/features.h: + +/usr/include/c++/11/utility: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/stdc-predef.h: + +autogen/aclnn_reduce_sum.cpp: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/features-time64.h: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/c++/11/atomic: + +/usr/include/strings.h: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/aarch64-linux-gnu/bits/strings_fortified.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/aarch64-linux-gnu/bits/string_fortified.h: + +/usr/include/string.h: + +/usr/include/alloca.h: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/c++/11/typeinfo: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/c++/11/vector: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/bit: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/c++/11/type_traits: + +/usr/include/c++/11/tuple: + +/usr/include/c++/11/bits/invoke.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/cwchar: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/include/sched.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/time.h: + +/usr/include/c++/11/initializer_list: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b3bb157ef98b31b6076bead4dea655c2f5a1372c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_opapi. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..dae58d60b8fdca49c5c52471d0043c3eafbf4b20 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_opapi. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..f4b2f4fafda7e2aaa1a9da9823cd1f14c66759d1 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_opapi_EXPORTS + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..9246cc7e5179cb216ac23191cc7490066b3e91dc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_opapi.so -o libcust_opapi.so CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lascendcl -lnnopbase diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..3a86673aa7c1868ad77aa16c631effd83be0da02 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 5 +CMAKE_PROGRESS_2 = 6 + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9abc19c02e34380e996c6d5eb3646477576b9004 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Package_Cann/test/No_standard/op_host/reduce_sum.cpp" "op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..755e38cfe11eba1b19bd8d79f75efd852878b42d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Include any dependencies generated for this target. +include op_host/CMakeFiles/cust_optiling.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/cust_optiling.dir/progress.make + +# Include the compile flags for this target's objects. +include op_host/CMakeFiles/cust_optiling.dir/flags.make + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o -MF CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d -o CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o -c /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/No_standard/op_host/reduce_sum.cpp > CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s" + cd /Package_Cann/test/No_standard/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/No_standard/op_host/reduce_sum.cpp -o CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s + +# Object files for target cust_optiling +cust_optiling_OBJECTS = \ +"CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" + +# External object files for target cust_optiling +cust_optiling_EXTERNAL_OBJECTS = + +op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o +op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/build.make +op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_optiling.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +op_host/CMakeFiles/cust_optiling.dir/build: op_host/libcust_opmaster_rt2.0.so +.PHONY : op_host/CMakeFiles/cust_optiling.dir/build + +op_host/CMakeFiles/cust_optiling.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_optiling.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/cust_optiling.dir/clean + +op_host/CMakeFiles/cust_optiling.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_optiling.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..42181a94caecf4c62701e4f5a07ee9c148290bb0 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o" + "CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d" + "libcust_opmaster_rt2.0.pdb" + "libcust_opmaster_rt2.0.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cust_optiling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..fefb1016c0d8990752b6fa66f4ecf5d0d48a55c9 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -0,0 +1,321 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp + /usr/include/stdc-predef.h + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h + /usr/include/c++/11/vector + /usr/include/c++/11/bits/stl_algobase.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/aarch64-linux-gnu/bits/wordsize.h + /usr/include/aarch64-linux-gnu/bits/timesize.h + /usr/include/aarch64-linux-gnu/sys/cdefs.h + /usr/include/aarch64-linux-gnu/bits/long-double.h + /usr/include/aarch64-linux-gnu/gnu/stubs.h + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h + /usr/include/c++/11/bits/functexcept.h + /usr/include/c++/11/bits/exception_defines.h + /usr/include/c++/11/bits/cpp_type_traits.h + /usr/include/c++/11/ext/type_traits.h + /usr/include/c++/11/ext/numeric_traits.h + /usr/include/c++/11/bits/stl_pair.h + /usr/include/c++/11/bits/move.h + /usr/include/c++/11/type_traits + /usr/include/c++/11/bits/stl_iterator_base_types.h + /usr/include/c++/11/bits/stl_iterator_base_funcs.h + /usr/include/c++/11/bits/concept_check.h + /usr/include/c++/11/debug/assertions.h + /usr/include/c++/11/bits/stl_iterator.h + /usr/include/c++/11/bits/ptr_traits.h + /usr/include/c++/11/debug/debug.h + /usr/include/c++/11/bits/predefined_ops.h + /usr/include/c++/11/bits/allocator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h + /usr/include/c++/11/ext/new_allocator.h + /usr/include/c++/11/new + /usr/include/c++/11/bits/exception.h + /usr/include/c++/11/bits/memoryfwd.h + /usr/include/c++/11/bits/stl_construct.h + /usr/include/c++/11/bits/stl_uninitialized.h + /usr/include/c++/11/ext/alloc_traits.h + /usr/include/c++/11/bits/alloc_traits.h + /usr/include/c++/11/bits/stl_vector.h + /usr/include/c++/11/initializer_list + /usr/include/c++/11/bits/stl_bvector.h + /usr/include/c++/11/bits/functional_hash.h + /usr/include/c++/11/bits/hash_bytes.h + /usr/include/c++/11/bits/range_access.h + /usr/include/c++/11/bits/vector.tcc + /usr/include/c++/11/map + /usr/include/c++/11/bits/stl_tree.h + /usr/include/c++/11/bits/stl_function.h + /usr/include/c++/11/backward/binders.h + /usr/include/c++/11/ext/aligned_buffer.h + /usr/include/c++/11/bits/stl_map.h + /usr/include/c++/11/tuple + /usr/include/c++/11/utility + /usr/include/c++/11/bits/stl_relops.h + /usr/include/c++/11/array + /usr/include/c++/11/bits/uses_allocator.h + /usr/include/c++/11/bits/invoke.h + /usr/include/c++/11/bits/stl_multimap.h + /usr/include/c++/11/bits/erase_if.h + /usr/include/c++/11/memory + /usr/include/c++/11/bits/stl_tempbuf.h + /usr/include/c++/11/bits/stl_raw_storage_iter.h + /usr/include/c++/11/bits/align.h + /usr/include/c++/11/bit + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h + /usr/include/stdint.h + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h + /usr/include/aarch64-linux-gnu/bits/types.h + /usr/include/aarch64-linux-gnu/bits/typesizes.h + /usr/include/aarch64-linux-gnu/bits/time64.h + /usr/include/aarch64-linux-gnu/bits/wchar.h + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h + /usr/include/c++/11/bits/unique_ptr.h + /usr/include/c++/11/bits/shared_ptr.h + /usr/include/c++/11/iosfwd + /usr/include/c++/11/bits/stringfwd.h + /usr/include/c++/11/bits/postypes.h + /usr/include/c++/11/cwchar + /usr/include/wchar.h + /usr/include/aarch64-linux-gnu/bits/floatn.h + /usr/include/aarch64-linux-gnu/bits/floatn-common.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h + /usr/include/aarch64-linux-gnu/bits/types/FILE.h + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h + /usr/include/aarch64-linux-gnu/bits/wchar2.h + /usr/include/c++/11/bits/shared_ptr_base.h + /usr/include/c++/11/typeinfo + /usr/include/c++/11/bits/allocated_ptr.h + /usr/include/c++/11/bits/refwrap.h + /usr/include/c++/11/ext/atomicity.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/aarch64-linux-gnu/bits/types/time_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h + /usr/include/aarch64-linux-gnu/bits/endian.h + /usr/include/aarch64-linux-gnu/bits/endianness.h + /usr/include/aarch64-linux-gnu/bits/sched.h + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h + /usr/include/aarch64-linux-gnu/bits/cpu-set.h + /usr/include/time.h + /usr/include/aarch64-linux-gnu/bits/time.h + /usr/include/aarch64-linux-gnu/bits/timex.h + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h + /usr/include/aarch64-linux-gnu/bits/setjmp.h + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h + /usr/include/aarch64-linux-gnu/sys/single_threaded.h + /usr/include/c++/11/ext/concurrence.h + /usr/include/c++/11/exception + /usr/include/c++/11/bits/exception_ptr.h + /usr/include/c++/11/bits/cxxabi_init_exception.h + /usr/include/c++/11/bits/nested_exception.h + /usr/include/c++/11/bits/shared_ptr_atomic.h + /usr/include/c++/11/bits/atomic_base.h + /usr/include/c++/11/bits/atomic_lockfree_defines.h + /usr/include/c++/11/backward/auto_ptr.h + /usr/include/c++/11/cstring + /usr/include/string.h + /usr/include/strings.h + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h + /usr/include/aarch64-linux-gnu/bits/string_fortified.h + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h + /usr/include/stdio.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h + /usr/include/aarch64-linux-gnu/bits/stdio.h + /usr/include/aarch64-linux-gnu/bits/stdio2.h + /usr/include/c++/11/stdlib.h + /usr/include/c++/11/cstdlib + /usr/include/stdlib.h + /usr/include/aarch64-linux-gnu/bits/waitflags.h + /usr/include/aarch64-linux-gnu/bits/waitstatus.h + /usr/include/aarch64-linux-gnu/sys/types.h + /usr/include/endian.h + /usr/include/aarch64-linux-gnu/bits/byteswap.h + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h + /usr/include/aarch64-linux-gnu/sys/select.h + /usr/include/aarch64-linux-gnu/bits/select.h + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h + /usr/include/aarch64-linux-gnu/bits/select2.h + /usr/include/alloca.h + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h + /usr/include/aarch64-linux-gnu/bits/stdlib.h + /usr/include/c++/11/bits/std_abs.h + /usr/include/errno.h + /usr/include/aarch64-linux-gnu/bits/errno.h + /usr/include/linux/errno.h + /usr/include/aarch64-linux-gnu/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/aarch64-linux-gnu/bits/types/error_t.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/include/c++/11/string + /usr/include/c++/11/bits/char_traits.h + /usr/include/c++/11/cstdint + /usr/include/c++/11/bits/localefwd.h + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h + /usr/include/c++/11/clocale + /usr/include/locale.h + /usr/include/aarch64-linux-gnu/bits/locale.h + /usr/include/c++/11/cctype + /usr/include/ctype.h + /usr/include/c++/11/bits/ostream_insert.h + /usr/include/c++/11/bits/cxxabi_forced.h + /usr/include/c++/11/bits/basic_string.h + /usr/include/c++/11/ext/string_conversions.h + /usr/include/c++/11/cstdio + /usr/include/c++/11/cerrno + /usr/include/c++/11/bits/charconv.h + /usr/include/c++/11/bits/basic_string.tcc + /usr/include/c++/11/functional + /usr/include/c++/11/bits/std_function.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/include/c++/11/atomic + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h + /usr/include/c++/11/iostream + /usr/include/c++/11/ostream + /usr/include/c++/11/ios + /usr/include/c++/11/bits/ios_base.h + /usr/include/c++/11/bits/locale_classes.h + /usr/include/c++/11/bits/locale_classes.tcc + /usr/include/c++/11/system_error + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h + /usr/include/c++/11/stdexcept + /usr/include/c++/11/streambuf + /usr/include/c++/11/bits/streambuf.tcc + /usr/include/c++/11/bits/basic_ios.h + /usr/include/c++/11/bits/locale_facets.h + /usr/include/c++/11/cwctype + /usr/include/wctype.h + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h + /usr/include/c++/11/bits/streambuf_iterator.h + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h + /usr/include/c++/11/bits/locale_facets.tcc + /usr/include/c++/11/bits/basic_ios.tcc + /usr/include/c++/11/bits/ostream.tcc + /usr/include/c++/11/istream + /usr/include/c++/11/bits/istream.tcc + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h + /usr/include/c++/11/unordered_set + /usr/include/c++/11/bits/hashtable.h + /usr/include/c++/11/bits/hashtable_policy.h + /usr/include/c++/11/bits/enable_special_members.h + /usr/include/c++/11/bits/unordered_set.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/include/c++/11/limits + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h + /usr/include/c++/11/cstddef + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h + /usr/include/c++/11/set + /usr/include/c++/11/bits/stl_set.h + /usr/include/c++/11/bits/stl_multiset.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h + /usr/include/c++/11/mutex + /usr/include/c++/11/chrono + /usr/include/c++/11/ratio + /usr/include/c++/11/ctime + /usr/include/c++/11/bits/parse_numbers.h + /usr/include/c++/11/bits/std_mutex.h + /usr/include/c++/11/bits/unique_lock.h + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..00c03d392bb03e48b1f6811a81b0c3abe930884c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make @@ -0,0 +1,914 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: ../op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h \ + /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h \ + /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar \ + /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/cstring \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h \ + /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h \ + /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale \ + /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h \ + /usr/include/c++/11/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h \ + /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h \ + /usr/include/c++/11/cwctype \ + /usr/include/wctype.h \ + /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex \ + /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio \ + /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h + + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h: + +/usr/include/c++/11/bits/parse_numbers.h: + +/usr/include/c++/11/ctime: + +/usr/include/c++/11/ratio: + +/usr/include/c++/11/chrono: + +/usr/include/c++/11/mutex: + +/usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h: + +/usr/include/c++/11/set: + +/usr/include/aarch64-linux-gnu/bits/struct_mutex.h: + +/usr/include/aarch64-linux-gnu/bits/types.h: + +/usr/include/aarch64-linux-gnu/bits/setjmp.h: + +/usr/include/c++/11/bits/hashtable.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h: + +/usr/include/aarch64-linux-gnu/bits/types/timer_t.h: + +/usr/include/c++/11/bits/ostream.tcc: + +/usr/include/aarch64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/c++/11/bits/allocator.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h: + +/usr/include/aarch64-linux-gnu/bits/endian.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h: + +/usr/include/c++/11/bits/stl_set.h: + +/usr/include/aarch64-linux-gnu/bits/types/time_t.h: + +/usr/include/c++/11/bits/streambuf_iterator.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h: + +/usr/include/c++/11/bits/refwrap.h: + +/usr/include/c++/11/bits/allocated_ptr.h: + +/usr/include/aarch64-linux-gnu/bits/floatn-common.h: + +/usr/include/aarch64-linux-gnu/bits/wchar2.h: + +/usr/include/aarch64-linux-gnu/bits/wchar.h: + +/usr/include/aarch64-linux-gnu/bits/types/FILE.h: + +/usr/include/aarch64-linux-gnu/bits/types/__FILE.h: + +/usr/include/aarch64-linux-gnu/bits/cpu-set.h: + +/usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h: + +/usr/include/aarch64-linux-gnu/bits/types/__locale_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h: + +/usr/include/c++/11/backward/binders.h: + +/usr/include/c++/11/iostream: + +/usr/include/wchar.h: + +/usr/include/c++/11/bits/cxxabi_init_exception.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/c++/11/cwchar: + +/usr/include/c++/11/bits/stl_algobase.h: + +/usr/include/c++/11/bits/postypes.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-uintn.h: + +/usr/include/c++/11/cstdio: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h: + +/usr/include/c++/11/bit: + +/usr/include/c++/11/bits/stl_iterator_base_types.h: + +/usr/include/c++/11/cstdlib: + +/usr/include/c++/11/typeinfo: + +/usr/include/c++/11/bits/stl_raw_storage_iter.h: + +/usr/include/aarch64-linux-gnu/bits/types/sigset_t.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h: + +/usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h: + +/usr/include/features.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/c++/11/bits/unique_lock.h: + +/usr/include/c++/11/bits/uses_allocator.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h: + +/usr/include/c++/11/clocale: + +/usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h: + +/usr/include/c++/11/ext/type_traits.h: + +/usr/include/c++/11/bits/exception_defines.h: + +/usr/include/c++/11/atomic: + +/usr/include/c++/11/debug/assertions.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/usr/include/aarch64-linux-gnu/bits/endianness.h: + +/usr/include/ctype.h: + +/usr/include/c++/11/type_traits: + +/usr/include/c++/11/bits/stl_tree.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h: + +/usr/include/aarch64-linux-gnu/bits/stdio2.h: + +/usr/include/aarch64-linux-gnu/bits/errno.h: + +/usr/include/aarch64-linux-gnu/sys/cdefs.h: + +/usr/include/c++/11/exception: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h: + +/usr/include/c++/11/bits/std_function.h: + +/usr/include/c++/11/bits/stl_tempbuf.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h: + +/usr/include/c++/11/new: + +/usr/include/c++/11/bits/stl_iterator.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h: + +../op_host/reduce_sum_tiling.h: + +/usr/include/c++/11/bits/stl_bvector.h: + +/usr/include/aarch64-linux-gnu/bits/timesize.h: + +/usr/include/c++/11/bits/align.h: + +/usr/include/c++/11/vector: + +/usr/include/pthread.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/c++/11/array: + +/usr/include/c++/11/ext/atomicity.h: + +/usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/include/c++/11/bits/stl_pair.h: + +/usr/include/c++/11/bits/memoryfwd.h: + +/usr/include/c++/11/bits/stl_function.h: + +/usr/include/aarch64-linux-gnu/bits/libc-header-start.h: + +/usr/include/c++/11/cstring: + +/usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h: + +/usr/include/c++/11/bits/concept_check.h: + +/usr/include/aarch64-linux-gnu/bits/byteswap.h: + +/usr/include/aarch64-linux-gnu/bits/thread-shared-types.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h: + +/usr/include/c++/11/limits: + +/usr/include/c++/11/bits/predefined_ops.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/gnode.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h: + +/usr/include/aarch64-linux-gnu/bits/pthreadtypes.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h: + +/usr/include/c++/11/memory: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib.h: + +/usr/include/c++/11/system_error: + +/usr/include/aarch64-linux-gnu/sys/types.h: + +/usr/include/c++/11/bits/vector.tcc: + +/usr/include/c++/11/bits/functexcept.h: + +/usr/include/aarch64-linux-gnu/bits/time.h: + +/usr/include/aarch64-linux-gnu/bits/select2.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-float.h: + +/usr/include/c++/11/streambuf: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs.h: + +/usr/include/aarch64-linux-gnu/bits/stdint-intn.h: + +/usr/include/c++/11/bits/locale_facets.tcc: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/features-time64.h: + +/usr/include/aarch64-linux-gnu/bits/types/clock_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/locale_t.h: + +/usr/include/c++/11/bits/functional_hash.h: + +/usr/include/errno.h: + +/usr/include/c++/11/bits/shared_ptr.h: + +/usr/include/c++/11/bits/stl_construct.h: + +/usr/include/c++/11/bits/cpp_type_traits.h: + +/usr/include/c++/11/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/11/ext/new_allocator.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h: + +/usr/include/c++/11/bits/stl_uninitialized.h: + +/usr/include/c++/11/backward/auto_ptr.h: + +/usr/include/c++/11/ext/alloc_traits.h: + +/usr/include/aarch64-linux-gnu/bits/floatn.h: + +/usr/include/c++/11/bits/cxxabi_forced.h: + +/usr/include/stdc-predef.h: + +/usr/include/c++/11/bits/alloc_traits.h: + +/usr/include/aarch64-linux-gnu/bits/time64.h: + +/usr/include/alloca.h: + +/usr/include/c++/11/bits/range_access.h: + +/usr/include/c++/11/map: + +/usr/include/c++/11/bits/stl_vector.h: + +/usr/include/c++/11/cstddef: + +/usr/include/c++/11/initializer_list: + +/usr/include/c++/11/iosfwd: + +/usr/include/c++/11/bits/erase_if.h: + +/usr/include/c++/11/bits/ptr_traits.h: + +/usr/include/stdint.h: + +/usr/include/endian.h: + +/usr/include/c++/11/bits/stl_map.h: + +/usr/include/c++/11/bits/unique_ptr.h: + +/usr/include/c++/11/ostream: + +/usr/include/c++/11/bits/hash_bytes.h: + +/usr/include/c++/11/bits/move.h: + +/usr/include/c++/11/bits/stl_relops.h: + +/usr/include/aarch64-linux-gnu/bits/struct_rwlock.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h: + +/usr/include/aarch64-linux-gnu/sys/single_threaded.h: + +/usr/include/c++/11/ext/concurrence.h: + +/usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h: + +/usr/include/c++/11/bits/exception_ptr.h: + +/usr/include/c++/11/ext/string_conversions.h: + +/usr/include/c++/11/bits/nested_exception.h: + +/usr/include/c++/11/bits/shared_ptr_atomic.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.h: + +/usr/include/c++/11/bits/atomic_lockfree_defines.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h: + +/usr/include/c++/11/bits/streambuf.tcc: + +/usr/include/string.h: + +/usr/include/strings.h: + +/usr/include/aarch64-linux-gnu/bits/string_fortified.h: + +/usr/include/aarch64-linux-gnu/bits/locale.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h: + +/usr/include/c++/11/tuple: + +/usr/include/aarch64-linux-gnu/bits/select.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securec.h: + +/usr/include/c++/11/bits/charconv.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/securectype.h: + +/usr/include/c++/11/bits/ios_base.h: + +/usr/include/stdio.h: + +/usr/include/c++/11/bits/stringfwd.h: + +/usr/include/aarch64-linux-gnu/bits/strings_fortified.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h: + +/usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h: + +/usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h: + +/usr/include/time.h: + +/usr/include/aarch64-linux-gnu/bits/wctype-wchar.h: + +/usr/include/c++/11/bits/stl_multiset.h: + +/usr/include/aarch64-linux-gnu/bits/stdio_lim.h: + +/usr/include/aarch64-linux-gnu/bits/stdio.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h: + +/usr/include/c++/11/cerrno: + +/usr/include/c++/11/stdlib.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h: + +/usr/include/stdlib.h: + +/usr/include/aarch64-linux-gnu/bits/waitflags.h: + +/usr/include/aarch64-linux-gnu/bits/waitstatus.h: + +/usr/include/aarch64-linux-gnu/bits/uintn-identity.h: + +/usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h: + +/usr/include/aarch64-linux-gnu/sys/select.h: + +/usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/aarch64-linux-gnu/bits/long-double.h: + +/usr/include/c++/11/bits/std_abs.h: + +/usr/include/aarch64-linux-gnu/bits/types/error_t.h: + +/usr/include/c++/11/bits/stl_multimap.h: + +/usr/include/aarch64-linux-gnu/asm/errno.h: + +/usr/include/c++/11/cctype: + +/usr/include/asm-generic/errno.h: + +/usr/include/c++/11/bits/std_mutex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/include/c++/11/string: + +/usr/include/c++/11/cstdint: + +/usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h: + +/usr/include/c++/11/bits/localefwd.h: + +/usr/include/aarch64-linux-gnu/bits/types/wint_t.h: + +/usr/include/locale.h: + +/usr/include/c++/11/bits/ostream_insert.h: + +/usr/include/c++/11/bits/shared_ptr_base.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h: + +/usr/include/c++/11/bits/basic_string.h: + +/usr/include/c++/11/bits/basic_string.tcc: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h: + +/usr/include/c++/11/utility: + +/usr/include/c++/11/ios: + +/usr/include/c++/11/bits/locale_classes.h: + +/usr/include/c++/11/bits/locale_classes.tcc: + +/usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h: + +/usr/include/c++/11/stdexcept: + +/usr/include/c++/11/ext/aligned_buffer.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h: + +/usr/include/c++/11/bits/basic_ios.h: + +/usr/include/c++/11/bits/exception.h: + +/usr/include/c++/11/bits/locale_facets.h: + +../op_host/reduce_sum.cpp: + +/usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h: + +/usr/include/c++/11/cwctype: + +/usr/include/sched.h: + +/usr/include/wctype.h: + +/usr/include/c++/11/functional: + +/usr/include/linux/errno.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h: + +/usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h: + +/usr/include/c++/11/istream: + +/usr/include/aarch64-linux-gnu/bits/sched.h: + +/usr/include/c++/11/bits/istream.tcc: + +/usr/include/c++/11/bits/invoke.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h: + +/usr/include/aarch64-linux-gnu/bits/timex.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h: + +/usr/include/c++/11/unordered_set: + +/usr/include/c++/11/bits/hashtable_policy.h: + +/usr/include/c++/11/bits/basic_ios.tcc: + +/usr/include/c++/11/bits/enable_special_members.h: + +/usr/include/c++/11/bits/unordered_set.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h: + +/usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h: diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..74472e36eba2a28932ae542c70b920de2f6fda33 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for cust_optiling. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe68c7fa27e765cc54c7a4b724d3af19e0f40b0c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for cust_optiling. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..6d98162bed09f0ecad0e8a6d9c9ec8a6dcf6fd1c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -DOP_TILING_LIB -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=0 -Dcust_optiling_EXPORTS + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/include + +CXX_FLAGS = -fPIC -fvisibility=hidden -fPIC -fvisibility-inlines-hidden -O2 -std=c++11 -fstack-protector-strong + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b94d4572ec7fa51f1baab187ad2f10456816068 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-soname,libcust_opmaster_rt2.0.so -o libcust_opmaster_rt2.0.so CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lexe_graph -lregister -ltiling_api -Wl,--whole-archive -lrt2_registry -Wl,--no-whole-archive diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..72bb7dd025afc5824222cbd3a1e64841afc2792c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 7 +CMAKE_PROGRESS_2 = 8 + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..6484677dc8d7b180da8ad254db7805d5546a6f33 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o differ diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..ee9e9d71b986e4cce53699bb8aac4a588c197f85 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o.d @@ -0,0 +1,270 @@ +op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o: \ + /Package_Cann/test/No_standard/op_host/reduce_sum.cpp \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/No_standard/op_host/reduce_sum_tiling.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/tilingdata_base.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/cstring \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/aarch64-linux-gnu/bits/strings_fortified.h \ + /usr/include/aarch64-linux-gnu/bits/string_fortified.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securec.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/securectype.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/stdio2.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/select2.h /usr/include/alloca.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/aarch64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/functional \ + /usr/include/c++/11/bits/std_function.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/include/c++/11/atomic \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def.h \ + /usr/include/c++/11/iostream /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_registry.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/compiler_def.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_impl_kernel_registry.h \ + /usr/include/c++/11/unordered_set /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_set.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/base_type.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/include/c++/11/limits \ + /usr/local/Ascend/ascend-toolkit/latest/include/utils/extern_math_util.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/storage_format.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/expand_dims_type.h \ + /usr/include/c++/11/cstddef \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/external/ge_common/ge_api_types.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/kernel_run_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/context_extend.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/compute_node_info.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/resource_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_shape_range_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/range.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tiling_data.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/continuous_vector.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/runtime_attrs.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/op_execute_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/shape.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/extended_kernel_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/ge/ge_allocator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/exe_graph/runtime/infer_datatype_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_reg.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./inference_context.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/operator_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./operator.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/graph.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/./gnode.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././types.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././tensor.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/././ascend_string.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/register/op_def_factory.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/tiling/platform/platform_ascendc.h \ + /usr/include/c++/11/mutex /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/graph/utils/type_utils.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/include/acl/acl_mdl.h diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..269566d0a4aa2e192c7036ed86c3095ff75ea68f --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for optiling_compat. + +# Include any custom commands dependencies for this target. +include op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_host/CMakeFiles/optiling_compat.dir/progress.make + +op_host/CMakeFiles/optiling_compat: + cd /Package_Cann/test/No_standard/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Package_Cann/test/No_standard/build_out/op_host/liboptiling.so + +optiling_compat: op_host/CMakeFiles/optiling_compat +optiling_compat: op_host/CMakeFiles/optiling_compat.dir/build.make +.PHONY : optiling_compat + +# Rule to build all files generated by this target. +op_host/CMakeFiles/optiling_compat.dir/build: optiling_compat +.PHONY : op_host/CMakeFiles/optiling_compat.dir/build + +op_host/CMakeFiles/optiling_compat.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/optiling_compat.dir/cmake_clean.cmake +.PHONY : op_host/CMakeFiles/optiling_compat.dir/clean + +op_host/CMakeFiles/optiling_compat.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_host /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_host /Package_Cann/test/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/optiling_compat.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d6c62180661baf2894b2e39b1390c4aad97bd7e7 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/optiling_compat" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/optiling_compat.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f6005bcf9aa9a636cea7c8c99afc1c47b58651ec --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for optiling_compat. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..218ad6e5c7fb31bec1c5dc1c351cf18dde37c686 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for optiling_compat. diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_host/CMakeFiles/progress.marks b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7f8f011eb73d6043d2e6db9d2c101195ae2801f2 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/CMakeFiles/progress.marks @@ -0,0 +1 @@ +7 diff --git a/precision_Problem/No_standard/build_out/op_host/Makefile b/precision_Problem/No_standard/build_out/op_host/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..9a3f395d7945fa2c29c1af0fb81ceee6cc96cd0d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/Makefile @@ -0,0 +1,355 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out/op_host//CMakeFiles/progress.marks + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +op_host/CMakeFiles/cust_op_proto.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/rule +.PHONY : op_host/CMakeFiles/cust_op_proto.dir/rule + +# Convenience name for target. +cust_op_proto: op_host/CMakeFiles/cust_op_proto.dir/rule +.PHONY : cust_op_proto + +# fast build rule for target. +cust_op_proto/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build +.PHONY : cust_op_proto/fast + +# Convenience name for target. +op_host/CMakeFiles/cust_optiling.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/rule +.PHONY : op_host/CMakeFiles/cust_optiling.dir/rule + +# Convenience name for target. +cust_optiling: op_host/CMakeFiles/cust_optiling.dir/rule +.PHONY : cust_optiling + +# fast build rule for target. +cust_optiling/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build +.PHONY : cust_optiling/fast + +# Convenience name for target. +op_host/CMakeFiles/cust_opapi.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/rule +.PHONY : op_host/CMakeFiles/cust_opapi.dir/rule + +# Convenience name for target. +cust_opapi: op_host/CMakeFiles/cust_opapi.dir/rule +.PHONY : cust_opapi + +# fast build rule for target. +cust_opapi/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build +.PHONY : cust_opapi/fast + +# Convenience name for target. +op_host/CMakeFiles/optiling_compat.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/rule +.PHONY : op_host/CMakeFiles/optiling_compat.dir/rule + +# Convenience name for target. +optiling_compat: op_host/CMakeFiles/optiling_compat.dir/rule +.PHONY : optiling_compat + +# fast build rule for target. +optiling_compat/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build +.PHONY : optiling_compat/fast + +__/autogen/aclnn_reduce_sum.o: __/autogen/aclnn_reduce_sum.cpp.o +.PHONY : __/autogen/aclnn_reduce_sum.o + +# target to build an object file +__/autogen/aclnn_reduce_sum.cpp.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.o +.PHONY : __/autogen/aclnn_reduce_sum.cpp.o + +__/autogen/aclnn_reduce_sum.i: __/autogen/aclnn_reduce_sum.cpp.i +.PHONY : __/autogen/aclnn_reduce_sum.i + +# target to preprocess a source file +__/autogen/aclnn_reduce_sum.cpp.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.i +.PHONY : __/autogen/aclnn_reduce_sum.cpp.i + +__/autogen/aclnn_reduce_sum.s: __/autogen/aclnn_reduce_sum.cpp.s +.PHONY : __/autogen/aclnn_reduce_sum.s + +# target to generate assembly for a file +__/autogen/aclnn_reduce_sum.cpp.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_reduce_sum.cpp.s +.PHONY : __/autogen/aclnn_reduce_sum.cpp.s + +__/autogen/op_proto.o: __/autogen/op_proto.cc.o +.PHONY : __/autogen/op_proto.o + +# target to build an object file +__/autogen/op_proto.cc.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o +.PHONY : __/autogen/op_proto.cc.o + +__/autogen/op_proto.i: __/autogen/op_proto.cc.i +.PHONY : __/autogen/op_proto.i + +# target to preprocess a source file +__/autogen/op_proto.cc.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i +.PHONY : __/autogen/op_proto.cc.i + +__/autogen/op_proto.s: __/autogen/op_proto.cc.s +.PHONY : __/autogen/op_proto.s + +# target to generate assembly for a file +__/autogen/op_proto.cc.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s +.PHONY : __/autogen/op_proto.cc.s + +reduce_sum.o: reduce_sum.cpp.o +.PHONY : reduce_sum.o + +# target to build an object file +reduce_sum.cpp.o: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.o + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.o +.PHONY : reduce_sum.cpp.o + +reduce_sum.i: reduce_sum.cpp.i +.PHONY : reduce_sum.i + +# target to preprocess a source file +reduce_sum.cpp.i: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.i + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.i +.PHONY : reduce_sum.cpp.i + +reduce_sum.s: reduce_sum.cpp.s +.PHONY : reduce_sum.s + +# target to generate assembly for a file +reduce_sum.cpp.s: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/reduce_sum.cpp.s + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/reduce_sum.cpp.s +.PHONY : reduce_sum.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... optiling_compat" + @echo "... cust_op_proto" + @echo "... cust_opapi" + @echo "... cust_optiling" + @echo "... __/autogen/aclnn_reduce_sum.o" + @echo "... __/autogen/aclnn_reduce_sum.i" + @echo "... __/autogen/aclnn_reduce_sum.s" + @echo "... __/autogen/op_proto.o" + @echo "... __/autogen/op_proto.i" + @echo "... __/autogen/op_proto.s" + @echo "... reduce_sum.o" + @echo "... reduce_sum.i" + @echo "... reduce_sum.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/No_standard/build_out/op_host/cmake_install.cmake b/precision_Problem/No_standard/build_out/op_host/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d161fa62df9e0c92db5999cc638c8a29d747e1f9 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_host/cmake_install.cmake @@ -0,0 +1,125 @@ +# Install script for directory: /Package_Cann/test/No_standard/op_host + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/op_host/libcust_opsproto_rt2.0.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/inc" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/autogen/op_proto.h") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/op_host/libcust_opmaster_rt2.0.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/op_host/liboptiling.so") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib" TYPE SHARED_LIBRARY FILES "/Package_Cann/test/No_standard/build_out/op_host/libcust_opapi.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/lib64:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib/libcust_opapi.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/include" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/autogen/aclnn_reduce_sum.h") +endif() + diff --git a/precision_Problem/No_standard/build_out/op_host/libcust_opapi.so b/precision_Problem/No_standard/build_out/op_host/libcust_opapi.so new file mode 100644 index 0000000000000000000000000000000000000000..6bd5e35d6ed556efe777a1e1d695a5e67b186a47 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_host/libcust_opapi.so differ diff --git a/precision_Problem/No_standard/build_out/op_host/libcust_opmaster_rt2.0.so b/precision_Problem/No_standard/build_out/op_host/libcust_opmaster_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..6667f28e8ecaae2c7414c90a1c61ffffea6c3459 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_host/libcust_opmaster_rt2.0.so differ diff --git a/precision_Problem/No_standard/build_out/op_host/libcust_opsproto_rt2.0.so b/precision_Problem/No_standard/build_out/op_host/libcust_opsproto_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..ea924e54f9280ea0c1b000d25a6289a30f01351c Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_host/libcust_opsproto_rt2.0.so differ diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..84340a0327a6e9ed0df4adb9ecac6ffda6c87025 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Package_Cann/test/No_standard") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Package_Cann/test/No_standard/build_out") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..15b4aaf86a0e6d5fdf477cfe4052f0000ab36b1d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b: + cd /Package_Cann/test/No_standard/build_out/op_kernel && cp -r /Package_Cann/test/No_standard/op_kernel/*.* /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src + +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make +.PHONY : ascendc_bin_ascend310b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build: ascendc_bin_ascend310b +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..533ecfc39068edc37496c5f20d46fe6ca8911459 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b57b3514902bdc581ce7b6f2090f38b51b58a5cd --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0e4fa1ebcb2d0d5d7bebf601f98e8703328cd19a --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..04ce7548fa000b989a8fc83e589dfa0b675899c1 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config: + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/insert_simplified_keys.py -p /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/ascendc_ops_config.py -p /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin -s ascend310b + +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build: ascendc_bin_ascend310b_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5407b615dc5d6e7354a1555f39b93a44a5bbf91b --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..a131ca8f91cc49cd9677c0e8e11800d95615fb05 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..d9befe63ff7c9f376f7c499a786bae54123c96e8 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_gen_ops_config. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..4aa51bf219fc654500d708d0c35850b17703067f --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0 +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build: ascendc_bin_ascend310b_reduce_sum_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..71ddd625f0d6915dd8bc9e3ac78e26623815e473 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..a7eb28bd08f7362ec557da5a3a3bc1921ce301ee --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_0. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..79fcf65bc64cf2fba6eefe5bb970023e24a592d3 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_0. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..77084fa43d08627e495195238e234cdb487d91ae --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_1. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1 +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build: ascendc_bin_ascend310b_reduce_sum_1 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9d2b92b8180dd310167029924108849b35534e2a --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..46f5f08a4226a3638f6482b14cdfd9cc9916b0ad --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_1. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e4c9afd8bfc05286ccc8826d8291cb9c985ff495 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_1. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..aa8681c426236945b72d7fc1b36eac981cb96e6e --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_2. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2 +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build: ascendc_bin_ascend310b_reduce_sum_2 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..c04066c690d6b76e6137ff2653d94cd2792b3136 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..46914d35c63cf9560487677441d32c21205dd340 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_2. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..90d5bc51ad51adad57132012fe6943eb79c97297 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_2. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1d70fb9d40e70886f46dd11578fce246c22b5e84 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_3. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3: + cd /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum && echo $(MAKE) + +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3 +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build: ascendc_bin_ascend310b_reduce_sum_3 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2ba23da328c083154ea92ad693ea4c9b3d4ffe9f --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f9a20e8a980f2c07ab7ebb62a52b81df011b0d79 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_3. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..412e5f3f99e43f7d59d98c5165b6f31a61b55a43 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_3. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ead7a95d15ffbd12f65366b01f148d079a6a7c51 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_bin_ascend310b_reduce_sum_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy: + cd /Package_Cann/test/No_standard/build_out/op_kernel && cp /Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py /Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py + +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build: ascendc_bin_ascend310b_reduce_sum_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..016a2f0ac80600a1470a789a75df82e50db6fb92 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d730e73caef7e99bdfbfd3c89fbd1acd3fd28d75 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_reduce_sum_copy. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4cabba9478c130920def71b070466ff0bcdf5a3c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310b_reduce_sum_copy. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..faaca505823d39954c4df6b8e7af69f02030ea60 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ascendc_impl_gen. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make + +op_kernel/CMakeFiles/ascendc_impl_gen: op_kernel/tbe/.impl_timestamp + +op_kernel/tbe/.impl_timestamp: autogen/aic-ascend310b-ops-info.ini +op_kernel/tbe/.impl_timestamp: ../cmake/util/ascendc_impl_build.py + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Package_Cann/test/No_standard/build_out/op_kernel && mkdir -m 700 -p /Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/ascendc_impl_build.py /Package_Cann/test/No_standard/build_out/autogen/aic-ascend310b-ops-info.ini "" "" /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic /Package_Cann/test/No_standard/build_out/autogen + cd /Package_Cann/test/No_standard/build_out/op_kernel && rm -rf /Package_Cann/test/No_standard/build_out/op_kernel/tbe/.impl_timestamp + cd /Package_Cann/test/No_standard/build_out/op_kernel && touch /Package_Cann/test/No_standard/build_out/op_kernel/tbe/.impl_timestamp + +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen +ascendc_impl_gen: op_kernel/tbe/.impl_timestamp +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make +.PHONY : ascendc_impl_gen + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/build: ascendc_impl_gen +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/build + +op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/clean + +op_kernel/CMakeFiles/ascendc_impl_gen.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0dabd8217f51de05d3c48e464f9ed87a459cca1a --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_impl_gen" + "tbe/.impl_timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_impl_gen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e4c9fac661464ec05ea1a443edb0dc2b0b41806f --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_impl_gen. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b895e90a30e456d3811a0bb2e4d043284245aacd --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_impl_gen. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..781c7de277467a8195d562b5d08164806763e9bb --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1251092ed62e083eb96a87aad1d8e1eccbcec726 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for binary. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/binary.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/binary.dir/progress.make + +binary: op_kernel/CMakeFiles/binary.dir/build.make +.PHONY : binary + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/binary.dir/build: binary +.PHONY : op_kernel/CMakeFiles/binary.dir/build + +op_kernel/CMakeFiles/binary.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/binary.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/binary.dir/clean + +op_kernel/CMakeFiles/binary.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/binary.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ae76984f5565d466b92a810925e025e54471e63 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/binary.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e688fdae426435b7338ad5ae7e9a8b33847b35f2 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for binary. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f22f6ab4259e686344dd2262cc15fc223bd41f47 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for binary. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/binary.dir/progress.make @@ -0,0 +1 @@ + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..852a00c159e4a8ff4b763132d35e6dfa9bffe10c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for npu_supported_ops. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make + +op_kernel/CMakeFiles/npu_supported_ops: op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json + +op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Package_Cann/test/No_standard/build_out/op_kernel && mkdir -p /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Package_Cann/test/No_standard/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Package_Cann/test/No_standard/build_out/autogen /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core + +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops +npu_supported_ops: op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/build.make +.PHONY : npu_supported_ops + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/npu_supported_ops.dir/build: npu_supported_ops +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/build + +op_kernel/CMakeFiles/npu_supported_ops.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/clean + +op_kernel/CMakeFiles/npu_supported_ops.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..74257cf6ebf8321bd1cdf1fd3b9dff6f31a88317 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/npu_supported_ops" + "tbe/op_info_cfg/ai_core/npu_supported_ops.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/npu_supported_ops.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9f8bf5f55283f2af94a1d6c3d002e1abf9fb06be --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for npu_supported_ops. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..391e044314f82c750bb472ea75da0830fe80882c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for npu_supported_ops. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..e42d498a89857163707bdf7455d3193d8ed5bfe2 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 12 + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..98f918455fc4284e8d82e6422b45fee70c769345 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +# Utility rule file for ops_info_gen_ascend310b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend310b: op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Package_Cann/test/No_standard/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Package_Cann/test/No_standard/build_out/op_kernel && mkdir -p /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Package_Cann/test/No_standard/build_out/op_kernel && python3 /Package_Cann/test/No_standard/cmake/util/parse_ini_to_json.py /Package_Cann/test/No_standard/build_out/autogen/aic-ascend310b-ops-info.ini /Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json + +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b +ops_info_gen_ascend310b: op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make +.PHONY : ops_info_gen_ascend310b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build: ops_info_gen_ascend310b +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean: + cd /Package_Cann/test/No_standard/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/No_standard /Package_Cann/test/No_standard/op_kernel /Package_Cann/test/No_standard/build_out /Package_Cann/test/No_standard/build_out/op_kernel /Package_Cann/test/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/depend + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0873ef7dbd668d16556df9538a9fa0bf4a335d09 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend310b" + "tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b1c31a685ba07abf8d9ee8e5c14347e18147775b --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend310b. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..48b406611124e445506c38d8a534c940c16a3dcf --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ops_info_gen_ascend310b. diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..7e0358250d669f4e34f1dc4a0fb4d44932f34e28 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 13 + diff --git a/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/progress.marks b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..00750edc07d6415dcc07ae0351e9397b0222b7ba --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/precision_Problem/No_standard/build_out/op_kernel/Makefile b/precision_Problem/No_standard/build_out/op_kernel/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..c1b91374bb36086dfaa165948e1b03a0da81e419 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/Makefile @@ -0,0 +1,376 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/No_standard + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/No_standard/build_out + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /Package_Cann/test/No_standard/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Package_Cann/test/No_standard/build_out/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles /Package_Cann/test/No_standard/build_out/op_kernel//CMakeFiles/progress.marks + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/No_standard/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule +.PHONY : ops_info_gen_ascend310b + +# fast build rule for target. +ops_info_gen_ascend310b/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build +.PHONY : ops_info_gen_ascend310b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule + +# Convenience name for target. +ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule +.PHONY : ascendc_impl_gen + +# fast build rule for target. +ascendc_impl_gen/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build +.PHONY : ascendc_impl_gen/fast + +# Convenience name for target. +op_kernel/CMakeFiles/binary.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/rule +.PHONY : op_kernel/CMakeFiles/binary.dir/rule + +# Convenience name for target. +binary: op_kernel/CMakeFiles/binary.dir/rule +.PHONY : binary + +# fast build rule for target. +binary/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build +.PHONY : binary/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule +.PHONY : ascendc_bin_ascend310b + +# fast build rule for target. +ascendc_bin_ascend310b/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build +.PHONY : ascendc_bin_ascend310b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310b_gen_ops_config/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310b_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_copy/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_copy.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_0 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_0/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_0.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_1: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_1 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_1/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_1.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_1/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_2: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_2 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_2/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_2.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_2/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_reduce_sum_3: op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/rule +.PHONY : ascendc_bin_ascend310b_reduce_sum_3 + +# fast build rule for target. +ascendc_bin_ascend310b_reduce_sum_3/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_reduce_sum_3.dir/build +.PHONY : ascendc_bin_ascend310b_reduce_sum_3/fast + +# Convenience name for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/rule +.PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/rule + +# Convenience name for target. +npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/rule +.PHONY : npu_supported_ops + +# fast build rule for target. +npu_supported_ops/fast: + cd /Package_Cann/test/No_standard/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build +.PHONY : npu_supported_ops/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... ascendc_bin_ascend310b" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310b_reduce_sum_0" + @echo "... ascendc_bin_ascend310b_reduce_sum_1" + @echo "... ascendc_bin_ascend310b_reduce_sum_2" + @echo "... ascendc_bin_ascend310b_reduce_sum_3" + @echo "... ascendc_bin_ascend310b_reduce_sum_copy" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Package_Cann/test/No_standard/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e0f175db8211d04dbfc3c5a4fb022d472c35e4 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json @@ -0,0 +1,48 @@ +{ + "ReduceSum": { + "dynamicRankSupport": true, + "simplifiedKeyMode": 0, + "binaryList": [ + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/0,2/3,2/0,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/2,2/3,2/2,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/3,2/3,2/3,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + }, + { + "coreType": 2, + "simplifiedKey": "ReduceSum/d=1,p=0/1,2/3,2/1,2", + "binPath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o" + } + ] + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json new file mode 100644 index 0000000000000000000000000000000000000000..fb9b121ef0d420802ff3bd98b803c14cf75ab7ec --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json @@ -0,0 +1,252 @@ +{ + "binList": [ + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json" + } + }, + { + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "int64Mode": false, + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "binInfo": { + "jsonFilePath": "ascend310b/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json" + } + } + ] +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json new file mode 100644 index 0000000000000000000000000000000000000000..e50634243e975572ee7551ea79d4a09989bede7b --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "a8b6c56680c52ac8c16779bd3080aa56e93d69905a5136f88f78511144dd5f8a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/2,2/3,2/2,2", + "ReduceSum/d=1,p=0/2,2/3,2/2,2" + ], + "staticKey": "b820d3c72c6fdb74e25428934a95a506cabe6b179f17c862ac790f6c318f240f", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o new file mode 100644 index 0000000000000000000000000000000000000000..090d55623cf4869aa662cdbc2c38a87b57f18b85 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o differ diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json new file mode 100644 index 0000000000000000000000000000000000000000..999f4f81c62e4b3aabd94ec1dd3451c1017872c3 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "4c18f6864ed2c98b13f4d0d0ef028655cb35953ab386a4afacea612aab6c7500", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_aba912fd1d17807efc5a7debff52df92_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/1,2/3,2/1,2", + "ReduceSum/d=1,p=0/1,2/3,2/1,2" + ], + "staticKey": "99fec46c7fb0c696b2b7d64cf7e55d7ea2f4477ec7431c03cb97e71ecceef43a", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o new file mode 100644 index 0000000000000000000000000000000000000000..86f4262d4913f82bbb071d0142af3d3782c96c5d Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_aba912fd1d17807efc5a7debff52df92.o differ diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json new file mode 100644 index 0000000000000000000000000000000000000000..ecb3d3deaa6d3587470a14596d1dbfd33670e6d3 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "d8dc63b94b29bc53a33aea4b794e30e5b0a7321b7f0239deff9b24fb29ee2f50", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/3,2/3,2/3,2", + "ReduceSum/d=1,p=0/3,2/3,2/3,2" + ], + "staticKey": "b2a3cb0846b58c37dd20590607cda1c8ed3efcd02d17798c63659432b4190830", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o new file mode 100644 index 0000000000000000000000000000000000000000..234f59fa06a971c1aa73801f3d5e99e434ac6a01 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o differ diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json new file mode 100644 index 0000000000000000000000000000000000000000..ab167274bc794c22d6c28419dc354d4254dac855 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json @@ -0,0 +1,93 @@ +{ + "binFileName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 48, + "parameters": [], + "sha256": "cf9debf69c81f9b99c329ea5e1b68f91ebde2e3004e6aa2c062f78c218fdda0a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "ReduceSum/d=0,p=0/0,2/3,2/0,2", + "ReduceSum/d=1,p=0/0,2/3,2/0,2" + ], + "staticKey": "80602307177ba63e857667cbab2faea65a5120e0167977a2da73ed1c8cc3b00e", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o new file mode 100644 index 0000000000000000000000000000000000000000..ad0758e3affa845d1fc9d1a4e3784a2b5825b52f Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o differ diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..aef070bf4dfde9555e7ad6842c7fb8469df691cc --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json ; then + echo "$2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o ; then + echo "$2/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a Done" diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh new file mode 100644 index 0000000000000000000000000000000000000000..d30a52e14ecb5b44701815a9b3ccf49c2eb3db88 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-1.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_aba912fd1d17807efc5a7debff52df92 ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_aba912fd1d17807efc5a7debff52df92.json ; then + echo "$2/ReduceSum_aba912fd1d17807efc5a7debff52df92.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_aba912fd1d17807efc5a7debff52df92.o ; then + echo "$2/ReduceSum_aba912fd1d17807efc5a7debff52df92.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_aba912fd1d17807efc5a7debff52df92 Done" diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh new file mode 100644 index 0000000000000000000000000000000000000000..241bd931fde72cae0b7acb5767d031f6402edff5 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-2.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json ; then + echo "$2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o ; then + echo "$2/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f Done" diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh new file mode 100644 index 0000000000000000000000000000000000000000..a6f573827d8ba00f767dcf85fc2c388d06bd172e --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum-reduce_sum-3.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating ReduceSum_aab7d211a4f4f395b4f928b8c56a621d ..." +opc $1 --main_func=reduce_sum --input_param=/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json ; then + echo "$2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.json not generated!" + exit 1 +fi + +if ! test -f $2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o ; then + echo "$2/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating ReduceSum_aab7d211a4f4f395b4f928b8c56a621d Done" diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json new file mode 100644 index 0000000000000000000000000000000000000000..a33ffaf436acc441e3376cdcc4fec9d67d708585 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aab7d211a4f4f395b4f928b8c56a621d_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_aab7d211a4f4f395b4f928b8c56a621d", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int8", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json new file mode 100644 index 0000000000000000000000000000000000000000..5c690e8fd3415244c9c7b78b0282d55322ba2948 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_aba912fd1d17807efc5a7debff52df92_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_aba912fd1d17807efc5a7debff52df92", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json new file mode 100644 index 0000000000000000000000000000000000000000..e72f075401f8216a690c3c722b2b19ea6fe16e79 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_f173a8c22ef4278e2efc1f7e4f04cf1f", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json new file mode 100644 index 0000000000000000000000000000000000000000..17dd854a129f32547f74ac594dde75a80a5fa600 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/gen/ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a_param.json @@ -0,0 +1,59 @@ +{ + "op_type": "ReduceSum", + "op_list": [ + { + "bin_filename": "ReduceSum_f92b0ed06094ccd956a40fd4f3d5b39a", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "axis", + "index": 1, + "dtype": "int32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "y", + "index": 0, + "dtype": "float32", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "attrs": [ + { + "name": "keep_dims", + "dtype": "bool", + "value": false + }, + { + "name": "ignore_nan", + "dtype": "bool", + "value": false + }, + { + "name": "dtype", + "dtype": "str", + "value": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c94a952da2058b785affa6784d78b87dfe9b3d7 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt @@ -0,0 +1,68 @@ +# set custom compile options +if ("${CMAKE_BUILD_TYPE}x" STREQUAL "Debugx") + add_ops_compile_options(ALL OPTIONS -g -O0) +endif() + +foreach(compute_unit ${ASCEND_COMPUTE_UNIT}) + + # generate aic-${compute_unit}-ops-info.json + add_ops_info_target(TARGET ops_info_gen_${compute_unit} + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core/${compute_unit}/aic-${compute_unit}-ops-info.json + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/config/${compute_unit} + ) + + # generate ascendc impl py once + if (NOT TARGET ascendc_impl_gen) + add_ops_impl_target(TARGET ascendc_impl_gen + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl + ) + endif() + + # dynamic shape binary compile + if (${ENABLE_BINARY_PACKAGE} AND NOT ${ENABLE_CROSS_COMPILE}) + add_bin_compile_target(TARGET ascendc_bin_${compute_unit} + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + ADP_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/dynamic + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/binary/${compute_unit} + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/kernel + COMPUTE_UNIT ${compute_unit} + ) + add_dependencies(ascendc_bin_${compute_unit} ascendc_impl_gen) + endif() + + if (${ENABLE_CROSS_COMPILE} AND ${ENABLE_BINARY_PACKAGE}) + add_cross_compile_target( + TARGET bin_${compute_unit} + OUT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../kernel + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/ + ) + endif() +endforeach() + +# generate npu_supported_ops.json +add_npu_support_target(TARGET npu_supported_ops + OPS_INFO_DIR ${ASCEND_AUTOGEN_PATH} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core + INSTALL_DIR packages/vendors/${vendor_name}/framework/${ASCEND_FRAMEWORK_TYPE} +) + +if(ENABLE_TEST AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/testcases) + add_subdirectory(testcases) +endif() + +# install kernel file +if (${ENABLE_SOURCE_PACKAGE}) + file(GLOB KERNEL_FILES + ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/*.h + ${CMAKE_CURRENT_SOURCE_DIR}/*.py + ) + install(FILES ${KERNEL_FILES} + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl/dynamic + ) +endif() diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py new file mode 100644 index 0000000000000000000000000000000000000000..5ce4bbbb4eda5cd146af415b11a7387fd41ac853 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/ReduceSum.py @@ -0,0 +1,205 @@ + +import os, sys +import ctypes +import json +import shutil +from tbe.common.platform import get_soc_spec +from tbe.common.utils import para_check +from tbe.tikcpp import compile_op, replay_op, check_op_cap, generalize_op_params, get_code_channel, OpInfo +from tbe.common.buildcfg import get_default_build_config +from impl.util.platform_adapter import tbe_register +from tbe.common.buildcfg import get_current_build_config +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +DTYPE_MAP = {"float32": ["DT_FLOAT", "float"], + "float16": ["DT_FLOAT16", "half"], + "int8": ["DT_INT8", "int8_t"], + "int16": ["DT_INT16", "int16_t"], + "int32": ["DT_INT32", "int32_t"], + "int64": ["DT_INT64", "int64_t"], + "uint1": ["DT_UINT1", "uint8_t"], + "uint8": ["DT_UINT8", "uint8_t"], + "uint16": ["DT_UINT16", "uint16_t"], + "uint32": ["DT_UINT32", "uint32_t"], + "uint64": ["DT_UINT64", "uint64_t"], + "bool": ["DT_BOOL", "bool"], + "double": ["DT_DOUBLE", "double"], + "dual": ["DT_DUAL", "unknown"], + "dual_sub_int8": ["DT_DUAL_SUB_INT8", "unknown"], + "dual_sub_uint8": ["DT_DUAL_SUB_UINT8", "unknown"], + "string": ["DT_STRING", "unknown"], + "complex64": ["DT_COMPLEX64", "unknown"], + "complex128": ["DT_COMPLEX128", "unknown"], + "qint8": ["DT_QINT8", "unknown"], + "qint16": ["DT_QINT16", "unknown"], + "qint32": ["DT_QINT32", "unknown"], + "quint8": ["DT_QUINT8", "unknown"], + "quint16": ["DT_QUINT16", "unknown"], + "resource": ["DT_RESOURCE", "unknown"], + "string_ref": ["DT_STRING_REF", "unknown"], + "int4": ["DT_INT4", "int4b_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def add_dtype_fmt_option_single(x, x_n, is_ref: bool = False): + options = [] + x_fmt = x.get("format") + x_dtype = x.get("dtype") + x_n_in_kernel = x_n + '_REF' if is_ref else x_n + options.append("-DDTYPE_{n}={t}".format(n=x_n_in_kernel, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n_in_kernel, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n_in_kernel, f=x_fmt)) + return options + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + input_names = ['x', 'axis'] + output_names = ['y'] + unique_param_name_set = set() + for idx, x in enumerate(__inputs__): + if x is None: + continue + x_n = input_names[idx].upper() + unique_param_name_set.add(x_n) + options += add_dtype_fmt_option_single(x, x_n) + + for idx, x in enumerate(__outputs__): + if x is None: + continue + x_n = output_names[idx].upper() + if x_n in unique_param_name_set: + options += add_dtype_fmt_option_single(x, x_n, True) + else: + options += add_dtype_fmt_option_single(x, x_n) + return options + +def load_dso(so_path): + try: + ctypes.CDLL(so_path) + except OSError as error : + print(error) + raise RuntimeError("cannot open %s" %(so_path)) + else: + print("load so succ ", so_path) + +def get_shortsoc_compile_option(compile_option_list: list, shortsoc:str): + compile_options = [] + if shortsoc in compile_option_list: + compile_options = compile_option_list[shortsoc] + elif '__ALLSOC__' in compile_option_list: + compile_options = compile_option_list['__ALLSOC__'] + return compile_options + +def get_kernel_source(src_file, dir_snake, dir_ex): + src_ex = os.path.join(PYF_PATH, "..", "ascendc", dir_ex, src_file) + if os.path.exists(src_ex): + return src_ex + src = os.path.join(PYF_PATH, "..", "ascendc", dir_snake, src_file) + if os.path.exists(src): + return src + src = os.path.join(PYF_PATH, src_file) + if os.path.exists(src): + return src + return src_ex + +def _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype): + __inputs__ = [] + for arg in [x_in__, axis_in__]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [y_out_]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + else: + __outputs__.append(arg) + __attrs__ = [] + if keep_dims != None: + attr = {} + attr["name"] = "keep_dims" + attr["dtype"] = "bool" + attr["value"] = keep_dims + __attrs__.append(attr) + if ignore_nan != None: + attr = {} + attr["name"] = "ignore_nan" + attr["dtype"] = "bool" + attr["value"] = ignore_nan + __attrs__.append(attr) + if dtype != None: + attr = {} + attr["name"] = "dtype" + attr["dtype"] = "str" + attr["value"] = dtype + __attrs__.append(attr) + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("ReduceSum", trans_bool_to_s8=False) +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_STR, para_check.KERNEL_NAME) +def reduce_sum(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", kernel_name="reduce_sum", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + bisheng = shutil.which("bisheng") + if bisheng != None: + bisheng_path = os.path.dirname(bisheng) + tikcpp_path = os.path.realpath(os.path.join(bisheng_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + options.append("-I" + tikcpp_path) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + options.append("-I" + os.path.join(PYF_PATH, "..", "ascendc", "common")) + if impl_mode == "high_performance": + options.append("-DHIGH_PERFORMANCE=1") + elif impl_mode == "high_precision": + options.append("-DHIGH_PRECISION=1") + if get_default_build_config("enable_deterministic_mode") == 1: + options.append("-DDETEMINISTIC_MODE=1") + + custom_compile_options = {}, + custom_all_compile_options = {}, + soc_version = get_soc_spec("SOC_VERSION") + soc_short = get_soc_spec("SHORT_SOC_VERSION").lower() + custom_compile_options_soc = get_shortsoc_compile_option(custom_compile_options[0], soc_short) + custom_all_compile_options_soc = get_shortsoc_compile_option(custom_all_compile_options[0], soc_short) + options += custom_all_compile_options_soc + options += custom_compile_options_soc + + origin_func_name = "reduce_sum" + ascendc_src_dir_ex = "reduce_sum" + ascendc_src_dir = "reduce_sum" + ascendc_src_file = "reduce_sum.cpp" + src = get_kernel_source(ascendc_src_file, ascendc_src_dir, ascendc_src_dir_ex) + + print("start compile Ascend C operator ReduceSum. kernel name is " + kernel_name) + op_type = "ReduceSum" + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\ + attrs = __attrs__, impl_mode = impl_mode, origin_inputs=[x_in__, axis_in__], origin_outputs = [y_out_], param_type_dynamic = False,\ + mc2_ctx = None, param_type_list = ['required', 'required', 'required']) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("op_select_format", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("get_op_specific_info", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/__pycache__/ReduceSum.cpython-39.pyc b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/__pycache__/ReduceSum.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd9cc442d87eb1a4a0acfa336b346618beea7761 Binary files /dev/null and b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/__pycache__/ReduceSum.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/reduce_sum.cpp b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e8a4d2b929e5df0ce5c9eddf138c2c859dc4d18b --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/binary/ascend310b/src/reduce_sum.cpp @@ -0,0 +1,85 @@ +#include "kernel_operator.h" +using namespace AscendC; + +/* + * Copyright (c) Huawei Technologies Co., Ltd. 2022-2023. All rights reserved. + * + * Function : z = x + y + * This sample is a very basic sample that implements vector add on Ascend plaform. + */ +#include "kernel_operator.h" +using namespace AscendC; + + +class KernelAdd +{ + + +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR axis, GM_ADDR y, uint32_t size, uint16_t *shape, uint32_t axes_size, uint32_t dataType) + { + + + xGm.SetGlobalBuffer((__gm__ half *)x, 32); + + + + yGm.SetGlobalBuffer((__gm__ half *)y, 1); + // y又要多少呢 最少就是消除第一个维度之后的大小 + + pipe.InitBuffer(inQueueX, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(outQueueY, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(tmp1, 2048 * sizeof(float)); + pipe.InitBuffer(tmp2, 2048 * sizeof(float)); + pipe.InitBuffer(tmp3, 2048 * sizeof(float)); + + } + __aicore__ inline void Act() + { + LocalTensor xLocal = inQueueX.AllocTensor(); + LocalTensor yLocal = outQueueY.AllocTensor(); + DataCopy(xLocal, xGm, 32); + + // auto p1 = tmp1.Get(); + // auto p2 = tmp2.Get(); + // auto p3 = tmp3.Get(); + + // Cast(p1, xLocal, RoundMode::CAST_NONE, 32); + // Cast(p2, yLocal, RoundMode::CAST_NONE, 32); + + ReduceSum(yLocal, xLocal, yLocal[32], 32); + // Cast(yLocal, p2, RoundMode::CAST_TRUNC, 32); + yGm.SetValue(0, yLocal.GetValue(0)); + + inQueueX.FreeTensor(xLocal); + outQueueY.FreeTensor(yLocal); + + } + + + +private: + TPipe pipe; + TQue inQueueX; + + TQue outQueueY; + + TBuf tmp1, tmp2, tmp3; + + GlobalTensor xGm; + GlobalTensor yGm; + +}; + +extern "C" __global__ __aicore__ void reduce_sum(GM_ADDR x, GM_ADDR axes, GM_ADDR y, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + KernelAdd op; + op.Init(x, axes, y, tiling_data.size, + tiling_data.shape, tiling_data.axis_size, + tiling_data.dataType); + op.Act(); +} diff --git a/precision_Problem/No_standard/build_out/op_kernel/cmake_install.cmake b/precision_Problem/No_standard/build_out/op_kernel/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5a0cabde143f9419ea727dab96a20feb5bc9c6e8 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/cmake_install.cmake @@ -0,0 +1,108 @@ +# Install script for directory: /Package_Cann/test/No_standard/op_kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Package_Cann/test/No_standard/build_out") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl" TYPE DIRECTORY FILES "/Package_Cann/test/No_standard/build_out/op_kernel/tbe/dynamic") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b/reduce_sum") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/binary_info_config.json") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b/reduce_sum.json") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/Package_Cann/test/No_standard/op_kernel/../build_out/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Package_Cann/test/No_standard/build_out/op_kernel/binary/ascend310b/bin/reduce_sum.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE FILE FILES "/Package_Cann/test/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic" TYPE FILE FILES "/Package_Cann/test/No_standard/op_kernel/reduce_sum.cpp") +endif() + diff --git a/precision_Problem/No_standard/build_out/op_kernel/tbe/.impl_timestamp b/precision_Problem/No_standard/build_out/op_kernel/tbe/.impl_timestamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/precision_Problem/No_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py b/precision_Problem/No_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py new file mode 100644 index 0000000000000000000000000000000000000000..5ce4bbbb4eda5cd146af415b11a7387fd41ac853 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/tbe/dynamic/reduce_sum.py @@ -0,0 +1,205 @@ + +import os, sys +import ctypes +import json +import shutil +from tbe.common.platform import get_soc_spec +from tbe.common.utils import para_check +from tbe.tikcpp import compile_op, replay_op, check_op_cap, generalize_op_params, get_code_channel, OpInfo +from tbe.common.buildcfg import get_default_build_config +from impl.util.platform_adapter import tbe_register +from tbe.common.buildcfg import get_current_build_config +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +DTYPE_MAP = {"float32": ["DT_FLOAT", "float"], + "float16": ["DT_FLOAT16", "half"], + "int8": ["DT_INT8", "int8_t"], + "int16": ["DT_INT16", "int16_t"], + "int32": ["DT_INT32", "int32_t"], + "int64": ["DT_INT64", "int64_t"], + "uint1": ["DT_UINT1", "uint8_t"], + "uint8": ["DT_UINT8", "uint8_t"], + "uint16": ["DT_UINT16", "uint16_t"], + "uint32": ["DT_UINT32", "uint32_t"], + "uint64": ["DT_UINT64", "uint64_t"], + "bool": ["DT_BOOL", "bool"], + "double": ["DT_DOUBLE", "double"], + "dual": ["DT_DUAL", "unknown"], + "dual_sub_int8": ["DT_DUAL_SUB_INT8", "unknown"], + "dual_sub_uint8": ["DT_DUAL_SUB_UINT8", "unknown"], + "string": ["DT_STRING", "unknown"], + "complex64": ["DT_COMPLEX64", "unknown"], + "complex128": ["DT_COMPLEX128", "unknown"], + "qint8": ["DT_QINT8", "unknown"], + "qint16": ["DT_QINT16", "unknown"], + "qint32": ["DT_QINT32", "unknown"], + "quint8": ["DT_QUINT8", "unknown"], + "quint16": ["DT_QUINT16", "unknown"], + "resource": ["DT_RESOURCE", "unknown"], + "string_ref": ["DT_STRING_REF", "unknown"], + "int4": ["DT_INT4", "int4b_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def add_dtype_fmt_option_single(x, x_n, is_ref: bool = False): + options = [] + x_fmt = x.get("format") + x_dtype = x.get("dtype") + x_n_in_kernel = x_n + '_REF' if is_ref else x_n + options.append("-DDTYPE_{n}={t}".format(n=x_n_in_kernel, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n_in_kernel, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n_in_kernel, f=x_fmt)) + return options + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + input_names = ['x', 'axis'] + output_names = ['y'] + unique_param_name_set = set() + for idx, x in enumerate(__inputs__): + if x is None: + continue + x_n = input_names[idx].upper() + unique_param_name_set.add(x_n) + options += add_dtype_fmt_option_single(x, x_n) + + for idx, x in enumerate(__outputs__): + if x is None: + continue + x_n = output_names[idx].upper() + if x_n in unique_param_name_set: + options += add_dtype_fmt_option_single(x, x_n, True) + else: + options += add_dtype_fmt_option_single(x, x_n) + return options + +def load_dso(so_path): + try: + ctypes.CDLL(so_path) + except OSError as error : + print(error) + raise RuntimeError("cannot open %s" %(so_path)) + else: + print("load so succ ", so_path) + +def get_shortsoc_compile_option(compile_option_list: list, shortsoc:str): + compile_options = [] + if shortsoc in compile_option_list: + compile_options = compile_option_list[shortsoc] + elif '__ALLSOC__' in compile_option_list: + compile_options = compile_option_list['__ALLSOC__'] + return compile_options + +def get_kernel_source(src_file, dir_snake, dir_ex): + src_ex = os.path.join(PYF_PATH, "..", "ascendc", dir_ex, src_file) + if os.path.exists(src_ex): + return src_ex + src = os.path.join(PYF_PATH, "..", "ascendc", dir_snake, src_file) + if os.path.exists(src): + return src + src = os.path.join(PYF_PATH, src_file) + if os.path.exists(src): + return src + return src_ex + +def _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype): + __inputs__ = [] + for arg in [x_in__, axis_in__]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [y_out_]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + else: + __outputs__.append(arg) + __attrs__ = [] + if keep_dims != None: + attr = {} + attr["name"] = "keep_dims" + attr["dtype"] = "bool" + attr["value"] = keep_dims + __attrs__.append(attr) + if ignore_nan != None: + attr = {} + attr["name"] = "ignore_nan" + attr["dtype"] = "bool" + attr["value"] = ignore_nan + __attrs__.append(attr) + if dtype != None: + attr = {} + attr["name"] = "dtype" + attr["dtype"] = "str" + attr["value"] = dtype + __attrs__.append(attr) + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("ReduceSum", trans_bool_to_s8=False) +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_BOOL, para_check.OPTION_ATTR_STR, para_check.KERNEL_NAME) +def reduce_sum(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", kernel_name="reduce_sum", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + bisheng = shutil.which("bisheng") + if bisheng != None: + bisheng_path = os.path.dirname(bisheng) + tikcpp_path = os.path.realpath(os.path.join(bisheng_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + options.append("-I" + tikcpp_path) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + options.append("-I" + os.path.join(PYF_PATH, "..", "ascendc", "common")) + if impl_mode == "high_performance": + options.append("-DHIGH_PERFORMANCE=1") + elif impl_mode == "high_precision": + options.append("-DHIGH_PRECISION=1") + if get_default_build_config("enable_deterministic_mode") == 1: + options.append("-DDETEMINISTIC_MODE=1") + + custom_compile_options = {}, + custom_all_compile_options = {}, + soc_version = get_soc_spec("SOC_VERSION") + soc_short = get_soc_spec("SHORT_SOC_VERSION").lower() + custom_compile_options_soc = get_shortsoc_compile_option(custom_compile_options[0], soc_short) + custom_all_compile_options_soc = get_shortsoc_compile_option(custom_all_compile_options[0], soc_short) + options += custom_all_compile_options_soc + options += custom_compile_options_soc + + origin_func_name = "reduce_sum" + ascendc_src_dir_ex = "reduce_sum" + ascendc_src_dir = "reduce_sum" + ascendc_src_file = "reduce_sum.cpp" + src = get_kernel_source(ascendc_src_file, ascendc_src_dir, ascendc_src_dir_ex) + + print("start compile Ascend C operator ReduceSum. kernel name is " + kernel_name) + op_type = "ReduceSum" + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\ + attrs = __attrs__, impl_mode = impl_mode, origin_inputs=[x_in__, axis_in__], origin_outputs = [y_out_], param_type_dynamic = False,\ + mc2_ctx = None, param_type_list = ['required', 'required', 'required']) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("op_select_format", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x_in__, axis_in__, y_out_, keep_dims=False, ignore_nan=False, dtype="float", impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x_in__, axis_in__, y_out_, keep_dims, ignore_nan, dtype) + result = check_op_cap("get_op_specific_info", "ReduceSum", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/precision_Problem/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json b/precision_Problem/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json new file mode 100644 index 0000000000000000000000000000000000000000..19cd398bef0738317d7ca66437c52ef6a2ef9de8 --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json @@ -0,0 +1,73 @@ +{ + "ReduceSum":{ + "attr":{ + "list":"keep_dims,ignore_nan,dtype" + }, + "attr_dtype":{ + "defaultValue":"float", + "paramType":"optional", + "type":"str", + "value":"all" + }, + "attr_ignore_nan":{ + "defaultValue":"false", + "paramType":"optional", + "type":"bool", + "value":"all" + }, + "attr_keep_dims":{ + "defaultValue":"false", + "paramType":"optional", + "type":"bool", + "value":"all" + }, + "dynamicCompileStatic":{ + "flag":"true" + }, + "dynamicFormat":{ + "flag":"true" + }, + "dynamicRankSupport":{ + "flag":"true" + }, + "dynamicShapeSupport":{ + "flag":"true" + }, + "input0":{ + "dtype":"float32,float16,int32,int8", + "format":"ND,ND,ND,ND", + "name":"x", + "paramType":"required", + "shape":"all", + "unknownshape_format":"ND,ND,ND,ND" + }, + "input1":{ + "dtype":"int32,int32,int32,int32", + "format":"ND,ND,ND,ND", + "name":"axis", + "paramType":"required", + "shape":"all", + "unknownshape_format":"ND,ND,ND,ND" + }, + "needCheckSupport":{ + "flag":"false" + }, + "opFile":{ + "value":"reduce_sum" + }, + "opInterface":{ + "value":"reduce_sum" + }, + "output0":{ + "dtype":"float32,float16,int32,int8", + "format":"ND,ND,ND,ND", + "name":"y", + "paramType":"required", + "shape":"all", + "unknownshape_format":"ND,ND,ND,ND" + }, + "precision_reduce":{ + "flag":"true" + } + } +} \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json b/precision_Problem/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json new file mode 100644 index 0000000000000000000000000000000000000000..716e4bbb08b375923beae8f2ec6fb4db1fa3447c --- /dev/null +++ b/precision_Problem/No_standard/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json @@ -0,0 +1,6 @@ +{ + "ReduceSum": { + "isGray": false, + "isHeavy": false + } +} diff --git a/precision_Problem/No_standard/build_out/scripts/help.info b/precision_Problem/No_standard/build_out/scripts/help.info new file mode 100644 index 0000000000000000000000000000000000000000..f4b28d57a8150f0df6c386473b7554c7d087c90f --- /dev/null +++ b/precision_Problem/No_standard/build_out/scripts/help.info @@ -0,0 +1 @@ + --install-path Install operator package to specific dir path \ No newline at end of file diff --git a/precision_Problem/No_standard/build_out/scripts/install.sh b/precision_Problem/No_standard/build_out/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/precision_Problem/No_standard/build_out/scripts/install.sh @@ -0,0 +1,318 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +QUIET="y" + +while true +do + case $1 in + --quiet) + QUIET="y" + shift + ;; + --install-path=*) + INSTALL_PATH=$(echo $1 | cut -d"=" -f2-) + INSTALL_PATH=${INSTALL_PATH%*/} + shift + ;; + --*) + shift + ;; + *) + break + ;; + esac +done + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [ -n "${INSTALL_PATH}" ]; then + if [[ ! "${INSTALL_PATH}" = /* ]]; then + log "[ERROR] use absolute path for --install-path argument" + exit 1 + fi + if [ ! -d ${INSTALL_PATH} ]; then + mkdir ${INSTALL_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${INSTALL_PATH} failed" + exit 1 + fi + fi + targetdir=${INSTALL_PATH} +elif [ -n "${ASCEND_CUSTOM_OPP_PATH}" ]; then + if [ ! -d ${ASCEND_CUSTOM_OPP_PATH} ]; then + mkdir -p ${ASCEND_CUSTOM_OPP_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${ASCEND_CUSTOM_OPP_PATH} failed" + fi + fi + targetdir=${ASCEND_CUSTOM_OPP_PATH} +else + if [ "x${ASCEND_OPP_PATH}" == "x" ]; then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 + fi + targetdir="${ASCEND_OPP_PATH}" +fi + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + has_same_file=-1 + for file_a in ${sourcedir}/$vendordir/$1/*; do + file_b=${file_a##*/}; + if [ "ls ${targetdir}/$vendordir/$1" = "" ]; then + log "[INFO] ${targetdir}/$vendordir/$1 is empty !!" + return 1 + fi + grep -q $file_b <<<`ls ${targetdir}/$vendordir/$1`; + if [[ $? -eq 0 ]]; then + echo -n "${file_b} " + has_same_file=0 + fi + done + if [ 0 -eq $has_same_file ]; then + if test $QUIET = "n"; then + echo "[INFO]: has old version in ${targetdir}/$vendordir/$1, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + + while true + do + read orn + if [ "$orn" = n ]; then + return 0 + elif [ "$orn" = m ]; then + break; + elif [ "$0rn" = r ]; then + [ -n "${targetdir}/$vendordir/$1/" ] && rm -rf "${targetdir}/$vendordir/$1"/* + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace or merge old ops $1 files .g....." + fi + + log "copy new ops $1 files ......" + if [ -d ${targetdir}/$vendordir/$1/ ]; then + chmod -R +w "$targetdir/$vendordir/$1/" >/dev/null 2>&1 + fi + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} +upgrade_proto() +{ + if [ ! -f ${sourcedir}/$vendordir/custom.proto ]; then + log "[INFO] no need to upgrade custom.proto files" + return 0 + fi + if [ ! -d ${targetdir}/$vendordir/framework/caffe ];then + log "[INFO] create ${targetdir}/$vendordir/framework/caffe." + mkdir -p ${targetdir}/$vendordir/framework/caffe + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/framework/caffe failed" + return 1 + fi + else + if [ -f ${targetdir}/$vendordir/framework/caffe/custom.proto ]; then + # 有老版本,判断是否要覆盖式安装 + if test $QUIET = "n"; then + echo "[INFO] ${targetdir}/$vendordir/framework/caffe has old version"\ + "custom.proto file. Do you want to replace? [y/n] " + + while true + do + read yn + if [ "$yn" = n ]; then + return 0 + elif [ "$yn" = y ]; then + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace old caffe.proto files ......" + fi + chmod -R +w "$targetdir/$vendordir/framework/caffe/" >/dev/null 2>&1 + cp -rf ${sourcedir}/$vendordir/custom.proto ${targetdir}/$vendordir/framework/caffe/ + if [ $? -ne 0 ];then + log "[ERROR] copy new custom.proto failed" + return 1 + fi + log "[INFO] copy custom.proto success" + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +delete_optiling_file() +{ + if [ ! -d ${targetdir}/vendors ];then + log "[INFO] $1 not exist, no need to uninstall" + return 0 + fi + sys_info=$(uname -m) + if [ ! -d ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/lib/linux/${sys_info} ];then + rm -rf ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/liboptiling.so + fi + return 0 +} + +log "[INFO] copy uninstall sh success" + +if [ ! -d ${targetdir}/vendors ];then + log "[INFO] create ${targetdir}/vendors." + mkdir -p ${targetdir}/vendors + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/vendors failed" + return 1 + fi +fi +chmod u+w ${targetdir}/vendors + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +delete_optiling_file op_impl +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +upgrade_proto +if [ $? -ne 0 ];then + exit 1 +fi + +# set the set_env.bash +if [ -n "${INSTALL_PATH}" ] && [ -d ${INSTALL_PATH} ]; then + _ASCEND_CUSTOM_OPP_PATH=${targetdir}/${vendordir} + bin_path="${_ASCEND_CUSTOM_OPP_PATH}/bin" + set_env_variable="#!/bin/bash\nexport ASCEND_CUSTOM_OPP_PATH=${_ASCEND_CUSTOM_OPP_PATH}:\${ASCEND_CUSTOM_OPP_PATH}" + if [ ! -d ${bin_path} ]; then + mkdir -p ${bin_path} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${bin_path} failed" + exit 1 + fi + fi + echo -e ${set_env_variable} > ${bin_path}/set_env.bash + if [ $? -ne 0 ]; then + log "[ERROR] write ASCEND_CUSTOM_OPP_PATH to set_env.bash failed" + exit 1 + else + log "[INFO] using requirements: when custom module install finished or before you run the custom module, \ + execute the command [ source ${bin_path}/set_env.bash ] to set the environment path" + fi +else + config_file=${targetdir}/vendors/config.ini + if [ ! -f ${config_file} ]; then + touch ${config_file} + chmod 640 ${config_file} + echo "load_priority=$vendor_name" > ${config_file} + if [ $? -ne 0 ];then + echo "echo load_priority failed" + exit 1 + fi + else + found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" + found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') + vendor=$(echo $found_vendor | tr -s ' ' ',') + if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" + fi + fi +fi + +chmod u-w ${targetdir}/vendors + +if [ -d ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/ ]; then + chmod -R 440 ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/* >/dev/null 2>&1 +fi +if [ -f ${targetdir}/ascend_install.info ]; then + chmod -R 440 ${targetdir}/ascend_install.info +fi +if [ -f ${targetdir}/scene.info ]; then + chmod -R 440 ${targetdir}/scene.info +fi +if [ -f ${targetdir}/version.info ]; then + chmod -R 440 ${targetdir}/version.info +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/No_standard/build_out/scripts/upgrade.sh b/precision_Problem/No_standard/build_out/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/precision_Problem/No_standard/build_out/scripts/upgrade.sh @@ -0,0 +1,151 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [[ "x${ASCEND_OPP_PATH}" == "x" ]];then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 +fi + +targetdir=${ASCEND_OPP_PATH} + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + vendor_installed_dir=$(ls "$targetdir/vendors" 2> /dev/null) + for i in $vendor_installed_dir;do + vendor_installed_file=$(ls "$vendor_installed_dir/$vendor_name/$i" 2> /dev/null) + if [ "$i" = "$vendor_name" ] && [ "$vendor_installed_file" != "" ]; then + echo "[INFO]: $vendor_name custom opp package has been installed on the path $vendor_installed_dir, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + fi + while true + do + read mrn + if [ "$mrn" = m ]; then + break + elif [ "$mrn" = r ]; then + [ -n "$vendor_installed_file"] && rm -rf "$vendor_installed_file" + break + elif [ "$mrn" = n ]; then + return 0 + else + echo "[WARNING]: Input error, please input m or r or n to choose!" + fi + done + done + log "[INFO] replace old ops $1 files ......" + fi + + log "copy new ops $1 files ......" + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +log "[INFO] copy uninstall sh success" + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +config_file=${targetdir}/vendors/config.ini +found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" +found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') +vendor=$(echo $found_vendor | tr -s ' ' ',') +if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" +fi + +changemode() +{ + if [ -d ${targetdir} ];then + chmod -R 550 ${targetdir}>/dev/null 2>&1 + fi + + return 0 +} +echo "[ops_custom]changemode..." +#changemode +if [ $? -ne 0 ];then + exit 1 +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/No_standard/build_out/version.info b/precision_Problem/No_standard/build_out/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/precision_Problem/No_standard/build_out/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/precision_Problem/No_standard/cmake/config.cmake b/precision_Problem/No_standard/cmake/config.cmake new file mode 100644 index 0000000000000000000000000000000000000000..886119daadd85495676c07dfb0b629e3deab8ccf --- /dev/null +++ b/precision_Problem/No_standard/cmake/config.cmake @@ -0,0 +1,25 @@ + +set(CMAKE_CXX_FLAGS_DEBUG "") +set(CMAKE_CXX_FLAGS_RELEASE "") + +if (NOT DEFINED vendor_name) + set(vendor_name customize CACHE STRING "") +endif() +if (NOT DEFINED ASCEND_CANN_PACKAGE_PATH) + set(ASCEND_CANN_PACKAGE_PATH /usr/local/Ascend/latest CACHE PATH "") +endif() +if (NOT DEFINED ASCEND_PYTHON_EXECUTABLE) + set(ASCEND_PYTHON_EXECUTABLE python3 CACHE STRING "") +endif() +if (NOT DEFINED ASCEND_COMPUTE_UNIT) + message(FATAL_ERROR "ASCEND_COMPUTE_UNIT not set in CMakePreset.json ! +") +endif() +set(ASCEND_TENSOR_COMPILER_PATH ${ASCEND_CANN_PACKAGE_PATH}/compiler) +set(ASCEND_CCEC_COMPILER_PATH ${ASCEND_TENSOR_COMPILER_PATH}/ccec_compiler/bin) +set(ASCEND_AUTOGEN_PATH ${CMAKE_BINARY_DIR}/autogen) +set(ASCEND_FRAMEWORK_TYPE tensorflow) +file(MAKE_DIRECTORY ${ASCEND_AUTOGEN_PATH}) +set(CUSTOM_COMPILE_OPTIONS "custom_compile_options.ini") +execute_process(COMMAND rm -rf ${ASCEND_AUTOGEN_PATH}/${CUSTOM_COMPILE_OPTIONS} + COMMAND touch ${ASCEND_AUTOGEN_PATH}/${CUSTOM_COMPILE_OPTIONS}) diff --git a/precision_Problem/No_standard/cmake/func.cmake b/precision_Problem/No_standard/cmake/func.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4179dfd25b41487d5aaf1ac95459543e26ab4fff --- /dev/null +++ b/precision_Problem/No_standard/cmake/func.cmake @@ -0,0 +1,192 @@ + +function(get_system_info SYSTEM_INFO) + if (UNIX) + execute_process(COMMAND grep -i ^id= /etc/os-release OUTPUT_VARIABLE TEMP) + string(REGEX REPLACE "\n|id=|ID=|\"" "" SYSTEM_NAME ${TEMP}) + set(${SYSTEM_INFO} ${SYSTEM_NAME}_${CMAKE_SYSTEM_PROCESSOR} PARENT_SCOPE) + elseif (WIN32) + message(STATUS "System is Windows. Only for pre-build.") + else () + message(FATAL_ERROR "${CMAKE_SYSTEM_NAME} not support.") + endif () +endfunction() + +function(opbuild) + message(STATUS "Opbuild generating sources") + cmake_parse_arguments(OPBUILD "" "OUT_DIR;PROJECT_NAME;ACCESS_PREFIX" "OPS_SRC" ${ARGN}) + execute_process(COMMAND ${CMAKE_COMPILE} -g -fPIC -shared -std=c++11 ${OPBUILD_OPS_SRC} -D_GLIBCXX_USE_CXX11_ABI=0 + -I ${ASCEND_CANN_PACKAGE_PATH}/include -L ${ASCEND_CANN_PACKAGE_PATH}/lib64 -lexe_graph -lregister -ltiling_api + -o ${OPBUILD_OUT_DIR}/libascend_all_ops.so + RESULT_VARIABLE EXEC_RESULT + OUTPUT_VARIABLE EXEC_INFO + ERROR_VARIABLE EXEC_ERROR + ) + if (${EXEC_RESULT}) + message("build ops lib info: ${EXEC_INFO}") + message("build ops lib error: ${EXEC_ERROR}") + message(FATAL_ERROR "opbuild run failed!") + endif() + set(proj_env "") + set(prefix_env "") + if (NOT "${OPBUILD_PROJECT_NAME}x" STREQUAL "x") + set(proj_env "OPS_PROJECT_NAME=${OPBUILD_PROJECT_NAME}") + endif() + if (NOT "${OPBUILD_ACCESS_PREFIX}x" STREQUAL "x") + set(prefix_env "OPS_DIRECT_ACCESS_PREFIX=${OPBUILD_ACCESS_PREFIX}") + endif() + execute_process(COMMAND ${proj_env} ${prefix_env} ${ASCEND_CANN_PACKAGE_PATH}/toolkit/tools/opbuild/op_build + ${OPBUILD_OUT_DIR}/libascend_all_ops.so ${OPBUILD_OUT_DIR} + RESULT_VARIABLE EXEC_RESULT + OUTPUT_VARIABLE EXEC_INFO + ERROR_VARIABLE EXEC_ERROR + ) + if (${EXEC_RESULT}) + message("opbuild ops info: ${EXEC_INFO}") + message("opbuild ops error: ${EXEC_ERROR}") + endif() + message(STATUS "Opbuild generating sources - done") +endfunction() + +function(add_ops_info_target) + cmake_parse_arguments(OPINFO "" "TARGET;OPS_INFO;OUTPUT;INSTALL_DIR" "" ${ARGN}) + get_filename_component(opinfo_file_path "${OPINFO_OUTPUT}" DIRECTORY) + add_custom_command(OUTPUT ${OPINFO_OUTPUT} + COMMAND mkdir -p ${opinfo_file_path} + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/parse_ini_to_json.py + ${OPINFO_OPS_INFO} ${OPINFO_OUTPUT} + ) + add_custom_target(${OPINFO_TARGET} ALL + DEPENDS ${OPINFO_OUTPUT} + ) + install(FILES ${OPINFO_OUTPUT} + DESTINATION ${OPINFO_INSTALL_DIR} + ) +endfunction() + +function(add_ops_compile_options OP_TYPE) + cmake_parse_arguments(OP_COMPILE "" "OP_TYPE" "COMPUTE_UNIT;OPTIONS" ${ARGN}) + file(APPEND ${ASCEND_AUTOGEN_PATH}/${CUSTOM_COMPILE_OPTIONS} + "${OP_TYPE},${OP_COMPILE_COMPUTE_UNIT},${OP_COMPILE_OPTIONS}\n") +endfunction() + +function(add_ops_impl_target) + cmake_parse_arguments(OPIMPL "" "TARGET;OPS_INFO;IMPL_DIR;OUT_DIR;INSTALL_DIR" "OPS_BATCH;OPS_ITERATE" ${ARGN}) + add_custom_command(OUTPUT ${OPIMPL_OUT_DIR}/.impl_timestamp + COMMAND mkdir -m 700 -p ${OPIMPL_OUT_DIR}/dynamic + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_impl_build.py + ${OPIMPL_OPS_INFO} + \"${OPIMPL_OPS_BATCH}\" \"${OPIMPL_OPS_ITERATE}\" + ${OPIMPL_IMPL_DIR} + ${OPIMPL_OUT_DIR}/dynamic + ${ASCEND_AUTOGEN_PATH} + + COMMAND rm -rf ${OPIMPL_OUT_DIR}/.impl_timestamp + COMMAND touch ${OPIMPL_OUT_DIR}/.impl_timestamp + DEPENDS ${OPIMPL_OPS_INFO} + ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_impl_build.py + ) + add_custom_target(${OPIMPL_TARGET} ALL + DEPENDS ${OPIMPL_OUT_DIR}/.impl_timestamp) + if (${ENABLE_SOURCE_PACKAGE}) + install(DIRECTORY ${OPIMPL_OUT_DIR}/dynamic + DESTINATION ${OPIMPL_INSTALL_DIR} + ) + endif() +endfunction() + +function(add_npu_support_target) + cmake_parse_arguments(NPUSUP "" "TARGET;OPS_INFO_DIR;OUT_DIR;INSTALL_DIR" "" ${ARGN}) + get_filename_component(npu_sup_file_path "${NPUSUP_OUT_DIR}" DIRECTORY) + add_custom_command(OUTPUT ${NPUSUP_OUT_DIR}/npu_supported_ops.json + COMMAND mkdir -p ${NPUSUP_OUT_DIR} + COMMAND ${CMAKE_SOURCE_DIR}/cmake/util/gen_ops_filter.sh + ${NPUSUP_OPS_INFO_DIR} + ${NPUSUP_OUT_DIR} + ) + add_custom_target(npu_supported_ops ALL + DEPENDS ${NPUSUP_OUT_DIR}/npu_supported_ops.json + ) + install(FILES ${NPUSUP_OUT_DIR}/npu_supported_ops.json + DESTINATION ${NPUSUP_INSTALL_DIR} + ) +endfunction() + +function(add_bin_compile_target) + cmake_parse_arguments(BINCMP "" "TARGET;OPS_INFO;COMPUTE_UNIT;IMPL_DIR;ADP_DIR;OUT_DIR;INSTALL_DIR" "" ${ARGN}) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/src) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/bin) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/gen) + execute_process(COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_bin_param_build.py + ${BINCMP_OPS_INFO} ${BINCMP_OUT_DIR}/gen ${BINCMP_COMPUTE_UNIT} + RESULT_VARIABLE EXEC_RESULT + OUTPUT_VARIABLE EXEC_INFO + ERROR_VARIABLE EXEC_ERROR + ) + if (${EXEC_RESULT}) + message("ops binary compile scripts gen info: ${EXEC_INFO}") + message("ops binary compile scripts gen error: ${EXEC_ERROR}") + message(FATAL_ERROR "ops binary compile scripts gen failed!") + endif() + if (NOT TARGET binary) + add_custom_target(binary) + endif() + add_custom_target(${BINCMP_TARGET} + COMMAND cp -r ${BINCMP_IMPL_DIR}/*.* ${BINCMP_OUT_DIR}/src + ) + add_custom_target(${BINCMP_TARGET}_gen_ops_config + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/insert_simplified_keys.py -p ${BINCMP_OUT_DIR}/bin + COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_ops_config.py -p ${BINCMP_OUT_DIR}/bin + -s ${BINCMP_COMPUTE_UNIT} + ) + add_dependencies(binary ${BINCMP_TARGET}_gen_ops_config) + file(GLOB bin_scripts ${BINCMP_OUT_DIR}/gen/*.sh) + foreach(bin_script ${bin_scripts}) + get_filename_component(bin_file ${bin_script} NAME_WE) + string(REPLACE "-" ";" bin_sep ${bin_file}) + list(GET bin_sep 0 op_type) + list(GET bin_sep 1 op_file) + list(GET bin_sep 2 op_index) + if (NOT TARGET ${BINCMP_TARGET}_${op_file}_copy) + file(MAKE_DIRECTORY ${BINCMP_OUT_DIR}/bin/${op_file}) + add_custom_target(${BINCMP_TARGET}_${op_file}_copy + COMMAND cp ${BINCMP_ADP_DIR}/${op_file}.py ${BINCMP_OUT_DIR}/src/${op_type}.py + ) + install(DIRECTORY ${BINCMP_OUT_DIR}/bin/${op_file} + DESTINATION ${BINCMP_INSTALL_DIR}/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + install(FILES ${BINCMP_OUT_DIR}/bin/${op_file}.json + DESTINATION ${BINCMP_INSTALL_DIR}/config/${BINCMP_COMPUTE_UNIT}/ OPTIONAL + ) + endif() + add_custom_target(${BINCMP_TARGET}_${op_file}_${op_index} + COMMAND export HI_PYTHON=${ASCEND_PYTHON_EXECUTABLE} && bash ${bin_script} ${BINCMP_OUT_DIR}/src/${op_type}.py ${BINCMP_OUT_DIR}/bin/${op_file} && echo $(MAKE) + WORKING_DIRECTORY ${BINCMP_OUT_DIR} + ) + add_dependencies(${BINCMP_TARGET}_${op_file}_${op_index} ${BINCMP_TARGET} ${BINCMP_TARGET}_${op_file}_copy) + add_dependencies(${BINCMP_TARGET}_gen_ops_config ${BINCMP_TARGET}_${op_file}_${op_index}) + endforeach() + install(FILES ${BINCMP_OUT_DIR}/bin/binary_info_config.json + DESTINATION ${BINCMP_INSTALL_DIR}/config/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + + install(DIRECTORY ${BINCMP_OUT_DIR}/bin/${op_file} + DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../build_out/kernel/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + install(FILES ${BINCMP_OUT_DIR}/bin/binary_info_config.json + DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../build_out/kernel/config/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + install(FILES ${BINCMP_OUT_DIR}/bin/${op_file}.json + DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../build_out/kernel/config/${BINCMP_COMPUTE_UNIT} OPTIONAL + ) + +endfunction() + +function(add_cross_compile_target) + cmake_parse_arguments(CROSSMP "" "TARGET;OUT_DIR;INSTALL_DIR" "" ${ARGN}) + add_custom_target(${CROSSMP_TARGET} ALL + DEPENDS ${CROSSMP_OUT_DIR} + ) + install(DIRECTORY ${CROSSMP_OUT_DIR} + DESTINATION ${CROSSMP_INSTALL_DIR} + ) +endfunction() diff --git a/precision_Problem/No_standard/cmake/intf.cmake b/precision_Problem/No_standard/cmake/intf.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2f362c396622d66132f80f54492a8cc3204882fb --- /dev/null +++ b/precision_Problem/No_standard/cmake/intf.cmake @@ -0,0 +1,26 @@ + +add_library(intf_pub INTERFACE) +target_compile_options(intf_pub INTERFACE + -fPIC + -fvisibility=hidden + -fvisibility-inlines-hidden + $<$:-O2> + $<$:-O0 -g> + $<$:-std=c++11> + $<$,$>:-ftrapv -fstack-check> + $<$:-pthread -Wfloat-equal -Wshadow -Wformat=2 -Wno-deprecated -Wextra> + $,-fstack-protector-strong,-fstack-protector-all> +) +target_compile_definitions(intf_pub INTERFACE + _GLIBCXX_USE_CXX11_ABI=0 + $<$:_FORTIFY_SOURCE=2> +) +target_include_directories(intf_pub INTERFACE ${ASCEND_CANN_PACKAGE_PATH}/include) +target_link_options(intf_pub INTERFACE + $<$,EXECUTABLE>:-pie> + $<$:-s> + -Wl,-z,relro + -Wl,-z,now + -Wl,-z,noexecstack +) +target_link_directories(intf_pub INTERFACE ${ASCEND_CANN_PACKAGE_PATH}/lib64) diff --git a/precision_Problem/No_standard/cmake/makeself.cmake b/precision_Problem/No_standard/cmake/makeself.cmake new file mode 100644 index 0000000000000000000000000000000000000000..48c565bfb4f2edc6534a81abaa8565c4cf2dfc30 --- /dev/null +++ b/precision_Problem/No_standard/cmake/makeself.cmake @@ -0,0 +1,17 @@ +execute_process(COMMAND chmod +x ${CMAKE_CURRENT_LIST_DIR}/util/makeself/makeself.sh) +execute_process(COMMAND ${CMAKE_CURRENT_LIST_DIR}/util/makeself/makeself.sh + --header ${CMAKE_CURRENT_LIST_DIR}/util/makeself/makeself-header.sh + --help-header ./help.info + --gzip --complevel 4 --nomd5 --sha256 + ./ ${CPACK_PACKAGE_FILE_NAME} "version:1.0" ./install.sh + WORKING_DIRECTORY ${CPACK_TEMPORARY_DIRECTORY} + RESULT_VARIABLE EXEC_RESULT + ERROR_VARIABLE EXEC_ERROR +) +if (NOT "${EXEC_RESULT}x" STREQUAL "0x") + message(FATAL_ERROR "CPack Command error: ${EXEC_RESULT}\n${EXEC_ERROR}") +endif() +execute_process(COMMAND cp ${CPACK_EXTERNAL_BUILT_PACKAGES} ${CPACK_PACKAGE_DIRECTORY}/ + COMMAND echo "Copy ${CPACK_EXTERNAL_BUILT_PACKAGES} to ${CPACK_PACKAGE_DIRECTORY}/" + WORKING_DIRECTORY ${CPACK_TEMPORARY_DIRECTORY} +) diff --git a/precision_Problem/No_standard/cmake/util/__init__.py b/precision_Problem/No_standard/cmake/util/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c4ddc893a9275672e046b1311c6ee2d1578f405e --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/__init__.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import sys +import os + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) +sys.path.append(PYF_PATH) diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/__init__.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d4a3baeca0155418546acf1c217c6c07a4bfa41 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/__init__.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_bin_param_build.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_bin_param_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7089839d71bd08c83421585b3f000e16451ba9a2 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_bin_param_build.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_impl_build.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_impl_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..895c9f228edd17f1ccd131164d9c264183fb99d3 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_impl_build.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_ops_config.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_ops_config.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afad532e09d048e309b167165e0effa8f9cf9982 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_ops_config.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_replay_build.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_replay_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..84bfb0d2e3469d9b5ef4438c18c62b462e87ce74 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/ascendc_replay_build.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/code_channel_infer.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/code_channel_infer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5497fa13a5a851c068de4b053bb32c6220f50f57 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/code_channel_infer.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/const_var.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/const_var.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d27150917350d18dce3cccbc1abf42bd6019b88 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/insert_op_info.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/insert_op_info.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ca91a6ba6d427d186c1fe7e80fa71783b8c4829 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/insert_op_info.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/insert_simplified_keys.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/insert_simplified_keys.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..050db729eacc5b667fd11870bfd92208c2851803 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/insert_simplified_keys.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/kernel_entry.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/kernel_entry.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ecdb23b2549f8f4e640993a2040c10b7fc0d0b4b Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/kernel_entry.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e1376fa0186638c0042e66840dd97bdca75ffed1 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/parse_ini_to_json.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/parse_ini_to_json.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8998deeac8dddd1cbf3023282a93b1274007127 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/parse_ini_to_json.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/preset_parse.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/preset_parse.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88fdcf0d637a92c8f45267de944be23bf00356ff Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/preset_parse.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/replay_codegen.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/replay_codegen.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e742fd36e703620fd0a1b1def33b090dea6744f0 Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/replay_codegen.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/__pycache__/tiling_data_def_build.cpython-39.pyc b/precision_Problem/No_standard/cmake/util/__pycache__/tiling_data_def_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91be34d1a7eedf2a61d7531815b564ad84c855ae Binary files /dev/null and b/precision_Problem/No_standard/cmake/util/__pycache__/tiling_data_def_build.cpython-39.pyc differ diff --git a/precision_Problem/No_standard/cmake/util/ascendc_bin_param_build.py b/precision_Problem/No_standard/cmake/util/ascendc_bin_param_build.py new file mode 100644 index 0000000000000000000000000000000000000000..63b15c90044e4f66de0eca571e9ddad4372f17fa --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/ascendc_bin_param_build.py @@ -0,0 +1,127 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import json +import hashlib +import const_var +import opdesc_parser + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + + +class BinParamBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + super().__init__(op_type) + self.soc = '' + self.out_path = '' + + def set_soc_version(self: any, soc: str): + self.soc = soc + + def set_out_path(self: any, out_path: str): + self.out_path = out_path + + def gen_input_json(self: any): + key_map = {} + count = len(self.input_dtype[0].split(',')) + for i in range(0, count): + inputs = [] + outputs = [] + attrs = [] + op_node = {} + for idx in range(0, len(self.input_name)): + idtypes = self.input_dtype[idx].split(',') + ifmts = self.input_fmt[idx].split(',') + itype = self.input_type[idx] + para = {} + para['name'] = self.input_name[idx][:-5] + para['index'] = idx + para['dtype'] = idtypes[i] + para['format'] = ifmts[i] + para['paramType'] = itype + para['shape'] = [-2] + if itype == 'dynamic': + inputs.append([para]) + else: + inputs.append(para) + for idx in range(0, len(self.output_name)): + odtypes = self.output_dtype[idx].split(',') + ofmts = self.output_fmt[idx].split(',') + otype = self.output_type[idx] + para = {} + para['name'] = self.output_name[idx][:-5] + para['index'] = idx + para['dtype'] = odtypes[i] + para['format'] = ofmts[i] + para['paramType'] = otype + para['shape'] = [-2] + if otype == 'dynamic': + outputs.append([para]) + else: + outputs.append(para) + for attr in self.attr_list: + att = {} + att['name'] = attr + atype = self.attr_val.get(attr).get('type').lower() + att['dtype'] = atype + att['value'] = const_var.ATTR_DEF_VAL.get(atype) + attrs.append(att) + op_node['bin_filename'] = '' + op_node['inputs'] = inputs + op_node['outputs'] = outputs + if len(attrs) > 0: + op_node['attrs'] = attrs + param = {} + param['op_type'] = self.op_type + param['op_list'] = [op_node] + objstr = json.dumps(param, indent=' ') + md5sum = hashlib.md5(objstr.encode('utf-8')).hexdigest() + while key_map.get(md5sum) is not None: + objstr += '1' + md5sum = hashlib.md5(objstr.encode('utf-8')).hexdigest() + key_map[md5sum] = md5sum + bin_file = self.op_type + '_' + md5sum + op_node['bin_filename'] = bin_file + param_file = os.path.join(self.out_path, bin_file + '_param.json') + param_file = os.path.realpath(param_file) + with os.fdopen(os.open(param_file, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + json.dump(param, fd, indent=' ') + self._write_buld_cmd(param_file, bin_file, i) + + def _write_buld_cmd(self: any, param_file: str, bin_file: str, index: int): + hard_soc = const_var.SOC_MAP_EXT.get(self.soc) + if not hard_soc: + hard_soc = self.soc.capitalize() + name_com = [self.op_type, self.op_file, str(index)] + compile_file = os.path.join(self.out_path, '-'.join(name_com) + '.sh') + compile_file = os.path.realpath(compile_file) + with os.fdopen(os.open(compile_file, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + fd.write('#!/bin/bash\n') + fd.write('echo "[{}] Generating {} ..."\n'.format(hard_soc, bin_file)) + cmd = const_var.BIN_CMD.format(fun=self.op_intf, soc=hard_soc, param=param_file, impl='""') + fd.write(cmd) + chk = const_var.CHK_CMD.format(res_file=bin_file + '.json') + fd.write(chk) + chk = const_var.CHK_CMD.format(res_file=bin_file + '.o') + fd.write(chk) + fd.write('echo "[{}] Generating {} Done"\n'.format(hard_soc, bin_file)) + + +def gen_bin_param_file(cfgfile: str, out_dir: str, soc: str): + op_descs = opdesc_parser.get_op_desc(cfgfile, [], [], BinParamBuilder, None) + for op_desc in op_descs: + op_desc.set_soc_version(soc) + op_desc.set_out_path(out_dir) + op_desc.gen_input_json() + + +if __name__ == '__main__': + if len(sys.argv) <= 3: + raise RuntimeError('arguments must greater than 3') + gen_bin_param_file(sys.argv[1], sys.argv[2], sys.argv[3]) diff --git a/precision_Problem/No_standard/cmake/util/ascendc_impl_build.py b/precision_Problem/No_standard/cmake/util/ascendc_impl_build.py new file mode 100644 index 0000000000000000000000000000000000000000..647801c07120019b0ffdf02eb316bc27dc200132 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/ascendc_impl_build.py @@ -0,0 +1,501 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import re +import opdesc_parser +import const_var + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +IMPL_HEAD = ''' +import os, sys +import ctypes +import json +import shutil +from tbe.common.platform import get_soc_spec +from tbe.common.utils import para_check +from tbe.tikcpp import compile_op, replay_op, check_op_cap, generalize_op_params, get_code_channel, OpInfo +from tbe.common.buildcfg import get_default_build_config +from impl.util.platform_adapter import tbe_register +from tbe.common.buildcfg import get_current_build_config +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + +DTYPE_MAP = {{"float32": ["DT_FLOAT", "float"], + "float16": ["DT_FLOAT16", "half"], + "int8": ["DT_INT8", "int8_t"], + "int16": ["DT_INT16", "int16_t"], + "int32": ["DT_INT32", "int32_t"], + "int64": ["DT_INT64", "int64_t"], + "uint1": ["DT_UINT1", "uint8_t"], + "uint8": ["DT_UINT8", "uint8_t"], + "uint16": ["DT_UINT16", "uint16_t"], + "uint32": ["DT_UINT32", "uint32_t"], + "uint64": ["DT_UINT64", "uint64_t"], + "bool": ["DT_BOOL", "bool"], + "double": ["DT_DOUBLE", "double"], + "dual": ["DT_DUAL", "unknown"], + "dual_sub_int8": ["DT_DUAL_SUB_INT8", "unknown"], + "dual_sub_uint8": ["DT_DUAL_SUB_UINT8", "unknown"], + "string": ["DT_STRING", "unknown"], + "complex64": ["DT_COMPLEX64", "unknown"], + "complex128": ["DT_COMPLEX128", "unknown"], + "qint8": ["DT_QINT8", "unknown"], + "qint16": ["DT_QINT16", "unknown"], + "qint32": ["DT_QINT32", "unknown"], + "quint8": ["DT_QUINT8", "unknown"], + "quint16": ["DT_QUINT16", "unknown"], + "resource": ["DT_RESOURCE", "unknown"], + "string_ref": ["DT_STRING_REF", "unknown"], + "int4": ["DT_INT4", "int4b_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]}} + +def add_dtype_fmt_option_single(x, x_n, is_ref: bool = False): + options = [] + x_fmt = x.get("format") + x_dtype = x.get("dtype") + x_n_in_kernel = x_n + '_REF' if is_ref else x_n + options.append("-DDTYPE_{{n}}={{t}}".format(n=x_n_in_kernel, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{{n}}={{ot}}".format(n=x_n_in_kernel, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{{n}}=FORMAT_{{f}}".format(n=x_n_in_kernel, f=x_fmt)) + return options + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + input_names = {} + output_names = {} + unique_param_name_set = set() + for idx, x in enumerate(__inputs__): + if x is None: + continue + x_n = input_names[idx].upper() + unique_param_name_set.add(x_n) + options += add_dtype_fmt_option_single(x, x_n) + + for idx, x in enumerate(__outputs__): + if x is None: + continue + x_n = output_names[idx].upper() + if x_n in unique_param_name_set: + options += add_dtype_fmt_option_single(x, x_n, True) + else: + options += add_dtype_fmt_option_single(x, x_n) + return options + +def load_dso(so_path): + try: + ctypes.CDLL(so_path) + except OSError as error : + print(error) + raise RuntimeError("cannot open %s" %(so_path)) + else: + print("load so succ ", so_path) + +def get_shortsoc_compile_option(compile_option_list: list, shortsoc:str): + compile_options = [] + if shortsoc in compile_option_list: + compile_options = compile_option_list[shortsoc] + elif '__ALLSOC__' in compile_option_list: + compile_options = compile_option_list['__ALLSOC__'] + return compile_options + +def get_kernel_source(src_file, dir_snake, dir_ex): + src_ex = os.path.join(PYF_PATH, "..", "ascendc", dir_ex, src_file) + if os.path.exists(src_ex): + return src_ex + src = os.path.join(PYF_PATH, "..", "ascendc", dir_snake, src_file) + if os.path.exists(src): + return src + src = os.path.join(PYF_PATH, src_file) + if os.path.exists(src): + return src + return src_ex + +''' + +IMPL_API = ''' +@tbe_register.register_operator("{}", trans_bool_to_s8=False) +@para_check.check_op_params({}) +def {}({}, kernel_name="{}", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args({}) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + bisheng = shutil.which("bisheng") + if bisheng != None: + bisheng_path = os.path.dirname(bisheng) + tikcpp_path = os.path.realpath(os.path.join(bisheng_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + options.append("-I" + tikcpp_path) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + options.append("-I" + os.path.join(PYF_PATH, "..", "ascendc", "common")) + if impl_mode == "high_performance": + options.append("-DHIGH_PERFORMANCE=1") + elif impl_mode == "high_precision": + options.append("-DHIGH_PRECISION=1") + if get_default_build_config("enable_deterministic_mode") == 1: + options.append("-DDETEMINISTIC_MODE=1") + + custom_compile_options = {}, + custom_all_compile_options = {}, + soc_version = get_soc_spec("SOC_VERSION") + soc_short = get_soc_spec("SHORT_SOC_VERSION").lower() + custom_compile_options_soc = get_shortsoc_compile_option(custom_compile_options[0], soc_short) + custom_all_compile_options_soc = get_shortsoc_compile_option(custom_all_compile_options[0], soc_short) + options += custom_all_compile_options_soc + options += custom_compile_options_soc + + origin_func_name = "{}" + ascendc_src_dir_ex = "{}" + ascendc_src_dir = "{}" + ascendc_src_file = "{}" + src = get_kernel_source(ascendc_src_file, ascendc_src_dir, ascendc_src_dir_ex) +''' + +REPLAY_OP_API = ''' + print("start replay Acend C Operator {}, kernel name is {}") + tikreplay_codegen_path = tikcpp_path + "/tikreplaylib/lib" + tikreplay_stub_path = tikcpp_path + "/tikreplaylib/lib/" + soc_version + print("start load libtikreplaylib_codegen.so and libtikreplaylib_stub.so") + codegen_so_path = tikreplay_codegen_path + "/libtikreplaylib_codegen.so" + replaystub_so_path = tikreplay_stub_path + "/libtikreplaylib_stub.so" + if PYF_PATH.endswith("dynamic"): + op_replay_path = os.path.join(PYF_PATH, "..", "..", "op_replay") + else: + op_replay_path = os.path.join(PYF_PATH, "..", "op_replay") + replayapi_so_path = os.path.join(op_replay_path, "libreplay_{}_" + soc_short + ".so") + load_dso(codegen_so_path) + load_dso(replaystub_so_path) + load_dso(replayapi_so_path) + op_type = "{}" + entry_obj = os.path.join(op_replay_path, "{}_entry_" + soc_short + ".o") + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\\ + attrs = __attrs__, impl_mode = impl_mode) + res, msg = replay_op(op_info, entry_obj, code_channel, src, options) + if not res: + print("call replay op failed for %s and get into call compile op" %(msg)) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') +''' + +COMPILE_OP_API = ''' + print("start compile Ascend C operator {}. kernel name is " + kernel_name) + op_type = "{}" + code_channel = get_code_channel(src, kernel_name, op_type, options) + op_info = OpInfo(kernel_name = kernel_name, op_type = op_type, inputs = __inputs__, outputs = __outputs__,\\ + attrs = __attrs__, impl_mode = impl_mode, origin_inputs=[{}], origin_outputs = [{}], param_type_dynamic = {},\\ + mc2_ctx = None, param_type_list = {}) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') +''' + +SUP_API = ''' +def {}({}, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args({}) + ret_str = check_op_cap("{}", "{}", __inputs__, __outputs__, __attrs__) + ret_dict = json.loads(ret_str) + err_code = ret_dict.get("ret_code") + sup = "Unknown" + reason = "Unknown reason" + if err_code is not None: + if err_code is 0: + sup = "True" + reason = "" + elif err_code is 1: + sup = "False" + reason = ret_dict.get("reason") + else: + sup = "Unknown" + reason = ret_dict.get("reason") + return sup, reason +''' +CAP_API = ''' +def {}({}, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args({}) + result = check_op_cap("{}", "{}", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") +''' +GLZ_API = ''' +@tbe_register.register_param_generalization("{}") +def {}_generalization({}, generalize_config=None): + __inputs__, __outputs__, __attrs__ = _build_args({}) + ret_str = generalize_op_params("{}", __inputs__, __outputs__, __attrs__, generalize_config) + return [json.loads(ret_str)] +''' + +ATTR_DEFAULT = {'bool': 'False', 'int': '0', 'float': '0.0', 'list_int': '[]', + 'list_float': '[]', 'list_bool': '[]', 'list_list_int': '[[]]', 'str': ''} + + +def _get_snake_str(s, i): + if s[i - 1] != '_': + if not s[i - 1].isupper(): + return "_" + elif s[i - 1].isupper() and (i + 1) < len(s) and s[i + 1].islower(): + return "_" + return "" + return "" + + +def optype_snake(origin_str): + temp_str = origin_str[0].lower() + origin_str[1:] + new_str = re.sub(r'([A-Z])', r'_\1', temp_str).lower() + return new_str + + +def optype_snake_ex(s): + snake_case = "" + for i, c in enumerate(s): + if i == 0: + snake_case += c.lower() + elif c.isupper(): + snake_case += _get_snake_str(s, i) + snake_case += c.lower() + else: + snake_case += c + return snake_case + + +class AdpBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + self.argsdefv = [] + self.op_compile_option:str = '{}' + super().__init__(op_type) + + + def write_adapt(self: any, impl_path, path: str, op_compile_option_all:list = None): + self._build_paradefault() + if impl_path != "": + src_file = os.path.join(impl_path, self.op_file + '.cpp') + if not os.path.exists(src_file): + return + out_path = os.path.abspath(path) + if self.dynamic_shape and not out_path.endswith('dynamic'): + out_path = os.path.join(path, 'dynamic') + os.makedirs(out_path, mode=0o700, exist_ok=True) + adpfile = os.path.join(out_path, self.op_file + '.py') + self._gen_op_compile_option(op_compile_option_all) + with os.fdopen(os.open(adpfile, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + self._write_head(fd) + self._write_argparse(fd) + self._write_impl(fd) + if self.op_chk_support: + self._write_cap('check_supported', fd) + self._write_cap('get_op_support_info', fd) + if self.op_fmt_sel: + self._write_cap('op_select_format', fd) + self._write_cap('get_op_specific_info', fd) + if self.op_range_limit == 'limited' or self.op_range_limit == 'dynamic': + self._write_glz(fd) + + + def _gen_op_compile_option(self:any, op_compile_option_all:list =None): + if op_compile_option_all is not None: + if self.op_type in op_compile_option_all: + self.op_compile_option = op_compile_option_all[self.op_type] + elif "__all__" in op_compile_option_all: + self.op_compile_option = op_compile_option_all["__all__"] + + + def _ip_argpack(self: any, default: bool = True) -> list: + args = [] + for i in range(len(self.input_name)): + arg = self.input_name[i] + if default and self.argsdefv[i] is not None: + arg += '=' + self.argsdefv[i] + args.append(arg) + return args + + def _op_argpack(self: any, default: bool = True) -> list: + args = [] + argidx = len(self.input_name) + for i in range(len(self.output_name)): + arg = self.output_name[i] + if default and self.argsdefv[i + argidx] is not None: + arg += '=' + self.argsdefv[i + argidx] + args.append(arg) + return args + + def _attr_argpack(self: any, default: bool = True) -> list: + args = [] + argidx = len(self.input_name) + len(self.output_name) + for i in range(len(self.attr_list)): + att = self.attr_list[i] + arg = att + if default and self.argsdefv[i + argidx] is not None: + if self.attr_val.get(att).get('type') == 'str': + arg += '="' + self.argsdefv[i + argidx] + '"' + elif self.attr_val.get(att).get('type') == 'bool': + arg += '=' + self.argsdefv[i + argidx].capitalize() + else: + arg += '=' + self.argsdefv[i + argidx] + args.append(arg) + return args + + def _build_paralist(self: any, default: bool = True) -> str: + args = [] + args.extend(self._ip_argpack(default)) + args.extend(self._op_argpack(default)) + args.extend(self._attr_argpack(default)) + return ', '.join(args) + + def _io_parachk(self: any, types: list, type_name: str) -> list: + chk = [] + for iot in types: + if iot == 'optional': + ptype = 'OPTION' + else: + ptype = iot.upper() + chk.append('para_check.{}_{}'.format(ptype, type_name)) + return chk + + def _attr_parachk(self: any) -> list: + chk = [] + for att in self.attr_list: + if self.attr_val.get(att).get('paramType') == 'optional': + pt = 'OPTION' + else: + pt = self.attr_val.get(att).get('paramType').upper() + att_type = self.attr_val.get(att).get('type').upper() + chk.append('para_check.{}_ATTR_{}'.format(pt, att_type)) + return chk + + def _build_parachk(self: any) -> str: + chk = [] + chk.extend(self._io_parachk(self.input_type, 'INPUT')) + chk.extend(self._io_parachk(self.output_type, 'OUTPUT')) + chk.extend(self._attr_parachk()) + chk.append('para_check.KERNEL_NAME') + return ', '.join(chk) + + def _build_paradefault(self: any): + optional = False + argtypes = [] + argtypes.extend(self.input_type) + argtypes.extend(self.output_type) + for atype in argtypes: + if atype == 'optional': + optional = True + if optional: + self.argsdefv.append('None') + else: + self.argsdefv.append(None) + for attr in self.attr_list: + atype = self.attr_val.get(attr).get('paramType') + if atype == 'optional': + optional = True + attrval = self.attr_val.get(attr).get('defaultValue') + if attrval is not None: + optional = True + if type == "bool": + attrval = attrval.capitalize() + elif type == "str": + attrval = "\"" + attrval + "\"" + self.argsdefv.append(attrval) + continue + if optional: + self.argsdefv.append(ATTR_DEFAULT.get(self.attr_val.get(attr).get('type'))) + else: + self.argsdefv.append(None) + + def _write_head(self: any, fd: object): + fd.write(IMPL_HEAD.format(self.input_ori_name, self.output_ori_name)) + + def _write_argparse(self: any, fd: object): + args = self._build_paralist(False) + fd.write('def _build_args({}):\n'.format(args)) + fd.write(' __inputs__ = []\n') + fd.write(' for arg in [{}]:\n'.format(', '.join(self.input_name))) + fd.write(' if arg != None:\n') + fd.write(' if isinstance(arg, (list, tuple)):\n') + fd.write(' if len(arg) == 0:\n') + fd.write(' continue\n') + fd.write(' __inputs__.append(arg[0])\n') + fd.write(' else:\n') + fd.write(' __inputs__.append(arg)\n') + fd.write(' else:\n') + fd.write(' __inputs__.append(arg)\n') + fd.write(' __outputs__ = []\n') + fd.write(' for arg in [{}]:\n'.format(', '.join(self.output_name))) + fd.write(' if arg != None:\n') + fd.write(' if isinstance(arg, (list, tuple)):\n') + fd.write(' if len(arg) == 0:\n') + fd.write(' continue\n') + fd.write(' __outputs__.append(arg[0])\n') + fd.write(' else:\n') + fd.write(' __outputs__.append(arg)\n') + fd.write(' else:\n') + fd.write(' __outputs__.append(arg)\n') + fd.write(' __attrs__ = []\n') + for attr in self.attr_list: + fd.write(' if {} != None:\n'.format(attr)) + fd.write(' attr = {}\n') + fd.write(' attr["name"] = "{}"\n'.format(attr)) + fd.write(' attr["dtype"] = "{}"\n'.format(self.attr_val.get(attr).get('type'))) + fd.write(' attr["value"] = {}\n'.format(attr)) + fd.write(' __attrs__.append(attr)\n') + fd.write(' return __inputs__, __outputs__, __attrs__\n') + + def _write_impl(self: any, fd: object): + argsdef = self._build_paralist() + argsval = self._build_paralist(False) + pchk = self._build_parachk() + if len(self.kern_name) > 0: + kern_name = self.kern_name + else: + kern_name = self.op_intf + src = self.op_file + '.cpp' + fd.write(IMPL_API.format(self.op_type, pchk, self.op_intf, argsdef, kern_name, argsval,\ + self.custom_compile_options, self.custom_all_compile_options, self.op_intf,\ + optype_snake_ex(self.op_type), optype_snake(self.op_type), src)) + if self.op_replay_flag: + fd.write(REPLAY_OP_API.format(self.op_type, kern_name, self.op_file, self.op_type, self.op_file,\ + self.op_compile_option)) + else: + fd.write(COMPILE_OP_API.format(self.op_type, self.op_type, ', '.join(self.input_name),\ + ', '.join(self.output_name), False, self.input_type + self.output_type, self.op_compile_option)) + + def _write_cap(self: any, cap_name: str, fd: object): + argsdef = self._build_paralist() + argsval = self._build_paralist(False) + if cap_name == 'check_supported': + fd.write(SUP_API.format(cap_name, argsdef, argsval, cap_name, self.op_type)) + else: + fd.write(CAP_API.format(cap_name, argsdef, argsval, cap_name, self.op_type)) + + def _write_glz(self: any, fd: object): + argsdef = self._build_paralist() + argsval = self._build_paralist(False) + fd.write(GLZ_API.format(self.op_type, self.op_intf, argsdef, argsval, self.op_type)) + + +def write_scripts(cfgfile: str, cfgs: dict, dirs: dict, ops: list = None, op_compile_option:list = None): + batch_lists = cfgs.get(const_var.REPLAY_BATCH).split(';') + iterator_lists = cfgs.get(const_var.REPLAY_ITERATE).split(';') + file_map = {} + op_descs = opdesc_parser.get_op_desc(cfgfile, batch_lists, iterator_lists, AdpBuilder,\ + ops, dirs.get(const_var.AUTO_GEN_DIR)) + for op_desc in op_descs: + op_desc.write_adapt(dirs.get(const_var.CFG_IMPL_DIR), dirs.get(const_var.CFG_OUT_DIR), op_compile_option) + file_map[op_desc.op_type] = op_desc.op_file + return file_map + +if __name__ == '__main__': + if len(sys.argv) <= 6: + raise RuntimeError('arguments must greater equal than 6') + rep_cfg = {} + rep_cfg[const_var.REPLAY_BATCH] = sys.argv[2] + rep_cfg[const_var.REPLAY_ITERATE] = sys.argv[3] + cfg_dir = {} + cfg_dir[const_var.CFG_IMPL_DIR] = sys.argv[4] + cfg_dir[const_var.CFG_OUT_DIR] = sys.argv[5] + cfg_dir[const_var.AUTO_GEN_DIR] = sys.argv[6] + write_scripts(cfgfile=sys.argv[1], cfgs=rep_cfg, dirs=cfg_dir) diff --git a/precision_Problem/No_standard/cmake/util/ascendc_ops_config.py b/precision_Problem/No_standard/cmake/util/ascendc_ops_config.py new file mode 100644 index 0000000000000000000000000000000000000000..b138047af00816bd6c802919e492e1671f0f79e4 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/ascendc_ops_config.py @@ -0,0 +1,120 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import glob +import json +import argparse +import const_var + + +def load_json(json_file: str): + with open(json_file, encoding='utf-8') as file: + json_content = json.load(file) + return json_content + + +def get_specified_suffix_file(root_dir, suffix): + specified_suffix = os.path.join(root_dir, '**/*.{}'.format(suffix)) + all_suffix_files = glob.glob(specified_suffix, recursive=True) + return all_suffix_files + + +def add_simplified_config(op_type, key, core_type, task_ration, objfile, config): + simple_cfg = config.get('binary_info_config.json') + op_cfg = simple_cfg.get(op_type) + if not op_cfg: + op_cfg = {} + op_cfg['dynamicRankSupport'] = True + op_cfg['simplifiedKeyMode'] = 0 + op_cfg['binaryList'] = [] + simple_cfg[op_type] = op_cfg + bin_list = op_cfg.get('binaryList') + if core_type == 0 and task_ration == "tilingKey": + bin_list.append({'coreType': core_type, 'simplifiedKey': key, \ + 'multiKernelType':1, 'binPath': objfile}) + else: + bin_list.append({'coreType': core_type, 'simplifiedKey': key, 'binPath': objfile}) + + +def add_op_config(op_file, bin_info, config): + op_cfg = config.get(op_file) + if not op_cfg: + op_cfg = {} + op_cfg['binList'] = [] + config[op_file] = op_cfg + op_cfg.get('binList').append(bin_info) + + +def gen_ops_config(json_file, soc, config): + core_type_map = {'MIX': 0, 'AiCore': 1, 'VectorCore': 2, 'MIX_AICORE':3, 'MIX_VECTOR_CORE':4} + contents = load_json(json_file) + if ('binFileName' not in contents) or ('supportInfo' not in contents): + return + json_base_name = os.path.basename(json_file) + op_dir = os.path.basename(os.path.dirname(json_file)) + support_info = contents.get('supportInfo') + bin_name = contents.get('binFileName') + bin_suffix = contents.get('binFileSuffix') + task_ration = contents.get('taskRation') + core_type = core_type_map.get(contents.get("coreType")) + bin_file_name = bin_name + bin_suffix + op_type = bin_name.split('_')[0] + op_file = op_dir + '.json' + bin_info = {} + keys = support_info.get('simplifiedKey') + if keys: + bin_info['simplifiedKey'] = keys + for key in keys: + add_simplified_config(op_type, key, core_type, task_ration, os.path.join(soc, op_dir, bin_file_name), \ + config) + bin_info['staticKey'] = support_info.get('staticKey') + bin_info['int64Mode'] = support_info.get('int64Mode') + bin_info['inputs'] = support_info.get('inputs') + bin_info['outputs'] = support_info.get('outputs') + if support_info.get('attrs'): + bin_info['attrs'] = support_info.get('attrs') + bin_info['binInfo'] = {'jsonFilePath': os.path.join(soc, op_dir, json_base_name)} + add_op_config(op_file, bin_info, config) + + +def gen_all_config(root_dir, soc): + suffix = 'json' + config = {} + config['binary_info_config.json'] = {} + all_json_files = get_specified_suffix_file(root_dir, suffix) + for _json in all_json_files: + gen_ops_config(_json, soc, config) + for cfg_key in config.keys(): + cfg_file = os.path.join(root_dir, cfg_key) + with os.fdopen(os.open(cfg_file, const_var.WFLAGS, const_var.WMODES), 'w') as fd: + json.dump(config.get(cfg_key), fd, indent=' ') + + +def args_prase(): + parser = argparse.ArgumentParser() + parser.add_argument('-p', + '--path', + nargs='?', + required=True, + help='Parse the path of the json file.') + parser.add_argument('-s', + '--soc', + nargs='?', + required=True, + help='Parse the soc_version of ops.') + return parser.parse_args() + + +def main(): + args = args_prase() + gen_all_config(args.path, args.soc) + + +if __name__ == '__main__': + main() diff --git a/precision_Problem/No_standard/cmake/util/ascendc_replay_build.py b/precision_Problem/No_standard/cmake/util/ascendc_replay_build.py new file mode 100644 index 0000000000000000000000000000000000000000..1cac7d911b84df4f3ef3a83ce9cac65ce2e89e0b --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/ascendc_replay_build.py @@ -0,0 +1,65 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os +import opdesc_parser +import replay_codegen +import const_var +from replay_codegen import ReplayCodeGenParams + +PYF_PATH = os.path.dirname(os.path.realpath(__file__)) + + +class ReplayBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + super().__init__(op_type) + + def gen_replay_source(self: any, impl_path: str, out_path: str, ops_product: str): + if not self.op_replay_flag: + print('{} replay not enabled'.format(self.op_type)) + return + argn = len(self.input_name) + len(self.output_name) + 1 + if self.op_replay_batch: + print('{} replay in batch mode'.format(self.op_type)) + else: + print('{} replay in normal mode'.format(self.op_type)) + if impl_path.endswith('op_kernel'): + implf = os.path.join(impl_path, self.op_file + '.cpp') + tiling_file = os.path.join(impl_path, "../op_host", self.op_file + '_tiling.h') + else: + if self.dynamic_shape: + dyn_path = 'dynamic' + else: + dyn_path = '' + implf = os.path.join(impl_path, dyn_path, self.op_file + '.cpp') + tiling_file = os.path.join(impl_path, "../../op_tiling", self.op_file + '_tiling.h') + rep_conf = replay_codegen.ReplayCodeGen(ReplayCodeGenParams(self.op_type, implf, tiling_file, self.op_file, \ + self.op_intf, argn, self.op_replay_batch, self.max_block_dim, self.max_shape_size)) + rep_conf.set_batch(self.op_replay_batch) + rep_conf.set_outdir(out_path) + rep_conf.gen_replay(ops_product) + + +def gen_replay(cfgfile: str, cfgs: dict, dirs: dict, ops_product: str, ops: list = None): + batch_lists = cfgs.get(const_var.REPLAY_BATCH).split(';') + iterator_lists = cfgs.get(const_var.REPLAY_ITERATE).split(';') + op_descs = opdesc_parser.get_op_desc(cfgfile, batch_lists, iterator_lists, ReplayBuilder, ops) + for op_desc in op_descs: + op_desc.gen_replay_source(dirs.get(const_var.CFG_IMPL_DIR), dirs.get(const_var.CFG_OUT_DIR), ops_product) + + +if __name__ == '__main__': + if len(sys.argv) <= 6: + raise RuntimeError('arguments must greater than 6') + rep_cfg = {} + rep_cfg[const_var.REPLAY_BATCH] = sys.argv[2] + rep_cfg[const_var.REPLAY_ITERATE] = sys.argv[3] + rep_dir = {} + rep_dir[const_var.CFG_IMPL_DIR] = sys.argv[4] + rep_dir[const_var.CFG_OUT_DIR] = sys.argv[5] + gen_replay(sys.argv[1], rep_cfg, rep_dir, sys.argv[6]) diff --git a/precision_Problem/No_standard/cmake/util/batch_replay_impl.temp b/precision_Problem/No_standard/cmake/util/batch_replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..0e88346642009514af64265b4da24c9946e3ebbf --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/batch_replay_impl.temp @@ -0,0 +1,117 @@ +#include +#include +#include +#include +#include +#include +#include +#include "replay_def.h" +#include "code_gen.h" +#include "replay_fun.h" +#include "register/op_check.h" +#define __ASCENDC_REPLAY_CODE__ +#include + +using namespace std; +using namespace optiling; +using namespace AscendCReplay; + +extern "C" void __KERNEL_FUN__ (__ARGS_DEF__, const char *); +extern "C" int elf_batch_append(char *elf, uint32_t elfSize, char *jit, int kernum, char *atext[], int alen[], + int atlen, const char* kernelname[]); + +#define KERNEL_N 1 +#define ARG_N (__ARG_NUM__) +#define MAX_L (1024 * 1024 * 100) +#define MAX_E (1024 * 1024) + +int __KERNEL_FUN___replay___OPS_PRODUCT__(ReplayFuncParam& param, const int core_type) +{ + // gen type 1 : direct call codes 0: load .o file + if (param.gentype < 0 || param.gentype > 1) { + printf("Error: call replay gen type is %d, should only be 1 or 0\n", param.gentype); + return 0; + } else if (param.gentype == 1 && param.objptr == nullptr) { + printf("Error: call replay with direct call mode, but code obj addr is null\n"); + return 0; + } else if (param.gentype == 0 && param.output_kernel_file == nullptr) { + printf("Error: call replay with object file mode, but object file path is null\n"); + return 0; + } + // core_type 0:MIX 1:CUBE 2:VEC + if (core_type < 0 || core_type > 2) { + printf("Error: call replay core type is %d !\n", core_type); + return 0; + } + g_coreType = __CORE_TYPE__; + g_taskRation = param.task_ration; + g_tilingKey = param.tiling_key; + + unsigned char *buf, *jit; + char *kernel[KERNEL_N]; + int len[KERNEL_N]; + block_idx = 0; + block_num = param.block_dim; + g_ubBase = block_num; + uint8_t *code = (uint8_t *)malloc(MAX_L); + uint8_t *pos = code; + struct timespec tp1, tp2; + + clock_gettime(CLOCK_MONOTONIC, &tp1); + if (block_num > 32) { + printf("Error: block_num > 32\n"); + return 0; + } + //__OP_FOPEN__ + for (int i = 0; i < KERNEL_N; i++) { + //__OP_SET_KERNEL__ + for (int j = 0; j < ARG_N; j++) + AddArg(j, ARG_STEP * (j + 1)); +#ifdef FP_CEILING + SetCtrlFloatEnable(); +#else + SetCtrlFloatDisable(); +#endif + CodeInit(pos, true); + __KERNEL_FUN__(__KERNEL_ARGS__, param.tiling_data); + CodeEnd(); + kernel[i] = (char *)pos; + len[i] = CodeLen(); + pos += len[i]; + } + //__OP_FCLOSE__ + clock_gettime(CLOCK_MONOTONIC, &tp2); + buf = (unsigned char *)malloc(MAX_E); + int fd = open(param.entry_file, O_RDONLY); + if (fd < 0) { + printf("[error]: cannot find entry.o : %s\n", param.entry_file); + return 0; + } + uint32_t bufSize = read(fd, buf, MAX_E); + if (bufSize <= 0) { + printf("[error]: entry.o : %s is too small ! \n", param.entry_file); + } + close(fd); + jit = (unsigned char *)malloc(MAX_L); + printf("total code generated %ld\n", pos - code); + int sz = elf_batch_append((char *)buf, bufSize, (char *)jit, KERNEL_N, kernel, len, pos - code, ¶m.kernel_name); + if (tp1.tv_sec != tp2.tv_sec) { + printf("%ld NS\n", tp2.tv_nsec + 1000000000 - tp1.tv_nsec); + } else { + printf("%ld NS\n", tp2.tv_nsec - tp1.tv_nsec); + } + printf("new elf size %d\n", sz); + if (param.gentype == 0) { + fd = open(param.output_kernel_file, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); + (void)write(fd, jit, sz); + close(fd); + free(jit); + } else if (param.gentype == 1) { + *param.objptr = (char*)jit; + } + free(buf); + free(code); + return sz; +} + +REG_REPLAY_FUNC(__OPTYPE__, __OPS_PRODUCT__, __KERNEL_FUN___replay___OPS_PRODUCT__); diff --git a/precision_Problem/No_standard/cmake/util/code_channel_infer.py b/precision_Problem/No_standard/cmake/util/code_channel_infer.py new file mode 100644 index 0000000000000000000000000000000000000000..336b4cdb21a25ad9eac22e7c0555912cca4ff2eb --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/code_channel_infer.py @@ -0,0 +1,58 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" +import os +import stat +import ctypes +import collections +import shutil +import subprocess +import copy + +"""CODE_* is used to cube/vector api is called in operator code +CODE_MIX means both cube and vector api is called +CODE_CUBE means only cube api is called +CODE_VEC means only vector api is called +""" +CODE_MIX = 0 +CODE_CUBE = 1 +CODE_VEC = 2 + + +def _is_v220(op_product: str): + """return if current soc version is V220 + + Returns: + res: True means V220 + """ + if op_product in ["ascend910b"]: + return True + return False + + +InfoCodeChanelParams = collections.namedtuple('InfoCodeChanelParams',\ +['src_file', 'tiling_header', 'kernel_name', 'outdir', 'op_product', 'compile_options']) + + +def infer_code_channel(params: InfoCodeChanelParams): + """get code channel for v220, return CODE_MIX if soc version is not V220 + + Args: + src_file (str): AscendC operator code file + src_file (str): AscendC operator tiling header file + kernel_name (str): kernel function name + optype (str): operator type + compile_options (list): compile options for bisheng cmd + + Raises: + Exception: if not exist L1/L0/UB if code, it's not a aicore code + + Returns: + res (int): CODE_MIX/CODE_CUBE/CODE_VEC + """ + if not _is_v220(params.op_product): + return CODE_MIX + return CODE_VEC diff --git a/precision_Problem/No_standard/cmake/util/const_var.py b/precision_Problem/No_standard/cmake/util/const_var.py new file mode 100644 index 0000000000000000000000000000000000000000..8b32c3b915d0aaaf1f366cf95cf1a337e8959c89 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/const_var.py @@ -0,0 +1,33 @@ + +#!/usr/bin/env python +# coding=utf-8 +""" +Function: +The replay funtion entry +Copyright Information: +Huawei Technologies Co., Ltd. All Rights Reserved © 2020 +""" + +import os +import stat + + +REPLAY_BATCH = 'batch' +REPLAY_ITERATE = 'iterate' +CFG_IMPL_DIR = 'impl_dir' +CFG_OUT_DIR = 'out_dir' +AUTO_GEN_DIR = 'auto_gen_dir' +WFLAGS = os.O_WRONLY | os.O_CREAT | os.O_TRUNC +WMODES = stat.S_IWUSR | stat.S_IRUSR +SOC_MAP_EXT = {'ascend310p': 'Ascend310P3', 'ascend310b': 'Ascend310B1', + 'ascend910': 'Ascend910A', 'ascend910b': 'Ascend910B1'} +BIN_CMD = 'opc $1 --main_func={fun} --input_param={param} --soc_version={soc} \ +--output=$2 --impl_mode={impl} --simplified_key_mode=0 --op_mode=dynamic\n' +CHK_CMD = ''' +if ! test -f $2/{res_file} ; then + echo "$2/{res_file} not generated!" + exit 1 +fi +''' +ATTR_DEF_VAL = {'str' : '', 'int': 0, 'float': 0.0, 'bool': False, 'list_bool': [], + 'list_int': [], 'list_float': [], 'list_list_int': [[]]} diff --git a/precision_Problem/No_standard/cmake/util/gen_impl_and_mrege_json.sh b/precision_Problem/No_standard/cmake/util/gen_impl_and_mrege_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..492034e490953962006055b8e078c3c05a6d2d72 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/gen_impl_and_mrege_json.sh @@ -0,0 +1,20 @@ +#!/usr/bin/bash + +project_path=$1 +build_path=$2 +vendor_name=customize +if [[ ! -d "$project_path" ]]; then + echo "[ERROR] No projcet path is provided" + exit 1 +fi + +if [[ ! -d "$build_path" ]]; then + echo "[ERROR] No build path is provided" + exit 1 +fi + +# copy aicpu kernel so operators +if [[ -d "${project_path}/cpukernel/aicpu_kernel_lib" ]]; then + cp -f ${project_path}/cpukernel/aicpu_kernel_lib/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/cpu/aicpu_kernel/impl + rm -rf ${project_path}/cpukernel/aicpu_kernel_lib +fi diff --git a/precision_Problem/No_standard/cmake/util/gen_ops_filter.sh b/precision_Problem/No_standard/cmake/util/gen_ops_filter.sh new file mode 100644 index 0000000000000000000000000000000000000000..d4c27d17feb8617dfee0f6fd3262c36583033339 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/gen_ops_filter.sh @@ -0,0 +1,62 @@ +#!/bin/bash +# Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +# Description: Generate npu_supported_ops.json +# ============================================================================== + +if [[ -z "$1" ]]; then + echo -e "[ERROR] No source dir provided" + exit 1 +fi + +if [[ -z "$2" ]]; then + echo -e "[ERROR] No destination dir provided" + exit 1 +fi + +src=$1 +dest_file=$2/npu_supported_ops.json + +if [ -f "$dest_file" ];then + chmod u+w $dest_file +fi + +echo $* + +add_ops() { + name=$1 + isHeavy=$2 + file=$3 + grep -w "\"$name\"" ${file} >/dev/null + if [ $? == 0 ];then + return + fi + echo " \"${name}\": {" >> ${file} + echo " \"isGray\": false," >> ${file} + echo " \"isHeavy\": ${isHeavy}" >> ${file} + echo " }," >> ${file} +} + +echo "{" > ${dest_file} +ini_files=$(find ${src} -name "*.ini") +for file in ${ini_files} ; do + name=$(grep '^\[' ${file} | sed 's/\[//g' | sed 's/]//g' | sed 's/\r//g') + grep 'heavyOp.flag' ${file} >/dev/null + if [ $? == 0 ];then + isHeavy=$(grep 'heavyOp.flag' ${file} | awk -F= '{print $2}') + else + isHeavy="false" + fi + for op in ${name} ; do + add_ops ${op} "false" ${dest_file} + done +done +echo "}" >> ${dest_file} +file_count=$(cat ${dest_file} | wc -l) +line=$(($file_count-1)) +sed -i "${line}{s/,//g}" ${dest_file} + +chmod 640 "${dest_file}" +echo -e "[INFO] Succed generated ${dest_file}" + +exit 0 + diff --git a/precision_Problem/No_standard/cmake/util/gen_version_info.sh b/precision_Problem/No_standard/cmake/util/gen_version_info.sh new file mode 100644 index 0000000000000000000000000000000000000000..a06cfc78d29482807d086b880375533cd0a3679e --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/gen_version_info.sh @@ -0,0 +1,6 @@ +ascend_install_dir=$1 +gen_file_dir=$2 + +# create version.info +compiler_version=$(grep "Version" -w ${ascend_install_dir}/compiler/version.info | awk -F = '{print $2}') +echo "custom_opp_compiler_version=${compiler_version}" > ${gen_file_dir}/version.info \ No newline at end of file diff --git a/precision_Problem/No_standard/cmake/util/insert_op_info.py b/precision_Problem/No_standard/cmake/util/insert_op_info.py new file mode 100644 index 0000000000000000000000000000000000000000..28ba08757c9301391a8f4005ae8fb0b290e43950 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/insert_op_info.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" +import json +import os +import sys +import stat +import const_var + + +if __name__ == '__main__': + if len(sys.argv) != 3: + print(sys.argv) + print('argv error, inert_op_info.py your_op_file lib_op_file') + sys.exit(2) + + with open(sys.argv[1], 'r') as load_f: + insert_operator = json.load(load_f) + + all_operators = {} + if os.path.exists(sys.argv[2]): + if os.path.getsize(sys.argv[2]) != 0: + with open(sys.argv[2], 'r') as load_f: + all_operators = json.load(load_f) + + for k in insert_operator.keys(): + if k in all_operators.keys(): + print('replace op:[', k, '] success') + else: + print('insert op:[', k, '] success') + all_operators[k] = insert_operator[k] + + with os.fdopen(os.open(sys.argv[2], const_var.WFLAGS, const_var.WMODES), 'w') as json_file: + json_file.write(json.dumps(all_operators, indent=4)) diff --git a/precision_Problem/No_standard/cmake/util/insert_simplified_keys.py b/precision_Problem/No_standard/cmake/util/insert_simplified_keys.py new file mode 100644 index 0000000000000000000000000000000000000000..7e8dc2c558c9add8c7244c18a365acaa2e9a76a6 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/insert_simplified_keys.py @@ -0,0 +1,242 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import os +import re +import glob +import json +import argparse + + +DATA_TPYE_DICT = { + 'float32': 0, + 'float16': 1, + 'int8': 2, + 'int16': 6, + 'uint16': 7, + 'uint8': 4, + 'int32': 3, + 'int64': 9, + 'uint32': 8, + 'uint64': 10, + 'bool': 12, + 'double': 11, + 'complex64': 16, + 'complex128': 17, + 'qint8': 18, + 'qint16': 19, + 'qint32': 20, + 'quint8': 21, + 'quint16': 22, + 'resource': 23, + 'string': 24, + 'dual': 25, + 'variant': 26, + 'bf16': 27, + 'bfloat16': 27, + 'undefined': 28, + 'int4': 29, + 'uint1': 30, + 'int2': 31 +} + +FORMAT_DICT = { + 'NCHW': 0, + 'NHWC': 1, + 'ND': 2, + 'NC1HWC0': 3, + 'FRACTAL_Z': 4, + 'NC1C0HWPAD': 5, + 'NHWC1C0': 6, + 'FSR_NCHW': 7, + 'FRACTAL_DECONV': 8, + 'C1HWNC0': 9, + 'FRACTAL_DECONV_TRANSPOSE': 10, + 'FRACTAL_DECONV_SP_STRIDE_TRANS': 11, + 'NC1HWC0_C04': 12, + 'FRACTAL_Z_C04': 13, + 'CHWN': 14, + 'FRACTAL_DECONV_SP_STRIDE8_TRANS': 15, + 'HWCN': 16, + 'NC1KHKWHWC0': 17, + 'BN_WEIGHT': 18, + 'FILTER_HWCK': 19, + 'HASHTABLE_LOOKUP_LOOKUPS': 20, + 'HASHTABLE_LOOKUP_KEYS': 21, + 'HASHTABLE_LOOKUP_VALUE': 22, + 'HASHTABLE_LOOKUP_OUTPUT': 23, + 'HASHTABLE_LOOKUP_HITS': 24, + 'C1HWNCoC0': 25, + 'MD': 26, + 'NDHWC': 27, + 'FRACTAL_ZZ': 28, + 'FRACTAL_NZ': 29, + 'NCDHW': 30, + 'DHWCN': 31, + 'NDC1HWC0': 32, + 'FRACTAL_Z_3D': 33, + 'CN': 34, + 'NC': 35, + 'DHWNC': 36, + 'FRACTAL_Z_3D_TRANSPOSE': 37, + 'FRACTAL_ZN_LSTM': 38, + 'FRACTAL_Z_G': 39, + 'RESERVED': 40, + 'ALL': 41, + 'NULL': 42, + 'ND_RNN_BIAS': 43, + 'FRACTAL_ZN_RNN': 44, + 'NYUV': 45, + 'NYUV_A': 46 +} + + +def load_json(json_file: str): + with open(json_file, encoding='utf-8') as file: + json_content = json.load(file) + return json_content + + +def get_specified_suffix_file(root_dir, suffix): + specified_suffix = os.path.join(root_dir, '**/*.{}'.format(suffix)) + all_suffix_files = glob.glob(specified_suffix, recursive=True) + return all_suffix_files + + +def get_deterministic_value(support_info): + deterministic_key = 'deterministic' + if deterministic_key not in support_info: + return 0 + deterministic_value = support_info.get(deterministic_key) + if deterministic_value == 'true': + return 1 + else: + return 0 + + +def get_precision_value(support_info): + precision_key = 'implMode' + precision_value = support_info.get(precision_key) + if precision_value == 'high_performance': + _value = 1 + elif precision_value == 'high_precision': + _value = 2 + else: + _value = 0 + return _value + + +def get_overflow_value(support_info): + return 0 + + +def get_parameters(info): + if info: + if 'dtype' in info: + data_type = info['dtype'] + data_type_value = DATA_TPYE_DICT.get(data_type) + else: + data_type_value = 0 + if 'format' in info: + _format = info['format'] + _format_value = FORMAT_DICT.get(_format) + else: + _format_value = 0 + else: + data_type_value = 0 + _format_value = 0 + return str(data_type_value), str(_format_value) + + +def get_dynamic_parameters(info): + # 动态输入时只需获取第一个参数 + return get_parameters(info[0]) + + +def get_all_parameters(support_info, _type): + result_list = list() + info_lists = support_info.get(_type) + if info_lists: + for _info in info_lists: + # 输入为列表时是动态输入 + if isinstance(_info, (list, tuple)): + data_type_value, _format_value = get_dynamic_parameters(_info) + else: + data_type_value, _format_value = get_parameters(_info) + result_list.append("{},{}".format(data_type_value, _format_value)) + return result_list + + +def get_all_input_parameters(support_info): + result = get_all_parameters(support_info, 'inputs') + return '/'.join(result) + + +def insert_content_into_file(input_file, content): + with open(input_file, 'r+') as file: + lines = file.readlines() + for index, line in enumerate(lines): + match_result = re.search(r'"staticKey":', line) + if match_result: + count = len(line) - len(line.lstrip()) + new_content = "{}{}".format(' ' * count, content) + # 插入到前一行,防止插入最后时还需要考虑是否添加逗号 + lines.insert(index, new_content) + break + file.seek(0) + file.write(''.join(lines)) + + +def insert_simplified_keys(json_file): + contents = load_json(json_file) + # 不存在'binFileName'或者'supportInfo'字段时,非需要替换的解析json文件 + if ('binFileName' not in contents) or ('supportInfo' not in contents): + return + support_info = contents.get('supportInfo') + bin_file_name = contents.get('binFileName') + # 'simplifiedKey'字段已经存在时,直接返回,不重复生成 + if 'simplifiedKey' in support_info: + return + op_type = bin_file_name.split('_')[0] + deterministic = str(get_deterministic_value(support_info)) + precision = str(get_precision_value(support_info)) + overflow = str(get_overflow_value(support_info)) + input_parameters = get_all_input_parameters(support_info) + key = '{}/d={},p={},o={}/{}/'.format( + op_type, + deterministic, + precision, + overflow, + input_parameters) + result = '"simplifiedKey": "' + key + '",\n' + insert_content_into_file(json_file, result) + + +def insert_all_simplified_keys(root_dir): + suffix = 'json' + all_json_files = get_specified_suffix_file(root_dir, suffix) + for _json in all_json_files: + insert_simplified_keys(_json) + + +def args_prase(): + parser = argparse.ArgumentParser() + parser.add_argument('-p', + '--path', + nargs='?', + required=True, + help='Parse the path of the json file.') + return parser.parse_args() + + +def main(): + args = args_prase() + insert_all_simplified_keys(args.path) + + +if __name__ == '__main__': + main() diff --git a/precision_Problem/No_standard/cmake/util/kernel_entry.py b/precision_Problem/No_standard/cmake/util/kernel_entry.py new file mode 100644 index 0000000000000000000000000000000000000000..2b77c970d4e6c1f0aaca07572cd8c7221ac00e22 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/kernel_entry.py @@ -0,0 +1,115 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + + +def gen_fun_def(title, kernel, argn, arg_type, arg_name): + entry = [] + entry.append(title) + entry.append(kernel) + entry.append('(') + args = [] + for i in range(0, argn): + args.append(arg_type + ' ' + arg_name + str(i)) + entry.append(', '.join(args)) + entry.append(')') + return ' '.join(entry) + + +def gen_batch_kernel_body(fname, argn, arg_name): + body = [] + body.append('{') + fun = [] + fun.append(fname) + fun.append('(') + args = [] + for i in range(0, argn): + args.append(arg_name + str(i)) + fun.append(', '.join(args)) + fun.append(');') + body.append(' '.join(fun)) + body.append('}') + return '\n'.join(body) + + +def gen_mc_kernel_body(kn, argn, arg_name, blknum): + body = [] + body.append('{') + body.append(' switch(block_idx) {') + for blk in range(0, blknum): + fun = [] + fun.append('{}_blk{:02d}'.format(kn, blk)) + fun.append('(') + args = [] + for i in range(0, argn): + args.append(arg_name + str(i)) + fun.append(', '.join(args)) + fun.append(')') + body.append(' case {}: {}; break;'.format(blk, ' '.join(fun))) + body.append(' default: break;') + body.append(' }') + body.append('}') + return '\n'.join(body) + + +def gen_proc_body(argn, arg_name): + body = [] + body.append('{') + args = [] + for i in range(0, argn): + args.append(arg_name + str(i)) + body.append('uint64_t __x = (uint64_t)' + ' + (uint64_t)'.join(args) + ';') + body.append('__asm__ ("NOP");') + body.append('__asm__ ("NOP");') + body.append('__asm__ ("NOP");') + body.append('}') + return '\n'.join(body) + + +def batch_code_gen(kn, argn, argt): + codes = [] + kernel_name = kn + proc_name = kernel_name + '_percore' + arg_num = int(argn) + data_type = argt + arg_type = '__gm__ ' + data_type + '* __restrict__' + arg_name = 'arg' + kernel_title = 'extern \"C\" __global__ __aicore__ void' + proc_title = 'extern \"C\" __attribute__((noinline)) __aicore__ void' + codes.append('#ifndef __aicore__') + codes.append('#define __aicore__ [aicore]') + codes.append('#endif') + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name) + ';') + codes.append(gen_fun_def(kernel_title, kernel_name, arg_num, arg_type, arg_name)) + codes.append(gen_batch_kernel_body(proc_name, arg_num, arg_name)) + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name)) + codes.append(gen_proc_body(arg_num, arg_name)) + return '\n'.join(codes) + '\n' + + +def mc_code_gen(kn, argn, argt, blknum): + codes = [] + kernel_name = kn + core_num = int(blknum) + arg_num = int(argn) + data_type = argt + arg_type = '__gm__ ' + data_type + '* __restrict__' + arg_name = 'arg' + kernel_title = 'extern \"C\" __global__ __aicore__ void' + proc_title = 'extern \"C\" __attribute__((noinline)) __aicore__ void' + codes.append('#ifndef __aicore__') + codes.append('#define __aicore__ [aicore]') + codes.append('#endif') + for i in range(0, core_num): + proc_name = '{}_blk{:02d}'.format(kernel_name, i) + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name) + ';') + codes.append(gen_fun_def(kernel_title, kernel_name, arg_num, arg_type, arg_name)) + codes.append(gen_mc_kernel_body(kernel_name, arg_num, arg_name, core_num)) + for i in range(0, core_num): + proc_name = '{}_blk{:02d}'.format(kernel_name, i) + codes.append(gen_fun_def(proc_title, proc_name, arg_num, arg_type, arg_name)) + codes.append(gen_proc_body(arg_num, arg_name)) + return '\n'.join(codes) + '\n' diff --git a/precision_Problem/No_standard/cmake/util/kernel_impl.temp b/precision_Problem/No_standard/cmake/util/kernel_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..5079a1043a25cd6b73449e708ceae40807cb03a1 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/kernel_impl.temp @@ -0,0 +1,10 @@ +#include +#include +#include +#include +#include +#include "replay_def.h" +#include "code_gen.h" +#include "replay_fun.h" +#define __ASCENDC_REPLAY_CODE__ +#include "__CCE_FILE__" diff --git a/precision_Problem/No_standard/cmake/util/makeself/COPYING b/precision_Problem/No_standard/cmake/util/makeself/COPYING new file mode 100644 index 0000000000000000000000000000000000000000..d159169d1050894d3ea3b98e1c965c4058208fe1 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/precision_Problem/No_standard/cmake/util/makeself/README.md b/precision_Problem/No_standard/cmake/util/makeself/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b41f0168201e8596e6cb8dc8754d606581d18dcf --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/README.md @@ -0,0 +1,246 @@ +[![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) +![Build Status](https://github.com/megastep/makeself/workflows/CI/badge.svg) + +# makeself - Make self-extractable archives on Unix + +[makeself.sh][1] is a small shell script that generates a self-extractable +compressed tar archive from a directory. The resulting file appears as a shell script +(many of those have a **.run** suffix), and can be launched as is. The archive +will then uncompress itself to a temporary directory and an optional arbitrary +command will be executed (for example an installation script). This is pretty +similar to archives generated with WinZip Self-Extractor in the Windows world. +Makeself archives also include checksums for integrity self-validation (CRC +and/or MD5/SHA256 checksums). + +The makeself.sh script itself is used only to create the archives from a +directory of files. The resultant archive is actually a compressed (using +gzip, bzip2, or compress) TAR archive, with a small shell script stub at the +beginning. This small stub performs all the steps of extracting the files, +running the embedded command, and removing the temporary files when done. +All the user has to do to install the software contained in such an +archive is to "run" the archive, i.e **sh nice-software.run**. I recommend +using the ".run" (which was introduced by some Makeself archives released by +Loki Software) or ".sh" suffix for such archives not to confuse the users, +so that they will know they are actually shell scripts (with quite a lot of binary data +attached to them though!). + +I am trying to keep the code of this script as portable as possible, i.e it is +not relying on any bash-specific features and only calls commands that are +installed on any functioning UNIX-compatible system. This script as well as +the archives it generates should run on any Unix flavor, with any compatible +Bourne shell, provided of course that the compression programs are available. + +As of version 2.1, Makeself has been rewritten and tested on the following +platforms : + + * Linux (all distributions) + * Sun Solaris (8 and above) + * HP-UX (tested on 11.0 and 11i on HPPA RISC) + * SCO OpenUnix and OpenServer + * IBM AIX 5.1L + * macOS (Darwin) + * SGI IRIX 6.5 + * FreeBSD + * UnicOS / Cray + * Cygwin (Windows) + +If you successfully run Makeself and/or archives created with it on another +system, then please [let me know][2]! + +Examples of publicly available archives made using makeself are : + + * Game patches and installers for [Id Software][3] games like Quake 3 for Linux or Return To Castle Wolfenstein ; + * All game patches released by [Loki Software][4] for the Linux version of popular games ; + * The [nVidia drivers][5] for Linux + * The installer for the Linux version of [Google Earth][6] + * The [VirtualBox][7] installers for Linux + * The [Makeself][1] distribution itself ;-) + * and countless others... + +**Important note for Apache users:** By default, most Web servers will think that Makeself archives are regular text files and thus they may show up as text in a Web browser. The correct way to prevent this is to add a MIME type for this file format, like so (in httpd.conf) : + +`AddType application/x-makeself .run` + +**Important note for certain GNU/Linux distributions:** Archives created with Makeself prior to v2.1.2 were using an old syntax for the _head_ and _tail_ Unix commands that is being progressively obsoleted in their GNU forms. Therefore you may have problems uncompressing some of these archives. A workaround for this is to set the environment variable $_POSIX2_VERSION to enable the old syntax, i.e. : + +`export _POSIX2_VERSION=199209` + +## Usage + +The syntax of makeself is the following: + +``` +makeself.sh [args] archive_dir file_name label startup_script [script_args] +``` + + * _args_ are optional options for Makeself. The available ones are : + + * **`--version`** : Prints the version number on stdout, then exits immediately + * **`--gzip`** : Use gzip for compression (the default on platforms on which gzip is commonly available, like Linux) + * **`--bzip2`** : Use bzip2 instead of gzip for better compression. The bzip2 command must be available in the command path. It is recommended that the archive prefix be set to something like '.bz2.run', so that potential users know that they'll need bzip2 to extract it. + * **`--pbzip2`** : Use pbzip2 instead of gzip for better and faster compression on machines having multiple CPUs. The pbzip2 command must be available in the command path. It is recommended that the archive prefix be set to something like '.bz2.run', so that potential users know that they'll need bzip2 to extract it. + * **`--xz`** : Use xz instead of gzip for better compression. The xz command must be available in the command path. It is recommended that the archive prefix be set to something like '.xz.run' for the archive, so that potential users know that they'll need xz to extract it. + * **`--lzo`** : Use lzop instead of gzip for better compression. The lzop command must be available in the command path. It is recommended that the archive prefix be set to something like `.lzo.run` for the archive, so that potential users know that they'll need lzop to extract it. + * **`--lz4`** : Use lz4 instead of gzip for better compression. The lz4 command must be available in the command path. It is recommended that the archive prefix be set to something like '.lz4.run' for the archive, so that potential users know that they'll need lz4 to extract it. + * **`--zstd`** : Use zstd instead of gzip for better compression. The zstd command must be available in the command path. It is recommended that the archive prefix be set to something like '.zstd.run' for the archive, so that potential users know that they'll need zstd to extract it. + * **`--pigz`** : Use pigz for compression. + * **`--base64`** : Encode the archive to ASCII in Base64 format instead of compressing (base64 command required). + * **`--gpg-encrypt`** : Encrypt the archive using `gpg -ac -z $COMPRESS_LEVEL`. This will prompt for a password to encrypt with. Assumes that potential users have `gpg` installed. + * **`--ssl-encrypt`** : Encrypt the archive using `openssl aes-256-cbc -a -salt`. This will prompt for a password to encrypt with. Assumes that the potential users have the OpenSSL tools installed. + * **`--compress`** : Use the UNIX `compress` command to compress the data. This should be the default on all platforms that don't have gzip available. + * **`--nocomp`** : Do not use any compression for the archive, which will then be an uncompressed TAR. + * **`--complevel`** : Specify the compression level for gzip, bzip2, pbzip2, zstd, xz, lzo or lz4. (defaults to 9) + * **`--threads`** : Specify the number of threads to be used by compressors that support parallelization. Omit to use compressor's default. Most useful (and required) for opting into xz's threading, usually with `--threads=0` for all available cores. pbzip2 and pigz are parallel by default, and setting this value allows limiting the number of threads they use. + * **`--notemp`** : The generated archive will not extract the files to a temporary directory, but in a new directory created in the current directory. This is better to distribute software packages that may extract and compile by themselves (i.e. launch the compilation through the embedded script). + * **`--current`** : Files will be extracted to the current directory, instead of in a subdirectory. This option implies `--notemp` above. + * **`--follow`** : Follow the symbolic links inside of the archive directory, i.e. store the files that are being pointed to instead of the links themselves. + * **`--append`** _(new in 2.1.x)_: Append data to an existing archive, instead of creating a new one. In this mode, the settings from the original archive are reused (compression type, label, embedded script), and thus don't need to be specified again on the command line. + * **`--header`** : Makeself uses a separate file to store the header stub, called `makeself-header.sh`. By default, it is assumed that it is stored in the same location as makeself.sh. This option can be used to specify its actual location if it is stored someplace else. + * **`--cleanup`** : Specify a script that is run when execution is interrupted or finishes successfully. The script is executed with the same environment and initial `script_args` as `startup_script`. + * **`--copy`** : Upon extraction, the archive will first extract itself to a temporary directory. The main application of this is to allow self-contained installers stored in a Makeself archive on a CD, when the installer program will later need to unmount the CD and allow a new one to be inserted. This prevents "Filesystem busy" errors for installers that span multiple CDs. + * **`--nox11`** : Disable the automatic spawning of a new terminal in X11. + * **`--nowait`** : When executed from a new X11 terminal, disable the user prompt at the end of the script execution. + * **`--nomd5`** and **`--nocrc`** : Disable the creation of a MD5 / CRC checksum for the archive. This speeds up the extraction process if integrity checking is not necessary. + * **`--sha256`** : Adds a SHA256 checksum for the archive. This is in addition to the MD5 / CRC checksums unless `--nomd5` is also used. + * **`--lsm` _file_** : Provide and LSM file to makeself, that will be embedded in the generated archive. LSM files are describing a software package in a way that is easily parseable. The LSM entry can then be later retrieved using the `--lsm` argument to the archive. An example of a LSM file is provided with Makeself. + * **`--tar-format opt`** : Specify the tar archive format (default is ustar); you may use any value accepted by your tar command (such as posix, v7, etc). + * **`--tar-extra opt`** : Append more options to the tar command line. + + For instance, in order to exclude the `.git` directory from the packaged archive directory using the GNU `tar`, one can use `makeself.sh --tar-extra "--exclude=.git" ...` + + * **`--keep-umask`** : Keep the umask set to shell default, rather than overriding when executing self-extracting archive. + * **`--packaging-date date`** : Use provided string as the packaging date instead of the current date. + * **`--license`** : Append a license file. + * **`--nooverwrite`** : Do not extract the archive if the specified target directory already exists. + * **`--help-header file`** : Add a header to the archive's `--help` output. + * `archive_dir` is the name of the directory that contains the files to be archived + * `file_name` is the name of the archive to be created + * `label` is an arbitrary text string describing the package. It will be displayed while extracting the files. + * `startup_script` is the command to be executed _from within_ the directory of extracted files. Thus, if you wish to execute a program contained in this directory, you must prefix your command with `./`. For example, `./program` will be fine. The `script_args` are additional arguments for this command. + +Here is an example, assuming the user has a package image stored in a **/home/joe/mysoft**, and he wants to generate a self-extracting package named +**mysoft.sh**, which will launch the "setup" script initially stored in /home/joe/mysoft : + +`makeself.sh /home/joe/mysoft mysoft.sh "Joe's Nice Software Package" ./setup +` + +Here is also how I created the [makeself.run][9] archive which contains the Makeself distribution : + +`makeself.sh --notemp makeself makeself.run "Makeself by Stephane Peter" echo "Makeself has extracted itself" ` + +Archives generated with Makeself can be passed the following arguments: + + * **`--keep`** : Prevent the files to be extracted in a temporary directory that will be removed after the embedded script's execution. The files will then be extracted in the current working directory and will stay here until you remove them. + * **`--verbose`** : Will prompt the user before executing the embedded command + * **`--target dir`** : Allows to extract the archive in an arbitrary place. + * **`--nox11`** : Do not spawn a X11 terminal. + * **`--confirm`** : Prompt the user for confirmation before running the embedded command. + * **`--info`** : Print out general information about the archive (does not extract). + * **`--lsm`** : Print out the LSM entry, if it is present. + * **`--list`** : List the files in the archive. + * **`--check`** : Check the archive for integrity using the embedded checksums. Does not extract the archive. + * **`--nochown`** : By default, a `chown -R` command is run on the target directory after extraction, so that all files belong to the current user. This is mostly needed if you are running as root, as tar will then try to recreate the initial user ownerships. You may disable this behavior with this flag. + * **`--tar`** : Run the tar command on the contents of the archive, using the following arguments as parameter for the command. + * **`--noexec`** : Do not run the embedded script after extraction. + * **`--noexec-cleanup`** : Do not run the embedded cleanup script. + * **`--nodiskspace`** : Do not check for available disk space before attempting to extract. + * **`--cleanup-args`** : Specify arguments to be passed to the cleanup script. Wrap value in quotes to specify multiple arguments. + +Any subsequent arguments to the archive will be passed as additional arguments to the embedded command. You must explicitly use the `--` special command-line construct before any such options to make sure that Makeself will not try to interpret them. + +## Startup Script + +The startup script must be a regular Shell script. + +Within the startup script, you can use the `$USER_PWD` variable to get the path of the folder from which the self-extracting script is executed. This is especially useful to access files that are located in the same folder as the script, as shown in the example below. + +`my-self-extracting-script.sh --fooBarFileParameter foo.bar` + +## Building and Testing + +Clone the git repo and execute `git submodule update --init --recursive` to obtain all submodules. + +* To make a release: `make` +* To run all tests: `make test` + +## Maven Usage + +Makeself is now supported by the following maven plugin [makeself-maven-plugin](https://github.com/hazendaz/makeself-maven-plugin). Please refer to project for usage and report any bugs in regards to maven plugin on that project. + +## License + +Makeself itself is covered by the [GNU General Public License][8] (GPL) version 2 and above. Archives generated by Makeself don't have to be placed under this license (although I encourage it ;-)), since the archive itself is merely data for Makeself. + +## Contributing + +I will gladly consider merging your pull requests on the [GitHub][10] repository. However, please keep the following in mind: + + * One of the main purposes of Makeself is portability. Do not submit patches that will break supported platforms. The more platform-agnostic, the better. + * Please explain clearly what the purpose of the patch is, and how you achieved it. + +## Download + +Get the latest official distribution [here][9] (version 2.4.2). + +The latest development version can be grabbed from [GitHub][10]. Feel free to submit any patches there through the fork and pull request process. + +## Version history + + * **v1.0:** Initial public release + * **v1.1:** The archive can be passed parameters that will be passed on to the embedded script, thanks to John C. Quillan + * **v1.2:** Cosmetic updates, support for bzip2 compression and non-temporary archives. Many ideas thanks to Francois Petitjean. + * **v1.3:** More patches from Bjarni R. Einarsson and Francois Petitjean: Support for no compression (`--nocomp`), script is no longer mandatory, automatic launch in an xterm, optional verbose output, and -target archive option to indicate where to extract the files. + * **v1.4:** Many patches from Francois Petitjean: improved UNIX compatibility, automatic integrity checking, support of LSM files to get info on the package at run time.. + * **v1.5.x:** A lot of bugfixes, and many other patches, including automatic verification through the usage of checksums. Version 1.5.5 was the stable release for a long time, even though the Web page didn't get updated ;-). Makeself was also officially made a part of the [Loki Setup installer][11], and its source is being maintained as part of this package. + * **v2.0:** Complete internal rewrite of Makeself. The command-line parsing was vastly improved, the overall maintenance of the package was greatly improved by separating the stub from makeself.sh. Also Makeself was ported and tested to a variety of Unix platforms. + * **v2.0.1:** First public release of the new 2.0 branch. Prior versions are officially obsoleted. This release introduced the `--copy` argument that was introduced in response to a need for the [UT2K3][12] Linux installer. + * **v2.1.0:** Big change : Makeself can now support multiple embedded tarballs, each stored separately with their own checksums. An existing archive can be updated with the `--append` flag. Checksums are also better managed, and the `--nochown` option for archives appeared. + * **v2.1.1:** Fixes related to the Unix compression (compress command). Some Linux distributions made the insane choice to make it unavailable, even though gzip is capable of uncompressing these files, plus some more bugfixes in the extraction and checksum code. + * **v2.1.2:** Some bug fixes. Use head -n to avoid problems with POSIX conformance. + * **v2.1.3:** Bug fixes with the command line when spawning terminals. Added `--tar`, `--noexec` for archives. Added `--nomd5` and `--nocrc` to avoid creating checksums in archives. The embedded script is now run through "eval". The `--info` output now includes the command used to create the archive. A man page was contributed by Bartosz Fenski. + * **v2.1.4:** Fixed `--info` output. Generate random directory name when extracting files to . to avoid problems. Better handling of errors with wrong permissions for the directory containing the files. Avoid some race conditions, Unset the $CDPATH variable to avoid problems if it is set. Better handling of dot files in the archive directory. + * **v2.1.5:** Made the md5sum detection consistent with the header code. Check for the presence of the archive directory. Added `--encrypt` for symmetric encryption through gpg (Eric Windisch). Added support for the digest command on Solaris 10 for MD5 checksums. Check for available disk space before extracting to the target directory (Andreas Schweitzer). Allow extraction to run asynchronously (patch by Peter Hatch). Use file descriptors internally to avoid error messages (patch by Kay Tiong Khoo). + * **v2.1.6:** Replaced one dot per file progress with a realtime progress percentage and a spinning cursor. Added `--noprogress` to prevent showing the progress during the decompression. Added `--target` dir to allow extracting directly to a target directory. (Guy Baconniere) + * **v2.2.0:** First major new release in years! Includes many bugfixes and user contributions. Please look at the [project page on Github][10] for all the details. + * **v2.3.0:** Support for archive encryption via GPG or OpenSSL. Added LZO and LZ4 compression support. Options to set the packaging date and stop the umask from being overriden. Optionally ignore check for available disk space when extracting. New option to check for root permissions before extracting. + * **v2.3.1:** Various compatibility updates. Added unit tests for Travis CI in the GitHub repo. New `--tar-extra`, `--untar-extra`, `--gpg-extra`, `--gpg-asymmetric-encrypt-sign` options. + * **v2.4.0:** Added optional support for SHA256 archive integrity checksums. + * **v2.4.2:** New --cleanup and --cleanup-args arguments for cleanup scripts. Added threading support for supported compressors. Now supports zstd compression. + * **v2.4.3:** Make explicit POSIX tar archives for increased compatibility. + * **v2.4.4:** Fixed various compatibility issues (no longer use POSIX tar archives), Github Actions to check on Solaris and FreeBSD. + * **v2.4.5:** Added `--tar-format` option to set the tar archive format (default is ustar) + +## Links + + * Check out the ["Loki Setup"][11] installer, used to install many Linux games and other applications, and of which I am the co-author. Since the demise of Loki, I am now the official maintainer of the project, and it is now being hosted here on GitHub. + * Bjarni R. Einarsson also wrote the **setup.sh** installer script, inspired by Makeself. [Check it out !][14] + +## Contact + +This script was written by [Stéphane Peter][15] (megastep at megastep.org). Any enhancements and suggestions are welcome. + +Contributions were included from John C. Quillan, Bjarni R. Einarsson, +Francois Petitjean, Ryan C. Gordon, and many contributors on GitHub. If you think I forgot +your name, don't hesitate to contact me. + +This project is now hosted on GitHub. Feel free to submit patches and bug reports on the [project page][10]. + +* * * + +[Stephane Peter][2] + + [1]: http://makeself.io/ + [2]: mailto:megastep@megastep.org + [3]: http://www.idsoftware.com/ + [4]: http://www.lokigames.com/products/myth2/updates.php3 + [5]: http://www.nvidia.com/ + [6]: http://earth.google.com/ + [7]: http://www.virtualbox.org/ + [8]: http://www.gnu.org/copyleft/gpl.html + [9]: https://github.com/megastep/makeself/releases/download/release-2.4.5/makeself-2.4.5.run + [10]: https://github.com/megastep/makeself + [11]: https://github.com/megastep/loki_setup/ + [12]: http://www.unrealtournament2003.com/ + [13]: http://www.icculus.org/ + [14]: http://bre.klaki.net/programs/setup.sh/ + [15]: https://stephanepeter.com/ diff --git a/precision_Problem/No_standard/cmake/util/makeself/VERSION b/precision_Problem/No_standard/cmake/util/makeself/VERSION new file mode 100644 index 0000000000000000000000000000000000000000..59aa62c1fa4c234af19118ff8d8572c1d50437fd --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/VERSION @@ -0,0 +1 @@ +2.4.5 diff --git a/precision_Problem/No_standard/cmake/util/makeself/make-release.sh b/precision_Problem/No_standard/cmake/util/makeself/make-release.sh new file mode 100644 index 0000000000000000000000000000000000000000..b5692d49071716e68c821688b9ded040bd3a11c4 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/make-release.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# +# Create a distributable archive of the current version of Makeself + +VER=`cat VERSION` +mkdir -p /tmp/makeself-$VER release +cp -pPR makeself* test README.md COPYING VERSION .gitmodules /tmp/makeself-$VER/ +./makeself.sh --notemp /tmp/makeself-$VER release/makeself-$VER.run "Makeself v$VER" echo "Makeself has extracted itself" + diff --git a/precision_Problem/No_standard/cmake/util/makeself/makeself-header.sh b/precision_Problem/No_standard/cmake/util/makeself/makeself-header.sh new file mode 100644 index 0000000000000000000000000000000000000000..9409031483e2bc377d344d64b34b13877a0afd7b --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/makeself-header.sh @@ -0,0 +1,660 @@ +cat << EOF > "$archname" +#!/bin/bash +# This script was generated using Makeself $MS_VERSION +# The license covering this archive and its contents, if any, is wholly independent of the Makeself license (GPL) +# 2022.3.19-Modified the MS_Help function and some options +# Huawei Technologies Co., Ltd. + +ORIG_UMASK=\`umask\` + +CRCsum="$CRCsum" +MD5="$MD5sum" +SHA="$SHAsum" +SIGNATURE="$Signature" +TMPROOT=\${TMPDIR:="\$HOME"} +if ! test -d "\$TMPROOT"; then + TMPROOT="\$PWD" +fi +export TMPDIR="\$TMPROOT" +USER_PWD="\$PWD" +if ! test -d "\$USER_PWD"; then + exit 1 +fi +export USER_PWD +ARCHIVE_DIR=\`dirname "\$0"\` +export ARCHIVE_DIR + +name_of_file="\$0 " +pwd_of_file="\$PWD" +label="$LABEL" +script="$SCRIPT" +scriptargs="$SCRIPTARGS" +cleanup_script="${CLEANUP_SCRIPT}" +licensetxt="$LICENSE" +helpheader='$HELPHEADER' +targetdir="$archdirname" +filesizes="$filesizes" +totalsize="$totalsize" +keep="$KEEP" +nooverwrite="$NOOVERWRITE" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="$EXPORT_CONF" +decrypt_cmd="$DECRYPT_CMD" +skip="$SKIP" + +print_cmd_arg="" +if type printf > /dev/null; then + print_cmd="printf" +elif test -x /usr/ucb/echo; then + print_cmd="/usr/ucb/echo" +else + print_cmd="echo" +fi + +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:\$PATH + export PATH +fi + +if test -d /usr/sfw/bin; then + PATH=\$PATH:/usr/sfw/bin + export PATH +fi + +unset CDPATH + +MS_Printf() +{ + \$print_cmd \$print_cmd_arg "\$1" +} + +MS_PrintLicense() +{ + PAGER=\${PAGER:=more} + if test x"\$licensetxt" != x; then + PAGER_PATH=\`exec <&- 2>&-; which \$PAGER || command -v \$PAGER || type \$PAGER\` + if test -x "\$PAGER_PATH"; then + echo "\$licensetxt" | \$PAGER + else + echo "\$licensetxt" + fi + if test x"\$accept" != xy; then + while true + do + MS_Printf "Please type y to accept, n otherwise: " + read yn + if test x"\$yn" = xn; then + keep=n + eval \$finish; exit 1 + break; + elif test x"\$yn" = xy; then + break; + fi + done + fi + fi +} + +MS_diskspace() +{ + ( + df -kP "\$1" | tail -1 | awk '{ if (\$4 ~ /%/) {print \$3} else {print \$4} }' + ) +} + +MS_dd() +{ + blocks=\`expr \$3 / 1024\` + bytes=\`expr \$3 % 1024\` + # Test for ibs, obs and conv feature + if dd if=/dev/zero of=/dev/null count=1 ibs=512 obs=512 conv=sync 2> /dev/null; then + dd if="\$1" ibs=\$2 skip=1 obs=1024 conv=sync 2> /dev/null | \\ + { test \$blocks -gt 0 && dd ibs=1024 obs=1024 count=\$blocks ; \\ + test \$bytes -gt 0 && dd ibs=1 obs=1024 count=\$bytes ; } 2> /dev/null + else + dd if="\$1" bs=\$2 skip=1 2> /dev/null + fi +} + +MS_dd_Progress() +{ + if test x"\$noprogress" = xy; then + MS_dd "\$@" + return \$? + fi + file="\$1" + offset=\$2 + length=\$3 + pos=0 + bsize=4194304 + while test \$bsize -gt \$length; do + bsize=\`expr \$bsize / 4\` + done + blocks=\`expr \$length / \$bsize\` + bytes=\`expr \$length % \$bsize\` + ( + dd ibs=\$offset skip=1 2>/dev/null + pos=\`expr \$pos \+ \$bsize\` + MS_Printf " 0%% " 1>&2 + if test \$blocks -gt 0; then + while test \$pos -le \$length; do + dd bs=\$bsize count=1 2>/dev/null + pcent=\`expr \$length / 100\` + pcent=\`expr \$pos / \$pcent\` + if test \$pcent -lt 100; then + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + if test \$pcent -lt 10; then + MS_Printf " \$pcent%% " 1>&2 + else + MS_Printf " \$pcent%% " 1>&2 + fi + fi + pos=\`expr \$pos \+ \$bsize\` + done + fi + if test \$bytes -gt 0; then + dd bs=\$bytes count=1 2>/dev/null + fi + MS_Printf "\b\b\b\b\b\b\b" 1>&2 + MS_Printf " 100%% " 1>&2 + ) < "\$file" +} + +MS_Help() +{ + cat << EOH >&2 +Usage: \$0 [options] +Options: + --help | -h Print this message + --info Print embedded info : title, default target directory, embedded script ... + --list Print the list of files in the archive + --check Checks integrity and version dependency of the archive + --quiet Quiet install mode, skip human-computer interactions + --nox11 Do not spawn an xterm + --noexec Do not run embedded script + --extract= Extract directly to a target directory (absolute or relative) + Usually used with --noexec to just extract files without running + --tar arg1 [arg2 ...] Access the contents of the archive through the tar command +\${helpheader} +EOH +} + +MS_Verify_Sig() +{ + GPG_PATH=\`exec <&- 2>&-; which gpg || command -v gpg || type gpg\` + MKTEMP_PATH=\`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp\` + test -x "\$GPG_PATH" || GPG_PATH=\`exec <&- 2>&-; which gpg || command -v gpg || type gpg\` + test -x "\$MKTEMP_PATH" || MKTEMP_PATH=\`exec <&- 2>&-; which mktemp || command -v mktemp || type mktemp\` + offset=\`head -n "\$skip" "\$1" | wc -c | tr -d " "\` + temp_sig=\`mktemp -t XXXXX\` + echo \$SIGNATURE | base64 --decode > "\$temp_sig" + gpg_output=\`MS_dd "\$1" \$offset \$totalsize | LC_ALL=C "\$GPG_PATH" --verify "\$temp_sig" - 2>&1\` + gpg_res=\$? + rm -f "\$temp_sig" + if test \$gpg_res -eq 0 && test \`echo \$gpg_output | grep -c Good\` -eq 1; then + if test \`echo \$gpg_output | grep -c \$sig_key\` -eq 1; then + test x"\$quiet" = xn && echo "GPG signature is good" >&2 + else + echo "GPG Signature key does not match" >&2 + exit 2 + fi + else + test x"\$quiet" = xn && echo "GPG signature failed to verify" >&2 + exit 2 + fi +} + +MS_Check() +{ + OLD_PATH="\$PATH" + PATH=\${GUESS_MD5_PATH:-"\$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=\`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum\` + test -x "\$MD5_PATH" || MD5_PATH=\`exec <&- 2>&-; which md5 || command -v md5 || type md5\` + test -x "\$MD5_PATH" || MD5_PATH=\`exec <&- 2>&-; which digest || command -v digest || type digest\` + PATH="\$OLD_PATH" + + SHA_PATH=\`exec <&- 2>&-; which shasum || command -v shasum || type shasum\` + test -x "\$SHA_PATH" || SHA_PATH=\`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum\` + + if test x"\$quiet" = xn; then + MS_Printf "Verifying archive integrity..." + fi + offset=\`head -n "\$skip" "\$1" | wc -c | tr -d " "\` + fsize=\`cat "\$1" | wc -c | tr -d " "\` + if test \$totalsize -ne \`expr \$fsize - \$offset\`; then + echo " Unexpected archive size." >&2 + exit 2 + fi + verb=\$2 + i=1 + for s in \$filesizes + do + crc=\`echo \$CRCsum | cut -d" " -f\$i\` + if test -x "\$SHA_PATH"; then + if test x"\`basename \$SHA_PATH\`" = xshasum; then + SHA_ARG="-a 256" + fi + sha=\`echo \$SHA | cut -d" " -f\$i\` + if test x"\$sha" = x0000000000000000000000000000000000000000000000000000000000000000; then + test x"\$verb" = xy && echo " \$1 does not contain an embedded SHA256 checksum." >&2 + else + shasum=\`MS_dd_Progress "\$1" \$offset \$s | eval "\$SHA_PATH \$SHA_ARG" | cut -b-64\`; + if test x"\$shasum" != x"\$sha"; then + echo "Error in SHA256 checksums: \$shasum is different from \$sha" >&2 + exit 2 + elif test x"\$quiet" = xn; then + MS_Printf " SHA256 checksums are OK." >&2 + fi + crc="0000000000"; + fi + fi + if test -x "\$MD5_PATH"; then + if test x"\`basename \$MD5_PATH\`" = xdigest; then + MD5_ARG="-a md5" + fi + md5=\`echo \$MD5 | cut -d" " -f\$i\` + if test x"\$md5" = x00000000000000000000000000000000; then + test x"\$verb" = xy && echo " \$1 does not contain an embedded MD5 checksum." >&2 + else + md5sum=\`MS_dd_Progress "\$1" \$offset \$s | eval "\$MD5_PATH \$MD5_ARG" | cut -b-32\`; + if test x"\$md5sum" != x"\$md5"; then + echo "Error in MD5 checksums: \$md5sum is different from \$md5" >&2 + exit 2 + elif test x"\$quiet" = xn; then + MS_Printf " MD5 checksums are OK." >&2 + fi + crc="0000000000"; verb=n + fi + fi + if test x"\$crc" = x0000000000; then + test x"\$verb" = xy && echo " \$1 does not contain a CRC checksum." >&2 + else + sum1=\`MS_dd_Progress "\$1" \$offset \$s | CMD_ENV=xpg4 cksum | awk '{print \$1}'\` + if test x"\$sum1" != x"\$crc"; then + echo "Error in checksums: \$sum1 is different from \$crc" >&2 + exit 2 + elif test x"\$quiet" = xn; then + MS_Printf " CRC checksums are OK." >&2 + fi + fi + i=\`expr \$i + 1\` + offset=\`expr \$offset + \$s\` + done + if test x"\$quiet" = xn; then + echo " All good." + fi +} + +MS_Decompress() +{ + if test x"\$decrypt_cmd" != x""; then + { eval "\$decrypt_cmd" || echo " ... Decryption failed." >&2; } | eval "$GUNZIP_CMD" + else + eval "$GUNZIP_CMD" + fi + + if test \$? -ne 0; then + echo " ... Decompression failed." >&2 + fi +} + +UnTAR() +{ + if test x"\$quiet" = xn; then + tar \$1vf - $UNTAR_EXTRA 2>&1 || { echo " ... Extraction failed." >&2; kill -15 \$$; } + else + tar \$1f - $UNTAR_EXTRA 2>&1 || { echo Extraction failed. >&2; kill -15 \$$; } + fi +} + +MS_exec_cleanup() { + if test x"\$cleanup" = xy && test x"\$cleanup_script" != x""; then + cleanup=n + cd "\$tmpdir" + eval "\"\$cleanup_script\" \$scriptargs \$cleanupargs" + fi +} + +MS_cleanup() +{ + echo 'Signal caught, cleaning up' >&2 + MS_exec_cleanup + cd "\$TMPROOT" + rm -rf "\$tmpdir" + eval \$finish; exit 15 +} + +Script_Args_Check() +{ + script_supported_args=\$(echo \${helpheader} | grep -o -E "\-\-[^ ]+" | awk -F"=" {'print \$1'}) + arg_to_test=\$(echo \$1|awk -F"=" {'print \$1'}) + + for arg in \${script_supported_args}; + do + if test x"\$arg_to_test" = x"\$arg" ;then + return + fi + done + + MS_Help + exit 1 +} + +finish=true +xterm_loop= +noprogress=$NOPROGRESS +nox11=$NOX11 +copy=$COPY +ownership=$OWNERSHIP +verbose=n +cleanup=y +cleanupargs= +sig_key= + +initargs="\$@" + +while [ -n "\$*" ] +do + case "\$1" in + -h | --help) + MS_Help + exit 0 + ;; + -q | --quiet) + quiet=y + noprogress=y + shift + ;; + --info) + echo Identification: "\$label" + echo Target directory: "\$targetdir" + echo Uncompressed size: $USIZE KB + echo Compression: $COMPRESS + if test x"$ENCRYPT" != x""; then + echo Encryption: $ENCRYPT + fi + echo Date of packaging: $DATE + echo Built with Makeself version $MS_VERSION + echo Build command was: "$MS_COMMAND" + if test x"\$script" != x; then + echo Script run after extraction: + echo " " \$script \$scriptargs + fi + if test x"$copy" = xcopy; then + echo "Archive will copy itself to a temporary location" + fi + if test x"$NEED_ROOT" = xy; then + echo "Root permissions required for extraction" + fi + if test x"$KEEP" = xy; then + echo "directory \$targetdir is permanent" + else + echo "\$targetdir will be removed after extraction" + fi + exit 0 + ;; + --list) + echo Target directory: \$targetdir + offset=\`head -n "\$skip" "\$0" | wc -c | tr -d " "\` + for s in \$filesizes + do + MS_dd "\$0" \$offset \$s | MS_Decompress | UnTAR t + offset=\`expr \$offset + \$s\` + done + exit 0 + ;; + --tar) + offset=\`head -n "\$skip" "\$0" | wc -c | tr -d " "\` + arg1="\$2" + shift 2 || { MS_Help; exit 1; } + for s in \$filesizes + do + MS_dd "\$0" \$offset \$s | MS_Decompress | tar "\$arg1" - "\$@" + offset=\`expr \$offset + \$s\` + done + exit 0 + ;; + --check) + MS_Check "\$0" y + scriptargs="\$scriptargs \$1" + shift + ;; + --noexec) + script="" + cleanup_script="" + shift + ;; + --extract=*) + keep=y + targetdir=\`echo \$1 | cut -d"=" -f2 \` + if ! shift; then MS_Help; exit 1; fi + ;; + --nox11) + nox11=y + shift + ;; + --xwin) + if test "$NOWAIT" = n; then + finish="echo Press Return to close this window...; read junk" + fi + xterm_loop=1 + shift + ;; + --phase2) + copy=phase2 + shift + ;; + --repack | --repack-path=*) + Script_Args_Check \$1 + scriptargs="\$scriptargs '\$1'" + shift + if [[ ! "\$1" =~ ^-.* ]]; then + scriptargs="\$scriptargs '\$1'" + shift + fi + ;; + *) + Script_Args_Check \$1 + scriptargs="\$scriptargs '\$1'" + shift + ;; + esac +done + +quiet_para="" +if test x"\$quiet" = xy; then + quiet_para="--quiet " +fi +scriptargs="--\$name_of_file""--\"\$pwd_of_file\""" \$quiet_para""\$scriptargs" + +if test x"\$quiet" = xy -a x"\$verbose" = xy; then + echo Cannot be verbose and quiet at the same time. >&2 + exit 1 +fi + +if test x"$NEED_ROOT" = xy -a \`id -u\` -ne 0; then + echo "Administrative privileges required for this archive (use su or sudo)" >&2 + exit 1 +fi + +if test x"\$copy" \!= xphase2; then + MS_PrintLicense +fi + +case "\$copy" in +copy) + tmpdir="\$TMPROOT"/makeself.\$RANDOM.\`date +"%y%m%d%H%M%S"\`.\$\$ + mkdir "\$tmpdir" || { + echo "Could not create temporary directory \$tmpdir" >&2 + exit 1 + } + SCRIPT_COPY="\$tmpdir/makeself" + echo "Copying to a temporary location..." >&2 + cp "\$0" "\$SCRIPT_COPY" + chmod +x "\$SCRIPT_COPY" + cd "\$TMPROOT" + exec "\$SCRIPT_COPY" --phase2 -- \$initargs + ;; +phase2) + finish="\$finish ; rm -rf \`dirname \$0\`" + ;; +esac + +if test x"\$nox11" = xn; then + if tty -s; then # Do we have a terminal? + : + else + if test x"\$DISPLAY" != x -a x"\$xterm_loop" = x; then # No, but do we have X? + if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable + GUESS_XTERMS="xterm gnome-terminal rxvt dtterm eterm Eterm xfce4-terminal lxterminal kvt konsole aterm terminology" + for a in \$GUESS_XTERMS; do + if type \$a >/dev/null 2>&1; then + XTERM=\$a + break + fi + done + chmod a+x \$0 || echo Please add execution rights on \$0 + if test \`echo "\$0" | cut -c1\` = "/"; then # Spawn a terminal! + exec \$XTERM -e "\$0 --xwin \$initargs" + else + exec \$XTERM -e "./\$0 --xwin \$initargs" + fi + fi + fi + fi +fi + +if test x"\$targetdir" = x.; then + tmpdir="." +else + if test x"\$keep" = xy; then + if test x"\$nooverwrite" = xy && test -d "\$targetdir"; then + echo "Target directory \$targetdir already exists, aborting." >&2 + exit 1 + fi + if test x"\$quiet" = xn; then + echo "Creating directory \$targetdir" >&2 + fi + tmpdir="\$targetdir" + dashp="-p" + else + tmpdir="\$TMPROOT/selfgz\$\$\$RANDOM" + dashp="" + fi + mkdir \$dashp "\$tmpdir" || { + echo 'Cannot create target directory' \$tmpdir >&2 + echo 'You should try option --extract=' >&2 + eval \$finish + exit 1 + } +fi + +location="\`pwd\`" +if test x"\$SETUP_NOCHECK" != x1; then + MS_Check "\$0" +fi +offset=\`head -n "\$skip" "\$0" | wc -c | tr -d " "\` + +if test x"\$verbose" = xy; then + MS_Printf "About to extract $USIZE KB in \$tmpdir ... Proceed ? [Y/n] " + read yn + if test x"\$yn" = xn; then + eval \$finish; exit 1 + fi +fi + +if test x"\$quiet" = xn; then + # Decrypting with openssl will ask for password, + # the prompt needs to start on new line + if test x"$ENCRYPT" = x"openssl"; then + echo "Decrypting and uncompressing \$label..." + else + MS_Printf "Uncompressing \$label" + fi +fi +res=3 +if test x"\$keep" = xn; then + trap MS_cleanup 1 2 3 15 +fi + +if test x"\$nodiskspace" = xn; then + leftspace=\`MS_diskspace "\$tmpdir"\` + if test -n "\$leftspace"; then + if test "\$leftspace" -lt $USIZE; then + echo + echo "Not enough space left in "\`dirname \$tmpdir\`" (\$leftspace KB) to decompress \$0 ($USIZE KB)" >&2 + if test x"\$keep" = xn; then + echo "Consider setting TMPDIR to a directory with more free space." + fi + eval \$finish; exit 1 + fi + fi +fi + +for s in \$filesizes +do + if MS_dd_Progress "\$0" \$offset \$s | MS_Decompress | ( cd "\$tmpdir"; umask \$ORIG_UMASK ; UnTAR xp ) 1>/dev/null; then + if test x"\$ownership" = xy; then + (cd "\$tmpdir"; chown -R \`id -u\` .; chgrp -R \`id -g\` .) + fi + else + echo >&2 + echo "Unable to decompress \$0" >&2 + eval \$finish; exit 1 + fi + offset=\`expr \$offset + \$s\` +done +if test x"\$quiet" = xn; then + echo +fi + +cd "\$tmpdir" +res=0 +if test x"\$script" != x; then + if test x"\$export_conf" = x"y"; then + MS_BUNDLE="\$0" + MS_LABEL="\$label" + MS_SCRIPT="\$script" + MS_SCRIPTARGS="\$scriptargs" + MS_ARCHDIRNAME="\$archdirname" + MS_KEEP="\$KEEP" + MS_NOOVERWRITE="\$NOOVERWRITE" + MS_COMPRESS="\$COMPRESS" + MS_CLEANUP="\$cleanup" + export MS_BUNDLE MS_LABEL MS_SCRIPT MS_SCRIPTARGS + export MS_ARCHDIRNAME MS_KEEP MS_NOOVERWRITE MS_COMPRESS + fi + + if test x"\$verbose" = x"y"; then + yn="x" + while test x"\$yn" != x -a x"\$yn" != xy -a x"\$yn" != xY -a x"\$yn" != xn -a x"\$yn" != xN + do + MS_Printf "OK to execute: \$script \$scriptargs \$* ? [Y/n] " + read yn + if test x"\$yn" = x -o x"\$yn" = xy -o x"\$yn" = xY; then + eval "\"\$script\" \$scriptargs \"\\\$@\""; res=\$?; + elif test x"\$yn" = xn -o x"\$yn" = xN; then + echo "Unable to decompress \$script ,because of aborting! ";res=\$? + else + echo "Input value is unacceptable,please try again." + fi + done + else + eval "\"\$script\" \$scriptargs \"\\\$@\""; res=\$? + fi + if test "\$res" -ne 0; then + test x"\$verbose" = xy && echo "The program '\$script' returned an error code (\$res)" >&2 + fi +fi + +MS_exec_cleanup + +if test x"\$keep" = xn; then + cd "\$TMPROOT" + rm -rf "\$tmpdir" +fi +eval \$finish; exit \$res +EOF diff --git a/precision_Problem/No_standard/cmake/util/makeself/makeself.1 b/precision_Problem/No_standard/cmake/util/makeself/makeself.1 new file mode 100644 index 0000000000000000000000000000000000000000..81bf6e4ff4cfeb226c0a0992d8e6d2b94dd4f172 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/makeself.1 @@ -0,0 +1,110 @@ +.TH "MAKESELF" "1" "2.4.5" +.SH "NAME" +makeself \- An utility to generate self-extractable archives. +.SH "SYNTAX" +.B makeself [\fIoptions\fP] archive_dir file_name label +.B [\fIstartup_script\fP] [\fIargs\fP] +.SH "DESCRIPTION" +This program is a free (GPL) utility designed to create self-extractable +archives from a directory. +.SH "OPTIONS" +The following options are supported. +.TP 15 +.B -v, --version +Prints out the makeself version number and exits. +.TP +.B -h, --help +Print out help information. +.TP +.B --tar-quietly +Suppress verbose output from the tar command +.TP +.B --quiet +Do not print any messages other than errors +.TP +.B --gzip +Compress using gzip (default if detected). +.TP +.B --bzip2 +Compress using bzip2. +.TP +.B --pbzip2 +Compress using pbzip2. +.TP +.B --xz +Compress using xz. +.TP +.B --lzo +Compress using lzop. +.TP +.B --lz4 +Compress using lz4. +.TP +.B --compress +Compress using the UNIX 'compress' command. +.TP +.B --nocomp +Do not compress the data. +.TP +.B --complevel lvl +Specify the compression level for gzip,bzip2,pbzui2,xz,lzo or lz4 +.TP +.B --notemp +The archive will create archive_dir in the current directory and +uncompress in ./archive_dir. +.TP +.B --copy +Upon extraction, the archive will first copy itself to a temporary directory. +.TP +.B --append +Append more files to an existing makeself archive. The label and startup scripts will then be ignored. +.TP +.B --current +Files will be extracted to the current directory. Both --current and --target dir imply --notemp. +.TP +.B --target dir +Extract directly to a target directory. Directory path can be either absolute or relative. +.TP +.B --header file +Specify location of the header script. +.TP +.B --cleanup file +Specify a cleanup script that executes on interrupt and when finished successfully. +.TP +.B --follow +Follow the symlinks in the archive. +.TP +.B --noprogress +Do not show the progress during the decompression. +.TP +.B --nox11 +Disable automatic spawn of an xterm if running in X11. +.TP +.B --nowait +Do not wait for user input after executing embedded program from an xterm. +.TP +.B --nomd5 +Do not create a MD5 checksum for the archive. +.TP +.B --nocrc +Do not create a CRC32 checksum for the archive. +.TP +.B --lsm file +LSM file describing the package. +.B --packaging-date date +Use provided string as the packaging date instead of the current date. +.SH "EXAMPLES" +Here is an example, assuming the user has a package image stored in a /home/joe/mysoft, +and he wants to generate a self-extracting package named mysoft.sh, which will launch +the "setup" script initially stored in /home/joe/mysoft: +.TP +makeself.sh /home/joe/mysoft mysoft.sh "Joe's Nice Software Package" ./setup +.TP +Here is also how I created the makeself.run archive which contains the Makeself distribution: +.TP +makeself.sh --notemp makeself makeself.run "Makeself by Stephane Peter" echo "Makeself has extracted itself" +.SH "AUTHORS" +Makeself has been written by Stéphane Peter . +.BR +This man page was originally written by Bartosz Fenski for the +Debian GNU/Linux distribution (but it may be used by others). diff --git a/precision_Problem/No_standard/cmake/util/makeself/makeself.lsm b/precision_Problem/No_standard/cmake/util/makeself/makeself.lsm new file mode 100644 index 0000000000000000000000000000000000000000..3c4cea8c18982e288f0d51eba9b4d97f0f708f32 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/makeself.lsm @@ -0,0 +1,16 @@ +Begin3 +Title: makeself.sh +Version: 2.4.5 +Description: makeself.sh is a shell script that generates a self-extractable + tar.gz archive from a directory. The resulting file appears as a shell + script, and can be launched as is. The archive will then uncompress + itself to a temporary directory and an arbitrary command will be + executed (for example an installation script). This is pretty similar + to archives generated with WinZip Self-Extractor in the Windows world. +Keywords: Installation archive tar winzip +Author: Stephane Peter (megastep@megastep.org) +Maintained-by: Stephane Peter (megastep@megastep.org) +Original-site: https://makeself.io/ +Platform: Unix +Copying-policy: GPL +End diff --git a/precision_Problem/No_standard/cmake/util/makeself/makeself.sh b/precision_Problem/No_standard/cmake/util/makeself/makeself.sh new file mode 100644 index 0000000000000000000000000000000000000000..c8ea565971c5ac03c775a665596a593287881708 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/makeself.sh @@ -0,0 +1,822 @@ +#!/bin/sh +# +# Makeself version 2.4.x +# by Stephane Peter +# +# Utility to create self-extracting tar.gz archives. +# The resulting archive is a file holding the tar.gz archive with +# a small Shell script stub that uncompresses the archive to a temporary +# directory and then executes a given script from withing that directory. +# +# Makeself home page: https://makeself.io/ +# +# Version 2.0 is a rewrite of version 1.0 to make the code easier to read and maintain. +# +# Version history : +# - 1.0 : Initial public release +# - 1.1 : The archive can be passed parameters that will be passed on to +# the embedded script, thanks to John C. Quillan +# - 1.2 : Package distribution, bzip2 compression, more command line options, +# support for non-temporary archives. Ideas thanks to Francois Petitjean +# - 1.3 : More patches from Bjarni R. Einarsson and Francois Petitjean: +# Support for no compression (--nocomp), script is no longer mandatory, +# automatic launch in an xterm, optional verbose output, and -target +# archive option to indicate where to extract the files. +# - 1.4 : Improved UNIX compatibility (Francois Petitjean) +# Automatic integrity checking, support of LSM files (Francois Petitjean) +# - 1.5 : Many bugfixes. Optionally disable xterm spawning. +# - 1.5.1 : More bugfixes, added archive options -list and -check. +# - 1.5.2 : Cosmetic changes to inform the user of what's going on with big +# archives (Quake III demo) +# - 1.5.3 : Check for validity of the DISPLAY variable before launching an xterm. +# More verbosity in xterms and check for embedded command's return value. +# Bugfix for Debian 2.0 systems that have a different "print" command. +# - 1.5.4 : Many bugfixes. Print out a message if the extraction failed. +# - 1.5.5 : More bugfixes. Added support for SETUP_NOCHECK environment variable to +# bypass checksum verification of archives. +# - 1.6.0 : Compute MD5 checksums with the md5sum command (patch from Ryan Gordon) +# - 2.0 : Brand new rewrite, cleaner architecture, separated header and UNIX ports. +# - 2.0.1 : Added --copy +# - 2.1.0 : Allow multiple tarballs to be stored in one archive, and incremental updates. +# Added --nochown for archives +# Stopped doing redundant checksums when not necesary +# - 2.1.1 : Work around insane behavior from certain Linux distros with no 'uncompress' command +# Cleaned up the code to handle error codes from compress. Simplified the extraction code. +# - 2.1.2 : Some bug fixes. Use head -n to avoid problems. +# - 2.1.3 : Bug fixes with command line when spawning terminals. +# Added --tar for archives, allowing to give arbitrary arguments to tar on the contents of the archive. +# Added --noexec to prevent execution of embedded scripts. +# Added --nomd5 and --nocrc to avoid creating checksums in archives. +# Added command used to create the archive in --info output. +# Run the embedded script through eval. +# - 2.1.4 : Fixed --info output. +# Generate random directory name when extracting files to . to avoid problems. (Jason Trent) +# Better handling of errors with wrong permissions for the directory containing the files. (Jason Trent) +# Avoid some race conditions (Ludwig Nussel) +# Unset the $CDPATH variable to avoid problems if it is set. (Debian) +# Better handling of dot files in the archive directory. +# - 2.1.5 : Made the md5sum detection consistent with the header code. +# Check for the presence of the archive directory +# Added --encrypt for symmetric encryption through gpg (Eric Windisch) +# Added support for the digest command on Solaris 10 for MD5 checksums +# Check for available disk space before extracting to the target directory (Andreas Schweitzer) +# Allow extraction to run asynchronously (patch by Peter Hatch) +# Use file descriptors internally to avoid error messages (patch by Kay Tiong Khoo) +# - 2.1.6 : Replaced one dot per file progress with a realtime progress percentage and a spining cursor (Guy Baconniere) +# Added --noprogress to prevent showing the progress during the decompression (Guy Baconniere) +# Added --target dir to allow extracting directly to a target directory (Guy Baconniere) +# - 2.2.0 : Many bugfixes, updates and contributions from users. Check out the project page on Github for the details. +# - 2.3.0 : Option to specify packaging date to enable byte-for-byte reproducibility. (Marc Pawlowsky) +# - 2.4.0 : Optional support for SHA256 checksums in archives. +# - 2.4.2 : Add support for threads for several compressors. (M. Limber) +# Added zstd support. +# - 2.4.3 : Make explicit POSIX tar archives for increased compatibility. +# - 2.4.5 : Added --tar-format to override ustar tar archive format +# +# (C) 1998-2021 by Stephane Peter +# +# This software is released under the terms of the GNU GPL version 2 and above +# Please read the license at http://www.gnu.org/copyleft/gpl.html +# Self-extracting archives created with this script are explictly NOT released under the term of the GPL +# + +MS_VERSION=2.4.5 +MS_COMMAND="$0" +unset CDPATH + +for f in ${1+"$@"}; do + MS_COMMAND="$MS_COMMAND \\\\ + \\\"$f\\\"" +done + +# For Solaris systems +if test -d /usr/xpg4/bin; then + PATH=/usr/xpg4/bin:$PATH + export PATH +fi + +# Procedures + +MS_Usage() +{ + echo "Usage: $0 [args] archive_dir file_name label startup_script [script_args]" + echo "args can be one or more of the following :" + echo " --version | -v : Print out Makeself version number and exit" + echo " --help | -h : Print out this help message" + echo " --tar-quietly : Suppress verbose output from the tar command" + echo " --quiet | -q : Do not print any messages other than errors." + echo " --gzip : Compress using gzip (default if detected)" + echo " --pigz : Compress with pigz" + echo " --zstd : Compress with zstd" + echo " --bzip2 : Compress using bzip2 instead of gzip" + echo " --pbzip2 : Compress using pbzip2 instead of gzip" + echo " --xz : Compress using xz instead of gzip" + echo " --lzo : Compress using lzop instead of gzip" + echo " --lz4 : Compress using lz4 instead of gzip" + echo " --compress : Compress using the UNIX 'compress' command" + echo " --complevel lvl : Compression level for gzip pigz zstd xz lzo lz4 bzip2 and pbzip2 (default 9)" + echo " --threads thds : Number of threads to be used by compressors that support parallelization." + echo " Omit to use compressor's default. Most useful (and required) for opting" + echo " into xz's threading, usually with '--threads=0' for all available cores." + echo " pbzip2 and pigz are parallel by default, and setting this value allows" + echo " limiting the number of threads they use." + echo " --base64 : Instead of compressing, encode the data using base64" + echo " --gpg-encrypt : Instead of compressing, encrypt the data using GPG" + echo " --gpg-asymmetric-encrypt-sign" + echo " : Instead of compressing, asymmetrically encrypt and sign the data using GPG" + echo " --gpg-extra opt : Append more options to the gpg command line" + echo " --ssl-encrypt : Instead of compressing, encrypt the data using OpenSSL" + echo " --ssl-passwd pass : Use the given password to encrypt the data using OpenSSL" + echo " --ssl-pass-src src : Use the given src as the source of password to encrypt the data" + echo " using OpenSSL. See \"PASS PHRASE ARGUMENTS\" in man openssl." + echo " If this option is not supplied, the user will be asked to enter" + echo " encryption password on the current terminal." + echo " --ssl-no-md : Do not use \"-md\" option not supported by older OpenSSL." + echo " --nochown : Do not give the target folder to the current user (default)" + echo " --chown : Give the target folder to the current user recursively" + echo " --nocomp : Do not compress the data" + echo " --notemp : The archive will create archive_dir in the" + echo " current directory and uncompress in ./archive_dir" + echo " --needroot : Check that the root user is extracting the archive before proceeding" + echo " --copy : Upon extraction, the archive will first copy itself to" + echo " a temporary directory" + echo " --append : Append more files to an existing Makeself archive" + echo " The label and startup scripts will then be ignored" + echo " --target dir : Extract directly to a target directory" + echo " directory path can be either absolute or relative" + echo " --nooverwrite : Do not extract the archive if the specified target directory exists" + echo " --current : Files will be extracted to the current directory" + echo " Both --current and --target imply --notemp" + echo " --tar-format opt : Specify a tar archive format (default is ustar)" + echo " --tar-extra opt : Append more options to the tar command line" + echo " --untar-extra opt : Append more options to the during the extraction of the tar archive" + echo " --nomd5 : Don't calculate an MD5 for archive" + echo " --nocrc : Don't calculate a CRC for archive" + echo " --sha256 : Compute a SHA256 checksum for the archive" + echo " --header file : Specify location of the header script" + echo " --cleanup file : Specify a cleanup script that executes on interrupt and when finished successfully." + echo " --follow : Follow the symlinks in the archive" + echo " --noprogress : Do not show the progress during the decompression" + echo " --nox11 : Disable automatic spawn of a xterm" + echo " --nowait : Do not wait for user input after executing embedded" + echo " program from an xterm" + echo " --sign passphrase : Signature private key to sign the package with" + echo " --lsm file : LSM file describing the package" + echo " --license file : Append a license file" + echo " --help-header file : Add a header to the archive's --help output" + echo " --packaging-date date" + echo " : Use provided string as the packaging date" + echo " instead of the current date." + echo + echo " --keep-umask : Keep the umask set to shell default, rather than overriding when executing self-extracting archive." + echo " --export-conf : Export configuration variables to startup_script" + echo + echo "Do not forget to give a fully qualified startup script name" + echo "(i.e. with a ./ prefix if inside the archive)." + exit 1 +} + +# Default settings +if type gzip >/dev/null 2>&1; then + COMPRESS=gzip +elif type compress >/dev/null 2>&1; then + COMPRESS=compress +else + echo "ERROR: missing commands: gzip, compress" >&2 + MS_Usage +fi +ENCRYPT=n +PASSWD="" +PASSWD_SRC="" +OPENSSL_NO_MD=n +COMPRESS_LEVEL=9 +DEFAULT_THREADS=123456 # Sentinel value +THREADS=$DEFAULT_THREADS +KEEP=n +CURRENT=n +NOX11=n +NOWAIT=n +APPEND=n +TAR_QUIETLY=n +KEEP_UMASK=n +QUIET=n +NOPROGRESS=n +COPY=none +NEED_ROOT=n +TAR_ARGS=rvf +TAR_FORMAT=ustar +TAR_EXTRA="" +GPG_EXTRA="" +DU_ARGS=-ks +HEADER=`dirname "$0"`/makeself-header.sh +SIGNATURE="" +TARGETDIR="" +NOOVERWRITE=n +DATE=`LC_ALL=C date` +EXPORT_CONF=n +SHA256=n +OWNERSHIP=n +SIGN=n +GPG_PASSPHRASE="" + +# LSM file stuff +LSM_CMD="echo No LSM. >> \"\$archname\"" + +while true +do + case "$1" in + --version | -v) + echo Makeself version $MS_VERSION + exit 0 + ;; + --pbzip2) + COMPRESS=pbzip2 + shift + ;; + --bzip2) + COMPRESS=bzip2 + shift + ;; + --gzip) + COMPRESS=gzip + shift + ;; + --pigz) + COMPRESS=pigz + shift + ;; + --zstd) + COMPRESS=zstd + shift + ;; + --xz) + COMPRESS=xz + shift + ;; + --lzo) + COMPRESS=lzo + shift + ;; + --lz4) + COMPRESS=lz4 + shift + ;; + --compress) + COMPRESS=compress + shift + ;; + --base64) + COMPRESS=base64 + shift + ;; + --gpg-encrypt) + COMPRESS=gpg + shift + ;; + --gpg-asymmetric-encrypt-sign) + COMPRESS=gpg-asymmetric + shift + ;; + --gpg-extra) + GPG_EXTRA="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --ssl-encrypt) + ENCRYPT=openssl + shift + ;; + --ssl-passwd) + PASSWD=$2 + shift 2 || { MS_Usage; exit 1; } + ;; + --ssl-pass-src) + PASSWD_SRC=$2 + shift 2 || { MS_Usage; exit 1; } + ;; + --ssl-no-md) + OPENSSL_NO_MD=y + shift + ;; + --nocomp) + COMPRESS=none + shift + ;; + --complevel) + COMPRESS_LEVEL="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --threads) + THREADS="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --nochown) + OWNERSHIP=n + shift + ;; + --chown) + OWNERSHIP=y + shift + ;; + --notemp) + KEEP=y + shift + ;; + --copy) + COPY=copy + shift + ;; + --current) + CURRENT=y + KEEP=y + shift + ;; + --tar-format) + TAR_FORMAT="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --tar-extra) + TAR_EXTRA="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --untar-extra) + UNTAR_EXTRA="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --target) + TARGETDIR="$2" + KEEP=y + shift 2 || { MS_Usage; exit 1; } + ;; + --sign) + SIGN=y + GPG_PASSPHRASE="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --nooverwrite) + NOOVERWRITE=y + shift + ;; + --needroot) + NEED_ROOT=y + shift + ;; + --header) + HEADER="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --cleanup) + CLEANUP_SCRIPT="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --license) + # We need to escape all characters having a special meaning in double quotes + LICENSE=$(sed 's/\\/\\\\/g; s/"/\\\"/g; s/`/\\\`/g; s/\$/\\\$/g' "$2") + shift 2 || { MS_Usage; exit 1; } + ;; + --follow) + TAR_ARGS=rvhf + DU_ARGS=-ksL + shift + ;; + --noprogress) + NOPROGRESS=y + shift + ;; + --nox11) + NOX11=y + shift + ;; + --nowait) + NOWAIT=y + shift + ;; + --nomd5) + NOMD5=y + shift + ;; + --sha256) + SHA256=y + shift + ;; + --nocrc) + NOCRC=y + shift + ;; + --append) + APPEND=y + shift + ;; + --lsm) + LSM_CMD="cat \"$2\" >> \"\$archname\"" + shift 2 || { MS_Usage; exit 1; } + ;; + --packaging-date) + DATE="$2" + shift 2 || { MS_Usage; exit 1; } + ;; + --help-header) + HELPHEADER=`sed -e "s/'/'\\\\\''/g" $2` + shift 2 || { MS_Usage; exit 1; } + [ -n "$HELPHEADER" ] && HELPHEADER="$HELPHEADER +" + ;; + --tar-quietly) + TAR_QUIETLY=y + shift + ;; + --keep-umask) + KEEP_UMASK=y + shift + ;; + --export-conf) + EXPORT_CONF=y + shift + ;; + -q | --quiet) + QUIET=y + shift + ;; + -h | --help) + MS_Usage + ;; + -*) + echo Unrecognized flag : "$1" + MS_Usage + ;; + *) + break + ;; + esac +done + +if test $# -lt 1; then + MS_Usage +else + if test -d "$1"; then + archdir="$1" + else + echo "Directory $1 does not exist." >&2 + exit 1 + fi +fi +archname="$2" + +if test "$QUIET" = "y" || test "$TAR_QUIETLY" = "y"; then + if test "$TAR_ARGS" = "rvf"; then + TAR_ARGS="rf" + elif test "$TAR_ARGS" = "rvhf"; then + TAR_ARGS="rhf" + fi +fi + +if test "$APPEND" = y; then + if test $# -lt 2; then + MS_Usage + fi + + # Gather the info from the original archive + OLDENV=`sh "$archname" --dumpconf` + if test $? -ne 0; then + echo "Unable to update archive: $archname" >&2 + exit 1 + else + eval "$OLDENV" + OLDSKIP=`expr $SKIP + 1` + fi +else + if test "$KEEP" = n -a $# = 3; then + echo "ERROR: Making a temporary archive with no embedded command does not make sense!" >&2 + echo >&2 + MS_Usage + fi + # We don't want to create an absolute directory unless a target directory is defined + if test "$CURRENT" = y; then + archdirname="." + elif test x"$TARGETDIR" != x; then + archdirname="$TARGETDIR" + else + archdirname=`basename "$1"` + fi + + if test $# -lt 3; then + MS_Usage + fi + + LABEL="$3" + SCRIPT="$4" + test "x$SCRIPT" = x || shift 1 + shift 3 + SCRIPTARGS="$*" +fi + +if test "$KEEP" = n -a "$CURRENT" = y; then + echo "ERROR: It is A VERY DANGEROUS IDEA to try to combine --notemp and --current." >&2 + exit 1 +fi + +case $COMPRESS in +gzip) + GZIP_CMD="gzip -c$COMPRESS_LEVEL" + GUNZIP_CMD="gzip -cd" + ;; +pigz) + GZIP_CMD="pigz -$COMPRESS_LEVEL" + if test $THREADS -ne $DEFAULT_THREADS; then # Leave as the default if threads not indicated + GZIP_CMD="$GZIP_CMD --processes $THREADS" + fi + GUNZIP_CMD="gzip -cd" + ;; +zstd) + GZIP_CMD="zstd -$COMPRESS_LEVEL" + if test $THREADS -ne $DEFAULT_THREADS; then # Leave as the default if threads not indicated + GZIP_CMD="$GZIP_CMD --threads=$THREADS" + fi + GUNZIP_CMD="zstd -cd" + ;; +pbzip2) + GZIP_CMD="pbzip2 -c$COMPRESS_LEVEL" + if test $THREADS -ne $DEFAULT_THREADS; then # Leave as the default if threads not indicated + GZIP_CMD="$GZIP_CMD -p$THREADS" + fi + GUNZIP_CMD="bzip2 -d" + ;; +bzip2) + GZIP_CMD="bzip2 -$COMPRESS_LEVEL" + GUNZIP_CMD="bzip2 -d" + ;; +xz) + GZIP_CMD="xz -c$COMPRESS_LEVEL" + # Must opt-in by specifying a value since not all versions of xz support threads + if test $THREADS -ne $DEFAULT_THREADS; then + GZIP_CMD="$GZIP_CMD --threads=$THREADS" + fi + GUNZIP_CMD="xz -d" + ;; +lzo) + GZIP_CMD="lzop -c$COMPRESS_LEVEL" + GUNZIP_CMD="lzop -d" + ;; +lz4) + GZIP_CMD="lz4 -c$COMPRESS_LEVEL" + GUNZIP_CMD="lz4 -d" + ;; +base64) + GZIP_CMD="base64" + GUNZIP_CMD="base64 --decode -i -" + ;; +gpg) + GZIP_CMD="gpg $GPG_EXTRA -ac -z$COMPRESS_LEVEL" + GUNZIP_CMD="gpg -d" + ENCRYPT="gpg" + ;; +gpg-asymmetric) + GZIP_CMD="gpg $GPG_EXTRA -z$COMPRESS_LEVEL -es" + GUNZIP_CMD="gpg --yes -d" + ENCRYPT="gpg" + ;; +compress) + GZIP_CMD="compress -fc" + GUNZIP_CMD="(type compress >/dev/null 2>&1 && compress -fcd || gzip -cd)" + ;; +none) + GZIP_CMD="cat" + GUNZIP_CMD="cat" + ;; +esac + +if test x"$ENCRYPT" = x"openssl"; then + if test x"$APPEND" = x"y"; then + echo "Appending to existing archive is not compatible with OpenSSL encryption." >&2 + fi + + ENCRYPT_CMD="openssl enc -aes-256-cbc -salt" + DECRYPT_CMD="openssl enc -aes-256-cbc -d" + + if test x"$OPENSSL_NO_MD" != x"y"; then + ENCRYPT_CMD="$ENCRYPT_CMD -md sha256" + DECRYPT_CMD="$DECRYPT_CMD -md sha256" + fi + + if test -n "$PASSWD_SRC"; then + ENCRYPT_CMD="$ENCRYPT_CMD -pass $PASSWD_SRC" + elif test -n "$PASSWD"; then + ENCRYPT_CMD="$ENCRYPT_CMD -pass pass:$PASSWD" + fi +fi + +tmpfile="${TMPDIR:-/tmp}/mkself$$" + +if test -f "$HEADER"; then + oldarchname="$archname" + archname="$tmpfile" + # Generate a fake header to count its lines + SKIP=0 + . "$HEADER" + SKIP=`cat "$tmpfile" |wc -l` + # Get rid of any spaces + SKIP=`expr $SKIP` + rm -f "$tmpfile" + if test "$QUIET" = "n"; then + echo "Header is $SKIP lines long" >&2 + fi + archname="$oldarchname" +else + echo "Unable to open header file: $HEADER" >&2 + exit 1 +fi + +if test "$QUIET" = "n"; then + echo +fi + +if test "$APPEND" = n; then + if test -f "$archname"; then + echo "WARNING: Overwriting existing file: $archname" >&2 + fi +fi + +USIZE=`du $DU_ARGS "$archdir" | awk '{print $1}'` + +if test "." = "$archdirname"; then + if test "$KEEP" = n; then + archdirname="makeself-$$-`date +%Y%m%d%H%M%S`" + fi +fi + +test -d "$archdir" || { echo "Error: $archdir does not exist."; rm -f "$tmpfile"; exit 1; } +if test "$QUIET" = "n"; then + echo "About to compress $USIZE KB of data..." + echo "Adding files to archive named \"$archname\"..." +fi + +# See if we have GNU tar +TAR=`exec <&- 2>&-; which gtar || command -v gtar || type gtar` +test -x "$TAR" || TAR=tar + +tmparch="${TMPDIR:-/tmp}/mkself$$.tar" +( + if test "$APPEND" = "y"; then + tail -n "+$OLDSKIP" "$archname" | eval "$GUNZIP_CMD" > "$tmparch" + fi + cd "$archdir" + # "Determining if a directory is empty" + # https://www.etalabs.net/sh_tricks.html + find . \ + \( \ + ! -type d \ + -o \ + \( -links 2 -exec sh -c ' + is_empty () ( + cd "$1" + set -- .[!.]* ; test -f "$1" && return 1 + set -- ..?* ; test -f "$1" && return 1 + set -- * ; test -f "$1" && return 1 + return 0 + ) + is_empty "$0"' {} \; \ + \) \ + \) -print \ + | LC_ALL=C sort \ + | sed 's/./\\&/g' \ + | xargs $TAR $TAR_EXTRA --format $TAR_FORMAT -$TAR_ARGS "$tmparch" +) || { + echo "ERROR: failed to create temporary archive: $tmparch" + rm -f "$tmparch" "$tmpfile" + exit 1 +} + +USIZE=`du $DU_ARGS "$tmparch" | awk '{print $1}'` + +eval "$GZIP_CMD" <"$tmparch" >"$tmpfile" || { + echo "ERROR: failed to create temporary file: $tmpfile" + rm -f "$tmparch" "$tmpfile" + exit 1 +} +rm -f "$tmparch" + +if test x"$ENCRYPT" = x"openssl"; then + echo "About to encrypt archive \"$archname\"..." + { eval "$ENCRYPT_CMD -in $tmpfile -out ${tmpfile}.enc" && mv -f ${tmpfile}.enc $tmpfile; } || \ + { echo Aborting: could not encrypt temporary file: "$tmpfile".; rm -f "$tmpfile"; exit 1; } +fi + +fsize=`cat "$tmpfile" | wc -c | tr -d " "` + +# Compute the checksums + +shasum=0000000000000000000000000000000000000000000000000000000000000000 +md5sum=00000000000000000000000000000000 +crcsum=0000000000 + +if test "$NOCRC" = y; then + if test "$QUIET" = "n"; then + echo "skipping crc at user request" + fi +else + crcsum=`CMD_ENV=xpg4 cksum < "$tmpfile" | sed -e 's/ /Z/' -e 's/ /Z/' | cut -dZ -f1` + if test "$QUIET" = "n"; then + echo "CRC: $crcsum" + fi +fi + +if test "$SHA256" = y; then + SHA_PATH=`exec <&- 2>&-; which shasum || command -v shasum || type shasum` + if test -x "$SHA_PATH"; then + shasum=`eval "$SHA_PATH -a 256" < "$tmpfile" | cut -b-64` + else + SHA_PATH=`exec <&- 2>&-; which sha256sum || command -v sha256sum || type sha256sum` + shasum=`eval "$SHA_PATH" < "$tmpfile" | cut -b-64` + fi + if test "$QUIET" = "n"; then + if test -x "$SHA_PATH"; then + echo "SHA256: $shasum" + else + echo "SHA256: none, SHA command not found" + fi + fi +fi +if test "$NOMD5" = y; then + if test "$QUIET" = "n"; then + echo "Skipping md5sum at user request" + fi +else + # Try to locate a MD5 binary + OLD_PATH=$PATH + PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} + MD5_ARG="" + MD5_PATH=`exec <&- 2>&-; which md5sum || command -v md5sum || type md5sum` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || command -v md5 || type md5` + test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || command -v digest || type digest` + PATH=$OLD_PATH + if test -x "$MD5_PATH"; then + if test `basename ${MD5_PATH}`x = digestx; then + MD5_ARG="-a md5" + fi + md5sum=`eval "$MD5_PATH $MD5_ARG" < "$tmpfile" | cut -b-32` + if test "$QUIET" = "n"; then + echo "MD5: $md5sum" + fi + else + if test "$QUIET" = "n"; then + echo "MD5: none, MD5 command not found" + fi + fi +fi +if test "$SIGN" = y; then + GPG_PATH=`exec <&- 2>&-; which gpg || command -v gpg || type gpg` + if test -x "$GPG_PATH"; then + SIGNATURE=`$GPG_PATH --pinentry-mode=loopback --batch --yes --passphrase "$GPG_PASSPHRASE" --output - --detach-sig $tmpfile | base64 | tr -d \\\\n` + if test "$QUIET" = "n"; then + echo "Signature: $SIGNATURE" + fi + else + echo "Missing gpg command" >&2 + fi +fi + +totalsize=0 +for size in $fsize; +do + totalsize=`expr $totalsize + $size` +done + +if test "$APPEND" = y; then + mv "$archname" "$archname".bak || exit + + # Prepare entry for new archive + filesizes="$fsize" + CRCsum="$crcsum" + MD5sum="$md5sum" + SHAsum="$shasum" + Signature="$SIGNATURE" + # Generate the header + . "$HEADER" + # Append the new data + cat "$tmpfile" >> "$archname" + + chmod +x "$archname" + rm -f "$archname".bak + if test "$QUIET" = "n"; then + echo "Self-extractable archive \"$archname\" successfully updated." + fi +else + filesizes="$fsize" + CRCsum="$crcsum" + MD5sum="$md5sum" + SHAsum="$shasum" + Signature="$SIGNATURE" + + # Generate the header + . "$HEADER" + + # Append the compressed tar data after the stub + if test "$QUIET" = "n"; then + echo + fi + cat "$tmpfile" >> "$archname" + chmod +x "$archname" + if test "$QUIET" = "n"; then + echo Self-extractable archive \"$archname\" successfully created. + fi +fi +rm -f "$tmpfile" diff --git a/precision_Problem/No_standard/cmake/util/makeself/run-tests.sh b/precision_Problem/No_standard/cmake/util/makeself/run-tests.sh new file mode 100644 index 0000000000000000000000000000000000000000..31ee1651156c64caddfdadd683d4dc2d0be3ddc4 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/makeself/run-tests.sh @@ -0,0 +1,8 @@ +#!/bin/sh +# Run every available test - Bash needed +cd test +for test in *test; +do + echo "Running test $test ..." + bash $test || { echo "*** ERROR: Test '$test' failed!"; exit 1; } +done diff --git a/precision_Problem/No_standard/cmake/util/merge_aicpu_info_json.sh b/precision_Problem/No_standard/cmake/util/merge_aicpu_info_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..a977bd51d2e98a1511db4296070a8dda6b90a262 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/merge_aicpu_info_json.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +project_path=$1 +build_path=$2 +vendor_name=customize +echo $@ +if [[ ! -d "$project_path" ]]; then + echo "[ERROR] No projcet path is provided" + exit 1 +fi + +if [[ ! -d "$build_path" ]]; then + echo "[ERROR] No build path is provided" + exit 1 +fi + +if [[ ! -d "$ASCEND_OPP_PATH" ]]; then + echo "[ERROR] No opp install path is provided" + exit 1 +fi +custom_exist_info_json=$ASCEND_OPP_PATH/vendors/$vendor_name/op_impl/cpu/config/cust_aicpu_kernel.json +custom_new_info_json=$build_path/makepkg/packages/vendors/$vendor_name/op_impl/cpu/config/cust_aicpu_kernel.json +temp_info_json=$build_path/makepkg/packages/vendors/$vendor_name/op_impl/cpu/config/temp_cust_aicpu_kernel.json + +if [[ -f "$custom_exist_info_json" ]] && [[ -f "$custom_new_info_json" ]]; then + cp -f $custom_exist_info_json $temp_info_json + chmod +w $temp_info_json + python3 ${project_path}/cmake/util/insert_op_info.py ${custom_new_info_json} ${temp_info_json} + cp -f $temp_info_json $custom_new_info_json + rm -f $temp_info_json +fi diff --git a/precision_Problem/No_standard/cmake/util/opdesc_parser.py b/precision_Problem/No_standard/cmake/util/opdesc_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..48efca2c6e16c136e44a3d2308ef18d2fbdf8369 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/opdesc_parser.py @@ -0,0 +1,294 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import sys +import os + + +OP_ALL = '__ALLOP__' +SOC_ALL = '__ALLSOC__' +SOC_TO_SHORT_SOC_MAP = { + "ascend910a": "ascend910", + "ascend910proa": "ascend910", + "ascend910b": "ascend910", + "ascend910prob": "ascend910", + "ascend910premiuma": "ascend910", + "ascend910b1": "ascend910b", + "ascend910b2": "ascend910b", + "ascend910b2c": "ascend910b", + "ascend910b3": "ascend910b", + "ascend910b4": "ascend910b", + "ascend310p1": "ascend310p", + "ascend310p3": "ascend310p", + "ascend310p3vir01": "ascend310p", + "ascend310p3vir02": "ascend310p", + "ascend310p3vir04": "ascend310p", + "ascend310p3vir08": "ascend310p", + "ascend310b1": "ascend310b", + "bs9sx1aa": "bs9sx1a" +} +CONFLICT_KEYWORDS = { + "and", "as", "assert", "break", "class", "continue", "def", "del", "elif", "else", + "except", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", + "not", "or", "pass", "raise", "return", "try", "while", "with", "yield", "False", + "None", "True", "nonlocal", "arg", "__inputs__", "__outputs__", "options", "bisheng", + "bisheng_path", "tikcpp_path", "impl_mode", "custom_compile_options", + "custom_all_compile_options", "soc_version", "soc_short", "custom_compile_options_soc", + "custom_all_compile_options_soc", "origin_func_name", "ascendc_src_dir_ex", + "ascendc_src_dir", "ascendc_src_file", "src", "op_type", "code_channel", "op_info", + "compile_op", "get_code_channel", "result", "__attrs__", "isinstance", "attr", + "get_current_build_config", "_build_args", "get_dtype_fmt_options", "shutil", "os", + "get_kernel_source" +} + + +class OpDesc: + def __init__(self: any, op_type: str): + self.op_type = op_type + self.attr_list = [] + self.attr_val = {} + self.input_name = [] + self.input_ori_name = [] + self.input_type = [] + self.input_dtype = [] + self.input_fmt = [] + self.output_name = [] + self.output_ori_name = [] + self.output_type = [] + self.output_dtype = [] + self.output_fmt = [] + self.op_fmt_sel = False + self.op_chk_support = False + self.op_intf = '' + self.kern_name = '' + self.op_file = '' + self.op_replay_flag = False + self.op_replay_batch = False + self.input_idx = -1 + self.output_idx = -1 + self.max_block_dim = 32 + self.max_shape_size = 268435456 + self.dynamic_shape = False + self.op_range_limit = '' + self.custom_compile_options = {} + self.custom_all_compile_options = {} + + @staticmethod + def _parse_digit(conf: str) -> int: + return int(conf.split('=')[1]) + + @staticmethod + def _parse_flag(conf: str) -> bool: + if 'true' == conf.split('=')[1]: + return True + return False + + @staticmethod + def _parse_str(conf: str) -> str: + return conf.split('=')[1] + + @staticmethod + def _parse_list(conf: str) -> list: + return conf.split('=')[1].split(',') + + def parse_input(self: any, conf: str): + if conf.startswith('input{}.name'.format(int(self.input_idx) + 1)): + self.input_idx += 1 + self.input_ori_name.append(self._parse_str(conf)) + self.input_name.append(self.input_ori_name[-1] + '_in__') + elif conf.startswith('input{}.paramType'.format(int(self.input_idx))): + self.input_type.append(self._parse_str(conf)) + elif conf.startswith('input{}.dtype'.format(int(self.input_idx))): + self.input_dtype.append(self._parse_str(conf)) + elif conf.startswith('input{}.format'.format(int(self.input_idx))): + self.input_fmt.append(self._parse_str(conf)) + else: + return + + def parse_output(self: any, conf: str): + if conf.startswith('output{}.name'.format(int(self.output_idx) + 1)): + self.output_idx += 1 + self.output_ori_name.append(self._parse_str(conf)) + self.output_name.append(self.output_ori_name[-1] + '_out_') + elif conf.startswith('output{}.paramType'.format(int(self.output_idx))): + self.output_type.append(self._parse_str(conf)) + elif conf.startswith('output{}.dtype'.format(int(self.output_idx))): + self.output_dtype.append(self._parse_str(conf)) + elif conf.startswith('output{}.format'.format(int(self.output_idx))): + self.output_fmt.append(self._parse_str(conf)) + else: + return + + def parse_op_format(self: any, conf: str): + self.op_fmt_sel = self._parse_flag(conf) + + def parse_check_support(self: any, conf: str): + self.op_chk_support = self._parse_flag(conf) + + def parse_range_limit(self: any, conf: str): + self.op_range_limit = self._parse_str(conf) + + def parse_kern_name(self: any, conf: str): + self.kern_name = self._parse_str(conf) + + def parse_op_intf(self: any, conf: str): + self.op_intf = self._parse_str(conf) + + def parse_op_file(self: any, conf: str): + self.op_file = self._parse_str(conf) + + def parse_dynamic_shape(self: any, conf: str): + self.dynamic_shape = self._parse_flag(conf) + + def parse_attr_list(self: any, conf: str): + self.attr_list = self._parse_list(conf) + intersection_element = set(self.attr_list) & CONFLICT_KEYWORDS + if intersection_element: + raise Exception(f'The attribute name: {intersection_element} in op: {{\'{self.op_type}\'}} conflicts with\ + the built-in variable name. Use a complex name or prefix the operator name.') + + @staticmethod + def _camel_to_snake(camel_case_str: str): + snake_case_str = '' + for i, c in enumerate(camel_case_str): + if i == 0: + snake_case_str += c.lower() + elif c.isupper(): + snake_case_str += '_' + c.lower() + else: + snake_case_str += c + return snake_case_str + + def parse_attr_val(self: any, conf: str): + for attr in self.attr_list: + if self.attr_val.get(attr) is None: + self.attr_val[attr] = {} + if conf.startswith('attr_{}.type'.format(attr)): + self.attr_val.get(attr)['type'] = self._camel_to_snake(self._parse_str(conf)) + elif conf.startswith('attr_{}.paramType'.format(attr)): + self.attr_val.get(attr)['paramType'] = self._parse_str(conf) + elif conf.startswith('attr_{}.defaultValue'.format(attr)): + self.attr_val.get(attr)['defaultValue'] = self._parse_str(conf) + + def parse_replay_val(self: any, batch_list: list, iterator_list: list): + if self.op_type in batch_list: + self.op_replay_flag = True + self.op_replay_batch = True + elif self.op_type in iterator_list: + self.op_replay_flag = True + self.op_replay_batch = False + + +def _is_op_type_in_opdesc(op_descs: list, op_type: str): + for op in op_descs: + if op_type == op.op_type: + return True + return False + + +def _set_all_options_to_opdescs(op_descs, soc_ver_compile_options): + for op in op_descs: + op.custom_all_compile_options = soc_ver_compile_options + + +def _set_options_to_opdesc(op_descs, op_type, soc_ver_compile_options): + for op in op_descs: + if op.op_type != op_type: + continue + op.custom_compile_options = soc_ver_compile_options + + +def _trans_soc_ver_to_short(soc_ver: str): + low_soc_ver = soc_ver.lower() + if low_soc_ver not in SOC_TO_SHORT_SOC_MAP: + print(f'WARNING: caution: {soc_ver} will trans into ascend910, if not your intention,' + f'use ascend910b1~4 instead') + return SOC_TO_SHORT_SOC_MAP[low_soc_ver] + + +def _get_op_custom_options(op_descs: list, auto_gen_dir: str): + if auto_gen_dir is None: + return + file = os.path.join(auto_gen_dir, "custom_compile_options.ini") + if not os.path.exists(file): + print(f'WARNING: cannot find {auto_gen_dir}/custom_compile_options.ini') + return + with open(file, 'r') as fd: + lines = fd.readlines() + for line in lines: + param_list = str.split(line.rstrip('\n'), ',') + if len(param_list) != 3: + raise Exception(f'ERROR: custom compile option {param_list} len is not 3') + op_type = param_list[0] + if op_type.upper() == 'ALL': + op_type = OP_ALL + if op_type != OP_ALL and _is_op_type_in_opdesc(op_descs, op_type) == False: + print(f'WARNING: op: {op_type} are not exists in this project') + continue + soc_ver_compile_options = {} + soc_ver = param_list[1] + options_str = param_list[2] + options = str.split(options_str, ';') + if soc_ver == '': + soc_ver_compile_options[SOC_ALL] = options + else: + soc_ver_list = str.split(soc_ver, ';') + for ver in soc_ver_list: + short_ver = _trans_soc_ver_to_short(ver) + soc_ver_compile_options[short_ver] = options + if op_type == OP_ALL: + _set_all_options_to_opdescs(op_descs, soc_ver_compile_options) + else: + _set_options_to_opdesc(op_descs, op_type, soc_ver_compile_options) + + +def get_op_desc(file: str, batch_list: list, iterator_list: list, builder: any, + op_type: list, auto_gen_dir: str = None) -> list: + op_descs = [] + op_match = False + with open (file, 'r') as fd: + lines = fd.readlines() + for line in lines: + line = line.strip() + if line.startswith('['): + name = line[1:-1] + if op_type is None or name in op_type: + op_match = True + op_desc = builder(name) + op_desc.parse_replay_val(batch_list, iterator_list) + op_descs.append(op_desc) + else: + op_match = False + if op_type is not None and len(op_descs) == len(op_type): + return op_descs + continue + if not op_match: + continue + if line.startswith('input'): + op_desc.parse_input(line) + elif line.startswith('output'): + op_desc.parse_output(line) + elif line.startswith('dynamicFormat.flag'): + op_desc.parse_op_format(line) + elif line.startswith('needCheckSupport.flag'): + op_desc.parse_check_support(line) + elif line.startswith('rangeLimit.value'): + op_desc.parse_range_limit(line) + elif line.startswith('opInterface.value'): + op_desc.parse_op_intf(line) + elif line.startswith('kernel.name'): + op_desc.parse_kern_name(line) + elif line.startswith('opFile.value'): + op_desc.parse_op_file(line) + elif line.startswith('dynamicShapeSupport.flag'): + op_desc.parse_dynamic_shape(line) + elif line.startswith('attr.list'): + op_desc.parse_attr_list(line) + elif line.startswith('attr_'): + op_desc.parse_attr_val(line) + _get_op_custom_options(op_descs, auto_gen_dir) + return op_descs diff --git a/precision_Problem/No_standard/cmake/util/parse_ini_to_json.py b/precision_Problem/No_standard/cmake/util/parse_ini_to_json.py new file mode 100644 index 0000000000000000000000000000000000000000..ac931e5d3594cb3d026cae8795ec7d4d078a76c6 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/parse_ini_to_json.py @@ -0,0 +1,338 @@ +# Copyright 2020-2021 Huawei Technologies Co., Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +parser ini to json +""" + +import json +import os +import stat +import sys + + +ATTR_TYPE_LIST = ["int", "float", "bool", "str", "listInt", "listFloat", "listBool", "listStr", "listListInt", + "type", "listType", "tensor", "listTensor"] +ATTR_PARAMTYPE_LIST = ["optional", "required"] +BOOL_FLAG_KEY = ["dynamicFormat", "dynamicShapeSupport", "dynamicRankSupport", "precision_reduce", "heavyOp", + "needCheckSupport", "enableVectorCore"] +BOOL_LIST = ["true", "false"] +DTYPE_LIST = ["float16", "float", "float32", "int8", "int16", "int32", "uint8", "uint16", "uint32", "bool", + "int64", "uint64", "qint8", "qint16", "qint32", "quint8", "quint16", "double", "complex64", + "complex128", "string", "resource", "dual", "dual_sub_int8", "dual_sub_uint8", "string_ref", + "int4", "bfloat16", "uint1"] +FORMAT_LIST = ["NCHW", "NHWC", "ND", "NC1HWC0", "FRACTAL_Z", "NC1C0HWPAD", "NHWC1C0", "FSR_NCHW", "FRACTAL_DECONV", + "C1HWNC0", "FRACTAL_DECONV_TRANSPOSE", "FRACTAL_DECONV_SP_STRIDE_TRANS", "NC1HWC0_C04", + "FRACTAL_Z_C04", "CHWN", "FRACTAL_DECONV_SP_STRIDE8_TRANS", "HWCN", "NC1KHKWHWC0", "BN_WEIGHT", + "FILTER_HWCK", "HASHTABLE_LOOKUP_LOOKUPS", "HASHTABLE_LOOKUP_KEYS", "HASHTABLE_LOOKUP_VALUE", + "HASHTABLE_LOOKUP_OUTPUT", "HASHTABLE_LOOKUP_HITS", "C1HWNCoC0", "MD", "NDHWC", "FRACTAL_ZZ", + "FRACTAL_NZ", "NCDHW", "DHWCN", "NDC1HWC0", "FRACTAL_Z_3D", "CN", "NC", "DHWNC", + "FRACTAL_Z_3D_TRANSPOSE", "FRACTAL_ZN_LSTM", "FRACTAL_ZN_RNN", "FRACTAL_Z_G", "NULL"] + + +def parse_ini_files(ini_files): + """ + parse ini files to json + Parameters: + ---------------- + ini_files:input file list + return:ops_info + ---------------- + """ + tbe_ops_info = {} + for ini_file in ini_files: + check_file_size(ini_file) + parse_ini_to_obj(ini_file, tbe_ops_info) + return tbe_ops_info + + +def check_file_size(input_file): + try: + file_size = os.path.getsize(input_file) + except OSError as os_error: + print('[ERROR] Failed to open "%s". %s' % (input_file, str(os_error))) + raise OSError from os_error + if file_size > 10*1024*1024: + print('[WARN] The size of %s exceeds 10MB, it may take more time to run, please wait.' % input_file) + + +def parse_ini_to_obj(ini_file, tbe_ops_info): + """ + parse ini file to json obj + Parameters: + ---------------- + ini_file:ini file path + tbe_ops_info:ops_info + ---------------- + """ + with open(ini_file) as ini_file: + lines = ini_file.readlines() + op_dict = {} + op_name = "" + find_op_type = False + for line in lines: + line = line.rstrip() + if line == "": + continue + if line.startswith("["): + if line.endswith("]"): + op_name = line[1:-1] + op_dict = {} + tbe_ops_info[op_name] = op_dict + find_op_type = True + elif "=" in line: + key1 = line[:line.index("=")] + key2 = line[line.index("=")+1:] + key1_0, key1_1 = key1.split(".") + if key1_0 not in op_dict: + op_dict[key1_0] = {} + if key1_1 in op_dict.get(key1_0): + raise RuntimeError("Op:" + op_name + " " + key1_0 + " " + + key1_1 + " is repeated!") + dic_key = op_dict.get(key1_0) + dic_key[key1_1] = key2 + else: + continue + if not find_op_type: + raise RuntimeError("Not find OpType in .ini file.") + + +def check_output_exist(op_dict, is_valid): + """ + Function Description: + Check output is exist + Parameter: op_dict + Parameter: is_valid + """ + if "output0" in op_dict: + output0_dict = op_dict.get("output0") + if output0_dict.get("name", None) is None: + is_valid = False + print("output0.name is required in .ini file!") + else: + is_valid = False + print("output0 is required in .ini file!") + return is_valid + + +def check_attr_dict(attr_dict, is_valid, attr): + """ + Function Description: + Check attr_dict + Parameter: attr_dict + Parameter: is_valid + Parameter: attr + """ + attr_type = attr_dict.get("type") + value = attr_dict.get("value") + param_type = attr_dict.get("paramType") + if attr_type is None or value is None: + is_valid = False + print("If attr.list is exist, {0}.type and {0}.value is required".format(attr)) + if param_type and param_type not in ATTR_PARAMTYPE_LIST: + is_valid = False + print("{0}.paramType only support {1}.".format(attr, ATTR_PARAMTYPE_LIST)) + if attr_type and attr_type not in ATTR_TYPE_LIST: + is_valid = False + print("{0}.type only support {1}.".format(attr, ATTR_TYPE_LIST)) + return is_valid + + +def check_attr(op_dict, is_valid): + """ + Function Description: + Check attr + Parameter: op_dict + Parameter: is_valid + """ + if "attr" in op_dict: + attr_dict = op_dict.get("attr") + attr_list_str = attr_dict.get("list", None) + if attr_list_str is None: + is_valid = False + print("attr.list is required in .ini file!") + else: + attr_list = attr_list_str.split(",") + for attr_name in attr_list: + attr = "attr_" + attr_name.strip() + attr_dict = op_dict.get(attr) + if attr_dict: + is_valid = check_attr_dict(attr_dict, is_valid, attr) + else: + is_valid = False + print("%s is required in .ini file, when attr.list is %s!" % (attr, attr_list_str)) + return is_valid + + +def check_bool_flag(op_dict, is_valid): + """ + Function Description: + check_bool_flag + Parameter: op_dict + Parameter: is_valid + """ + for key in BOOL_FLAG_KEY: + if key in op_dict: + op_bool_key = op_dict.get(key) + if op_bool_key.get("flag").strip() not in BOOL_LIST: + is_valid = False + print("{0}.flag only support {1}.".format(key, BOOL_LIST)) + return is_valid + + +def check_type_format(op_info, is_valid, op_info_key): + """ + Function Description: + Check type and format + Parameter: op_info + Parameter: is_valid + Parameter: op_info_key + """ + op_info_dtype_str = op_info.get("dtype") + op_info_dtype_num = 0 + op_info_format_num = 0 + if op_info_dtype_str: + op_info_dtype = op_info_dtype_str.split(",") + op_info_dtype_num = len(op_info_dtype) + for dtype in op_info_dtype: + if dtype.strip() not in DTYPE_LIST: + is_valid = False + print("{0}.dtype not support {1}.".format(op_info_key, dtype)) + op_info_format_str = op_info.get("format") + if op_info_format_str: + op_info_format = op_info_format_str.split(",") + op_info_format_num = len(op_info_format) + for op_format in op_info_format: + if op_format.strip() not in FORMAT_LIST: + is_valid = False + print("{0}.format not support {1}.".format(op_info_key, op_format)) + if op_info_dtype_num > 0 and op_info_format_num > 0: + if op_info_dtype_num != op_info_format_num: + is_valid = False + print("The number of {0}.dtype not match the number of {0}.format.".format(op_info_key)) + return is_valid + + +def check_op_info(tbe_ops): + """ + Function Description: + Check info. + Parameter: tbe_ops + Return Value: is_valid + """ + print("\n\n==============check valid for ops info start==============") + required_op_input_info_keys = ["paramType", "name"] + required_op_output_info_keys = ["paramType", "name"] + param_type_valid_value = ["dynamic", "optional", "required"] + is_valid = True + for op_key in tbe_ops: + op_dict = tbe_ops[op_key] + for op_info_key in op_dict: + if op_info_key.startswith("input"): + op_input_info = op_dict[op_info_key] + missing_keys = [] + for required_op_input_info_key in required_op_input_info_keys: + if required_op_input_info_key not in op_input_info: + missing_keys.append(required_op_input_info_key) + if len(missing_keys) > 0: + print("op: " + op_key + " " + op_info_key + " missing: " + + ",".join(missing_keys)) + is_valid = False + else: + if not op_input_info["paramType"] in param_type_valid_value: + print("op: " + op_key + " " + op_info_key + \ + " paramType not valid, valid key:[dynamic, " + "optional, required]") + is_valid = False + is_valid = check_type_format(op_input_info, is_valid, op_info_key) + if op_info_key.startswith("output"): + op_input_info = op_dict[op_info_key] + missing_keys = [] + for required_op_input_info_key in required_op_output_info_keys: + if required_op_input_info_key not in op_input_info: + missing_keys.append(required_op_input_info_key) + if len(missing_keys) > 0: + print("op: " + op_key + " " + op_info_key + " missing: " + + ",".join(missing_keys)) + is_valid = False + else: + if not op_input_info["paramType"] in param_type_valid_value: + print("op: " + op_key + " " + op_info_key + + " paramType not valid, valid key:[dynamic, " + "optional, required]") + is_valid = False + is_valid = check_type_format(op_input_info, is_valid, op_info_key) + is_valid = check_attr(op_dict, is_valid) + is_valid = check_bool_flag(op_dict, is_valid) + print("==============check valid for ops info end================\n\n") + return is_valid + + +def write_json_file(tbe_ops_info, json_file_path): + """ + Save info to json file + Parameters: + ---------------- + tbe_ops_info: ops_info + json_file_path: json file path + ---------------- + """ + json_file_real_path = os.path.realpath(json_file_path) + wr_flag = os.O_WRONLY | os.O_CREAT + wr_mode = stat.S_IWUSR | stat.S_IRUSR + with os.fdopen(os.open(json_file_real_path, wr_flag, wr_mode), 'w') as file_path: + # The owner have all rights,group only have read rights + os.chmod(json_file_real_path, stat.S_IWUSR + stat.S_IRGRP + + stat.S_IRUSR) + json.dump(tbe_ops_info, file_path, sort_keys=True, indent=4, + separators=(',', ':')) + print("Compile op info cfg successfully.") + + +def parse_ini_to_json(ini_file_paths, outfile_path): + """ + parse ini files to json file + Parameters: + ---------------- + ini_file_paths: list of ini file path + outfile_path: output file path + ---------------- + """ + tbe_ops_info = parse_ini_files(ini_file_paths) + if not check_op_info(tbe_ops_info): + print("Compile op info cfg failed.") + return False + write_json_file(tbe_ops_info, outfile_path) + return True + + +if __name__ == '__main__': + args = sys.argv + + OUTPUT_FILE_PATH = "tbe_ops_info.json" + ini_file_path_list = [] + + for arg in args: + if arg.endswith("ini"): + ini_file_path_list.append(arg) + OUTPUT_FILE_PATH = arg.replace(".ini", ".json") + if arg.endswith("json"): + OUTPUT_FILE_PATH = arg + + if len(ini_file_path_list) == 0: + ini_file_path_list.append("tbe_ops_info.ini") + + if not parse_ini_to_json(ini_file_path_list, OUTPUT_FILE_PATH): + sys.exit(1) + sys.exit(0) diff --git a/precision_Problem/No_standard/cmake/util/preset_parse.py b/precision_Problem/No_standard/cmake/util/preset_parse.py new file mode 100644 index 0000000000000000000000000000000000000000..8f1124b1db30f552915958bc14066b8783f6ef74 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/preset_parse.py @@ -0,0 +1,23 @@ +import json +import sys +import os + + +def get_config_opts(file): + src_dir = os.path.abspath(os.path.dirname(file)) + opts = '' + with open(file, 'r') as fd: + config = json.load(fd) + for conf in config: + if conf == 'configurePresets': + for node in config[conf]: + macros = node.get('cacheVariables') + if macros is not None: + for key in macros: + opts += '-D{}={} '.format(key, macros[key]['value']) + opts = opts.replace('${sourceDir}', src_dir) + print(opts) + + +if __name__ == "__main__": + get_config_opts(sys.argv[1]) diff --git a/precision_Problem/No_standard/cmake/util/replay_codegen.py b/precision_Problem/No_standard/cmake/util/replay_codegen.py new file mode 100644 index 0000000000000000000000000000000000000000..1baa364ef8b3a7dee9ea1f9ce53e7c06641a2d02 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/replay_codegen.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +""" +Created on Feb 28 20:56:45 2020 +Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. +""" + +import os +import stat +import collections +import kernel_entry as keb +from tiling_data_def_build import gen_tiling +import code_channel_infer +import const_var + +PYF_PATH = os.path.dirname(__file__) + +ReplayCodeGenParams = collections.namedtuple('ReplayCodeGenParams',\ +['op_type', 'impl', 'tiling_file', 'kernel', 'entry', 'argn', 'op_replay_batch', 'max_block_dim', 'max_shape_size']) + + +class ReplayCodeGen: + def __init__(self, replayCodeGenParams): + self.op_type = replayCodeGenParams.op_type + self.impl = replayCodeGenParams.impl + self.tiling_file = replayCodeGenParams.tiling_file + self.tiling_data_file = '' + self.kernel = replayCodeGenParams.kernel + self.entry = replayCodeGenParams.entry + self.argn = replayCodeGenParams.argn + self.batch = False + self.outdir = '' + self.data_type = 'uint8_t' + self.blknum = 32 + self.op_replay_batch = replayCodeGenParams.op_replay_batch + self.max_block_dim = replayCodeGenParams.max_block_dim + self.max_shape_size = replayCodeGenParams.max_shape_size + + def set_batch(self, is_batch): + self.batch = is_batch + + def set_outdir(self, outdir): + self.outdir = outdir + + def gen_replay(self, ops_product: str): + kerentry = os.path.join(self.outdir, self.kernel + '_entry.cce') + kerimpl = os.path.join(self.outdir, self.kernel + '_impl.cpp') + replayimpl = os.path.join(self.outdir, self.kernel + '_replay.cpp') + if self.batch: + reptmp = os.path.join(PYF_PATH, 'batch_replay_impl.temp') + else: + reptmp = os.path.join(PYF_PATH, 'replay_impl.temp') + kertmp = os.path.join(PYF_PATH, 'kernel_impl.temp') + self._gen_kentry(kerentry) + self._gen_kimpl_code(kerimpl, kertmp) + self._gen_tiling_data_header() + self._gen_replay_code(replayimpl, reptmp, ops_product) + + def _gen_tiling_data_header(self): + self.tiling_data_file = os.path.join(self.outdir, self.kernel + '_tiling_data.h') + gen_tiling(self.tiling_file, self.tiling_data_file) + + def _gen_kimpl_code(self, src, tmpfile): + with open(tmpfile, 'r') as fd: + temp = fd.read() + temp = temp.replace('__CCE_FILE__', self.impl) + with os.fdopen(os.open(src, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(temp) + + def _gen_replay_code(self, src, tmpfile, ops_product: str): + with open(tmpfile, 'r') as fd: + temp = fd.read() + temp = temp.replace('__ARG_NUM__', str(self.argn)) + argdef = [] + kargs = [] + for i in range(0, self.argn): + argdef.append('{} *'.format(self.data_type)) + kargs.append('({} *)GetArg({})'.format(self.data_type, i)) + temp = temp.replace('__ARGS_DEF__', ', '.join(argdef)) + temp = temp.replace('__KERNEL_ARGS__', ', '.join(kargs)) + temp = temp.replace('__KERNEL_FUN__', self.entry) + core_type_infer = 'core_type' + code_channel = code_channel_infer.infer_code_channel(code_channel_infer.InfoCodeChanelParams(self.impl,\ + self.tiling_data_file, self.kernel, self.outdir, ops_product, None)) + if code_channel == code_channel_infer.CODE_VEC: + core_type_infer = '0' + elif code_channel == code_channel_infer.CODE_CUBE: + core_type_infer = '1' + temp = temp.replace('__CORE_TYPE__', core_type_infer) + # regist function + temp = temp.replace('__OPS_PRODUCT__', ops_product) + temp = temp.replace('__OPTYPE__', self.op_type) + with os.fdopen(os.open(src, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(temp) + + def _gen_kentry(self, src): + kf = '' + pre_alloc_str = 'A' * 256 + if self.batch: + kf += keb.batch_code_gen("K{:02d}_{}{}".format(0, self.entry, pre_alloc_str), self.argn, self.data_type) + else: + kf += keb.mc_code_gen("K{:02d}_{}{}".format(0, self.entry, pre_alloc_str),\ + self.argn, self.data_type, self.blknum) + with os.fdopen(os.open(src, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(kf) diff --git a/precision_Problem/No_standard/cmake/util/replay_impl.temp b/precision_Problem/No_standard/cmake/util/replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..1d30dd8658e0a72200b3d5222e11d29170e21f57 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/replay_impl.temp @@ -0,0 +1,120 @@ +#include +#include +#include +#include +#include +#include +#include "replay_def.h" +#include "code_gen.h" +#include "replay_fun.h" +#include "register/op_check.h" +#define __ASCENDC_REPLAY_CODE__ +using namespace std; +using namespace optiling; +using namespace AscendCReplay; + +extern "C" void __KERNEL_FUN__ (__ARGS_DEF__, const char *); +extern "C" int elf_append(char *elf, uint32_t elfSize, char *jit, int kernum, int blknum[], char *atext[], + int alen[], int atlen, const char* kernelname[]); + +#define KERNEL_N 1 +#define ARG_N (__ARG_NUM__) +#define MAX_L (1024 * 1024 * 100) +#define MAX_E (1024 * 1024) + +int __KERNEL_FUN___replay___OPS_PRODUCT__(ReplayFuncParam& param, const int core_type) +{ + // gen type 1 : direct call codes 0: load .o file + if (param.gentype < 0 || param.gentype > 1) { + printf("Error: call replay gen type is %d, should only be 1 or 0\n", param.gentype); + return 0; + } else if (param.gentype == 1 && param.objptr == nullptr) { + printf("Error: call replay with direct call mode, but code obj addr is null\n"); + return 0; + } else if (param.gentype == 0 && param.output_kernel_file == nullptr) { + printf("Error: call replay with object file mode, but object file path is null\n"); + return 0; + } + // core_type 0:MIX 1:CUBE 2:VEC + if (core_type < 0 || core_type > 2) { + printf("Error: call replay core type is %d !\n", core_type); + return 0; + } + g_coreType = __CORE_TYPE__; + g_taskRation = param.task_ration; + g_tilingKey = param.tiling_key; + + unsigned char *buf, *jit; + char *kernel[KERNEL_N * 32]; + int len[KERNEL_N * 32]; + int blknum[KERNEL_N]; + int max; + block_num = param.block_dim; + g_ubBase = block_num; + uint8_t *code = (uint8_t *)malloc(MAX_L); + uint8_t *pos = code; + struct timespec tp1, tp2; + + clock_gettime(CLOCK_MONOTONIC, &tp1); + if (block_num > 32) { + printf("Error: block_num > 32\n"); + return 0; + } + //__OP_FOPEN__ + for (int i = 0; i < KERNEL_N; i++) { + for (int j = 0; j < ARG_N; j++) + AddArg(j, ARG_STEP * (j + 1)); + for (block_idx = 0; block_idx < block_num; block_idx++) { + //__OP_SET_KERNEL__ + int code_idx = i * block_num + block_idx; +#ifdef FP_CEILING + SetCtrlFloatEnable(); +#else + SetCtrlFloatDisable(); +#endif + CodeInit(pos, false); + __KERNEL_FUN__(__KERNEL_ARGS__, param.tiling_data); + CodeEnd(); + kernel[code_idx] = (char *)pos; + len[code_idx] = CodeLen(); + pos += len[code_idx]; + printf("kernel %d core %ld code generated len %d\n", i, block_idx, len[code_idx]); + } + blknum[i] = block_num; + } + //__OP_FCLOSE__ + clock_gettime(CLOCK_MONOTONIC, &tp2); + buf = (unsigned char *)malloc(MAX_E); + int fd = open(param.entry_file, O_RDONLY); + if (fd < 0) { + printf("[error]: cannot find entry.o : %s\n", param.entry_file); + return 0; + } + uint32_t bufSize = read(fd, buf, MAX_E); + if (bufSize <= 0) { + printf("[error]: entry.o : %s is too small ! \n", param.entry_file); + } + close(fd); + jit = (unsigned char *)malloc(MAX_L); + printf("total code generated %ld\n", pos - code); + int sz = elf_append((char *)buf, bufSize, (char *)jit, KERNEL_N, blknum, kernel, len, pos - code, ¶m.kernel_name); + if (tp1.tv_sec != tp2.tv_sec) { + printf("%ld NS\n", tp2.tv_nsec + 1000000000 - tp1.tv_nsec); + } else { + printf("%ld NS\n", tp2.tv_nsec - tp1.tv_nsec); + } + printf("new elf size %d\n", sz); + if (param.gentype == 0) { + fd = open(param.output_kernel_file, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); + (void)write(fd, jit, sz); + close(fd); + free(jit); + } else if (param.gentype == 1) { + *param.objptr = (char*)jit; + } + free(buf); + free(code); + return sz; +} + +REG_REPLAY_FUNC(__OPTYPE__, __OPS_PRODUCT__, __KERNEL_FUN___replay___OPS_PRODUCT__); diff --git a/precision_Problem/No_standard/cmake/util/tiling_data_def_build.py b/precision_Problem/No_standard/cmake/util/tiling_data_def_build.py new file mode 100644 index 0000000000000000000000000000000000000000..4c5b099b73596ea6bbbb125785b15acd0811cf33 --- /dev/null +++ b/precision_Problem/No_standard/cmake/util/tiling_data_def_build.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python +# coding=utf-8 +""" +Function: +The replay funtion entry +Copyright Information: +Huawei Technologies Co., Ltd. All Rights Reserved © 2020 +""" + +import sys +import os +import stat +import re +import const_var + + +def gen_tiling(tiling_header_file: str, tiling_file_out: str): + if not os.path.exists(tiling_header_file): + print("warning: no userdef tiling header file: ", tiling_header_file) + return + print("generate tiling def header file: ", tiling_file_out) + tmp_name = os.path.splitext(os.path.basename(tiling_header_file))[0].upper() + tiling_source = '#ifndef __{}_H__\n'.format(tmp_name) + tiling_source += '#define __{}_H__\n\n'.format(tmp_name) + tiling_source += '#include \n' + tiling_source += '#include \n\n' + tiling_source += '#include "kernel_tiling/kernel_tiling.h"\n\n' + end_source = "" + pattern = re.compile(r'[(](.*)[)]', re.S) + with open(tiling_header_file, 'r') as fd: + lines = fd.readlines() + for line in lines: + line = line.strip() + if (line.startswith('BEGIN_TILING_DATA_DEF')): + tiling_source += '#pragma pack(1)\n' + tiling_source += 'struct ' + struct_def = re.findall(pattern, line)[0] + tiling_source += struct_def + ' {\n' + elif (line.startswith('TILING_DATA_FIELD_DEF_ARR')): + field_params = re.findall(pattern, line)[0] + fds = field_params.split(',') + tiling_source += ' {} {}[{}] = {{}};\n'.format(fds[0].strip(), fds[2].strip(), fds[1].strip()) + elif (line.startswith('TILING_DATA_FIELD_DEF_STRUCT')): + field_params = re.findall(pattern, line)[0] + fds = field_params.split(',') + tiling_source += ' {} {};\n'.format(fds[0].strip(), fds[1].strip()) + elif (line.startswith('TILING_DATA_FIELD_DEF')): + field_params = re.findall(pattern, line)[0] + fds = field_params.split(',') + tiling_source += ' {} {} = 0;\n'.format(fds[0].strip(), fds[1].strip()) + elif (line.startswith('END_TILING_DATA_DEF')): + tiling_source += '};\n' + tiling_source += '#pragma pack()\n\n' + tiling_source += '#ifdef __NPU_TILING__\n' + tiling_source += \ + 'inline [aicore] void Init{stru}(const __gm__ uint8_t* tiling, {stru}* const_data)\n'\ + .format(stru=struct_def) + tiling_source += '{\n' + tiling_source += ' const __gm__ uint32_t *src = (const __gm__ uint32_t *)tiling;\n' + tiling_source += ' uint32_t *dst = (uint32_t *)const_data;\n' + tiling_source += ' for (auto i = 0; i < sizeof({}) / 4; i++) *(dst + i) = *(src + i);\n'\ + .format(struct_def) + tiling_source += '}\n' + tiling_source += '#else\n' + tiling_source += 'inline void Init{stru}(uint8_t* tiling, {stru}* const_data)\n'.format(stru=struct_def) + tiling_source += '{\n' + tiling_source += ' uint64_t *src = (uint64_t *)tiling;\n' + tiling_source += ' uint64_t *dst = (uint64_t *)const_data;\n' + tiling_source += ' for (auto i = 0; i < sizeof({}) / 8; i++) *(dst + i) = *(src + i);\n'\ + .format(struct_def) + tiling_source += '}\n' + tiling_source += '#endif\n\n' + end_source = ''' +#define GET_TILING_DATA(tiling_data, tiling_arg) \\ +{stru} tiling_data; \\ +Init{stru}(tiling_arg, &tiling_data)\n +'''.format(stru=struct_def) + tiling_source += end_source + tiling_source += '#endif' + with os.fdopen(os.open(tiling_file_out, const_var.WFLAGS, const_var.WMODES), 'w') as ofd: + ofd.write(tiling_source) + + +if __name__ == '__main__': + if len(sys.argv) <= 2: + raise RuntimeError('arguments must greater than 2') + gen_tiling(sys.argv[1], sys.argv[2]) diff --git a/precision_Problem/No_standard/framework/CMakeLists.txt b/precision_Problem/No_standard/framework/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6be9b492610f4d45b25bb7725648df9aac39a12 --- /dev/null +++ b/precision_Problem/No_standard/framework/CMakeLists.txt @@ -0,0 +1,11 @@ +if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/mindspore") + if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/caffe_plugin") + add_subdirectory(caffe_plugin) + endif() + if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/tf_plugin") + add_subdirectory(tf_plugin) + endif() + if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/onnx_plugin") + add_subdirectory(onnx_plugin) + endif() +endif() diff --git a/precision_Problem/No_standard/framework/tf_plugin/CMakeLists.txt b/precision_Problem/No_standard/framework/tf_plugin/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6aba5c207d3b85ad16fdea69dd813dd6cc371b1 --- /dev/null +++ b/precision_Problem/No_standard/framework/tf_plugin/CMakeLists.txt @@ -0,0 +1,14 @@ + +aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} plugin_srcs) +add_library(cust_tf_parsers SHARED ${plugin_srcs}) +target_compile_definitions(cust_tf_parsers PRIVATE google=ascend_private) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_tf_parsers PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_tf_parsers PRIVATE intf_pub graph) +install(TARGETS cust_tf_parsers + LIBRARY DESTINATION packages/vendors/${vendor_name}/framework/tensorflow +) diff --git a/precision_Problem/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc b/precision_Problem/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc new file mode 100644 index 0000000000000000000000000000000000000000..bab9fa82344b81396870024ebaf61a0989f455c8 --- /dev/null +++ b/precision_Problem/No_standard/framework/tf_plugin/tensorflow_reduce_sum_plugin.cc @@ -0,0 +1,23 @@ +/* Copyright (C) 2020-2021. Huawei Technologies Co., Ltd. All +rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the Apache License Version 2.0. + * You may not use this file except in compliance with the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * Apache License for more details at + * http://www.apache.org/licenses/LICENSE-2.0 + */ + +#include "register/register.h" + +namespace domi { +// register op info to GE +REGISTER_CUSTOM_OP("ReduceSum") + .FrameworkType(TENSORFLOW) // type: CAFFE, TENSORFLOW + .OriginOpType("ReduceSum") // name in tf module + .ParseParamsByOperatorFn(AutoMappingByOpFn); +} // namespace domi diff --git a/precision_Problem/No_standard/op_host/CMakeLists.txt b/precision_Problem/No_standard/op_host/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..40dd51cfac524b0a9607b7d8b2813edd2210c509 --- /dev/null +++ b/precision_Problem/No_standard/op_host/CMakeLists.txt @@ -0,0 +1,82 @@ + +aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} ops_srcs) + +opbuild(OPS_SRC ${ops_srcs} + OUT_DIR ${ASCEND_AUTOGEN_PATH} +) + +add_library(cust_op_proto SHARED ${ops_srcs} ${ASCEND_AUTOGEN_PATH}/op_proto.cc) +target_compile_definitions(cust_op_proto PRIVATE OP_PROTO_LIB) +target_compile_options(cust_op_proto PRIVATE + -fvisibility=hidden +) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_op_proto PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_op_proto PRIVATE + intf_pub + exe_graph + register + tiling_api + -Wl,--whole-archive + rt2_registry + -Wl,--no-whole-archive +) +set_target_properties(cust_op_proto PROPERTIES OUTPUT_NAME + cust_opsproto_rt2.0 +) +add_library(cust_optiling SHARED ${ops_srcs}) +target_compile_definitions(cust_optiling PRIVATE OP_TILING_LIB) +target_compile_options(cust_optiling PRIVATE + -fvisibility=hidden +) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_optiling PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_optiling PRIVATE + intf_pub + exe_graph + register + tiling_api + -Wl,--whole-archive + rt2_registry + -Wl,--no-whole-archive +) +set_target_properties(cust_optiling PROPERTIES OUTPUT_NAME + cust_opmaster_rt2.0 +) + +file(GLOB aclnn_src ${ASCEND_AUTOGEN_PATH}/aclnn_*.cpp) +file(GLOB aclnn_inc ${ASCEND_AUTOGEN_PATH}/aclnn_*.h) +add_library(cust_opapi SHARED ${aclnn_src}) +if(ENABLE_CROSS_COMPILE) + target_link_directories(cust_opapi PRIVATE + ${CMAKE_COMPILE_COMPILER_LIBRARY} + ${CMAKE_COMPILE_RUNTIME_LIBRARY} + ) +endif() +target_link_libraries(cust_opapi PRIVATE intf_pub ascendcl nnopbase) + +add_custom_target(optiling_compat ALL + COMMAND ln -sf lib/linux/${CMAKE_SYSTEM_PROCESSOR}/$ + ${CMAKE_CURRENT_BINARY_DIR}/liboptiling.so +) + +install(TARGETS cust_op_proto + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_proto/lib/linux/${CMAKE_SYSTEM_PROCESSOR}) +install(FILES ${ASCEND_AUTOGEN_PATH}/op_proto.h + DESTINATION packages/vendors/${vendor_name}/op_proto/inc) +install(TARGETS cust_optiling + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_tiling/lib/linux/${CMAKE_SYSTEM_PROCESSOR}) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/liboptiling.so + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_tiling) +install(TARGETS cust_opapi + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_api/lib) +install(FILES ${aclnn_inc} + DESTINATION packages/vendors/${vendor_name}/op_api/include) diff --git a/precision_Problem/No_standard/op_host/reduce_sum.cpp b/precision_Problem/No_standard/op_host/reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e509a45e67273c0889b74be7e1ad89539372c7c8 --- /dev/null +++ b/precision_Problem/No_standard/op_host/reduce_sum.cpp @@ -0,0 +1,120 @@ + + +#include "reduce_sum_tiling.h" +#include "register/op_def_registry.h" + +#include "tiling/platform/platform_ascendc.h" +#include "graph/utils/type_utils.h" +#include "acl/acl.h" + +namespace optiling { +const uint32_t BLOCK_SIZE = 32; +const uint32_t BUFFER_NUM = 2; +static ge::graphStatus TilingFunc(gert::TilingContext* context) +{ + ReduceSumTilingData tiling; + + uint64_t ubSize; + auto ascendcPlatform = platform_ascendc::PlatformAscendC(context->GetPlatformInfo()); + ascendcPlatform.GetCoreMemSize(platform_ascendc::CoreMemType::UB, ubSize); + //auto coreNum = ascendcPlatform.GetCoreNum(); + uint32_t dataType = 0; + ge::TypeUtils::GetDataTypeLength(context->GetInputDesc(0)->GetDataType(), dataType); + + + const gert::StorageShape* x1_shape = context->GetInputShape(0); + uint32_t size = x1_shape->GetStorageShape().GetDimNum(); + + uint16_t shape[10]; + for (int i = 0; i < x1_shape->GetStorageShape().GetDimNum(); i++){ + shape[i]=x1_shape->GetStorageShape().GetDim(i); + } + + +uint32_t alinum=32/dataType; +uint32_t copy_num=(shape[size-1]-1+alinum)/alinum*alinum; + + + + + + auto axes_tensor =context->GetInputTensor(1); + int32_t axis_size = axes_tensor->GetSize(); + std::cout<SetBlockDim(1); + tiling.SaveToBuffer(context->GetRawTilingData()->GetData(), context->GetRawTilingData()->GetCapacity()); + context->GetRawTilingData()->SetDataSize(tiling.GetDataSize()); + size_t *currentWorkspace = context->GetWorkspaceSizes(1); + currentWorkspace[0] = 0; + return ge::GRAPH_SUCCESS; +} +} + +namespace ge { +static ge::graphStatus InferShape(gert::InferShapeContext* context) +{ + const gert::Shape* x1_shape = context->GetInputShape(0); + gert::Shape* y_shape = context->GetOutputShape(0); + *y_shape = *x1_shape; + return GRAPH_SUCCESS; +} +static graphStatus InferDataType(gert::InferDataTypeContext* context) +{ + const auto inputDataType = context->GetInputDataType(0); + context->SetOutputDataType(0, inputDataType); + return ge::GRAPH_SUCCESS; +} +} + +namespace ops { +class ReduceSum : public OpDef { +public: + explicit ReduceSum(const char* name) : OpDef(name) + { + this->Input("x") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT, ge::DT_FLOAT16, ge::DT_INT32, ge::DT_INT8}) + .Format({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}) + .UnknownShapeFormat({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}); + this->Input("axis") + .ParamType(REQUIRED) + .DataType({ge::DT_INT32, ge::DT_INT32, ge::DT_INT32, ge::DT_INT32}) + .Format({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}) + .UnknownShapeFormat({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}); + this->Output("y") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT, ge::DT_FLOAT16, ge::DT_INT32, ge::DT_INT8}) + .Format({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}) + .UnknownShapeFormat({ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND, ge::FORMAT_ND}); + + this->Attr("keep_dims").AttrType(OPTIONAL).Bool(false); + this->Attr("ignore_nan").AttrType(OPTIONAL).Bool(false); + this->Attr("dtype").AttrType(OPTIONAL).String("float"); + + this->SetInferShape(ge::InferShape).SetInferDataType(ge::InferDataType); + + this->AICore() + .SetTiling(optiling::TilingFunc); + this->AICore().AddConfig("ascend310b"); + + } +}; + +OP_ADD(ReduceSum); +} + diff --git a/precision_Problem/No_standard/op_host/reduce_sum_tiling.h b/precision_Problem/No_standard/op_host/reduce_sum_tiling.h new file mode 100644 index 0000000000000000000000000000000000000000..46539b1d9f27a194be50a3a620ee958d8bdf1e9d --- /dev/null +++ b/precision_Problem/No_standard/op_host/reduce_sum_tiling.h @@ -0,0 +1,19 @@ + +#include "register/tilingdata_base.h" + +namespace optiling { +BEGIN_TILING_DATA_DEF(ReduceSumTilingData) + TILING_DATA_FIELD_DEF(uint32_t, keep_dim); + TILING_DATA_FIELD_DEF(uint32_t, ignore); + TILING_DATA_FIELD_DEF(uint32_t, dtype); + + TILING_DATA_FIELD_DEF(uint32_t, dataType); + TILING_DATA_FIELD_DEF(uint32_t, size); + TILING_DATA_FIELD_DEF_ARR(uint16_t, 10,shape); + TILING_DATA_FIELD_DEF(uint32_t, axis_size); + TILING_DATA_FIELD_DEF(uint32_t, AlginNum); + +END_TILING_DATA_DEF; + +REGISTER_TILING_DATA_CLASS(ReduceSum, ReduceSumTilingData) +} diff --git a/precision_Problem/No_standard/op_kernel/CMakeLists.txt b/precision_Problem/No_standard/op_kernel/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c94a952da2058b785affa6784d78b87dfe9b3d7 --- /dev/null +++ b/precision_Problem/No_standard/op_kernel/CMakeLists.txt @@ -0,0 +1,68 @@ +# set custom compile options +if ("${CMAKE_BUILD_TYPE}x" STREQUAL "Debugx") + add_ops_compile_options(ALL OPTIONS -g -O0) +endif() + +foreach(compute_unit ${ASCEND_COMPUTE_UNIT}) + + # generate aic-${compute_unit}-ops-info.json + add_ops_info_target(TARGET ops_info_gen_${compute_unit} + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core/${compute_unit}/aic-${compute_unit}-ops-info.json + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/config/${compute_unit} + ) + + # generate ascendc impl py once + if (NOT TARGET ascendc_impl_gen) + add_ops_impl_target(TARGET ascendc_impl_gen + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl + ) + endif() + + # dynamic shape binary compile + if (${ENABLE_BINARY_PACKAGE} AND NOT ${ENABLE_CROSS_COMPILE}) + add_bin_compile_target(TARGET ascendc_bin_${compute_unit} + OPS_INFO ${ASCEND_AUTOGEN_PATH}/aic-${compute_unit}-ops-info.ini + IMPL_DIR ${CMAKE_CURRENT_SOURCE_DIR} + ADP_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/dynamic + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/binary/${compute_unit} + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/kernel + COMPUTE_UNIT ${compute_unit} + ) + add_dependencies(ascendc_bin_${compute_unit} ascendc_impl_gen) + endif() + + if (${ENABLE_CROSS_COMPILE} AND ${ENABLE_BINARY_PACKAGE}) + add_cross_compile_target( + TARGET bin_${compute_unit} + OUT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../kernel + INSTALL_DIR packages/vendors/${vendor_name}/op_impl/ai_core/tbe/ + ) + endif() +endforeach() + +# generate npu_supported_ops.json +add_npu_support_target(TARGET npu_supported_ops + OPS_INFO_DIR ${ASCEND_AUTOGEN_PATH} + OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/tbe/op_info_cfg/ai_core + INSTALL_DIR packages/vendors/${vendor_name}/framework/${ASCEND_FRAMEWORK_TYPE} +) + +if(ENABLE_TEST AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/testcases) + add_subdirectory(testcases) +endif() + +# install kernel file +if (${ENABLE_SOURCE_PACKAGE}) + file(GLOB KERNEL_FILES + ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/*.h + ${CMAKE_CURRENT_SOURCE_DIR}/*.py + ) + install(FILES ${KERNEL_FILES} + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/${vendor_name}_impl/dynamic + ) +endif() diff --git a/precision_Problem/No_standard/op_kernel/reduce_sum.cpp b/precision_Problem/No_standard/op_kernel/reduce_sum.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e8a4d2b929e5df0ce5c9eddf138c2c859dc4d18b --- /dev/null +++ b/precision_Problem/No_standard/op_kernel/reduce_sum.cpp @@ -0,0 +1,85 @@ +#include "kernel_operator.h" +using namespace AscendC; + +/* + * Copyright (c) Huawei Technologies Co., Ltd. 2022-2023. All rights reserved. + * + * Function : z = x + y + * This sample is a very basic sample that implements vector add on Ascend plaform. + */ +#include "kernel_operator.h" +using namespace AscendC; + + +class KernelAdd +{ + + +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR axis, GM_ADDR y, uint32_t size, uint16_t *shape, uint32_t axes_size, uint32_t dataType) + { + + + xGm.SetGlobalBuffer((__gm__ half *)x, 32); + + + + yGm.SetGlobalBuffer((__gm__ half *)y, 1); + // y又要多少呢 最少就是消除第一个维度之后的大小 + + pipe.InitBuffer(inQueueX, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(outQueueY, 1, 2048 * sizeof(half)); + + pipe.InitBuffer(tmp1, 2048 * sizeof(float)); + pipe.InitBuffer(tmp2, 2048 * sizeof(float)); + pipe.InitBuffer(tmp3, 2048 * sizeof(float)); + + } + __aicore__ inline void Act() + { + LocalTensor xLocal = inQueueX.AllocTensor(); + LocalTensor yLocal = outQueueY.AllocTensor(); + DataCopy(xLocal, xGm, 32); + + // auto p1 = tmp1.Get(); + // auto p2 = tmp2.Get(); + // auto p3 = tmp3.Get(); + + // Cast(p1, xLocal, RoundMode::CAST_NONE, 32); + // Cast(p2, yLocal, RoundMode::CAST_NONE, 32); + + ReduceSum(yLocal, xLocal, yLocal[32], 32); + // Cast(yLocal, p2, RoundMode::CAST_TRUNC, 32); + yGm.SetValue(0, yLocal.GetValue(0)); + + inQueueX.FreeTensor(xLocal); + outQueueY.FreeTensor(yLocal); + + } + + + +private: + TPipe pipe; + TQue inQueueX; + + TQue outQueueY; + + TBuf tmp1, tmp2, tmp3; + + GlobalTensor xGm; + GlobalTensor yGm; + +}; + +extern "C" __global__ __aicore__ void reduce_sum(GM_ADDR x, GM_ADDR axes, GM_ADDR y, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + KernelAdd op; + op.Init(x, axes, y, tiling_data.size, + tiling_data.shape, tiling_data.axis_size, + tiling_data.dataType); + op.Act(); +} diff --git a/precision_Problem/No_standard/scripts/help.info b/precision_Problem/No_standard/scripts/help.info new file mode 100644 index 0000000000000000000000000000000000000000..f4b28d57a8150f0df6c386473b7554c7d087c90f --- /dev/null +++ b/precision_Problem/No_standard/scripts/help.info @@ -0,0 +1 @@ + --install-path Install operator package to specific dir path \ No newline at end of file diff --git a/precision_Problem/No_standard/scripts/install.sh b/precision_Problem/No_standard/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/precision_Problem/No_standard/scripts/install.sh @@ -0,0 +1,318 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +QUIET="y" + +while true +do + case $1 in + --quiet) + QUIET="y" + shift + ;; + --install-path=*) + INSTALL_PATH=$(echo $1 | cut -d"=" -f2-) + INSTALL_PATH=${INSTALL_PATH%*/} + shift + ;; + --*) + shift + ;; + *) + break + ;; + esac +done + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [ -n "${INSTALL_PATH}" ]; then + if [[ ! "${INSTALL_PATH}" = /* ]]; then + log "[ERROR] use absolute path for --install-path argument" + exit 1 + fi + if [ ! -d ${INSTALL_PATH} ]; then + mkdir ${INSTALL_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${INSTALL_PATH} failed" + exit 1 + fi + fi + targetdir=${INSTALL_PATH} +elif [ -n "${ASCEND_CUSTOM_OPP_PATH}" ]; then + if [ ! -d ${ASCEND_CUSTOM_OPP_PATH} ]; then + mkdir -p ${ASCEND_CUSTOM_OPP_PATH} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${ASCEND_CUSTOM_OPP_PATH} failed" + fi + fi + targetdir=${ASCEND_CUSTOM_OPP_PATH} +else + if [ "x${ASCEND_OPP_PATH}" == "x" ]; then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 + fi + targetdir="${ASCEND_OPP_PATH}" +fi + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + has_same_file=-1 + for file_a in ${sourcedir}/$vendordir/$1/*; do + file_b=${file_a##*/}; + if [ "ls ${targetdir}/$vendordir/$1" = "" ]; then + log "[INFO] ${targetdir}/$vendordir/$1 is empty !!" + return 1 + fi + grep -q $file_b <<<`ls ${targetdir}/$vendordir/$1`; + if [[ $? -eq 0 ]]; then + echo -n "${file_b} " + has_same_file=0 + fi + done + if [ 0 -eq $has_same_file ]; then + if test $QUIET = "n"; then + echo "[INFO]: has old version in ${targetdir}/$vendordir/$1, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + + while true + do + read orn + if [ "$orn" = n ]; then + return 0 + elif [ "$orn" = m ]; then + break; + elif [ "$0rn" = r ]; then + [ -n "${targetdir}/$vendordir/$1/" ] && rm -rf "${targetdir}/$vendordir/$1"/* + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace or merge old ops $1 files .g....." + fi + + log "copy new ops $1 files ......" + if [ -d ${targetdir}/$vendordir/$1/ ]; then + chmod -R +w "$targetdir/$vendordir/$1/" >/dev/null 2>&1 + fi + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} +upgrade_proto() +{ + if [ ! -f ${sourcedir}/$vendordir/custom.proto ]; then + log "[INFO] no need to upgrade custom.proto files" + return 0 + fi + if [ ! -d ${targetdir}/$vendordir/framework/caffe ];then + log "[INFO] create ${targetdir}/$vendordir/framework/caffe." + mkdir -p ${targetdir}/$vendordir/framework/caffe + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/framework/caffe failed" + return 1 + fi + else + if [ -f ${targetdir}/$vendordir/framework/caffe/custom.proto ]; then + # 有老版本,判断是否要覆盖式安装 + if test $QUIET = "n"; then + echo "[INFO] ${targetdir}/$vendordir/framework/caffe has old version"\ + "custom.proto file. Do you want to replace? [y/n] " + + while true + do + read yn + if [ "$yn" = n ]; then + return 0 + elif [ "$yn" = y ]; then + break; + else + echo "[ERROR] input error, please input again!" + fi + done + fi + fi + log "[INFO] replace old caffe.proto files ......" + fi + chmod -R +w "$targetdir/$vendordir/framework/caffe/" >/dev/null 2>&1 + cp -rf ${sourcedir}/$vendordir/custom.proto ${targetdir}/$vendordir/framework/caffe/ + if [ $? -ne 0 ];then + log "[ERROR] copy new custom.proto failed" + return 1 + fi + log "[INFO] copy custom.proto success" + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +delete_optiling_file() +{ + if [ ! -d ${targetdir}/vendors ];then + log "[INFO] $1 not exist, no need to uninstall" + return 0 + fi + sys_info=$(uname -m) + if [ ! -d ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/lib/linux/${sys_info} ];then + rm -rf ${sourcedir}/$vendordir/$1/ai_core/tbe/op_tiling/liboptiling.so + fi + return 0 +} + +log "[INFO] copy uninstall sh success" + +if [ ! -d ${targetdir}/vendors ];then + log "[INFO] create ${targetdir}/vendors." + mkdir -p ${targetdir}/vendors + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/vendors failed" + return 1 + fi +fi +chmod u+w ${targetdir}/vendors + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +delete_optiling_file op_impl +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +upgrade_proto +if [ $? -ne 0 ];then + exit 1 +fi + +# set the set_env.bash +if [ -n "${INSTALL_PATH}" ] && [ -d ${INSTALL_PATH} ]; then + _ASCEND_CUSTOM_OPP_PATH=${targetdir}/${vendordir} + bin_path="${_ASCEND_CUSTOM_OPP_PATH}/bin" + set_env_variable="#!/bin/bash\nexport ASCEND_CUSTOM_OPP_PATH=${_ASCEND_CUSTOM_OPP_PATH}:\${ASCEND_CUSTOM_OPP_PATH}" + if [ ! -d ${bin_path} ]; then + mkdir -p ${bin_path} >> /dev/null 2>&1 + if [ $? -ne 0 ]; then + log "[ERROR] create ${bin_path} failed" + exit 1 + fi + fi + echo -e ${set_env_variable} > ${bin_path}/set_env.bash + if [ $? -ne 0 ]; then + log "[ERROR] write ASCEND_CUSTOM_OPP_PATH to set_env.bash failed" + exit 1 + else + log "[INFO] using requirements: when custom module install finished or before you run the custom module, \ + execute the command [ source ${bin_path}/set_env.bash ] to set the environment path" + fi +else + config_file=${targetdir}/vendors/config.ini + if [ ! -f ${config_file} ]; then + touch ${config_file} + chmod 640 ${config_file} + echo "load_priority=$vendor_name" > ${config_file} + if [ $? -ne 0 ];then + echo "echo load_priority failed" + exit 1 + fi + else + found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" + found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') + vendor=$(echo $found_vendor | tr -s ' ' ',') + if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" + fi + fi +fi + +chmod u-w ${targetdir}/vendors + +if [ -d ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/ ]; then + chmod -R 440 ${targetdir}/$vendordir/op_impl/cpu/aicpu_kernel/impl/* >/dev/null 2>&1 +fi +if [ -f ${targetdir}/ascend_install.info ]; then + chmod -R 440 ${targetdir}/ascend_install.info +fi +if [ -f ${targetdir}/scene.info ]; then + chmod -R 440 ${targetdir}/scene.info +fi +if [ -f ${targetdir}/version.info ]; then + chmod -R 440 ${targetdir}/version.info +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/No_standard/scripts/upgrade.sh b/precision_Problem/No_standard/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/precision_Problem/No_standard/scripts/upgrade.sh @@ -0,0 +1,151 @@ +#!/bin/bash +vendor_name=customize +targetdir=/usr/local/Ascend/opp +target_custom=0 + +sourcedir=$PWD/packages +vendordir=vendors/$vendor_name + +log() { + cur_date=`date +"%Y-%m-%d %H:%M:%S"` + echo "[runtime] [$cur_date] "$1 +} + +if [[ "x${ASCEND_OPP_PATH}" == "x" ]];then + log "[ERROR] env ASCEND_OPP_PATH no exist" + exit 1 +fi + +targetdir=${ASCEND_OPP_PATH} + +if [ ! -d $targetdir ];then + log "[ERROR] $targetdir no exist" + exit 1 +fi + +upgrade() +{ + if [ ! -d ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 files" + return 0 + fi + + if [ ! -d ${targetdir}/$vendordir/$1 ];then + log "[INFO] create ${targetdir}/$vendordir/$1." + mkdir -p ${targetdir}/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] create ${targetdir}/$vendordir/$1 failed" + return 1 + fi + else + vendor_installed_dir=$(ls "$targetdir/vendors" 2> /dev/null) + for i in $vendor_installed_dir;do + vendor_installed_file=$(ls "$vendor_installed_dir/$vendor_name/$i" 2> /dev/null) + if [ "$i" = "$vendor_name" ] && [ "$vendor_installed_file" != "" ]; then + echo "[INFO]: $vendor_name custom opp package has been installed on the path $vendor_installed_dir, \ + you want to Overlay Installation , please enter:[o]; \ + or replace directory installation , please enter: [r]; \ + or not install , please enter:[n]." + fi + while true + do + read mrn + if [ "$mrn" = m ]; then + break + elif [ "$mrn" = r ]; then + [ -n "$vendor_installed_file"] && rm -rf "$vendor_installed_file" + break + elif [ "$mrn" = n ]; then + return 0 + else + echo "[WARNING]: Input error, please input m or r or n to choose!" + fi + done + done + log "[INFO] replace old ops $1 files ......" + fi + + log "copy new ops $1 files ......" + cp -rf ${sourcedir}/$vendordir/$1/* $targetdir/$vendordir/$1/ + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 files failed" + return 1 + fi + + return 0 +} + +upgrade_file() +{ + if [ ! -e ${sourcedir}/$vendordir/$1 ]; then + log "[INFO] no need to upgrade ops $1 file" + return 0 + fi + + log "copy new $1 files ......" + cp -f ${sourcedir}/$vendordir/$1 $targetdir/$vendordir/$1 + if [ $? -ne 0 ];then + log "[ERROR] copy new $1 file failed" + return 1 + fi + + return 0 +} + +log "[INFO] copy uninstall sh success" + +echo "[ops_custom]upgrade framework" +upgrade framework +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op proto" +upgrade op_proto +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op impl" +upgrade op_impl +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade op api" +upgrade op_api +if [ $? -ne 0 ];then + exit 1 +fi + +echo "[ops_custom]upgrade version.info" +upgrade_file version.info +if [ $? -ne 0 ];then + exit 1 +fi + +config_file=${targetdir}/vendors/config.ini +found_vendors="$(grep -w "load_priority" "$config_file" | cut --only-delimited -d"=" -f2-)" +found_vendor=$(echo $found_vendors | sed "s/$vendor_name//g" | tr ',' ' ') +vendor=$(echo $found_vendor | tr -s ' ' ',') +if [ "$vendor" != "" ]; then + sed -i "/load_priority=$found_vendors/s@load_priority=$found_vendors@load_priority=$vendor_name,$vendor@g" "$config_file" +fi + +changemode() +{ + if [ -d ${targetdir} ];then + chmod -R 550 ${targetdir}>/dev/null 2>&1 + fi + + return 0 +} +echo "[ops_custom]changemode..." +#changemode +if [ $? -ne 0 ];then + exit 1 +fi + +echo "SUCCESS" +exit 0 + diff --git a/precision_Problem/README.md b/precision_Problem/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a56ec1ee9ab9446c7b96b94ec8cc075968eb849f --- /dev/null +++ b/precision_Problem/README.md @@ -0,0 +1,100 @@ + +## 概述 +本样例基于ReduceSum算子工程,介绍了不同方式计算的精度差异。 +## 目录结构介绍 +``` +├── precision_Problem //使用框架调用的方式调用ReduceSum算子 +│ ├── ReduceSumCase1 // 通过aclnn调用的方式调用ReduceSum算子 +│ └── Is_standard +│ └── No_standard // ReduceSum算子工程 +``` +## 算子工程介绍 +其中,算子工程目录ReduceSum包含算子实现的模板文件、编译脚本等,如下所示: +``` +├── ReduceSum //ReduceSum算子工程 +│ ├── cmake +│ ├── framework // 算子插件实现文件目录,单算子模型文件的生成不依赖算子适配插件,无需关注 +│ ├── op_host // host侧实现文件 +│ ├── op_kernel // kernel侧实现文件 +│ ├── scripts // 自定义算子工程打包相关脚本所在目录 +│ ├── build.sh // 编译入口脚本 +│ ├── CMakeLists.txt // 算子工程的CMakeLists.txt +│ └── CMakePresets.json // 编译配置项 +``` +CANN软件包中提供了工程创建工具msopgen,AddCustom算子工程可通过AddCustom.json自动创建,具体请参考[Ascend C算子开发](https://hiascend.com/document/redirect/CannCommunityOpdevAscendC)>算子开发>算子开发工程>基于自定义算子工程的算子开发>创建算子工程 章节。 +## 编译运行样例算子 +针对自定义算子工程,编译运行包含如下步骤: +- 编译自定义算子工程生成算子安装包; +- 安装自定义算子到算子库中; +- 调用执行自定义算子; + +详细操作如下所示。 +### 1. 获取源码包 +编译运行此样例前,请参考[准备:获取样例代码](../README.md#codeready)完成源码包获取。 +### 2. 编译算子工程 + 编译自定义算子工程,构建生成自定义算子包。 + + - 执行如下命令,切换到算子工程AddCustom目录。 + + ```bash + cd ${git_clone_path}/Operator-performance/precision_Problem/No_standard + ``` + + - 修改CMakePresets.json中ASCEND_CANN_PACKAGE_PATH为CANN软件包安装后的实际路径。 + + + ```json + { + …… + "configurePresets": [ + { + …… + "ASCEND_CANN_PACKAGE_PATH": { + "type": "PATH", + "value": "/usr/local/Ascend/ascend-toolkit/latest" //请替换为CANN软件包安装后的实际路径。eg:/home/HwHiAiUser/Ascend/ascend-toolkit/latest + }, + …… + } + ] + } + ``` + + - 使用单核请跳过此步骤,使用多核,请将op_host/下的"add_custom.cpp"重命名为"add_custom.txt",将op_host/下的"add_custom_8core.txt"重命名为"add_custom.cpp" + + - 在算子工程AddCustom目录下执行如下命令,进行算子工程编译。 + + ```bash + ./build.sh + ``` +编译成功后,会在当前目录下创建build_out目录,并在build_out目录下生成自定义算子安装包custom_opp_\_\.run,例如“custom_opp_ubuntu_x86_64.run”。 + +备注:如果要使用dump调试功能,需要移除op_host内和CMakeLists.txt内的Atlas 200/500 A2 推理产品的配置。 + +### 3. 部署算子包 + +执行如下命令,在自定义算子安装包所在路径下,安装自定义算子包。 + ```bash + cd build_out + ./custom_opp__.run + ``` +命令执行成功后,自定义算子包中的相关文件将部署至当前环境的OPP算子库的vendors/customize目录中。 + +### 4. 配置环境变量 + + 请根据当前环境上CANN开发套件包的[安装方式](https://hiascend.com/document/redirect/CannCommunityInstSoftware),选择对应配置环境变量的命令。 + - 默认路径,root用户安装CANN软件包 + ```bash + export ASCEND_INSTALL_PATH=/usr/local/Ascend/ascend-toolkit/latest + ``` + - 默认路径,非root用户安装CANN软件包 + ```bash + export ASCEND_INSTALL_PATH=$HOME/Ascend/ascend-toolkit/latest + ``` + - 指定路径install_path,安装CANN软件包 + ```bash + export ASCEND_INSTALL_PATH=${install_path}/ascend-toolkit/latest + ``` +### 5. 调用执行算子工程和算子耗时 +- [aclnn调用AddCustom算子工程](./AclNNInvocation/README.md) + + diff --git a/precision_Problem/ReduceSumCase1/build/CMakeCache.txt b/precision_Problem/ReduceSumCase1/build/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fe793cd0a831505e6a3a1737dfb48c8ad888d40 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeCache.txt @@ -0,0 +1,369 @@ +# This is the CMakeCache file. +# For build in directory: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=acl_execute_add + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +acl_execute_add_BINARY_DIR:STATIC=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build + +//Value Computed by CMake +acl_execute_add_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +acl_execute_add_SOURCE_DIR:STATIC=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "aarch64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeSystem.cmake b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.10.0+") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.10.0+") +set(CMAKE_HOST_SYSTEM_PROCESSOR "aarch64") + + + +set(CMAKE_SYSTEM "Linux-5.10.0+") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.10.0+") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,803 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdC/a.out b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,791 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/CMakeDirectoryInformation.cmake b/precision_Problem/ReduceSumCase1/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..87e142b03bdba51def52e0eab3825c0ae2eeaae2 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/CMakeOutput.log b/precision_Problem/ReduceSumCase1/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..7caf645331136b0c5f020babf38cce88a79c7373 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,437 @@ +The system is: Linux - 5.10.0+ - aarch64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_f4e48/fast && /usr/bin/gmake -f CMakeFiles/cmTC_f4e48.dir/build.make CMakeFiles/cmTC_f4e48.dir/build +gmake[1]: Entering directory '/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_f4e48.dir/' + /usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_f4e48.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccczPiqv.s +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/aarch64-linux-gnu/11/include + /usr/local/include + /usr/include/aarch64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_f4e48.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o /tmp/ccczPiqv.s +GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_f4e48 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f4e48.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o -o cmTC_f4e48 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f4e48' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_f4e48.' + /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccha1bnZ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_f4e48 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f4e48' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_f4e48.' +gmake[1]: Leaving directory '/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/aarch64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/aarch64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_f4e48/fast && /usr/bin/gmake -f CMakeFiles/cmTC_f4e48.dir/build.make CMakeFiles/cmTC_f4e48.dir/build] + ignore line: [gmake[1]: Entering directory '/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_f4e48.dir/'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_f4e48.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccczPiqv.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/aarch64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_f4e48.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o /tmp/ccczPiqv.s] + ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_f4e48] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f4e48.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o -o cmTC_f4e48 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f4e48' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_f4e48.'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccha1bnZ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_f4e48 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccha1bnZ.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_f4e48] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_f4e48.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_003e0/fast && /usr/bin/gmake -f CMakeFiles/cmTC_003e0.dir/build.make CMakeFiles/cmTC_003e0.dir/build +gmake[1]: Entering directory '/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_003e0.dir/' + /usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_003e0.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cckVmOsn.s +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11" +ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/11 + /usr/include/aarch64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/aarch64-linux-gnu/11/include + /usr/local/include + /usr/include/aarch64-linux-gnu + /usr/include +End of search list. +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 3e6e780af1232722b47e0979fda82402 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_003e0.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o /tmp/cckVmOsn.s +GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_003e0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_003e0.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_003e0 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper +Target: aarch64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) +COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_003e0' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_003e0.' + /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cchqVdis.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_003e0 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_003e0' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_003e0.' +gmake[1]: Leaving directory '/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/aarch64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/aarch64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/aarch64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/aarch64-linux-gnu/c++/11] ==> [/usr/include/aarch64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/aarch64-linux-gnu/11/include] ==> [/usr/lib/gcc/aarch64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/aarch64-linux-gnu] ==> [/usr/include/aarch64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/aarch64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/aarch64-linux-gnu/11/include;/usr/local/include;/usr/include/aarch64-linux-gnu;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_003e0/fast && /usr/bin/gmake -f CMakeFiles/cmTC_003e0.dir/build.make CMakeFiles/cmTC_003e0.dir/build] + ignore line: [gmake[1]: Entering directory '/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_003e0.dir/'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_003e0.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlittle-endian -mabi=lp64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cckVmOsn.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/aarch64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/aarch64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/aarch64-linux-gnu/11/../../../../aarch64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/aarch64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/aarch64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 3e6e780af1232722b47e0979fda82402] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_003e0.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o /tmp/cckVmOsn.s] + ignore line: [GNU assembler version 2.38 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_003e0] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_003e0.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_003e0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] + ignore line: [Target: aarch64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/11/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_003e0' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_003e0.'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cchqVdis.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_003e0 /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/11 -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/11/../../.. CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cchqVdis.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib/ld-linux-aarch64.so.1] ==> ignore + arg [-X] ==> ignore + arg [-EL] ==> ignore + arg [-maarch64linux] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_003e0] ==> ignore + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] + arg [-L/lib/aarch64-linux-gnu] ==> dir [/lib/aarch64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_003e0.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/Scrt1.o] ==> [/usr/lib/aarch64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crti.o] ==> [/usr/lib/aarch64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu/crtn.o] ==> [/usr/lib/aarch64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11] ==> [/usr/lib/gcc/aarch64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/aarch64-linux-gnu] ==> [/lib/aarch64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/aarch64-linux-gnu] ==> [/usr/lib/aarch64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/aarch64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/aarch64-linux-gnu/Scrt1.o;/usr/lib/aarch64-linux-gnu/crti.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/aarch64-linux-gnu/11/crtendS.o;/usr/lib/aarch64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/aarch64-linux-gnu/11;/usr/lib/aarch64-linux-gnu;/usr/lib;/lib/aarch64-linux-gnu;/lib] + implicit fwks: [] + + diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/Makefile.cmake b/precision_Problem/ReduceSumCase1/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..046dda133ccba2581d6b422bd7d4ebc8aa197597 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,122 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeSystem.cmake" + "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/CMakeLists.txt" + "/usr/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.22/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.22/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.22.1/CMakeSystem.cmake" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/execute_op.dir/DependInfo.cmake" + ) diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/Makefile2 b/precision_Problem/ReduceSumCase1/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..ec511a629e7a686a5e701c55d13acf01b6180652 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/Makefile2 @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/execute_op.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/execute_op.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/execute_op.dir + +# All Build rule for target. +CMakeFiles/execute_op.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles --progress-num=1,2,3,4,5 "Built target execute_op" +.PHONY : CMakeFiles/execute_op.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/execute_op.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/execute_op.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles 0 +.PHONY : CMakeFiles/execute_op.dir/rule + +# Convenience name for target. +execute_op: CMakeFiles/execute_op.dir/rule +.PHONY : execute_op + +# clean rule for target. +CMakeFiles/execute_op.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/clean +.PHONY : CMakeFiles/execute_op.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/TargetDirectories.txt b/precision_Problem/ReduceSumCase1/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea70a972de184178d6efe9b5369d859f145abc40 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,7 @@ +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/execute_op.dir +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/edit_cache.dir +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/rebuild_cache.dir +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/list_install_components.dir +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/install.dir +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/install/local.dir +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/install/strip.dir diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/cmake.check_cache b/precision_Problem/ReduceSumCase1/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/DependInfo.cmake b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e6c3360b3b8590135e30bfc2832ffd16d5e9e564 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/common.cpp" "CMakeFiles/execute_op.dir/common.cpp.o" "gcc" "CMakeFiles/execute_op.dir/common.cpp.o.d" + "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/main.cpp" "CMakeFiles/execute_op.dir/main.cpp.o" "gcc" "CMakeFiles/execute_op.dir/main.cpp.o.d" + "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/op_runner.cpp" "CMakeFiles/execute_op.dir/op_runner.cpp.o" "gcc" "CMakeFiles/execute_op.dir/op_runner.cpp.o.d" + "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/operator_desc.cpp" "CMakeFiles/execute_op.dir/operator_desc.cpp.o" "gcc" "CMakeFiles/execute_op.dir/operator_desc.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/build.make b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..a1cbc12965c0de35c6a13ca9edbcf5364d6645f9 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/build.make @@ -0,0 +1,158 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build + +# Include any dependencies generated for this target. +include CMakeFiles/execute_op.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/execute_op.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/execute_op.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/execute_op.dir/flags.make + +CMakeFiles/execute_op.dir/operator_desc.cpp.o: CMakeFiles/execute_op.dir/flags.make +CMakeFiles/execute_op.dir/operator_desc.cpp.o: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/operator_desc.cpp +CMakeFiles/execute_op.dir/operator_desc.cpp.o: CMakeFiles/execute_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/execute_op.dir/operator_desc.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_op.dir/operator_desc.cpp.o -MF CMakeFiles/execute_op.dir/operator_desc.cpp.o.d -o CMakeFiles/execute_op.dir/operator_desc.cpp.o -c /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/operator_desc.cpp + +CMakeFiles/execute_op.dir/operator_desc.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_op.dir/operator_desc.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/operator_desc.cpp > CMakeFiles/execute_op.dir/operator_desc.cpp.i + +CMakeFiles/execute_op.dir/operator_desc.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_op.dir/operator_desc.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/operator_desc.cpp -o CMakeFiles/execute_op.dir/operator_desc.cpp.s + +CMakeFiles/execute_op.dir/op_runner.cpp.o: CMakeFiles/execute_op.dir/flags.make +CMakeFiles/execute_op.dir/op_runner.cpp.o: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/op_runner.cpp +CMakeFiles/execute_op.dir/op_runner.cpp.o: CMakeFiles/execute_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/execute_op.dir/op_runner.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_op.dir/op_runner.cpp.o -MF CMakeFiles/execute_op.dir/op_runner.cpp.o.d -o CMakeFiles/execute_op.dir/op_runner.cpp.o -c /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/op_runner.cpp + +CMakeFiles/execute_op.dir/op_runner.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_op.dir/op_runner.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/op_runner.cpp > CMakeFiles/execute_op.dir/op_runner.cpp.i + +CMakeFiles/execute_op.dir/op_runner.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_op.dir/op_runner.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/op_runner.cpp -o CMakeFiles/execute_op.dir/op_runner.cpp.s + +CMakeFiles/execute_op.dir/main.cpp.o: CMakeFiles/execute_op.dir/flags.make +CMakeFiles/execute_op.dir/main.cpp.o: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/main.cpp +CMakeFiles/execute_op.dir/main.cpp.o: CMakeFiles/execute_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/execute_op.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_op.dir/main.cpp.o -MF CMakeFiles/execute_op.dir/main.cpp.o.d -o CMakeFiles/execute_op.dir/main.cpp.o -c /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/main.cpp + +CMakeFiles/execute_op.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_op.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/main.cpp > CMakeFiles/execute_op.dir/main.cpp.i + +CMakeFiles/execute_op.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_op.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/main.cpp -o CMakeFiles/execute_op.dir/main.cpp.s + +CMakeFiles/execute_op.dir/common.cpp.o: CMakeFiles/execute_op.dir/flags.make +CMakeFiles/execute_op.dir/common.cpp.o: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/common.cpp +CMakeFiles/execute_op.dir/common.cpp.o: CMakeFiles/execute_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/execute_op.dir/common.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_op.dir/common.cpp.o -MF CMakeFiles/execute_op.dir/common.cpp.o.d -o CMakeFiles/execute_op.dir/common.cpp.o -c /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/common.cpp + +CMakeFiles/execute_op.dir/common.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_op.dir/common.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/common.cpp > CMakeFiles/execute_op.dir/common.cpp.i + +CMakeFiles/execute_op.dir/common.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_op.dir/common.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/common.cpp -o CMakeFiles/execute_op.dir/common.cpp.s + +# Object files for target execute_op +execute_op_OBJECTS = \ +"CMakeFiles/execute_op.dir/operator_desc.cpp.o" \ +"CMakeFiles/execute_op.dir/op_runner.cpp.o" \ +"CMakeFiles/execute_op.dir/main.cpp.o" \ +"CMakeFiles/execute_op.dir/common.cpp.o" + +# External object files for target execute_op +execute_op_EXTERNAL_OBJECTS = + +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op: CMakeFiles/execute_op.dir/operator_desc.cpp.o +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op: CMakeFiles/execute_op.dir/op_runner.cpp.o +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op: CMakeFiles/execute_op.dir/main.cpp.o +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op: CMakeFiles/execute_op.dir/common.cpp.o +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op: CMakeFiles/execute_op.dir/build.make +/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op: CMakeFiles/execute_op.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX executable /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/execute_op.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/execute_op.dir/build: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op +.PHONY : CMakeFiles/execute_op.dir/build + +CMakeFiles/execute_op.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/execute_op.dir/cmake_clean.cmake +.PHONY : CMakeFiles/execute_op.dir/clean + +CMakeFiles/execute_op.dir/depend: + cd /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles/execute_op.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/execute_op.dir/depend + diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/cmake_clean.cmake b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..54dde7ed2473b24eae7ce36a955a54674161d14f --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op" + "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op.pdb" + "CMakeFiles/execute_op.dir/common.cpp.o" + "CMakeFiles/execute_op.dir/common.cpp.o.d" + "CMakeFiles/execute_op.dir/main.cpp.o" + "CMakeFiles/execute_op.dir/main.cpp.o.d" + "CMakeFiles/execute_op.dir/op_runner.cpp.o" + "CMakeFiles/execute_op.dir/op_runner.cpp.o.d" + "CMakeFiles/execute_op.dir/operator_desc.cpp.o" + "CMakeFiles/execute_op.dir/operator_desc.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/execute_op.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/common.cpp.o b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/common.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..d3e7f41083fa1917b8342f987e6193097d3bd8d7 Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/common.cpp.o differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/common.cpp.o.d b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/common.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..0384366d7e6dc0459f199bdd3ad5d4fd774902a4 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/common.cpp.o.d @@ -0,0 +1,200 @@ +CMakeFiles/execute_op.dir/common.cpp.o: \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/common.cpp \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/common.h \ + /usr/include/c++/11/cstdio \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/11/cstdint \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/cctype /usr/include/ctype.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/alloca.h /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/c++/11/iomanip \ + /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h /usr/include/c++/11/ctime \ + /usr/include/aarch64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_mdl.h \ + /usr/include/c++/11/fstream \ + /usr/include/aarch64-linux-gnu/c++/11/bits/basic_file.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++io.h \ + /usr/include/c++/11/bits/fstream.tcc /usr/include/fcntl.h \ + /usr/include/aarch64-linux-gnu/bits/fcntl.h \ + /usr/include/aarch64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/linux/falloc.h /usr/include/aarch64-linux-gnu/bits/stat.h \ + /usr/include/aarch64-linux-gnu/bits/struct_stat.h /usr/include/unistd.h \ + /usr/include/aarch64-linux-gnu/bits/posix_opt.h \ + /usr/include/aarch64-linux-gnu/bits/environments.h \ + /usr/include/aarch64-linux-gnu/bits/confname.h \ + /usr/include/aarch64-linux-gnu/bits/getopt_posix.h \ + /usr/include/aarch64-linux-gnu/bits/getopt_core.h \ + /usr/include/aarch64-linux-gnu/bits/unistd_ext.h \ + /usr/include/linux/close_range.h \ + /usr/include/aarch64-linux-gnu/sys/stat.h \ + /usr/include/aarch64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/aarch64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/aarch64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/aarch64-linux-gnu/asm/posix_types.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/aarch64-linux-gnu/bits/statx-generic.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_statx.h diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/compiler_depend.make b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f957cf26aadf9bb814b34f101a6a883824f49248 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for execute_op. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/compiler_depend.ts b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c9d97ab1ece9037c8f79c0cb601525c1c9ca9ed2 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for execute_op. diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/depend.make b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..be39b1308dd1ac371a44849f7db34f709213930d --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for execute_op. +# This may be replaced when dependencies are built. diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/flags.make b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..fb7d6de1ac83bae9bd99f7f4af1cd20d0da3d3fb --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/runtime/include -I/usr/local/Ascend/ascend-toolkit/latest/atc/include -I/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc -I/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include -I/include/aclnnop + +CXX_FLAGS = -std=c++11 + diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/link.txt b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1e01287a3557ca59f457aa909c44c8d77120d36 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/execute_op.dir/operator_desc.cpp.o CMakeFiles/execute_op.dir/op_runner.cpp.o CMakeFiles/execute_op.dir/main.cpp.o CMakeFiles/execute_op.dir/common.cpp.o -o /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op -L/usr/local/Ascend/ascend-toolkit/latest/aarch64-linux/lib64 -L/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/aarch64-linux/lib64:/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib: -lascendcl -lcust_opapi -lacl_op_compiler -lnnopbase -lstdc++ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/main.cpp.o b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/main.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..b524948f5687f97e09e9cf742b8269d4e5183c2e Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/main.cpp.o differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/main.cpp.o.d b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/main.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..779aba24eedf9bad7aa750f94c2fc2854c15e859 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/main.cpp.o.d @@ -0,0 +1,197 @@ +CMakeFiles/execute_op.dir/main.cpp.o: \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/main.cpp \ + /usr/include/stdc-predef.h /usr/include/c++/11/cstdint \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/iostream /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/memoryfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/new /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/c++/11/bits/ios_base.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/bits/locale_classes.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/alloca.h /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/11/cerrno /usr/include/errno.h \ + /usr/include/aarch64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/unistd.h \ + /usr/include/aarch64-linux-gnu/bits/posix_opt.h \ + /usr/include/aarch64-linux-gnu/bits/environments.h \ + /usr/include/aarch64-linux-gnu/bits/confname.h \ + /usr/include/aarch64-linux-gnu/bits/getopt_posix.h \ + /usr/include/aarch64-linux-gnu/bits/getopt_core.h \ + /usr/include/aarch64-linux-gnu/bits/unistd_ext.h \ + /usr/include/linux/close_range.h \ + /usr/include/aarch64-linux-gnu/sys/stat.h \ + /usr/include/aarch64-linux-gnu/bits/stat.h \ + /usr/include/aarch64-linux-gnu/bits/struct_stat.h \ + /usr/include/aarch64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/aarch64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/aarch64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/aarch64-linux-gnu/asm/posix_types.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/aarch64-linux-gnu/bits/statx-generic.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_statx.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_mdl.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/op_runner.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/aclnn/acl_meta.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_base.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/common.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/iomanip \ + /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h /usr/include/c++/11/ctime \ + /usr/include/aarch64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/operator_desc.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/common.h diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/op_runner.cpp.o b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/op_runner.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..7356dfddcbf1ea71478a02d460a05355dcdd2564 Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/op_runner.cpp.o differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/op_runner.cpp.o.d b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/op_runner.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..7f8e437b6372b11fd8bb1e9b6be8adc7ea07503a --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/op_runner.cpp.o.d @@ -0,0 +1,183 @@ +CMakeFiles/execute_op.dir/op_runner.cpp.o: \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/op_runner.cpp \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/op_runner.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/aclnn/acl_meta.h \ + /usr/include/c++/11/cstdint \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/cstdlib /usr/include/stdlib.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/aarch64-linux-gnu/sys/types.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/endian.h /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/alloca.h /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_mdl.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/common.h \ + /usr/include/c++/11/cstdio /usr/include/stdio.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/cctype /usr/include/ctype.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/c++/11/iomanip \ + /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h /usr/include/c++/11/ctime \ + /usr/include/aarch64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/operator_desc.h \ + /usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include/aclnn_reduce_sum.h \ + /usr/include/c++/11/limits /usr/include/c++/11/cassert \ + /usr/include/assert.h \ + /usr/local/Ascend/ascend-toolkit/latest/atc/include/acl/acl_op_compiler.h \ + /usr/local/Ascend/ascend-toolkit/latest/atc/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/atc/include/acl/acl_op.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/common.h diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/operator_desc.cpp.o b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/operator_desc.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..b3ef513b27c26b44d738965de1c7d93ca03c34ae Binary files /dev/null and b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/operator_desc.cpp.o differ diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/operator_desc.cpp.o.d b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/operator_desc.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..83530132e241e1ef611cd58a31d96bb344b00e51 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/operator_desc.cpp.o.d @@ -0,0 +1,173 @@ +CMakeFiles/execute_op.dir/operator_desc.cpp.o: \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/operator_desc.cpp \ + /usr/include/stdc-predef.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/common.h \ + /usr/include/c++/11/cstdio \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/aarch64-linux-gnu/bits/wordsize.h \ + /usr/include/aarch64-linux-gnu/bits/timesize.h \ + /usr/include/aarch64-linux-gnu/sys/cdefs.h \ + /usr/include/aarch64-linux-gnu/bits/long-double.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs.h \ + /usr/include/aarch64-linux-gnu/gnu/stubs-lp64.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdio.h \ + /usr/include/aarch64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /usr/include/aarch64-linux-gnu/bits/types.h \ + /usr/include/aarch64-linux-gnu/bits/typesizes.h \ + /usr/include/aarch64-linux-gnu/bits/time64.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/aarch64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/aarch64-linux-gnu/bits/stdio_lim.h \ + /usr/include/aarch64-linux-gnu/bits/floatn.h \ + /usr/include/aarch64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/include/aarch64-linux-gnu/bits/wchar.h \ + /usr/include/aarch64-linux-gnu/bits/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/locale_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/11/cstdint \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/aarch64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/cctype /usr/include/ctype.h \ + /usr/include/aarch64-linux-gnu/bits/endian.h \ + /usr/include/aarch64-linux-gnu/bits/endianness.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/time_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/aarch64-linux-gnu/bits/sched.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/aarch64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/aarch64-linux-gnu/bits/time.h \ + /usr/include/aarch64-linux-gnu/bits/timex.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/aarch64-linux-gnu/bits/types/clock_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/aarch64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/timer_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/aarch64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/aarch64-linux-gnu/bits/struct_mutex.h \ + /usr/include/aarch64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/aarch64-linux-gnu/bits/setjmp.h \ + /usr/include/aarch64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/aarch64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/aarch64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/aarch64-linux-gnu/bits/waitflags.h \ + /usr/include/aarch64-linux-gnu/bits/waitstatus.h \ + /usr/include/aarch64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/aarch64-linux-gnu/bits/byteswap.h \ + /usr/include/aarch64-linux-gnu/bits/uintn-identity.h \ + /usr/include/aarch64-linux-gnu/sys/select.h \ + /usr/include/aarch64-linux-gnu/bits/select.h \ + /usr/include/aarch64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/alloca.h /usr/include/aarch64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/aarch64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/aarch64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/aarch64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/aarch64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/aarch64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/c++/11/iomanip \ + /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h /usr/include/c++/11/ctime \ + /usr/include/aarch64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/aarch64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_rt.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_base.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/rt_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/error_codes/ge_error_codes.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_op.h \ + /usr/local/Ascend/ascend-toolkit/latest/runtime/include/acl/acl_mdl.h \ + /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src/../inc/operator_desc.h diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/progress.make b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..33e6bffba3730113ad4bec358b7c8a00b5a67431 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/execute_op.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 + diff --git a/precision_Problem/ReduceSumCase1/build/CMakeFiles/progress.marks b/precision_Problem/ReduceSumCase1/build/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7ed6ff82de6bcc2a78243fc9c54d3ef5ac14da69 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/precision_Problem/ReduceSumCase1/build/Makefile b/precision_Problem/ReduceSumCase1/build/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..b53d95c0c4651f979a6d87bd220a5cbee4e26e1f --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/Makefile @@ -0,0 +1,311 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named execute_op + +# Build rule for target. +execute_op: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 execute_op +.PHONY : execute_op + +# fast build rule for target. +execute_op/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/build +.PHONY : execute_op/fast + +common.o: common.cpp.o +.PHONY : common.o + +# target to build an object file +common.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/common.cpp.o +.PHONY : common.cpp.o + +common.i: common.cpp.i +.PHONY : common.i + +# target to preprocess a source file +common.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/common.cpp.i +.PHONY : common.cpp.i + +common.s: common.cpp.s +.PHONY : common.s + +# target to generate assembly for a file +common.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/common.cpp.s +.PHONY : common.cpp.s + +main.o: main.cpp.o +.PHONY : main.o + +# target to build an object file +main.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/main.cpp.o +.PHONY : main.cpp.o + +main.i: main.cpp.i +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/main.cpp.s +.PHONY : main.cpp.s + +op_runner.o: op_runner.cpp.o +.PHONY : op_runner.o + +# target to build an object file +op_runner.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/op_runner.cpp.o +.PHONY : op_runner.cpp.o + +op_runner.i: op_runner.cpp.i +.PHONY : op_runner.i + +# target to preprocess a source file +op_runner.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/op_runner.cpp.i +.PHONY : op_runner.cpp.i + +op_runner.s: op_runner.cpp.s +.PHONY : op_runner.s + +# target to generate assembly for a file +op_runner.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/op_runner.cpp.s +.PHONY : op_runner.cpp.s + +operator_desc.o: operator_desc.cpp.o +.PHONY : operator_desc.o + +# target to build an object file +operator_desc.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/operator_desc.cpp.o +.PHONY : operator_desc.cpp.o + +operator_desc.i: operator_desc.cpp.i +.PHONY : operator_desc.i + +# target to preprocess a source file +operator_desc.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/operator_desc.cpp.i +.PHONY : operator_desc.cpp.i + +operator_desc.s: operator_desc.cpp.s +.PHONY : operator_desc.s + +# target to generate assembly for a file +operator_desc.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_op.dir/build.make CMakeFiles/execute_op.dir/operator_desc.cpp.s +.PHONY : operator_desc.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... execute_op" + @echo "... common.o" + @echo "... common.i" + @echo "... common.s" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" + @echo "... op_runner.o" + @echo "... op_runner.i" + @echo "... op_runner.s" + @echo "... operator_desc.o" + @echo "... operator_desc.i" + @echo "... operator_desc.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/precision_Problem/ReduceSumCase1/build/cmake_install.cmake b/precision_Problem/ReduceSumCase1/build/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..09e88ccdd377a34f2b11d551902c96797a814403 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/build/cmake_install.cmake @@ -0,0 +1,74 @@ +# Install script for directory: /Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_op" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_op") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_op" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/../output" TYPE EXECUTABLE FILES "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/output/execute_op") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_op" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_op") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_op" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/aarch64-linux/lib64:/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib:" + NEW_RPATH "") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_op") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/Package_Cann/test/test/ReduceSumCase/ReduceSumCase1/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/precision_Problem/ReduceSumCase1/inc/common.h b/precision_Problem/ReduceSumCase1/inc/common.h new file mode 100644 index 0000000000000000000000000000000000000000..7036813a972219f046e079072fe2e1ed94670e5f --- /dev/null +++ b/precision_Problem/ReduceSumCase1/inc/common.h @@ -0,0 +1,45 @@ +/** +* @file common.h +* +* Copyright (C) 2020. Huawei Technologies Co., Ltd. All rights reserved. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ +#ifndef COMMON_H +#define COMMON_H + +#include +#include +#include +#include +#include + +#include "acl/acl.h" + +#define SUCCESS 0 +#define FAILED 1 + +#define INFO_LOG(fmt, args...) fprintf(stdout, "[INFO] " fmt "\n", ##args) +#define WARN_LOG(fmt, args...) fprintf(stdout, "[WARN] " fmt "\n", ##args) +#define ERROR_LOG(fmt, args...) fprintf(stderr, "[ERROR] " fmt "\n", ##args) + +/** + * @brief Read data from file + * @param [in] filePath: file path + * @param [out] fileSize: file size + * @return read result + */ +bool ReadFile(const std::string &filePath, size_t fileSize, void *buffer, size_t bufferSize); + +/** + * @brief Write data to file + * @param [in] filePath: file path + * @param [in] buffer: data to write to file + * @param [in] size: size to write + * @return write result + */ +bool WriteFile(const std::string &filePath, const void *buffer, size_t size); + +#endif // COMMON_H diff --git a/precision_Problem/ReduceSumCase1/inc/op_runner.h b/precision_Problem/ReduceSumCase1/inc/op_runner.h new file mode 100644 index 0000000000000000000000000000000000000000..bf2a9ef43d12950dae6f19b98d48f5a6a36ac02f --- /dev/null +++ b/precision_Problem/ReduceSumCase1/inc/op_runner.h @@ -0,0 +1,182 @@ +/** +* @file op_runner.h +* +* Copyright (C) 2020. Huawei Technologies Co., Ltd. All rights reserved. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ +#ifndef OP_RUNNER_H +#define OP_RUNNER_H + +#include "aclnn/acl_meta.h" +#include "acl/acl.h" +#include "common.h" +#include "operator_desc.h" + +/** + * Op Runner + */ +class OpRunner { +public: + /** + * @brief Constructor + * @param [in] opDesc: op description + */ + explicit OpRunner(OperatorDesc *opDesc); + + /** + * @brief Destructor + */ + virtual ~OpRunner(); + + /** + * @brief Init op runner + */ + bool Init(); + + /** + * @brief Get number of inputs + * @return number of inputs + */ + const size_t NumInputs(); + + /** + * @brief Get number of outputs + * @return number of outputs + */ + const size_t NumOutputs(); + + /** + * @brief Get input size by index + * @param [in] index: input index + * @return size of the input + */ + const size_t GetInputSize(size_t index) const; + const size_t GetInputNumDims(size_t index) const; + aclDataType GetInputDataType(size_t index) const; + aclFormat GetInputFormat(size_t index) const; + + /** + * @brief Get output size by index + * @param [in] index: output index + * @return size of the output + */ + size_t GetOutputSize(size_t index) const; + const size_t GetOutputNumDims(size_t index) const; + aclDataType GetOutputDataType(size_t index) const; + aclFormat GetOutputFormat(size_t index) const; + + /** + * @brief Get input element count by index + * @param i[in] ndex: input index + * @return element count of the input + */ + size_t GetInputElementCount(size_t index) const; + + /** + * @brief Get output element count by index + * @param [in] index: output index + * @return element count of the output + */ + size_t GetOutputElementCount(size_t index) const; + + /** + * @brief Get input shape by index + * @param [in] index: input index + * @return shape of the output + */ + std::vector GetInputShape(size_t index) const; + + /** + * @brief Get output shape by index + * @param [in] index: output index + * @return shape of the output + */ + std::vector GetOutputShape(size_t index) const; + + /** + * @brief Get input buffer(host memory) by index + * @tparam T: data type + * @param [in] index: input index + * @return host address of the input + */ + template + T *GetInputBuffer(size_t index) + { + if (index >= numInputs_) { + ERROR_LOG("index out of range. index = %zu, numInputs = %zu", index, numInputs_); + return nullptr; + } + return reinterpret_cast(hostInputs_[index]); + } + + /** + * @brief Get output buffer(host memory) by index + * @tparam T: data type + * @param [in] index: output index + * @return host address of the output + */ + template + const T *GetOutputBuffer(size_t index) + { + if (index >= numOutputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return nullptr; + } + + return reinterpret_cast(hostOutputs_[index]); + } + + /** + * @brief Print readable input by index + * @param [in] index: input index + * @param [in] elementsPerRow: number of elements per row + */ + void PrintInput(size_t index, size_t elementsPerRow = 16); + + /** + * @brief Print readable output by index + * @param [in] index: output index + * @param [in] elementsPerRow: number of elements per row + */ + void PrintOutput(size_t index, size_t elementsPerRow = 16); + + /** + * @brief Compile static op + * @return compile result + */ + bool CompileStaticOp(); + + /** + * @brief Compile dynamic op + * @return compile result + */ + bool CompileDynamicOp(); + + /** + * @brief Run op + * @return run result + */ + bool RunOp(); + +private: + size_t numInputs_; + size_t numOutputs_; + + std::vector inputBuffers_; + std::vector outputBuffers_; + + std::vector devInputs_; + std::vector devOutputs_; + + std::vector hostInputs_; + std::vector hostOutputs_; + + std::vector inputTensor_; + std::vector outputTensor_; + OperatorDesc *opDesc_; +}; + +#endif // OP_RUNNER_H diff --git a/precision_Problem/ReduceSumCase1/inc/operator_desc.h b/precision_Problem/ReduceSumCase1/inc/operator_desc.h new file mode 100644 index 0000000000000000000000000000000000000000..17607353dd9088faa8e4a607554060d3b8d7920c --- /dev/null +++ b/precision_Problem/ReduceSumCase1/inc/operator_desc.h @@ -0,0 +1,60 @@ +/** +* @file operator_desc.h +* +* Copyright (C) 2020. Huawei Technologies Co., Ltd. All rights reserved. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ +#ifndef OPERATOR_DESC_H +#define OPERATOR_DESC_H + +#include +#include + +#include "acl/acl.h" + +/** + * Op description + */ +struct OperatorDesc { + /** + * Constructor + */ + explicit OperatorDesc(); + + /** + * Destructor + */ + virtual ~OperatorDesc(); + + /** + * Add an input tensor description + * @param [in] dataType: data type + * @param [in] numDims: number of dims + * @param [in] dims: dims + * @param [in] format: format + * @return OperatorDesc + */ + OperatorDesc &AddInputTensorDesc(aclDataType dataType, int numDims, const int64_t *dims, aclFormat format); + + /** + * Add an output tensor description + * @param [in] dataType: data type + * @param [in] numDims: number of dims + * @param [in] dims: dims + * @param [in] format: format + * @return OperatorDesc + */ + OperatorDesc &AddOutputTensorDesc(aclDataType dataType, int numDims, const int64_t *dims, aclFormat format); + + bool keepDims; + bool ignoreNan; + char *dtype; + std::string opType; + std::vector inputDesc; + std::vector outputDesc; +}; + +#endif // OPERATOR_DESC_H diff --git a/precision_Problem/ReduceSumCase1/input/input_axis.bin b/precision_Problem/ReduceSumCase1/input/input_axis.bin new file mode 100644 index 0000000000000000000000000000000000000000..593f4708db84ac8fd0f5cc47c634f38c013fe9e4 Binary files /dev/null and b/precision_Problem/ReduceSumCase1/input/input_axis.bin differ diff --git a/precision_Problem/ReduceSumCase1/input/input_x.bin b/precision_Problem/ReduceSumCase1/input/input_x.bin new file mode 100644 index 0000000000000000000000000000000000000000..52f77416c75aed3083d256a723400e11ed9b28a1 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/input/input_x.bin @@ -0,0 +1 @@ +CGw /dev/null + + # 2. 生成或复用输入数据和真值数据 + if [ -d "./input" ]; then + if [ "$(ls -A "./input")" ]; then + echo "已存在测试数据" + else + echo "生成测试数据" + cd $CURRENT_DIR + python3 scripts/gen_data.py + fi + else + echo "生成测试数据" + cd $CURRENT_DIR + python3 scripts/gen_data.py + fi + + if [ $? -ne 0 ]; then + echo "ERROR: generate input data failed!" + return 1 + fi + echo "INFO: generate input data success!" + + # 3. 编译或复用acl可执行文件 + if [ -e "./output/execute_op" ]; then + echo "可执行存在" + else + echo "可执行不存在" + cd $CURRENT_DIR; rm -rf build; mkdir -p build; cd build + cmake ../src + if [ $? -ne 0 ]; then + echo "ERROR: cmake failed!" + return 1 + fi + echo "INFO: cmake success!" + make + if [ $? -ne 0 ]; then + echo "ERROR: make failed!" + return 1 + fi + echo "INFO: make success!" + fi + + # 4. 运行可执行文件 + cd $CURRENT_DIR/output + echo "INFO: execute op!" + timeout 30 ./execute_op + + if [ $? -ne 0 ]; then + echo "ERROR: acl executable run failed! please check your project!" + return 1 + fi + echo "INFO: acl executable run success!" + + # 5. 比较真值文件 + cd $CURRENT_DIR + ret=`python3 scripts/verify_result.py output/output.bin output/golden.bin` + echo $ret + if [ "x$ret" == "xtest pass" ]; then + echo "" + echo "#####################################" + echo "INFO: you have passed the Precision!" + echo "#####################################" + echo "" + fi +} + +main diff --git a/precision_Problem/ReduceSumCase1/scripts/acl.json b/precision_Problem/ReduceSumCase1/scripts/acl.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/precision_Problem/ReduceSumCase1/scripts/acl.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/precision_Problem/ReduceSumCase1/scripts/gen_data.py b/precision_Problem/ReduceSumCase1/scripts/gen_data.py new file mode 100644 index 0000000000000000000000000000000000000000..e4e72b004b59909f967b0c72cf2a37acaa0c215f --- /dev/null +++ b/precision_Problem/ReduceSumCase1/scripts/gen_data.py @@ -0,0 +1,23 @@ +#!/usr/bin/python3 +# -*- coding:utf-8 -*- +# Copyright 2022-2023 Huawei Technologies Co., Ltd +import numpy as np +import os +import tensorflow as tf +np.random.seed(123) + +def gen_golden_data_simple(): + input_x = np.random.uniform(-10, 10, [32]).astype(np.float16) + dim_num = len(input_x.shape) + input_axis = np.random.uniform(-dim_num, dim_num, [1]).astype(np.int32) + keepdims = False + golden = tf.reduce_sum(input_x, axis=input_axis, keepdims=keepdims).numpy() + os.system("mkdir -p input") + os.system("mkdir -p output") + input_x.tofile("./input/input_x.bin") + input_axis.tofile("./input/input_axis.bin") + golden.tofile("./output/golden.bin") + + +if __name__ == "__main__": + gen_golden_data_simple() diff --git a/precision_Problem/ReduceSumCase1/scripts/verify_result.py b/precision_Problem/ReduceSumCase1/scripts/verify_result.py new file mode 100644 index 0000000000000000000000000000000000000000..2528c9f0722286d07be23d4c4737c730aa5d58da --- /dev/null +++ b/precision_Problem/ReduceSumCase1/scripts/verify_result.py @@ -0,0 +1,23 @@ +import os +import sys +import numpy as np + +loss = 1e-3 # 容忍偏差,一般fp16要求绝对误差和相对误差均不超过千分之一 +minimum = 10e-10 + +def verify_result(real_result, golden): + real_result = np.fromfile(real_result, dtype=np.float16) # 从bin文件读取实际运算结果 + golden = np.fromfile(golden, dtype=np.float16) # 从bin文件读取预期运算结果 + result = np.abs(real_result - golden) # 计算运算结果和预期结果偏差 + deno = np.maximum(np.abs(real_result), np.abs(golden)) # 获取最大值并组成新数组 + result_atol = np.less_equal(result, loss) # 计算绝对误差 + result_rtol = np.less_equal(result / np.add(deno, minimum), loss) # 计算相对误差 + if not result_rtol.all() and not result_atol.all(): + if np.sum(result_rtol == False) > real_result.size * loss and np.sum(result_atol == False) > real_result.size * loss: # 误差超出预期时返回打印错误,返回对比失败 + print("[ERROR] result error") + return False + print("test pass") + return True + +if __name__ == '__main__': + verify_result(sys.argv[1],sys.argv[2]) diff --git a/precision_Problem/ReduceSumCase1/src/CMakeLists.txt b/precision_Problem/ReduceSumCase1/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee73e930f521dcdc135394579916b3513f219393 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/src/CMakeLists.txt @@ -0,0 +1,68 @@ +# Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. + +# CMake lowest version requirement +cmake_minimum_required(VERSION 3.5.1) + +# project information +project(acl_execute_add) + +# Compile options +add_compile_options(-std=c++11) + +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "../output") +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "../output") + +set(INC_PATH $ENV{DDK_PATH}) + +if (NOT DEFINED ENV{DDK_PATH}) + set(INC_PATH "/usr/local/Ascend/ascend-toolkit/latest") + message(STATUS "set default INC_PATH: ${INC_PATH}") +else () + message(STATUS "env INC_PATH: ${INC_PATH}") +endif() + +set(CUST_PKG_PATH "${INC_PATH}/opp/vendors/customize/op_api") + +set(LIB_PATH $ENV{NPU_HOST_LIB}) + +# Dynamic libraries in the stub directory can only be used for compilation +if (NOT DEFINED ENV{NPU_HOST_LIB}) + set(LIB_PATH "/usr/local/Ascend/ascend-toolkit/latest/acllib/lib64/stub/") + set(LIB_PATH1 "/usr/local/Ascend/ascend-toolkit/latest/atc/lib64/stub/") + message(STATUS "set default LIB_PATH: ${LIB_PATH}") +else () + message(STATUS "env LIB_PATH: ${LIB_PATH}") +endif() + +# Header path +include_directories( + ${INC_PATH}/runtime/include + ${INC_PATH}/atc/include + ../inc + ${CUST_PKG_PATH}/include + ${BUILT_PKG_PATH}/include/aclnnop +) + +# add host lib path +link_directories( + ${LIB_PATH} + ${LIB_PATH1} + ${CUST_PKG_PATH}/lib +) + +add_executable(execute_op + operator_desc.cpp + op_runner.cpp + main.cpp + common.cpp +) + +target_link_libraries(execute_op + ascendcl + cust_opapi + acl_op_compiler + nnopbase + stdc++ +) + +install(TARGETS execute_op DESTINATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) diff --git a/precision_Problem/ReduceSumCase1/src/common.cpp b/precision_Problem/ReduceSumCase1/src/common.cpp new file mode 100644 index 0000000000000000000000000000000000000000..47a39cd5f190b0472542a2037146d54fc3b5eb0b --- /dev/null +++ b/precision_Problem/ReduceSumCase1/src/common.cpp @@ -0,0 +1,79 @@ +/** +* @file common.cpp +* +* Copyright (C) 2020. Huawei Technologies Co., Ltd. All rights reserved. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ +#include "common.h" + +#include +#include +#include +#include + +extern bool g_isDevice; + +bool ReadFile(const std::string &filePath, size_t fileSize, void *buffer, size_t bufferSize) +{ + struct stat sBuf; + int fileStatus = stat(filePath.data(), &sBuf); + if (fileStatus == -1) { + ERROR_LOG("failed to get file %s", filePath.c_str()); + return false; + } + if (S_ISREG(sBuf.st_mode) == 0) { + ERROR_LOG("%s is not a file, please enter a file", filePath.c_str()); + return false; + } + + std::ifstream file; + file.open(filePath, std::ios::binary); + if (!file.is_open()) { + ERROR_LOG("Open file failed. path = %s", filePath.c_str()); + return false; + } + + std::filebuf *buf = file.rdbuf(); + size_t size = buf->pubseekoff(0, std::ios::end, std::ios::in); + if (size == 0) { + ERROR_LOG("file size is 0"); + file.close(); + return false; + } + if (size > bufferSize) { + ERROR_LOG("file size is larger than buffer size"); + file.close(); + return false; + } + buf->pubseekpos(0, std::ios::in); + buf->sgetn(static_cast(buffer), size); + fileSize = size; + file.close(); + return true; +} + +bool WriteFile(const std::string &filePath, const void *buffer, size_t size) +{ + if (buffer == nullptr) { + ERROR_LOG("Write file failed. buffer is nullptr"); + return false; + } + + int fd = open(filePath.c_str(), O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWRITE); + if (fd < 0) { + ERROR_LOG("Open file failed. path = %s", filePath.c_str()); + return false; + } + + auto writeSize = write(fd, buffer, size); + (void) close(fd); + if (writeSize != size) { + ERROR_LOG("Write file Failed."); + return false; + } + + return true; +} diff --git a/precision_Problem/ReduceSumCase1/src/main.cpp b/precision_Problem/ReduceSumCase1/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..8f15b64d350901c981c7798795eb1cd6a86c38f4 --- /dev/null +++ b/precision_Problem/ReduceSumCase1/src/main.cpp @@ -0,0 +1,170 @@ +/** +* @file main.cpp +* +* Copyright (C) 2023. Huawei Technologies Co., Ltd. All rights reserved. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ +#include +#include +#include +#include +#include + +#include "acl/acl.h" +#include "op_runner.h" + +#include "common.h" + +bool g_isDevice = false; +int deviceId = 0; + +OperatorDesc CreateOpDesc() +{ + // define operator + std::vector shape {32}; + std::vector shape_dim { 1 }; + std::vector shape_out { 1 }; + aclDataType dataType = ACL_FLOAT16; + aclDataType dimType = ACL_INT32; + aclFormat format = ACL_FORMAT_ND; + OperatorDesc opDesc; + opDesc.dtype = "float16"; + opDesc.keepDims = false; + opDesc.ignoreNan = false; + opDesc.AddInputTensorDesc(dataType, shape.size(), shape.data(), format); + opDesc.AddInputTensorDesc(dimType, shape_dim.size(), shape_dim.data(), format); + opDesc.AddOutputTensorDesc(dataType, shape_out.size(), shape_out.data(), format); + return opDesc; +} + +bool SetInputData(OpRunner &runner) +{ + size_t fileSize = 0; + ReadFile("../input/input_x.bin", fileSize, runner.GetInputBuffer(0), runner.GetInputSize(0)); + ReadFile("../input/input_axis.bin", fileSize, runner.GetInputBuffer(1), runner.GetInputSize(1)); + INFO_LOG("Set input success"); + return true; +} + +bool ProcessOutputData(OpRunner &runner) +{ + WriteFile("../output/output.bin", runner.GetOutputBuffer(0), runner.GetOutputSize(0)); + + INFO_LOG("Write output success"); + return true; +} + +void DestoryResource() +{ + bool flag = false; + if (aclrtResetDevice(deviceId) != ACL_SUCCESS) { + ERROR_LOG("Reset device %d failed", deviceId); + flag = true; + } + INFO_LOG("Reset Device success"); + if (aclFinalize() != ACL_SUCCESS) { + ERROR_LOG("Finalize acl failed"); + flag = true; + } + if (flag) { + ERROR_LOG("Destory resource failed"); + } else { + INFO_LOG("Destory resource success"); + } +} + +bool InitResource() +{ + std::string output = "../output"; + if (access(output.c_str(), 0) == -1) { + int ret = mkdir(output.c_str(), 0700); + if (ret == 0) { + INFO_LOG("Make output directory successfully"); + } + else { + ERROR_LOG("Make output directory fail"); + return false; + } + } + + // acl.json is dump or profiling config file + if (aclInit("../scripts/acl.json") != ACL_SUCCESS) { + ERROR_LOG("acl init failed"); + return false; + } + + if (aclrtSetDevice(deviceId) != ACL_SUCCESS) { + ERROR_LOG("Set device failed. deviceId is %d", deviceId); + (void)aclFinalize(); + return false; + } + INFO_LOG("Set device[%d] success", deviceId); + + // runMode is ACL_HOST which represents app is running in host + // runMode is ACL_DEVICE which represents app is running in device + aclrtRunMode runMode; + if (aclrtGetRunMode(&runMode) != ACL_SUCCESS) { + ERROR_LOG("Get run mode failed"); + DestoryResource(); + return false; + } + g_isDevice = (runMode == ACL_DEVICE); + INFO_LOG("Get RunMode[%d] success", runMode); + + return true; +} + +bool RunOp() +{ + // create op desc + OperatorDesc opDesc = CreateOpDesc(); + + // create Runner + OpRunner opRunner(&opDesc); + if (!opRunner.Init()) { + ERROR_LOG("Init OpRunner failed"); + return false; + } + + // Load inputs + if (!SetInputData(opRunner)) { + ERROR_LOG("Set input data failed"); + return false; + } + + // Run op + if (!opRunner.RunOp()) { + ERROR_LOG("Run op failed"); + return false; + } + + // process output data + if (!ProcessOutputData(opRunner)) { + ERROR_LOG("Process output data failed"); + return false; + } + + INFO_LOG("Run op success"); + return true; +} + +int main(int argc, char **argv) +{ + if (!InitResource()) { + ERROR_LOG("Init resource failed"); + return FAILED; + } + INFO_LOG("Init resource success"); + + if (!RunOp()) { + DestoryResource(); + return FAILED; + } + + DestoryResource(); + + return SUCCESS; +} diff --git a/precision_Problem/ReduceSumCase1/src/op_runner.cpp b/precision_Problem/ReduceSumCase1/src/op_runner.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9783897ea90ddf658ea69bcf72b561427b47687e --- /dev/null +++ b/precision_Problem/ReduceSumCase1/src/op_runner.cpp @@ -0,0 +1,486 @@ +/** +* @file op_runner.cpp +* +* Copyright (C) 2020. Huawei Technologies Co., Ltd. All rights reserved. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ +#include "op_runner.h" +#include "aclnn_reduce_sum.h" +#include +#include +#include "acl/acl_op_compiler.h" +#include "common.h" + +using namespace std; + +extern bool g_isDevice; + +OpRunner::OpRunner(OperatorDesc *opDesc) : opDesc_(opDesc) +{ + numInputs_ = opDesc->inputDesc.size(); + numOutputs_ = opDesc->outputDesc.size(); +} + +OpRunner::~OpRunner() +{ + for (size_t i = 0; i < numInputs_; ++i) { + auto ret = aclDestroyTensor(inputTensor_[i]); + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free InputTensor[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + ret = aclDestroyDataBuffer(inputBuffers_[i]); + + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free inputBuffers[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + ret = aclrtFree(devInputs_[i]); + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free devInputs[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + if (g_isDevice) { + ret = aclrtFree(hostInputs_[i]); + } else { + ret = aclrtFreeHost(hostInputs_[i]); + } + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free hostInputs[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + } + + for (size_t i = 0; i < numOutputs_; ++i) { + auto ret = aclDestroyTensor(outputTensor_[i]); + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free outputTensor[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + ret = aclDestroyDataBuffer(outputBuffers_[i]); + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free outputBuffers[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + ret = aclrtFree(devOutputs_[i]); + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free devOutputs[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + if (g_isDevice) { + ret = aclrtFree(hostOutputs_[i]); + } else { + ret = aclrtFreeHost(hostOutputs_[i]); + } + if (ret != ACL_SUCCESS) { + ERROR_LOG("Free hostOutputs[%d]error code is %d", static_cast(i), static_cast(ret)); + exit(EXIT_FAILURE); + } + } +} + +bool OpRunner::Init() +{ + for (size_t i = 0; i < numInputs_; ++i) { + auto size = GetInputSize(i); + void *devMem = nullptr; + if (aclrtMalloc(&devMem, size, ACL_MEM_MALLOC_HUGE_FIRST) != ACL_SUCCESS) { + ERROR_LOG("Malloc device memory for input[%zu] failed", i); + return false; + } + devInputs_.emplace_back(devMem); + inputBuffers_.emplace_back(aclCreateDataBuffer(devMem, size)); + + void *hostInput = nullptr; + if (g_isDevice) { + if (aclrtMalloc(&hostInput, size, ACL_MEM_MALLOC_HUGE_FIRST) != ACL_SUCCESS) { + ERROR_LOG("Malloc device memory for input[%zu] failed", i); + return false; + } + } else { + if (aclrtMallocHost(&hostInput, size) != ACL_SUCCESS) { + ERROR_LOG("Malloc device memory for input[%zu] failed", i); + return false; + } + } + if (hostInput == nullptr) { + ERROR_LOG("Malloc memory for input[%zu] failed", i); + return false; + } + hostInputs_.emplace_back(hostInput); + + aclTensor *inputTensor = aclCreateTensor(GetInputShape(i).data(), GetInputNumDims(i), GetInputDataType(i), + nullptr, 0, GetInputFormat(i), GetInputShape(i).data(), GetInputNumDims(i), devInputs_[i]); + if (inputTensor == nullptr) { + ERROR_LOG("Create Tensor for input[%zu] failed", i); + return false; + } + inputTensor_.emplace_back(inputTensor); + } + + for (size_t i = 0; i < numOutputs_; ++i) { + auto size = GetOutputSize(i); + void *devMem = nullptr; + if (aclrtMalloc(&devMem, size, ACL_MEM_MALLOC_HUGE_FIRST) != ACL_SUCCESS) { + ERROR_LOG("Malloc device memory for output[%zu] failed", i); + return false; + } + devOutputs_.emplace_back(devMem); + outputBuffers_.emplace_back(aclCreateDataBuffer(devMem, size)); + + void *hostOutput = nullptr; + if (g_isDevice) { + if (aclrtMalloc(&hostOutput, size, ACL_MEM_MALLOC_HUGE_FIRST) != ACL_SUCCESS) { + ERROR_LOG("Malloc device memory for output[%zu] failed", i); + return false; + } + } else { + if (aclrtMallocHost(&hostOutput, size) != ACL_SUCCESS) { + ERROR_LOG("Malloc device memory for output[%zu] failed", i); + return false; + } + } + if (hostOutput == nullptr) { + ERROR_LOG("Malloc host memory for output[%zu] failed", i); + return false; + } + hostOutputs_.emplace_back(hostOutput); + + aclTensor *outputTensor = aclCreateTensor(GetOutputShape(i).data(), GetOutputNumDims(i), GetOutputDataType(i), + nullptr, 0, GetOutputFormat(i), GetOutputShape(i).data(), GetOutputNumDims(i), devOutputs_[i]); + if (outputTensor == nullptr) { + ERROR_LOG("Create Tensor for output[%zu] failed", i); + return false; + } + outputTensor_.emplace_back(outputTensor); + } + + return true; +} + +const size_t OpRunner::NumInputs() +{ + return numInputs_; +} + +const size_t OpRunner::NumOutputs() +{ + return numOutputs_; +} + +const size_t OpRunner::GetInputSize(size_t index) const +{ + if (index >= numInputs_) { + ERROR_LOG("index out of range. index = %zu, numInputs = %zu", index, numInputs_); + return 0; + } + + return aclGetTensorDescSize(opDesc_->inputDesc[index]); +} + +const size_t OpRunner::GetInputNumDims(size_t index) const +{ + if (index >= numInputs_) { + ERROR_LOG("index out of range. index = %zu, numInputs = %zu", index, numInputs_); + return 0; + } + + return aclGetTensorDescNumDims(opDesc_->inputDesc[index]); +} + +aclDataType OpRunner::GetInputDataType(size_t index) const +{ + if (index >= numInputs_) { + ERROR_LOG("index out of range. index = %zu, numInputs = %zu", index, numInputs_); + return ACL_DT_UNDEFINED; + } + + return aclGetTensorDescType(opDesc_->inputDesc[index]); +} + +aclFormat OpRunner::GetInputFormat(size_t index) const +{ + if (index >= numInputs_) { + ERROR_LOG("index out of range. index = %zu, numInputs = %zu", index, numInputs_); + return ACL_FORMAT_UNDEFINED; + } + + return aclGetTensorDescFormat(opDesc_->inputDesc[index]); +} + +std::vector OpRunner::GetInputShape(size_t index) const +{ + std::vector ret; + if (index >= numInputs_) { + ERROR_LOG("index out of range. index = %zu, numInputs = %zu", index, numInputs_); + return ret; + } + + auto desc = opDesc_->inputDesc[index]; + for (size_t i = 0; i < aclGetTensorDescNumDims(desc); ++i) { + int64_t dimSize; + if (aclGetTensorDescDimV2(desc, i, &dimSize) != ACL_SUCCESS) { + ERROR_LOG("get dims from tensor desc failed. dims index = %zu", i); + ret.clear(); + return ret; + } + ret.emplace_back(dimSize); + } + + return ret; +} + +size_t OpRunner::GetOutputSize(size_t index) const +{ + if (index >= numOutputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return 0; + } + + return aclGetTensorDescSize(opDesc_->outputDesc[index]); +} + +const size_t OpRunner::GetOutputNumDims(size_t index) const +{ + if (index >= numOutputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return 0; + } + + return aclGetTensorDescNumDims(opDesc_->outputDesc[index]); +} + +aclDataType OpRunner::GetOutputDataType(size_t index) const +{ + if (index >= numOutputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return ACL_DT_UNDEFINED; + } + + return aclGetTensorDescType(opDesc_->outputDesc[index]); +} + + +aclFormat OpRunner::GetOutputFormat(size_t index) const +{ + if (index >= numOutputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return ACL_FORMAT_UNDEFINED; + } + + return aclGetTensorDescFormat(opDesc_->outputDesc[index]); +} + +std::vector OpRunner::GetOutputShape(size_t index) const +{ + std::vector ret; + if (index >= numOutputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return ret; + } + + auto desc = opDesc_->outputDesc[index]; + for (size_t i = 0; i < aclGetTensorDescNumDims(desc); ++i) { + int64_t dimSize; + if (aclGetTensorDescDimV2(desc, i, &dimSize) != ACL_SUCCESS) { + ERROR_LOG("get dims from tensor desc failed. dims index = %zu", i); + ret.clear(); + return ret; + } + ret.emplace_back(dimSize); + } + return ret; +} + +size_t OpRunner::GetInputElementCount(size_t index) const +{ + if (index >= opDesc_->inputDesc.size()) { + ERROR_LOG("index out of range. index = %zu, numInputs = %zu", index, numInputs_); + return 0; + } + + return aclGetTensorDescElementCount(opDesc_->inputDesc[index]); +} + +size_t OpRunner::GetOutputElementCount(size_t index) const +{ + if (index >= opDesc_->outputDesc.size()) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return 0; + } + + return aclGetTensorDescElementCount(opDesc_->outputDesc[index]); +} + +bool OpRunner::RunOp() +{ + for (size_t i = 0; i < numInputs_; ++i) { + auto size = GetInputSize(i); + aclrtMemcpyKind kind = ACL_MEMCPY_HOST_TO_DEVICE; + if (g_isDevice) { + kind = ACL_MEMCPY_DEVICE_TO_DEVICE; + } + if (aclrtMemcpy(devInputs_[i], size, hostInputs_[i], size, kind) != ACL_SUCCESS) { + ERROR_LOG("Copy input[%zu] failed", i); + return false; + } + INFO_LOG("Copy input[%zu] success", i); + } + + aclrtStream stream = nullptr; + if (aclrtCreateStream(&stream) != ACL_SUCCESS) { + ERROR_LOG("Create stream failed"); + return false; + } + INFO_LOG("Create stream success"); + + size_t workspaceSize = 0; + aclOpExecutor *handle = nullptr; + + auto ret = aclnnReduceSumGetWorkspaceSize(inputTensor_[0], inputTensor_[1], opDesc_->keepDims, opDesc_->ignoreNan, + opDesc_->dtype, outputTensor_[0], &workspaceSize, &handle); + if (ret != ACL_SUCCESS) { + (void)aclrtDestroyStream(stream); + ERROR_LOG("Get Operator Workspace failed. error code is %d", static_cast(ret)); + return false; + } + INFO_LOG("Execute GetWorkspaceSize success, workspace size %lu", workspaceSize); + + void *workspace = nullptr; + if (workspaceSize != 0) { + if (aclrtMalloc(&workspace, workspaceSize, ACL_MEM_MALLOC_HUGE_FIRST) != ACL_SUCCESS) { + ERROR_LOG("Malloc device memory failed"); + } + } + ret = aclnnReduceSum(workspace, workspaceSize, handle, stream); + + if (ret != ACL_SUCCESS) { + (void)aclrtDestroyStream(stream); + ERROR_LOG("Execute Operator failed. error code is %d", static_cast(ret)); + return false; + } + INFO_LOG("Execute Operator success"); + + ret = aclrtSynchronizeStreamWithTimeout(stream, 5000); + if (ret != SUCCESS) { + ERROR_LOG("Synchronize stream failed. error code is %d", static_cast(ret)); + (void)aclrtDestroyStream(stream); + return false; + } + INFO_LOG("Synchronize stream success"); + + for (size_t i = 0; i < numOutputs_; ++i) { + auto size = GetOutputSize(i); + aclrtMemcpyKind kind = ACL_MEMCPY_DEVICE_TO_HOST; + if (g_isDevice) { + kind = ACL_MEMCPY_DEVICE_TO_DEVICE; + } + if (aclrtMemcpy(hostOutputs_[i], size, devOutputs_[i], size, kind) != ACL_SUCCESS) { + INFO_LOG("Copy output[%zu] success", i); + (void)aclrtDestroyStream(stream); + return false; + } + INFO_LOG("Copy output[%zu] success", i); + } + + (void)aclrtDestroyStream(stream); + return true; +} + + +template +void DoPrintData(const T *data, size_t count, size_t elementsPerRow) +{ + assert(elementsPerRow != 0); + for (size_t i = 0; i < count; ++i) { + std::cout << std::setw(10) << data[i]; + if (i % elementsPerRow == elementsPerRow - 1) { + std::cout << std::endl; + } + } +} + +void DoPrintFp16Data(const aclFloat16 *data, size_t count, size_t elementsPerRow) +{ + assert(elementsPerRow != 0); + for (size_t i = 0; i < count; ++i) { + std::cout << std::setw(10) << std::setprecision(4) << aclFloat16ToFloat(data[i]); + if (i % elementsPerRow == elementsPerRow - 1) { + std::cout << std::endl; + } + } +} + +void PrintData(const void *data, size_t count, aclDataType dataType, size_t elementsPerRow) +{ + if (data == nullptr) { + ERROR_LOG("Print data failed. data is nullptr"); + return; + } + + switch (dataType) { + case ACL_BOOL: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_INT8: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_UINT8: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_INT16: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_UINT16: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_INT32: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_UINT32: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_INT64: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_UINT64: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_FLOAT16: + DoPrintFp16Data(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_FLOAT: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + case ACL_DOUBLE: + DoPrintData(reinterpret_cast(data), count, elementsPerRow); + break; + default: + ERROR_LOG("Unsupported type: %d", dataType); + } +} + +void OpRunner::PrintInput(size_t index, size_t numElementsPerRow) +{ + if (index >= numInputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numInputs_); + return; + } + + auto desc = opDesc_->inputDesc[index]; + PrintData(hostInputs_[index], GetInputElementCount(index), aclGetTensorDescType(desc), numElementsPerRow); +} + +void OpRunner::PrintOutput(size_t index, size_t numElementsPerRow) +{ + if (index >= numOutputs_) { + ERROR_LOG("index out of range. index = %zu, numOutputs = %zu", index, numOutputs_); + return; + } + + auto desc = opDesc_->outputDesc[index]; + PrintData(hostOutputs_[index], GetOutputElementCount(index), aclGetTensorDescType(desc), numElementsPerRow); +} diff --git a/precision_Problem/ReduceSumCase1/src/operator_desc.cpp b/precision_Problem/ReduceSumCase1/src/operator_desc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..a7a1ed3bd9f6b33a7a697c9aa67045112093081a --- /dev/null +++ b/precision_Problem/ReduceSumCase1/src/operator_desc.cpp @@ -0,0 +1,56 @@ +/** +* @file operator_desc.cpp +* +* Copyright (C) 2020. Huawei Technologies Co., Ltd. All rights reserved. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ +#include "common.h" +#include "operator_desc.h" + +using namespace std; + +OperatorDesc::OperatorDesc() {} + +OperatorDesc::~OperatorDesc() +{ + for (auto *desc : inputDesc) { + aclDestroyTensorDesc(desc); + } + + for (auto *desc : outputDesc) { + aclDestroyTensorDesc(desc); + } + +} + +OperatorDesc &OperatorDesc::AddInputTensorDesc(aclDataType dataType, + int numDims, + const int64_t *dims, + aclFormat format) +{ + aclTensorDesc *desc = aclCreateTensorDesc(dataType, numDims, dims, format); + if (desc == nullptr) { + ERROR_LOG("create tensor failed"); + return *this; + } + inputDesc.emplace_back(desc); + return *this; +} + +OperatorDesc &OperatorDesc::AddOutputTensorDesc(aclDataType dataType, + int numDims, + const int64_t *dims, + aclFormat format) +{ + aclTensorDesc *desc = aclCreateTensorDesc(dataType, numDims, dims, format); + if (desc == nullptr) { + ERROR_LOG("create tensor failed"); + return *this; + } + + outputDesc.emplace_back(desc); + return *this; +}