diff --git a/Increase_Bedore_pipe/AclNNInvocation/README.md b/Increase_Bedore_pipe/AclNNInvocation/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b8167d88fee0c130e3b585ae688f337598f05fff --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/README.md @@ -0,0 +1,54 @@ +## 目录结构介绍 +``` +├── AclNNInvocation //通过aclnn调用的方式调用AddCustom算子 +│ ├── inc // 头文件目录 +│ │ ├── common.h // 声明公共方法类,用于读取二进制文件 +│ │ ├── op_runner.h // 算子描述声明文件,包含算子输入/输出,算子类型以及输入描述与输出描述 +│ │ └── operator_desc.h // 算子运行相关信息声明文件,包含算子输入/输出个数,输入/输出大小等 +│ ├── input // 存放脚本生成的输入数据目录 +│ ├── output // 存放算子运行输出数据和真实数据的目录 +│ ├── scripts +│ │ ├── acl.json // acl配置文件 +│ │ ├── gen_data.py // 输入数据和真值数据生成脚本 +│ │ └── verify_result.py // 真值对比文件 +│ ├── src +│ │ ├── CMakeLists.txt // 编译规则文件 +│ │ ├── common.cpp // 公共函数,读取二进制文件函数的实现文件 +│ │ ├── main.cpp // 单算子调用应用的入口 +│ │ ├── op_runner.cpp // 单算子调用主体流程实现文件 +│ │ └── operator_desc.cpp // 构造算子的输入与输出描述 +│ └── run.sh // 执行命令脚本 +``` +## 代码实现介绍 +完成自定义算子的开发部署后,可以通过单算子调用的方式来验证单算子的功能。src/main.cpp代码为单算子API执行方式。单算子API执行是基于C语言的API执行算子,无需提供单算子描述文件进行离线模型的转换,直接调用单算子API接口。 + +自定义算子编译部署后,会自动生成单算子API,可以直接在应用程序中调用。算子API的形式一般定义为“两段式接口”,形如: + ```cpp + // 获取算子使用的workspace空间大小 + aclnnStatus aclnnAddCustomGetWorkspaceSize(const aclTensor *x, const aclTensor *y, const alcTensor *out, uint64_t workspaceSize, aclOpExecutor **executor); + // 执行算子 + aclnnStatus aclnnAddCustom(void *workspace, int64_t workspaceSize, aclOpExecutor **executor, aclrtStream stream); + ``` +其中aclnnAddCustomGetWorkspaceSize为第一段接口,主要用于计算本次API调用计算过程中需要多少的workspace内存。获取到本次API计算需要的workspace大小之后,按照workspaceSize大小申请Device侧内存,然后调用第二段接口aclnnAddCustom执行计算。具体参考[AscendCL单算子调用](https://hiascend.com/document/redirect/CannCommunityAscendCInVorkSingleOp)>单算子API执行 章节。 + +## 运行样例算子 +### 1. 编译算子工程 +运行此样例前,请参考[编译算子工程](../README.md#operatorcompile)完成前期准备。 +### 2. aclnn调用样例运行 + + - 进入到样例目录 + 以命令行方式下载样例代码,master分支为例。 + ```bash + cd ${git_clone_path}/samples/operator/AddCustomSample/FrameworkLaunch/AclNNInvocation + ``` + - 样例执行 + + 样例执行过程中会自动生成测试数据,然后编译与运行aclnn样例,最后检验运行结果。具体过程可参见run.sh脚本。 + + ```bash + bash run.sh + ``` +## 更新说明 +| 时间 | 更新事项 | +| ---------- | ------------ | +| 2024/05/22 | 新增本readme | \ No newline at end of file diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeCache.txt b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd86c0ac5bc84adb88ab87c298e77cc9eed9df6d --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeCache.txt @@ -0,0 +1,369 @@ +# This is the CMakeCache file. +# For build in directory: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build + +//Value Computed by CMake +acl_execute_add_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +acl_execute_add_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeSystem.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f1584fe5bc9e049ea62b36a6abd27da5e992248a --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/CMakeOutput.log b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..4694f911180ca7de170212481827eccbdc172822 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_86000/fast && /usr/bin/gmake -f CMakeFiles/cmTC_86000.dir/build.make CMakeFiles/cmTC_86000.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_86000.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.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_86000.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/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o /tmp/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_86000 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86000.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o -o cmTC_86000 +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_86000' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_86000.' + /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/ccccIlxs.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_86000 /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_86000.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_86000' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_86000.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_86000/fast && /usr/bin/gmake -f CMakeFiles/cmTC_86000.dir/build.make CMakeFiles/cmTC_86000.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_86000.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.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_86000.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/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o /tmp/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_86000] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86000.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o -o cmTC_86000 ] + 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_86000' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_86000.'] + 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/ccccIlxs.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_86000 /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_86000.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/ccccIlxs.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_86000] ==> 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_86000.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: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c6a6e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c6a6e.dir/build.make CMakeFiles/cmTC_c6a6e.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_c6a6e.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.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_c6a6e.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/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_c6a6e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c6a6e.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c6a6e +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_c6a6e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c6a6e.' + /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/ccdu1nae.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_c6a6e /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_c6a6e.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_c6a6e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c6a6e.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c6a6e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c6a6e.dir/build.make CMakeFiles/cmTC_c6a6e.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_c6a6e.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.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_c6a6e.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/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_c6a6e] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c6a6e.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c6a6e ] + 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_c6a6e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c6a6e.'] + 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/ccdu1nae.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_c6a6e /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_c6a6e.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/ccdu1nae.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_c6a6e] ==> 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_c6a6e.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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/Makefile.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1b3b3081f46fb3e2f243725c6e36caf14a86a4e8 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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_add_op.dir/DependInfo.cmake" + ) diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/Makefile2 b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..145a58e9628a329b3b45508c6a760bf512893cdd --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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 = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/execute_add_op.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/execute_add_op.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/execute_add_op.dir + +# All Build rule for target. +CMakeFiles/execute_add_op.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=1,2,3,4,5 "Built target execute_add_op" +.PHONY : CMakeFiles/execute_add_op.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/execute_add_op.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/execute_add_op.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles 0 +.PHONY : CMakeFiles/execute_add_op.dir/rule + +# Convenience name for target. +execute_add_op: CMakeFiles/execute_add_op.dir/rule +.PHONY : execute_add_op + +# clean rule for target. +CMakeFiles/execute_add_op.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/clean +.PHONY : CMakeFiles/execute_add_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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..175ba478d79e7bb8b7ba5d9c3548f3cf18adada8 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,7 @@ +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install/strip.dir diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/cmake.check_cache b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..882d6903e41a1bbdbdf7cd45f9798b9d4a5c2a49 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_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 + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp" "CMakeFiles/execute_add_op.dir/common.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/common.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp" "CMakeFiles/execute_add_op.dir/main.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/main.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp" "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" "gcc" "CMakeFiles/execute_add_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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1e4d13a0a26018eaf81f743c5514b92c0ae886ed --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_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 = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build + +# Include any dependencies generated for this target. +include CMakeFiles/execute_add_op.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/execute_add_op.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/execute_add_op.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/execute_add_op.dir/flags.make + +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -MF CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp + +CMakeFiles/execute_add_op.dir/operator_desc.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/operator_desc.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp > CMakeFiles/execute_add_op.dir/operator_desc.cpp.i + +CMakeFiles/execute_add_op.dir/operator_desc.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/operator_desc.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.s + +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/execute_add_op.dir/op_runner.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/op_runner.cpp.o -MF CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d -o CMakeFiles/execute_add_op.dir/op_runner.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp + +CMakeFiles/execute_add_op.dir/op_runner.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/op_runner.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp > CMakeFiles/execute_add_op.dir/op_runner.cpp.i + +CMakeFiles/execute_add_op.dir/op_runner.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/op_runner.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp -o CMakeFiles/execute_add_op.dir/op_runner.cpp.s + +CMakeFiles/execute_add_op.dir/main.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/main.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp +CMakeFiles/execute_add_op.dir/main.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/execute_add_op.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/main.cpp.o -MF CMakeFiles/execute_add_op.dir/main.cpp.o.d -o CMakeFiles/execute_add_op.dir/main.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp + +CMakeFiles/execute_add_op.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp > CMakeFiles/execute_add_op.dir/main.cpp.i + +CMakeFiles/execute_add_op.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp -o CMakeFiles/execute_add_op.dir/main.cpp.s + +CMakeFiles/execute_add_op.dir/common.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/common.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp +CMakeFiles/execute_add_op.dir/common.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/execute_add_op.dir/common.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/common.cpp.o -MF CMakeFiles/execute_add_op.dir/common.cpp.o.d -o CMakeFiles/execute_add_op.dir/common.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp + +CMakeFiles/execute_add_op.dir/common.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/common.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp > CMakeFiles/execute_add_op.dir/common.cpp.i + +CMakeFiles/execute_add_op.dir/common.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/common.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp -o CMakeFiles/execute_add_op.dir/common.cpp.s + +# Object files for target execute_add_op +execute_add_op_OBJECTS = \ +"CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" \ +"CMakeFiles/execute_add_op.dir/op_runner.cpp.o" \ +"CMakeFiles/execute_add_op.dir/main.cpp.o" \ +"CMakeFiles/execute_add_op.dir/common.cpp.o" + +# External object files for target execute_add_op +execute_add_op_EXTERNAL_OBJECTS = + +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/operator_desc.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/op_runner.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/main.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/common.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/build.make +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX executable /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/execute_add_op.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/execute_add_op.dir/build: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op +.PHONY : CMakeFiles/execute_add_op.dir/build + +CMakeFiles/execute_add_op.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/execute_add_op.dir/cmake_clean.cmake +.PHONY : CMakeFiles/execute_add_op.dir/clean + +CMakeFiles/execute_add_op.dir/depend: + cd /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/execute_add_op.dir/depend + diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3dcafd353178deee52ec8ef03fee586be5e98df8 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op.pdb" + "CMakeFiles/execute_add_op.dir/common.cpp.o" + "CMakeFiles/execute_add_op.dir/common.cpp.o.d" + "CMakeFiles/execute_add_op.dir/main.cpp.o" + "CMakeFiles/execute_add_op.dir/main.cpp.o.d" + "CMakeFiles/execute_add_op.dir/op_runner.cpp.o" + "CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d" + "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" + "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/execute_add_op.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..e292b2a7f49eeb370eb8e90574647627c8968a6a Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..6650d421a8bb9b52fbd4f109f793b55641a139c1 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d @@ -0,0 +1,197 @@ +CMakeFiles/execute_add_op.dir/common.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/iomanip /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/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/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/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/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/locale_classes.h \ + /usr/include/c++/11/string /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/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/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/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/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/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/locale /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/streambuf /usr/include/c++/11/bits/streambuf.tcc \ + /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/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/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/basic_ios.h \ + /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/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/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/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/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 \ + /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/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 diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.make b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9c98d42c4680aeaba4f9c39188aab8899f66fe75 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for execute_add_op. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.ts b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e7ad1aa6d7e2e0e793e44a9a2f52094954b0d534 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for execute_add_op. diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/depend.make b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..802adaf2fdd11cffdb50736f1c0becd2f1a8a59c --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for execute_add_op. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..2151d9f3e2fef2761d89196ff82d33c37f0b9fc2 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_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/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc -I/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include + +CXX_FLAGS = -std=c++11 + diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..6463248d8c6423ed72e989217bb0c829c0efdfcc --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/execute_add_op.dir/operator_desc.cpp.o CMakeFiles/execute_add_op.dir/op_runner.cpp.o CMakeFiles/execute_add_op.dir/main.cpp.o CMakeFiles/execute_add_op.dir/common.cpp.o -o /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -L/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64:/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib: -lascendcl -lcust_opapi -lacl_op_compiler -lnnopbase -lstdc++ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..47894777ca214f8f769f984333e10291321c2f2c Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..bd94014da9ae57c11c57e5d272517821f129ef95 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d @@ -0,0 +1,197 @@ +CMakeFiles/execute_add_op.dir/main.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp \ + /usr/include/stdc-predef.h /usr/include/aarch64-linux-gnu/sys/stat.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/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/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/types/time_t.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/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/timer_t.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.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/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.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/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/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/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/wchar.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/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/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/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/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/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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ + /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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..ddb0570d57abf3c0b3b2346fc3a18fee902b7dab Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..793432f87b215b001b25f4703855fa3d35402a3c --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d @@ -0,0 +1,182 @@ +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/op_runner.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/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/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/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/lib/gcc/aarch64-linux-gnu/11/include/stddef.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/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/aarch64-linux-gnu/c++/11/bits/cpu_defines.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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/iomanip /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/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.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/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/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/locale_classes.h \ + /usr/include/c++/11/string /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/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/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/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/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/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/locale /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/streambuf /usr/include/c++/11/bits/streambuf.tcc \ + /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/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/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/basic_ios.h \ + /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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h \ + /usr/include/c++/11/cassert /usr/include/assert.h \ + /usr/include/c++/11/limits \ + /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 \ + /usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include/aclnn_add_custom.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..cde5de165348f831660abd3cc4b5a07e8cacda83 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..cfc45b1e79ea257603967de121510a736c6da373 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d @@ -0,0 +1,175 @@ +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h \ + /usr/include/c++/11/string \ + /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/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/libc-header-start.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/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/__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/cstdint \ + /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/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/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/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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ + /usr/include/c++/11/iomanip /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/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/locale /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/streambuf /usr/include/c++/11/bits/streambuf.tcc \ + /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/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/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/basic_ios.h \ + /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 diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/progress.make b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..33e6bffba3730113ad4bec358b7c8a00b5a67431 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/execute_add_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/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/progress.marks b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7ed6ff82de6bcc2a78243fc9c54d3ef5ac14da69 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/Increase_Bedore_pipe/AclNNInvocation/build/Makefile b/Increase_Bedore_pipe/AclNNInvocation/build/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..cf7873376d2687c96517f951d5a7eeeae8fbeaf8 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/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 = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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_add_op + +# Build rule for target. +execute_add_op: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 execute_add_op +.PHONY : execute_add_op + +# fast build rule for target. +execute_add_op/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/build +.PHONY : execute_add_op/fast + +common.o: common.cpp.o +.PHONY : common.o + +# target to build an object file +common.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_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/Increase_Bedore_pipe/AclNNInvocation/build/cmake_install.cmake b/Increase_Bedore_pipe/AclNNInvocation/build/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..027ce2052105405948b6a0a33e19456dd31d0626 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/build/cmake_install.cmake @@ -0,0 +1,74 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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_add_op" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/../output" TYPE EXECUTABLE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/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_add_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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Increase_Bedore_pipe/AclNNInvocation/inc/common.h b/Increase_Bedore_pipe/AclNNInvocation/inc/common.h new file mode 100644 index 0000000000000000000000000000000000000000..11bb4aeca57d04c8adcd6f215674ee4ba1553f21 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/inc/common.h @@ -0,0 +1,45 @@ +/** + * @file common.h + * + * Copyright (C) 2023-2024. 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/Increase_Bedore_pipe/AclNNInvocation/inc/op_runner.h b/Increase_Bedore_pipe/AclNNInvocation/inc/op_runner.h new file mode 100644 index 0000000000000000000000000000000000000000..66b6ea2c3c403946f14d588fd6f63a9aeb215960 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/inc/op_runner.h @@ -0,0 +1,180 @@ +/** + * @file op_runner.h + * + * Copyright (C) 2023-2024. 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 "acl/acl.h" +#include "aclnn/acl_meta.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/Increase_Bedore_pipe/AclNNInvocation/inc/operator_desc.h b/Increase_Bedore_pipe/AclNNInvocation/inc/operator_desc.h new file mode 100644 index 0000000000000000000000000000000000000000..6d8ee09052da7e00c44c6b062bdeacca893c542b --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/inc/operator_desc.h @@ -0,0 +1,57 @@ +/** + * @file operator_desc.h + * + * Copyright (C) 2023-2024. 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); + + std::string opType; + std::vector inputDesc; + std::vector outputDesc; +}; + +#endif // OPERATOR_DESC_H diff --git a/Increase_Bedore_pipe/AclNNInvocation/input/.keep b/Increase_Bedore_pipe/AclNNInvocation/input/.keep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Bedore_pipe/AclNNInvocation/input/input_x.bin b/Increase_Bedore_pipe/AclNNInvocation/input/input_x.bin new file mode 100644 index 0000000000000000000000000000000000000000..66081f5724e0c3a347d238f3ed0cf9b3f34b35ff Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/input/input_x.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/input/input_y.bin b/Increase_Bedore_pipe/AclNNInvocation/input/input_y.bin new file mode 100644 index 0000000000000000000000000000000000000000..e2a0a4f6b586cb40517ddbefda08080bd80fd558 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/input/input_y.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/.keep b/Increase_Bedore_pipe/AclNNInvocation/output/.keep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/ArithmeticUtilization.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ArithmeticUtilization.csv similarity index 85% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/ArithmeticUtilization.csv rename to Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ArithmeticUtilization.csv index 51c3b2a34278490821d3b1ebd953c02114907a83..fb3711de43fc481ab58b30cd4274246985e05e70 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/ArithmeticUtilization.csv +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ArithmeticUtilization.csv @@ -1,2 +1,2 @@ block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_ratio,aic_cube_fp16_ratio,aic_cube_int8_ratio,aic_cube_fops,aic_cube_total_instr_number,aic_cube_fp_instr_number,aic_cube_int_instr_number,aiv_time(us),aiv_total_cycles,aiv_vec_ratio,aiv_vec_fp32_ratio,aiv_vec_fp16_ratio,aiv_vec_int32_ratio,aiv_vec_int16_ratio,aiv_vec_misc_ratio,aiv_vec_fops, -0,cube0,2.973856,3640,0.000000,0.000000,0.000000,0,0,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, +0,cube0,6.205883,7596,0.000000,0.000000,0.000000,0,0,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/L2Cache.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/L2Cache.csv new file mode 100644 index 0000000000000000000000000000000000000000..111fa6da06afa7944e84c62165c4d39667fd9eaf --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/L2Cache.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_write_cache_hit,aic_write_cache_miss_allocate,aic_r0_read_cache_hit,aic_r0_read_cache_miss_allocate,aic_r1_read_cache_hit,aic_r1_read_cache_miss_allocate,aic_write_hit_rate(%),aic_read_hit_rate(%),aic_total_hit_rate(%),aiv_time(us),aiv_total_cycles,aiv_write_cache_hit,aiv_write_cache_miss_allocate,aiv_r0_read_cache_hit,aiv_r0_read_cache_miss_allocate,aiv_r1_read_cache_hit,aiv_r1_read_cache_miss_allocate,aiv_write_hit_rate(%),aiv_read_hit_rate(%),aiv_total_hit_rate(%), +0,cube0,6.205883,7596,268,0,17,512,16,513,100.000000,3.119093,22.699850,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/Memory.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/Memory.csv new file mode 100644 index 0000000000000000000000000000000000000000..d998736f508c40d0ccf69bb66f2d78d82ff33cac --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/Memory.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_l1_read_bw(GB/s),aic_l1_write_bw(GB/s),aic_main_mem_read_bw(GB/s),aic_main_mem_write_bw(GB/s),aic_mte1_instructions,aic_mte1_ratio,aic_mte2_instructions,aic_mte2_ratio,aic_mte3_instructions,aic_mte3_ratio,aiv_time(us),aiv_total_cycles,aiv_ub_to_gm_bw(GB/s),aiv_gm_to_ub_bw(GB/s),aiv_main_mem_read_bw(GB/s),aiv_main_mem_write_bw(GB/s),aiv_mte2_instructions,aiv_mte2_ratio,aiv_mte3_instructions,aiv_mte3_ratio,read_main_memory_datas(KB),write_main_memory_datas(KB),GM_to_L1_datas(KB),GM_to_L1_bw_usage_rate(%),L1_to_GM_datas(KB)(estimate),L1_to_GM_bw_usage_rate(%)(estimate),L0C_to_L1_datas(KB),L0C_to_L1_bw_usage_rate(%),L0C_to_GM_datas(KB),L0C_to_GM_bw_usage_rate(%),GM_to_UB_datas(KB),GM_to_UB_bw_usage_rate(%),UB_to_GM_datas(KB),UB_to_GM_bw_usage_rate(%), +0,cube0,6.205883,7596,0.000000,0.000000,20.323206,19.900608,2,0.000527,35,0.815692,33,0.768036,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,132.250000,129.500000,0.000000,N/A,134.000000,N/A,0.000000,N/A,0.000000,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/MemoryL0.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryL0.csv similarity index 79% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/MemoryL0.csv rename to Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryL0.csv index ee08ae4cbf45960c23c3101ffd29a3fb135ac445..e299878fe1ce1f2e0783dbfe4b6e7d121972e9f2 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/MemoryL0.csv +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryL0.csv @@ -1,2 +1,2 @@ block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_l0a_read_bw(GB/s),aic_l0a_write_bw(GB/s),aic_l0b_read_bw(GB/s),aic_l0b_write_bw(GB/s),aic_l0c_read_bw_cube(GB/s),aic_l0c_write_bw_cube(GB/s),aiv_time(us),aiv_total_cycles, -0,cube0,2.973856,3640,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,N/A,N/A, +0,cube0,6.205883,7596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/MemoryUB.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryUB.csv similarity index 80% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/MemoryUB.csv rename to Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryUB.csv index 0c6fed2d0fe49318952d374cf7e6f6cad96185f3..d901d187577545ab50fd2b2d93128f7ed56c0935 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/MemoryUB.csv +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryUB.csv @@ -1,2 +1,2 @@ block_id,sub_block_id,aic_time(us),aic_total_cycles,aiv_time(us),aiv_total_cycles,aiv_ub_read_bw_vector(GB/s),aiv_ub_write_bw_vector(GB/s),aiv_ub_read_bw_scalar(GB/s),aiv_ub_write_bw_scalar(GB/s), -0,cube0,2.973856,3640,N/A,N/A,N/A,N/A,N/A,N/A, +0,cube0,6.205883,7596,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/OpBasicInfo.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/OpBasicInfo.csv new file mode 100644 index 0000000000000000000000000000000000000000..149e47555f54ac8afa1d823b0e964243a9241bab --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/OpBasicInfo.csv @@ -0,0 +1,2 @@ +Op Name,Op Type,Task Duration(us),Block Dim,Mix Block Dim, +AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0,cube,16.000000,1,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/PipeUtilization.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/PipeUtilization.csv similarity index 71% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/PipeUtilization.csv rename to Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/PipeUtilization.csv index 90f130a106166fc50155fae707adf44f17296d7a..4287b760f4f419b25ac689f9d62a101ce513385a 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/PipeUtilization.csv +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/PipeUtilization.csv @@ -1,2 +1,2 @@ block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_time(us),aic_cube_ratio,aic_scalar_time(us),aic_scalar_ratio,aic_mte1_time(us),aic_mte1_ratio,aic_mte2_time(us),aic_mte2_ratio,aic_mte3_time(us),aic_mte3_ratio,aic_fixpipe_time(us),aic_fixpipe_ratio,aic_icache_miss_rate,aiv_time(us),aiv_total_cycles,aiv_vec_time(us),aiv_vec_ratio,aiv_scalar_time(us),aiv_scalar_ratio,aiv_mte2_time(us),aiv_mte2_ratio,aiv_mte3_time(us),aiv_mte3_ratio,aiv_icache_miss_rate, -0,cube0,2.973856,3640,0.000000,0.000000,1.290033,0.433791,0.003268,0.001099,1.843137,0.619780,0.001634,0.000549,0.000817,0.000275,0.222222,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, +0,cube0,6.205883,7596,0.000000,0.000000,1.474673,0.237625,0.003268,0.000527,5.062091,0.815692,4.766340,0.768036,0.000817,0.000132,0.100372,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/ResourceConflictRatio.csv b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ResourceConflictRatio.csv similarity index 86% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/ResourceConflictRatio.csv rename to Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ResourceConflictRatio.csv index 0e0a5ba4502352d77516bc42327cdfbaca9cb231..33259c9f70f172d07e2f5a51ec4f91b1f92329c0 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/ResourceConflictRatio.csv +++ b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ResourceConflictRatio.csv @@ -1,2 +1,2 @@ block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_wait_ratio,aic_mte1_wait_ratio,aic_mte2_wait_ratio,aic_mte3_wait_ratio,aiv_time(us),aiv_total_cycles,aiv_vec_total_cflt_ratio,aiv_vec_bankgroup_cflt_ratio,aiv_vec_bank_cflt_ratio,aiv_vec_resc_cflt_ratio,aiv_vec_mte_cflt_ratio,aiv_vec_wait_ratio,aiv_mte1_wait_ratio,aiv_mte2_wait_ratio,aiv_mte3_wait_ratio, -0,cube0,2.973856,3640,0.000000,0.000000,0.000000,0.000000,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, +0,cube0,6.205883,7596,0.000000,0.000000,0.000000,0.000000,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf1.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf1.bin new file mode 100644 index 0000000000000000000000000000000000000000..0080cfda5d34f74361d58cf6c1ef38280189e08e Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf1.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf2.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf2.bin new file mode 100644 index 0000000000000000000000000000000000000000..e3cd49f428232d603055645982ef762dc35b16b5 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf2.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf3.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf3.bin new file mode 100644 index 0000000000000000000000000000000000000000..d9e4c6b82c6b066d7150d82a7c533725d7a8adb1 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf3.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf4.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf4.bin new file mode 100644 index 0000000000000000000000000000000000000000..4998efcd9193a087572386dc1e3b954697fa5dba Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf4.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf5.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf5.bin new file mode 100644 index 0000000000000000000000000000000000000000..25333295c1710bc462a0774e4775e60e63b54e60 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf5.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf6.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf6.bin new file mode 100644 index 0000000000000000000000000000000000000000..c9f2f09dc9b6c5565caaf37d59a5e0c91a9dc270 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf6.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf7.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf7.bin new file mode 100644 index 0000000000000000000000000000000000000000..e74f907ea6d38bcd3f56a62e1b262d5111d92705 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf7.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/duration.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/duration.bin new file mode 100644 index 0000000000000000000000000000000000000000..a2155499bed03d3d047f24dba2549a735d36a052 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/duration.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/op_basic_info.txt b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/op_basic_info.txt similarity index 100% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/op_basic_info.txt rename to Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/op_basic_info.txt diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/visualize_data.bin b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/visualize_data.bin new file mode 100644 index 0000000000000000000000000000000000000000..37a9fac6e67e37436a4d58786ec8d07364ca48b3 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/visualize_data.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/execute_add_op b/Increase_Bedore_pipe/AclNNInvocation/output/execute_add_op new file mode 100644 index 0000000000000000000000000000000000000000..fbec1b52688ada08ae43f0d5a2cf286da042659e Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/execute_add_op differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/golden.bin b/Increase_Bedore_pipe/AclNNInvocation/output/golden.bin new file mode 100644 index 0000000000000000000000000000000000000000..a4b5383ff17a7e868f0fada5647b957cd11bbc47 Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/golden.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/output/output_z.bin b/Increase_Bedore_pipe/AclNNInvocation/output/output_z.bin new file mode 100644 index 0000000000000000000000000000000000000000..6d23118f0d0084657a974875123ddc1b9a0738dd Binary files /dev/null and b/Increase_Bedore_pipe/AclNNInvocation/output/output_z.bin differ diff --git a/Increase_Bedore_pipe/AclNNInvocation/run.sh b/Increase_Bedore_pipe/AclNNInvocation/run.sh new file mode 100644 index 0000000000000000000000000000000000000000..b13bcda6a0119d3bb4ccdfd8f98d739def0aa440 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/run.sh @@ -0,0 +1,120 @@ +#!/bin/bash +export ASCEND_SLOG_PRINT_TO_STDOUT=0 +export ASCEND_GLOBAL_LOG_LEVEL=0 + +CURRENT_DIR=$( + cd $(dirname ${BASH_SOURCE:-$0}) + pwd +) +cd $CURRENT_DIR + +# 导出环境变量 +SHORT=v:, +LONG=dtype:, +OPTS=$(getopt -a --options $SHORT --longoptions $LONG -- "$@") +eval set -- "$OPTS" +while :; do + case "$1" in + # float16, float, int32 + -v | --dtype) + DTYPE="$2" + shift 2 + ;; + --) + shift + break + ;; + *) + echo "[ERROR] Unexpected option: $1" + break + ;; + esac +done + +if [ -n "$ASCEND_INSTALL_PATH" ]; then + _ASCEND_INSTALL_PATH=$ASCEND_INSTALL_PATH +elif [ -n "$ASCEND_HOME_PATH" ]; then + _ASCEND_INSTALL_PATH=$ASCEND_HOME_PATH +else + if [ -d "$HOME/Ascend/ascend-toolkit/latest" ]; then + _ASCEND_INSTALL_PATH=$HOME/Ascend/ascend-toolkit/latest + else + _ASCEND_INSTALL_PATH=/usr/local/Ascend/ascend-toolkit/latest + fi +fi +source $_ASCEND_INSTALL_PATH/bin/setenv.bash +export DDK_PATH=$_ASCEND_INSTALL_PATH +export NPU_HOST_LIB=$_ASCEND_INSTALL_PATH/lib64 + +function main { + # 1. 清除遗留生成文件和日志文件 + rm -rf $HOME/ascend/log/* + rm ./input/*.bin + rm ./output/*.bin + + rm -rf ./output/O* + # 2. 生成输入数据和真值数据 + cd $CURRENT_DIR + python3 scripts/gen_data.py + if [ $? -ne 0 ]; then + echo "ERROR: generate input data failed!" + return 1 + fi + echo "INFO: generate input data success!" + + # 3. 编译acl可执行文件 + 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!" + + # 4. 运行可执行文件 + cd $CURRENT_DIR/output + echo "INFO: execute op!" + timeout 30 msprof op --launch-skip-before-match=0 ./execute_add_op + if [ $? -ne 0 ]; then + echo "ERROR: acl executable run failed! please check your project!" + return 1 + fi + echo "INFO: acl executable run success!" + + time_ust=$(($(python3 $CURRENT_DIR/scripts/get_time.py))) + + echo "time_use = $time_ust" + + # 5. 比较真值文件 + cd $CURRENT_DIR + ret=`python3 scripts/verify_result.py output/output_z.bin output/golden.bin` + echo $ret + if [ "x$ret" == "xtest pass" ]; then + + if [ $time_ust -eq 0 ]; then + echo "[ERROR] Performance not achieved" + return 1 + fi + + if [ $time_ust -ge $time_base ]; then + echo "test fail for performance exceeds baseline data" + return 1 + fi + echo "" + echo "#####################################" + echo "INFO: you have passed the Precision!" + echo "#####################################" + echo "" + fi +} + +main diff --git a/Increase_Bedore_pipe/AclNNInvocation/scripts/acl.json b/Increase_Bedore_pipe/AclNNInvocation/scripts/acl.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/scripts/acl.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/Increase_Bedore_pipe/AclNNInvocation/scripts/gen_data.py b/Increase_Bedore_pipe/AclNNInvocation/scripts/gen_data.py new file mode 100644 index 0000000000000000000000000000000000000000..8478b91d944bc1f3436978674eaca29fd3e0a489 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/scripts/gen_data.py @@ -0,0 +1,25 @@ +#!/usr/bin/python3 +# coding=utf-8 +# +# Copyright (C) 2023-2024. 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. +# =============================================================================== + +import numpy as np + + +def gen_golden_data_simple(): + input_x = np.random.uniform(1, 100, [32, 4096]).astype(np.float16) + input_y = np.random.uniform(1, 100, [32, 4096]).astype(np.float16) + golden = (input_x + input_y).astype(np.float16) + + input_x.tofile("./input/input_x.bin") + input_y.tofile("./input/input_y.bin") + golden.tofile("./output/golden.bin") + + +if __name__ == "__main__": + gen_golden_data_simple() diff --git a/Increase_Bedore_pipe/AclNNInvocation/scripts/get_time.py b/Increase_Bedore_pipe/AclNNInvocation/scripts/get_time.py new file mode 100644 index 0000000000000000000000000000000000000000..fbeac398d91d9db9a0af05d5055d75572f1eb8fd --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/scripts/get_time.py @@ -0,0 +1,31 @@ +import csv +from pathlib import Path + + +def get_time(file_path, time_use_list): + with open(file_path, 'r', encoding='utf-8') as file: + reader = csv.DictReader(file) + for row in reader: + time_use = row['Task Duration(us)'] + time_use_list.append(int(float(time_use)* 1000000)) + + +def find_min_time(): + min_time = 0 + time_use_list = [] + directory = Path('./') + filename_pattern = 'OpBasicInfo.csv' + + for file in directory.rglob(filename_pattern): + get_time(file, time_use_list) + + if len(time_use_list) > 0: + min_time = min(time_use_list) + + print(min_time) + +if __name__ == '__main__': + find_min_time() + + + diff --git a/Increase_Bedore_pipe/AclNNInvocation/scripts/verify_result.py b/Increase_Bedore_pipe/AclNNInvocation/scripts/verify_result.py new file mode 100644 index 0000000000000000000000000000000000000000..d34249c347b3ecf48235e1667ce33bcaf6810da4 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/scripts/verify_result.py @@ -0,0 +1,40 @@ +#!/usr/bin/python3 +# coding=utf-8 +# +# Copyright (C) 2023-2024. 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. +# =============================================================================== + +import os +import sys +import numpy as np + +loss = 1e-4 # 容忍偏差,一般fp16要求绝对误差和相对误差均不超过千分之一 +minimum = 10e-10 + + +def verify_result(output, golden): + real_result = np.fromfile(output, dtype=np.float16).reshape(-1) + golden = np.fromfile(golden, dtype=np.float16).reshape(-1) + 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__': + + if os.path.exists(sys.argv[1]) and os.path.exists(sys.argv[2]): + verify_result(sys.argv[1], sys.argv[2]) + else: + print("[ERROR] result error") + exit(1) + diff --git a/Increase_Bedore_pipe/AclNNInvocation/src/CMakeLists.txt b/Increase_Bedore_pipe/AclNNInvocation/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..730ba001358345ce4136a6bcfe22c45bebbb6234 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/src/CMakeLists.txt @@ -0,0 +1,67 @@ +# 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 +) + +# add host lib path +link_directories( + ${LIB_PATH} + ${LIB_PATH1} + ${CUST_PKG_PATH}/lib +) + +add_executable(execute_add_op + operator_desc.cpp + op_runner.cpp + main.cpp + common.cpp +) + +target_link_libraries(execute_add_op + ascendcl + cust_opapi + acl_op_compiler + nnopbase + stdc++ +) + +install(TARGETS execute_add_op DESTINATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) diff --git a/Increase_Bedore_pipe/AclNNInvocation/src/common.cpp b/Increase_Bedore_pipe/AclNNInvocation/src/common.cpp new file mode 100644 index 0000000000000000000000000000000000000000..992759c95af685fba85838acbe188a3533928128 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/src/common.cpp @@ -0,0 +1,80 @@ +/** + * @file common.cpp + * + * Copyright (C) 2023-2024. 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; + } + + size_t writeSize = write(fd, buffer, size); + (void)close(fd); + if (writeSize != size) { + ERROR_LOG("Write file Failed."); + return false; + } + + return true; +} diff --git a/Increase_Bedore_pipe/AclNNInvocation/src/main.cpp b/Increase_Bedore_pipe/AclNNInvocation/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5a78ad1a0fbbeeceeb564213194d4a69b179e77f --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/src/main.cpp @@ -0,0 +1,162 @@ +/** + * @file main.cpp + * + * Copyright (C) 2023-2024. 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 "common.h" +#include "op_runner.h" + +bool g_isDevice = false; +int deviceId = 0; + +OperatorDesc CreateOpDesc() +{ + // define operator + std::vector shape{32, 4096}; + aclDataType dataType = ACL_FLOAT16; + aclFormat format = ACL_FORMAT_ND; + OperatorDesc opDesc; + opDesc.AddInputTensorDesc(dataType, shape.size(), shape.data(), format); + opDesc.AddInputTensorDesc(dataType, shape.size(), shape.data(), format); + opDesc.AddOutputTensorDesc(dataType, shape.size(), shape.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_y.bin", fileSize, runner.GetInputBuffer(1), runner.GetInputSize(1)); + INFO_LOG("Set input success"); + return true; +} + +bool ProcessOutputData(OpRunner &runner) +{ + WriteFile("../output/output_z.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/Increase_Bedore_pipe/AclNNInvocation/src/op_runner.cpp b/Increase_Bedore_pipe/AclNNInvocation/src/op_runner.cpp new file mode 100644 index 0000000000000000000000000000000000000000..7e1623aedf1f575a26bca0d9aadb2f78de67cdd7 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/src/op_runner.cpp @@ -0,0 +1,453 @@ +/** + * @file op_runner.cpp + * + * Copyright (C) 2023-2024. 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 +#include + +#include "acl/acl_op_compiler.h" +#include "aclnn_add_custom.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) { + (void)aclDestroyTensor(inputTensor_[i]); + (void)aclDestroyDataBuffer(inputBuffers_[i]); + (void)aclrtFree(devInputs_[i]); + if (g_isDevice) { + (void)aclrtFree(hostInputs_[i]); + } else { + (void)aclrtFreeHost(hostInputs_[i]); + } + } + + for (size_t i = 0; i < numOutputs_; ++i) { + (void)aclDestroyTensor(outputTensor_[i]); + (void)aclDestroyDataBuffer(outputBuffers_[i]); + (void)aclrtFree(devOutputs_[i]); + if (g_isDevice) { + (void)aclrtFree(hostOutputs_[i]); + } else { + (void)aclrtFreeHost(hostOutputs_[i]); + } + } +} + +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 = + aclnnAddCustomGetWorkspaceSize(inputTensor_[0], inputTensor_[1], 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 aclnnAddCustomGetWorkspaceSize 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 = aclnnAddCustom(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 aclnnAddCustom 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/Increase_Bedore_pipe/AclNNInvocation/src/operator_desc.cpp b/Increase_Bedore_pipe/AclNNInvocation/src/operator_desc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..da04cf6c9e03b9d9ffa9ba7cd8e6306f52a62743 --- /dev/null +++ b/Increase_Bedore_pipe/AclNNInvocation/src/operator_desc.cpp @@ -0,0 +1,51 @@ +/** + * @file operator_desc.cpp + * + * Copyright (C) 2023-2024. 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 "operator_desc.h" + +#include "common.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; +} diff --git a/Increase_Bedore_pipe/Is_increase/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..584132d80993d309434fb1303de83910a1989aba --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/CMakePresets.json b/Increase_Bedore_pipe/Is_increase/CMakePresets.json new file mode 100644 index 0000000000000000000000000000000000000000..f0933976520a982d22bfb3e19833a9d5e5698e08 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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": "ascend310p;ascend310b;ascend910;ascend910b" + }, + "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++" + } + } + } + ] +} diff --git a/Increase_Bedore_pipe/Is_increase/build.sh b/Increase_Bedore_pipe/Is_increase/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..4be96d7d8b99f0dd4b8052a16d17afe9c809fb54 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build.sh @@ -0,0 +1,37 @@ +#!/bin/bash +script_path=$(realpath $(dirname $0)) + + +mkdir -p build_out +rm -rf build_out/* +cd build_out + +cmake_version=$(cmake --version | grep "cmake version" | awk '{print $3}') +if [ "$cmake_version" \< "3.19.0" ] ; then + opts=$(python3 $script_path/cmake/util/preset_parse.py $script_path/CMakePresets.json) + echo $opts + cmake .. $opts +else + cmake .. --preset=default +fi +target=package +if [ "$1"x != ""x ]; then target=$1; fi + +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 exit 1; fi + cmake --build . --target $target -j16 + fi +fi + +# for debug +# cd build_out +# make +# cpack +# verbose append -v diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeCache.txt b/Increase_Bedore_pipe/Is_increase/build_out/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..e644a1752158aecc1c12d3d773409d69087137ed --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeCache.txt @@ -0,0 +1,425 @@ +# This is the CMakeCache file. +# For build in directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=ascend310p;ascend310b;ascend910;ascend910b + +//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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +//Value Computed by CMake +opp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +opp_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +//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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase +//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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46e8ebd327cc00953e9aa9fa6c482aa58ec549ba --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeOutput.log b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..c5f9cdcdede50231446663948e19421ea1d2a96a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e441e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e441e.dir/build.make CMakeFiles/cmTC_e441e.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_e441e.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_e441e.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e441e.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_e441e.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/cceft4EI.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_e441e.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e441e.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.o /tmp/cceft4EI.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_e441e.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_e441e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e441e.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.o -o cmTC_e441e +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_e441e' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_e441e.' + /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/ccgIqEP0.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_e441e /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_e441e.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_e441e' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_e441e.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_e441e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e441e.dir/build.make CMakeFiles/cmTC_e441e.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_e441e.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_e441e.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e441e.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_e441e.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/cceft4EI.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_e441e.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e441e.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.o /tmp/cceft4EI.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_e441e.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_e441e] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e441e.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_e441e.dir/CMakeCCompilerABI.c.o -o cmTC_e441e ] + 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_e441e' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_e441e.'] + 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/ccgIqEP0.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_e441e /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_e441e.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/ccgIqEP0.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_e441e] ==> 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_e441e.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: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_57e57/fast && /usr/bin/gmake -f CMakeFiles/cmTC_57e57.dir/build.make CMakeFiles/cmTC_57e57.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_57e57.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_57e57.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_57e57.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_57e57.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/ccXHnnLF.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_57e57.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_57e57.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccXHnnLF.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_57e57.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_57e57 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_57e57.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_57e57 +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_57e57' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_57e57.' + /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/cc5TFPgk.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_57e57 /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_57e57.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_57e57' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_57e57.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_57e57/fast && /usr/bin/gmake -f CMakeFiles/cmTC_57e57.dir/build.make CMakeFiles/cmTC_57e57.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_57e57.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_57e57.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_57e57.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_57e57.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/ccXHnnLF.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_57e57.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_57e57.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccXHnnLF.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_57e57.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_57e57] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_57e57.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_57e57.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_57e57 ] + 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_57e57' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_57e57.'] + 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/cc5TFPgk.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_57e57 /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_57e57.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/cc5TFPgk.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_57e57] ==> 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_57e57.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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..addc633c7806f5c43b4fd1078baa00c2405a1e75 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,33 @@ +# Hashes of file build rules. +6e13c351db0ae05bc029a967286cf05b CMakeFiles/gen_version_info +118040147ad2a73024574383a96c8cbd CMakeFiles/modify_vendor +f759180727a8318facd53e51af2ceac8 op_host/CMakeFiles/optiling_compat +937a38e0ae02efdc46eb65770cbc8279 op_kernel/CMakeFiles/ascendc_bin_ascend310b +74608cbadbf9d7e321b59b2228e72694 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +4d5b4ce771b4169b20c7540c98bdc442 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +d443d9b815515c1e93df6cb8ecfe9920 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +15bbf00cc804e78dba8932905279e9d4 op_kernel/CMakeFiles/ascendc_bin_ascend310p +e28d167d3cae2b7316fbc0e66d02faef op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +3df3c9532595ef1a66abbe138b384e8d op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +dbef6b6975d637010f5940c395ab7ff1 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +547a04c9b478c6f945b212c9a073b4b0 op_kernel/CMakeFiles/ascendc_bin_ascend910 +49e5940b809a2d9dab3e8d692b31c4a4 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +176837d162bc350892311a905663fcc7 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +981f1ad4206ba46cea1513ccdb7320dd op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +469d14231dce0d606a30cd497568754d op_kernel/CMakeFiles/ascendc_bin_ascend910b +bdfb75833f43a439fa523763f16c7d99 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +da13510ef1a845c626e8f271725af09e op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +7cf796b0e126ee84fddaf625101dc7fa op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +36b913c0a578db6317f013f512e95c6f op_kernel/CMakeFiles/ascendc_impl_gen +36b913c0a578db6317f013f512e95c6f op_kernel/CMakeFiles/npu_supported_ops +36b913c0a578db6317f013f512e95c6f op_kernel/CMakeFiles/ops_info_gen_ascend310b +36b913c0a578db6317f013f512e95c6f op_kernel/CMakeFiles/ops_info_gen_ascend310p +36b913c0a578db6317f013f512e95c6f op_kernel/CMakeFiles/ops_info_gen_ascend910 +36b913c0a578db6317f013f512e95c6f op_kernel/CMakeFiles/ops_info_gen_ascend910b +af0b7fa131b78da114e3966528be9d82 op_kernel/tbe/.impl_timestamp +a57b98f282a43afd4d3b6ee99eedc75c op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +6367f4d34eeedb4f12efa0ffa9cea6b5 op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +5134c78f5154af2ef5c7544261ca6fb4 op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +297b5d83e4fce3ae1400ca09d813baae op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +d4d075f2a0bdad11225275859d6ac3f8 op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +e52052404ce8c606e5b5dd7bf44af0e5 scripts/install.sh diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/Makefile.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7ec716ab72c14b930e863bc1ca7611d708b11e05 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/Makefile.cmake @@ -0,0 +1,167 @@ +# 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_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/binary.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake" + ) diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/Makefile2 b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..3ae113ebb57b828416c223ab03ab1857421782bb --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/Makefile2 @@ -0,0 +1,976 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_ascend310p.dir/all +op_kernel/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend310p.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_ascend310p.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_ascend310p_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/TargetDirectories.txt b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..c253bfabfb3877df39120f8a7f7844e895e15a96 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,70 @@ +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/cmake.check_cache b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3a9d69187c41c64486afce1308bc516f9c4b730a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/gen_version_info.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4183a837bc0dec14a4def868f73d30454795d838 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..94061306968c7012026090d774e6ed8954710fe1 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..714ce8ff0ea68770397b4b735a816647351f4c4c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e3edb92a722079df9b64d4d1a296599b20af7cf7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/scripts/upgrade.sh" "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..94b9b6a18cc7b727f5ba2b261da19e18867d4d5b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/scripts + cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/scripts/* /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/modify_vendor.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..563285175969cc11e838c67e32b7fd052a517b5f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bda5864a979e6a287be963ee99667bd4c0d2ed79 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4290d3f2e262181b1ffff8509a18a20ec4278023 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..27952ed76a534aed5b8a5fa4bfd9bb2d3e51eeba --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 11 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/progress.marks b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..b6a7d89c68e0ca66e96a9a51892cc33db66fb8a3 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles/progress.marks @@ -0,0 +1 @@ +16 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CPackConfig.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CPackConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..efba28482e0796b5f76fa3370d3978f5e4489f29 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase;/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "External") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/CPackSourceConfig.cmake b/Increase_Bedore_pipe/Is_increase/build_out/CPackSourceConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..5ef4632cf6cc580eff07c2e7f6a5f8eef8711a6e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase;/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/Makefile b/Increase_Bedore_pipe/Is_increase/build_out/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..5ace1a7c8d3e65ed8eed8f9b906c2f5a63c39d4a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/Makefile @@ -0,0 +1,631 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_ascend310p + +# Build rule for target. +ops_info_gen_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend310p +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/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_ascend310p + +# Build rule for target. +ascendc_bin_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend310p_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_gen_ops_config +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_copy +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_0 +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/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_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_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_copy +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_0 +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910 + +# Build rule for target. +ops_info_gen_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910 +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910 + +# Build rule for target. +ascendc_bin_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910 +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_gen_ops_config +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_copy +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_0 +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910b + +# Build rule for target. +ops_info_gen_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910b +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b + +# Build rule for target. +ascendc_bin_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910b_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_gen_ops_config +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_copy +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_0 +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... gen_version_info" + @echo "... modify_vendor" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" + @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/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..25eed1a0d61c9a368d0eea5ea3d0c46a1271be82 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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" : "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..2c2074695335102b60bc53993d1f192e06267e65 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,972 @@ +#!/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="3946831741" +MD5="00000000000000000000000000000000" +SHA="2f51447a589c6589b3ed76b6e1684662a273860382d65cbf31fe7dde9ebcd293" +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='' +targetdir="makeself-932073-20240525184804" +filesizes="103986" +totalsize="103986" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 300 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sat May 25 18:48:04 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 300 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 300; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (300 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 +Qf< pŕZaBk-x0`#Dz슱$_hvxwf=3kI86ťX{稄"X*G +9qՕ:8cb: `tMw~,"{_~{d0WN pek+BeKt ɴ.oi]֚*!̲UÊP`mYnNSՇ; MAL N.C7jAo/VY{u7kmcS)X +hKbU5{*UTmpHgTb,vƵmx,63:uZ1 +N30=4^2tw C\eTOU7׶,v}@ǺuJoEPD6D-2pIjW=f+jA[Wuj -;=Vm[^_牅,]fV,oeة&dFAB75 -4ޜŌ!&L@=[VR73#&T-2/X vmBK0cK`,PPnG fnWw\mcf +Wigv dƬQMWВWZU5.ż/HȺbW +#W5B[ZIɮȴ\!dn%_!$mU!tڪt/[P:b2b_xN_Y)lQ_6Ԛ)X˩] {gz /W1|UْNjEoPi[*^+SppV dD@h[U *xL@[ٚC9dCm)Mp_ӞSl,BNg'l|= 7´vAluOGwK?ydcGs{Gsoe@4q0OpƎWxŤLUV Shu=42CKcgı5!2mc'\`ZN Q}^)2@`Ms֧Hg%;%MO|)Y}[D0UzF18IAq=L R}g1܊SCz^wu*F0e?H\G+vށҀM\gQ sjk^Td(,Q˛)P4S +J*o ,@ks2lI~?F_W+fy>}\-sS,8Uw!r! O?j{Djb1aY-b,.C-'iI,bXRI~ӁYRй-Bw ]=A54866hѲ]q2]iHVlyd.=#,{[PfʺE)h!OT`jh}kZݡd}d]r`=BL^2loŜMKyʲl1dpCdz $꣺wrU(f|\Mgja]Ājؖ6zW{fC .ƒx1@d >mcʕd+gk\ɯdcykUyKBd1,ѱ6ֽ7_gJŴf@sc:Sc*Y "vR>?M28.K@7 +0ov :<0s@:O!צ_y +~AeL" +֊WXѲl\i]6Gt[x|1ByniW33brU,, ׎߳g2(o2Sr ɑK9Rn-/ YA.Yȋ{2<\nf_ +Aγs0}Z~Y!J1V(s>#gF9g7.yҟ{f#_|N,2:'LEР0_R 5TR:k>|hUR]jD:vRSRݞHuцv^P]φoCi5{84LXJӉ ,Sh* +Qܠdu[6Wn[>gz2<'E6߻U*EDVcʎ4ԙ#R Zq ~%(nζFn9Ż F>)0RۦhmpIYx"ַf!?fP󌴽7Vڕa,[-XQ~%Lem 憢h𪎒kݠ9ZuУ +(u,ż_jA%LS^=T25d]˕)ݒiTl3}*L7pyH $l}&3;282x:ĘFQ|qܬvI.GtX$3iMx' Ur}喨KYLn\dHϺVZKezk?C=5B䱅§9IcڵF ;9^Ƈw54 +{<\}>W]q뛰 G o4wg|m3|Iy5<~e&|6Sȃszλvpo?˿:/璎9=o&>srj a#Rܽ{{{N}g?c } RYT?7!O yF %X@Aq(@ +s=٧YY'he3*qO&Φr{.8Rwk@cqSq8#C>q&/-Ω8g\lOaz> v +yq'/,k]qd%$[D䡙$ӭ9s\UIYJ|6adT'G1+ҵY &(Pgyb%: |(|PgeUW%I=x(]@)].=j!~l +TzCyeU$98$oDf? 8\8W:c'Ü"R |G.b9҅;qF@xV^MؚbӅ'J|!p'Dh~t!/(E +OKwr\AQxoE|wq w& ʋq  DL\N{8]@xn%AZCˉr4pCxI90loX Iȋ}.[64߿bxJ]ȋ~e ?7 4!?ϣ ]CXa? +ehyxZ9>l8?bIqJE=XE'e°R}ә2|sY̿fܿ$\pz`wFWwT y)򥬞Ri*j6/i:"@l22G1W}PM͗չաúz%q5|~ ͩN 7[CfV]֯W:VF-?>8꺯> fmLˀWfrl##Wje+ȒX r(ZH.=K Ou!9Je8.J׵W׵5+u@ _/iesĨ:5:48~JzFS5VI߫ћ$=Sҏh~T׳N_)5zNu`S)>ѳPO;AayS<>casq{G XoUkZ T5{ʈߤJIR9H1J*|hx/$.j}br_/x O +\a}Yʕ5Su^*Ӿ~O[?0i;z1ۯ:o=w7w?؊7u=7v .}AQR;[]OplYugj~2^ܷK\.%v׷h&` w;WkV>"MO _^V4_#Fv6iskkWpQ8(gNv3 +'{̉O]d#?]ߗ7GGGG(:~/ J(Z Ev^#&٦O%ߵ(I':'}P&ҙ: ߥږ~5Y߿Wٮdvm }XZ2٧ɑ]] >KN.*퓍c J:_:Ut=+/ J86_J)9,86&~⣫c񐮸_@|$O3]i|˯{|H׏cDZV4ql*]*O7]FO?Z\ +Е([O{b^9=~l|N^i姷ǖFW N___/og}86Z-_"$ODZ8e@G/FUNNOB8׉.~ 䗊c['VuKs ˿~N|D~Уi(nrFS#k5\47nvfkmTk'~V"1(b FXKSKF)v4񬕱Ҧ +Yg&ømx~"j5cQ7?Pq0nq+g"Tv FLVT1BX?{0LhBs檰A|S6[bV +5";A7Yy dxod3cCQq{Z>353%?Ǖs3\2Rhm1 +k'3wvֲ562q6' L$gfmbXC\q$NA0` 0@}Su8 ˙Qt!cC"NCJUHd<*ZIq"ɗ`*jKFnxidrDx,X#LW12 OdRlC$ -- 9NJKcVta,πOnƣ;atRAߠ޽a<w$AzHJXlyBPײuIї?{o=up}[[ +fO.qBz [W!^`eϿ^|/U;p]Hceyz*G3jhDiVҴbg%6INTadTфQ,(UrH:x#Ŕtp$@ԔŤ'o"8sDc%ݎ`x-;m{$4V۝4n7W'xCVtҚ1!ahXv;9-<ѭ{C@hq;q#@3B&BĪ"/ұX0q'9 )%kI_sSG_+gmE#28ltGwwC+b~SX~Q+|NCgZ||Ha1lų')`D:'XVZ!n|A7Q۷t*N9W;Uap?[׼iKKu=jeC皲ɛDCK.EfTޚ`8ʆsDF1`VҰsf5ĉ #H +#,C-;#R׉$nZ;j Cl ^%158w-\86Lc$Ey3E6esxx4GP0fVո3;{0jChc{qo3yŐT.Uߊ b(WY\=#pj)&HڼIc.LkD.9Ŕp9iG.x/.7\OknQdF7(r! +eek`8F- =0E&Iw؊ GOp'SZ%<]1BAfch˩يR%e鈹?;FCgI" )Up"M6>OֿWRVW,#ΧD4=3oV1[ ")輢a,J>xCFM!#P#Itd5*O0stqjPşN؆eAd$ ]{4LeȕcBݤ0Fr\b)8!E.<.0 2(ΎŨ{({Pp ,T(X;2'7i~a>^؛rVEMst*ӞjE%BjRdQcԶeT$뱐r+F,(‘> +x;,a3~4~F:f ANu3Om2& SdkؽNL2-7ˮ&$ Y2qNaƵKF6Ai'K[iÎmK[eJ<:@ oh bQ,Jl(HIlںɂQ:uIVL~MdCֵ~+T K,I3l!R(D cD2fyX{;k*@JgŻR&hnWYy +Ael.%$})E%Le]*)*L'"~ Ӎc*o@4;=Ie-EP EEaDG aEc>sWw{)96;J0epQBj5'AQ&y#.W䎃Vඅ/E ^0o)DhM~mI1zʖ07%+^N 2/Ӡ"D/ X.KL@Qx9sx)[rql܇ bPh`,{lE譕B$ClXm3c&oz:Bˉ ~A IgddǾ %Xq4'C@p 9T$+XUʥ*Ti }$⺓ X* +?yo{ooC#E޼~g߯7?K3agrpnQ|{Vce h*|yWKS6G]ոic~N^aߕ'#}GjťtJkrf43chdb\*2\.;.,??3 +_.رJ|Xؾn=teyGVnm",% />JXs|9x}E(9\؇ƶ,W=}F>^CB8[ۖ߹ZX'KV|3rc-<\~ .{&]pϮ.Wݰ6yc:&2بp.Gt= gRT,͵gsH<bh,M[Mg>)UB:`}s7ie}$0*]&Rhfkk@' 2ؘ2 Mf%|c9<59>x6qiBvM"HAEA=Hp 10Jrs[ya4-[2V˕aʃ7zwWuc8mft$2f8H-+EfJ"d4IV>Os񈙏'x>f0qMtX +bBh7ql^e&+t䆉n@YGbDEwd&ؒf5&J3=+ A(f^Ê=*_2:G  xCVhHwݚjcgo :<|Xww^!6ʿj zt@3_:nK2"߳T~@BG !$cGsk37 g_v56o=#j&GC܏:[4Ywݪ1Jfp ؇5n;ڵgm+&l@;e81tLw>yۼX3hN43yꂆktHaXaTG}^u9svAֹpMFwbڛ N +Q>z9H&mMAAw OЗW>AO +5e!͞k;MFM*W];h1 `Mcٮ{5ޣu~PlH669qm '0SB\ѓŋ8n'8Vh/?&Mf)0Í*ׁɯ0 Qq~-$5̧> uagTwlwtL- +M6>8Ajrzͷ0?o#5 >|ڣQ LT!nPX +cڂ0Pu<~. A>R h]s=- _ɯ2x|ʎxj* *#^ȻD}o`0~ l[ލl$QQVA(BX6ޅth63sgr{j/au=kO? +_Sا[DT TnT@+k=!8^@eS` W`'ޟyN +v'C^RgbS仰]F[D ^+IGSS@>I^*!?^tĘieC*#"j7d;gUDIGNYv #I_hE<|)`7K삝<)*uPnɾꛤ@voic_|ñRO/3$?`OuL*H`7HY'IQ7BtwFt=/+̽nAiź8iX8dȘ́n9fbZ񟕸L6f(sz u/(j86yyI2yŪ@g g +/ٓ2}YOe1y$ο<\tJS6׾i<ߥMca6ly=f,A/`jš [6d[EFڶ"NYbNK=*ϯ,*vM#G{E~:*d,Ҟŭh6MT2#1٬8:1[ Z9Pu9Tua?cpb?ZO$) Qag@&Wb@R\;hWa(BEF +)n3`5Xď_MKCYZ8Px#-SqPn{ݪnT `Ҍ#ZCXc~=!L7A=Zk,3X+QNRco4n`{?ۦh?x;wZ >ip't:Xs~I}Qнtk]-2AAP]3'<: qA{mMܱu|T]qhvX,.'A/?| 鳟-S5K: pv[3tg'CqxB#ҪOk8wL )r[fΌZEiS:0hoiZy c M&^}|Q t1:g0P Zl붮ݣoO]&~ݽU3v3jAk/E>)GƤ}TuVG|WgE\P^ۢ:Y[@5j?u2VMo'웘Mm`fh9蟂62{U7[sgT[-|3 <7(b>g1_TKlZBܬF| SPC|E>v뛈iuՂ7ov|Zƺw+zSHWC^TAz+/ +;Q&OtM'(J}>QtSpх.`(_HZ,wȫ('tqBo o<6#zd +A9Ƒ +J@~ +(P>]w$o2ĂMʱǤ`?*'Rχ+"\ +<_+rqd ɣ<+u vZʱ /h]xP P P P e + r@qO6."x\lrIִ>رrˆ޴~Q~hrm<:gÕ~ri1A*OåLQy;eȸȿY\~VJfȸDC]O_ WV;a?'?܃U`U.'[H"Q+3H*gD,ƭx2Zh6OL̇s1sDT?qW?UϘA:y3T?p+U?UO5|0K1cUqUE?8s~QHz1pv>R'vim}G49ק#Oӊe:;۱>1 2{E8q+Z7c843t!0m0`\ Z7ct0^0%1vc'UM{K C?zC;k^gJt~YI)^xnU3ql(|!d;[t_]\y( ۃ:ѣ*@pLSV0>Z˟8 u߭eϵhgjT2nx8lgLMM8%la5̭*(:ֹdL}6=W>`2ړ>N%UӵW0}UteZq8ڊ$u9^Sx`:G 0_7>p3ML>|:D8w1EX64M/%12Qm) +%ծ[o{{z St'Lт_zT0E]\L}Z`a&(0E]x\LY`W&J?wo[r?}L+CL0?ӰɗÓtYbBKJ7s8߇5#}F}m⚺Ay+>~X9*#珉-CWÕF$_B/J%hKc/oQFWJ\e=-S/7ϽӊmX}qͪ:yFYuTI~s*>yܦJcO ]?:"MWaGNQB'iIF@|t:7INw݉qԥ#̢3q sz4=9yY8denݾFƮtꯪ[ު.f an~#3t`3V&Ot| +pݧy|YE~33̈́9NPv^NF?O.8y>NcvB^3qe{ ShMSP+urٺY,l=&BֿZc~˺]9ufOwcU+@+viviviviviWľ[[p|A?99#{xx+SUX忏Uݸ8z`qD"LR=(ҎKgfoP[ajh.iP]mKk|?yR%)YKvﲨS߇%{ g(FГW;^]_{ϯF{rW{L?Ѿ%ld(M絑 ?qUYj"?!ˌ/e<LS}M _K%嬤VQr%[qNʮ uv +cޥ0 +Ehw~ ] tdKcXf6Y`NYX֖¤80kSq5L3~F:-I8^;7ց kǮ ZJڪ7'JJ|8S8?KcErQ5yk=HEż9G%l'蕍 pPr$T|˜ysOV0"O?ALg0*sTcLio_~x8>9?.m-zTH>ps>RsӨVWOA/}6̞ǠJ3Vq9h'3o\?s~n//KN? qM?nJ?xOcP%+J4Ou8u7?|8e1U0ROu0s>Rs=-(I +ј"1{qIq1pLJ*KvVb?~-v^F|ezYXP<'~gWgxZ/L9 ++V|#.^u'9?m--/nɛ9Ts_yyǯnm;By9+ӣOc,j5#)G)f?</0dP{u36N6f?a$?k1<`R?&?8?'/4I9ٸApMjbxIy?|I&zԄXq73csLc&vI~ZM?٤]u0fϏMo3I+v+,cLҩabo7iU&e?dg*Io/Lvf82fĤ=Ԙܯ&INdxud~۵&r;MgI@:#|I${M& Sr]l&3iOMҙn2>;g \$cBw(q7+j*k`,/'*tze"s]>'zPߑI*9 +^4йxǩ|ޙĎ +x\O L%#Z㿕zPY#WU%+)/&ILrX&ݏ+UBAy% +a!+!i { k<1[ K]޵FV)m/y/! +<&,¬K +GױVj3:]£b@b*h$% W +4aspJ$s6{.3ERbz\^,!"do4o /۪Nw/Ϗ? Bjq6xF~5/r7匞Xy.JN5.nTr^WFVrăNwCY*4:ģXɌk%)!&I/rU"[RR[cXJ!XH15*tGzl+H'C;) AdGvK +X$G"4JEEd/"38j'osӱUJѡ ٷvQ\lnK -0%7HD=SP24_JZ4:hl/} 3ڕjC&uMcs` Sd8CGUQPw2L9 +:i#ǻP`/=< ø'bDW 0ZSH!NO#5Al +wZ<4{c 1t91rSc}qURalt6(3ԄZlA٤e0_ZPNl.- >Oh+\'ee ^mlpMq&Rڜ/ hXS J\4e 4}>K PBqҹL, +8a3L\SЏ!U9X@g-^PicNVѤ6M/ }QEfw=b0z4^sJBM>1Z^:ʭnE)6=lj2S=atbćE@h%8ܛF:oC#;8cw0v@tEl2eBA=nRGxîpK|D׭7*a ++OZOCC{{\Uwqh7oH9)_(x5\FNj ɵK]%{VWK%IԮ])WGY E]T<֟0+e_S'e,¥frʵL\q=q:џʓ?mN<>_GWM•'VaO _9ŞoeW0tG7[pgݔoCпumޕߊU:rw>7"?*^):<, :|:ߢϏJC}txwW>?V|&xx_9]ox!^A_+-TYV~W׋U\O5_z|/ ~Ư=CS&нGF\Nར~2&Hr%b GH_C\ѾqFu +n~z.g|>H\|AtU'0յtGg(κ4\mr NQ +-+$/"4)\Iw|&N۹|5/&x3/!x/%x%, >> ~9 +o%8!m/"%._E[KA3!_C/&w(59^B\ ^@pN'8XHpz}8YB +WW<չ gn57<XI8f`=QhCUyJ{^ }TۀMN:t #B|Bߍ }'z_|B? '&OQ>A '(F ݏ +'k(п@wO_|Br~-OwQ> !'|B Wh!O?|BP>B '7(ЖZ_@&D:B zBOyBzЗгQ~F_ }'t1'z' (ЋQA  z%'Ȕ;P>[Pu݆ ݉ D|B|Bߍ }'zPF~ OM(O|B? OQ't?'+(Я|B+3>dB𿾇q}/<ۿ|!/[-[i^>'K>qxm,!/fm_c1˰8cSUg'YxW?rY/qէ_ ` 8QCWHqV@iOGBܚ;'Q+Jԁ ِ6lbbPUoo^Fv %OKˠd'D;P;= _P5x1 [@v7@^?˘៖B=q.<$~/'ev:C(gsF¿;L#ᅫo~koiu,L,>\\l]5O 9{wBٙ@Bā<Oؒgp<5OݿGU]"wɍfxZoDZI@jUUf&!@J `Ֆ-GX[&f%Q$`Vo5G}>2s$(}_<^{^rα]9X?LN9ڮ󛾾ivs7V/6t:7K~Wo%ȯ2=n~I!t~w^>1t~t~n~ĂיίͯCXϑ/+ߵn~~$: +7 E=Wo__:/OE}Rux{ v ;NJ/ wSw}}w},ͰBRqdXI{OK/*KW7>RL<~iZiRN_4!ίOH[keJo7H__:n~}}Rnu dY_g:Z7hOOW?z w_$+M 76L7cw\.O/>G5nH/CIבk}{/g_g:򬯓oH!ϷWl!ϷƑ_i:'zf nn]HA;0sp|\qH\ǵq-3q]9.ǵuSq]D\zpz\Ƶq}q݂\\µqu'q}Z\ĵwp.\!Kv8hgcH~׾✛b9]mA{?k̳/;0z%bׅ=u׾l~Q<:h;Y,MK:RpMadQ]M[' -wht)lnu`Ny_;n ;a϶,G¿GX' +Kؿ"s~FXfþQOE|?~߈~{/ƖNmC> +{ث@6 {=[z|0KJ췞`}/ey>`<3%ەCO 킂Øۉػ۔w C`~n)zja뱿E8{rb/?m)`t؞-;XZb_dk-_F߰_?`dF:vv2m ئM #'[z2tjBJȺF  +F\_bX:,ߖ餻>`=݈w'<:i7*mMёpb[?ʡr[C00ߗc}1o%d0ڳ}%dmCC[CcO@;;`y*\ ;8Ķ {~=זy_/?}=pKorcw%0:g1t GO`΃X~91W(ζvG/Ͷv~17̶#O:g-NJA`džlϤc bfh0̶ $MuA ܷOd\:# F<{r}q] +a_F9"›쮐WG{%!B/˟Huxc|/C|8R@1-n}0|v(:avHX;E#/0vU"uz=6Au5sw=^VXK9i:պto._ӝj5$6*^b|TvV /XM ؈e_U;uړky=}=YG&Ru5<':fEj,a='Ɖ3Jl/|69&$뇺\Vb_^b_Q``J y2}˼߉+2dtG؅a"}A{i_[çx~0ෲmc{^=p0|Qݟq%v_/)}O_/-}[)~>+{m0-, ~>K^KI YA? v1=;x}O%sE0J;ϸ cr9fDvF꾼#З86}6q 軓|#d zwpwg}4]7mأm0fg`$VWZ~P\aK e(ood~ONݐ+`Z> yWkY*+8Zvy7y?;q>0-W'Bkfu%ߐ8V|:NpVhMsS\s>[wY|寮q't|8Vgxp> +5z\u' i?,|lx\^_IET%Q{tq F0vƒҘ=wrHX4ًBxA/Vt,o~j"~q_tZn@/yur,$~L?A}7ob-\0EvDe/lAK29PO4"EaL'[~L'Ov߉!//swr/s8үĸq[G.N{]3w|Z{|loXt6ȁҌ#!˽o%0w9ywz-)[ɍ馍nKWtscK}3frqږ7);i7yqi5qy %Vaڭ7Clm'd|{qh͠\ _DrL/}IH?I5 G7Wsȯ2#Ia+>iKwZlbCYn|rK :s㫓tt_|ǽZ6Et#ƫM`_.70z %{O[Kt:] +w 7EXOf:I8L{1*&;":}He>7cL]/{SocOqt#|kiLd7ktUfZ}t$7LCj݁$\YɽJW2i#>Kg#Iᳮ&ˮ$CE<6_,Wmu+X=yMn^>֙,Wͯu +ɽDM~r9nV_:tFV_{?V//4B/7+(i7?1/On~֗ RrΌGrqkܰALqԣW|Ɵ?dRt6 η]^zw"CWO:XϓKOg{)~WN'?Wv{{)~ZI;/4t~ VI϶'o_$Z"/OXRp XsǑ/Ig_3t߻n~\z{)~JZoi#j݋r;rR+`R>ʳ&\wזgO~r(Q7?u:ɽ_E'S{f I= Aa<t1vQߛbX׹-."\]R\T[μ:h? +?֍A1gw;,vx- eD׿{QzJLEvA?#h߾HAEsn - _'h"h>h!h*hi }Ov/= /vEFp>뱠\75˾>sF!`8y(+ .=Ɨƹ.*1aX x Rwy%K(¶V +5{E2yc?BA=V UWZf4~#B,]H+Zzxo1O1y*Y5e |6ᵮȲ{ 敡fUiMMю[W6㵈GYふb>Zz1/z (HKY/u62uY?urgJIN>kk|g =~@hGB_4:ʊn` !}ö2X؏2&3CCeXb7c*ɰ~*1G UdX +cnZa}fCJw]Ҽ1mͰsM:z43s萷:o^ƽs`emE˳I{sjm =xqe^Z0Y:3(Nǂά,{Sp׷/dFoe( ޏ+;6O +ؗSWZWiI+(^T技uRߚH5_=ʁ{4~}>QQܗc,黚+v1Jj xᣚ쑔V E?G^cSO'EcSGϱ}WB Q&ܯ؇p# E)>& %ү4}8֢9=փ.v~=%ޜ.\Y(i?29I&ik_6jرzY[(b5?2eWe+~ٯ.<_ +MuQ5$-xxD᫁ߢo"Pj]e4[;V/﫞Gx"ӉVuǚa CүҸ'LS6+'zPtc\/OxDRR;^'_>I1$%?I}LY=x)x#?W$> +x"S/J<!k#B}/x?hx`35HNX?z u/%H|4D<׸G >> /$ȐxmIyH5Odxnis/$Rm1)fۉCI| +|Y|]R>$?|JY~leR>'E%E򤜔Gkߡ$-F~C7 =1Kv9Y6iLYlO<0P~ <=$mA#+6DK|:FNgį~S+2_2rJ +/6z&?Y?QF~b~x@go'ަ"}ģ +_RaO<׀?aCcF~?F~^[/7)Q?1K$0UF~m +o#&O1*gS%F~/Hk^w6GJ</-mߗzPx>7#E>Ue[o %b'GOtcKJGx 3%~ S }1 $~xDgqċx!q~/ +7Is%*XwK/Kx_B$>CKm5H6#׀?as_XR?'Cz_? WI^[<_~G($ܯ臁JxDqU\ {< +I8Q}ԋx@Źw6oxrU{28F~m +F~: +#Wx)FN!|qO0*࣍>ʩ߯xTᓁi'K)b#3%RqEs5D\\5.UOnY}d\O!G?W k )x‡?&ۉG _M\8UԸCz/$Qq/k:eޓSԺd^WH.zvs ++?-oΛ~̳ː/7=Xs{"?*h?kG~q[땩yD>1"1W$3ʽЖ|b>7}]38`£U߃%27W'yVzagG$0!cN##@y%X1a=F8f֙c}T<73'y^ [z|,vмWK߅)'ۓ ׼쵲8^'9쵷fgѧ^CrշE}xճ9S}7=,zWz}t׳Ou}u]oWQz}rW{m9"bld%;r{ ay'bZ|[yDxB"xS?G> K4Nb^[w/K[??2X7K7o-־\o-3pݘ!Z@smI9Gp?Hhߖ6\Ny.qȷ0h}̍?CR%৞]o> :~̗p-ng'>"h/o #h^9m?E%aqKgsmQua&T?]ڏ`?횥>[ }>KW>N/|O|+tͧwTq=&)3P?靸, IY#^kOvo^Eɳ%6/luQyFZTM"%sfiH/"B>g'#N#_tM%}bny'Kǁ\wpx*w=@N9#Xk98r%*''NXe|׸d4Q64u"򵍵nFpgtԳNj]Q6_|9萏BHzW1V逳>w$dXvk~Y8kgNf>v4 5v})i_c?ķP&N<,3,uhayL EiB/MpKhZ>7z*b<+_HDZt|x#K%0xEWOO<(s?+rV5Y;5'~ LdzBKH4tVqV |oKJt;57#ITs'D|b ~bsA9 + cIV#ocߋtA*oX"Cj>gHW*!ֹH2f+'1`ɵgɫuD⌏m=Q?YVϯY-KfgFv@\UOȊ|u/Lqʏᙉx+aTwHJU9mе輻k[}i_;WXW}U";;{$[ßE]wn/"_)Q[|7l T~ྒ oYh7-(/^&b/:l9Nxg#2~}7F]8Rob岵"CA [hϨ{VbD2?C&U?ʀ/Gy?pվL#g1BL߈xfX9 CUBwrT C%k .=ż}kw=vs:yR$"[և\_s+;w;^}O_AKdq}x}??zǫ%?Ļ#O#TL?F]rw^c <F*>}w8%1dI>kUk]u7M>rG??:B8؊w]3 >oƈaOX jzq<ϘU+>[p-WO` n +nψ< + $\2|pVI"u Ra\ v`Dl&=ex|ɳ$0jz?i~KYVd&o bxre$gջ!xe}49~!JyݨS`2_<`O* ky>mrF|KbNߴQN)N|28qhd16qQcB\:=hިHoNiQqr'ƸcQ~#o]?KOr~r6l u{Pׇ +҉B߃>\^01H=S6_5fǫa+/<^?:-`L qu:$Vxm1cRA!(ܒkg8GhNL0f["6tC_rЉvtH+mݾ |_cS(a7!{ak'WsFGXFݥ>n=Brvnh%'?brQb\+^dC{=.@}͘\14, +l"|sK.kQ~G< gn}uUGLV Ho~[+>`wͬB,6F~įC +D1&q: -Cdm"1acX6qo3εǛ^\/iCVC֯e8F=ػ]屬ԁ)bIi3nc;WE'1u(ua\ֆS5o13$D84X7Tsgy2.W1W <|_kC60G8Őid5s=> +Y›\%R6͞{9Ҙ/pCg0~+5}$3E~wzH3tq,kIj\Eҽ9/A|h#}D뛸'kuc"8jr+-TJ[5|%x%tlV+N/{-:0$jl a>ȉhW57~RL0mؗ(o3SQ罣^Q/c ܎3׏c^9EޚH\yd^-˹>VI_0ԟEj-_A;^x{y/v7}."7qٷӼ~ߪqd\)vogO]¾'a]WDH?02 y ezxZc'f(]199}5-E=#>{rO'zEM!judh{ډB޼gwCc=vCޑDLjyɃ|\;c=~˯[~ ޗsq7l[߃c&ŰJ~|zu7%ks!fk;(Ƿ%gclA;>ہ ~+0b91k/e_X)k@;yY]{akXW}]e[Wc/7ᄅv| +2ǝPȁF 3#[Ƣ4k}e\M8U}/N:];wX ה1v9Yv9Bڱ;y1N5r~9?Ls6~m\vo9ׯW.]!Ǻj{ؼe\c &O:hӾ cXq8ſ2G0ނ~q~^q}'#љXQ#\,^Uoރq>A:S8Z[ fqJS<|w"Fv-[Nо}#){O0"i;>x!ƄoN-/(p?]Hz#~j?. {/oVku@^i*ؿ{^-q](E1w?zeíVYcƱcofqEb{'U': g/9&bbK9%gY*y ({S#GI__?c'TaX?|7tjh~%SY _@XGqs><=UORƄ7_H]7'3A31hKGrl>wZnen&>b苮f͗vrFoE#:ooex>u}z]xu + GRj:לK6@=<=xV%(Zd^M&R_:@\F辙O/eyW{c.G'Vy7|2՞ ;}q6XG~ō!Vtwa3_,挞Ŀ|1lKHxڡVŶjF|e=^f/A^yf7@^dK?$ln|KݴL1nXg%-Kп0yGs2Ν:x{+0~=5"nu2!GQb\p/3-΍¸k`dze+~ nɩv@qt-_{͒u `3Vdp~A eݞAd_|t^4<۽1x;F $z z1yaTY?$e,DmG*A ^Kf }|(kB08e"N􈓹.ʦs~O z y~$?GiU/S>~\HbKD-q,1f̕X3G~PF1QKtgfl}c/חacF/gr +|gٜ;'r\c䵘} +r<@!]pw.7~ko¦gj~T?qwvimk+6i!|Yfߎ"/Cw]{z[VmGV>[~2~Qs-ma>T)b~9'iE=o>wcҏgH?ַc؉uf~Ӛ~ ~Og?ozN_i~>QGg|V?_!-ݪzD;v ;zӳ@ /ة(fƣ7~`[Fm]&̒kEbܮ=>wvINµa>;mSviNC_Nihq44v:3+czE@SOCߕCZ/9k爥 l&0O(OJ쯽麭J{:9h/ Hz[q}wwJ> kq~R} +Um6?_vxZaqe+ѕӾ=hg\a{~_qyrƀ^iιѓ?PbQmwN{5O9ƕhʀ:DtmO+}}-e)ĵ,{3H', Cgq}c*yT"N ߶'Nn}miwsrG/r8r+wA\8_!_vA}6Kjw̏B3vC&q8i=ѻ:x}i;rg:v>QﳌS|Wˎ}-2n9zK>Kn]Lxg:#&6C`> X`6ϧr?!/-St!?S#Z#[ Җ۵-/r<4r5bzt~sTg߁2(jmmNzJzG\K::\PqJ&/F[6˵KO|!οy֯a>ɵn V5%&>X/2+CGNᇖGe=k7rh(ri # x,ֈR[t~mϿ7sO}DR_:~\LeuږY7r|hSڿ;l{2_Kwgb;Q׃칙'zöql.Wg&W(SD_&з,1V;+o|3}am+ZSDם.ǝiΠ;qgǺꟉ5 Fkչr^9dӓ*oG='3MͺTyvIU +59vrJ̞{{ ?'|>kd?m3,]:~8u OPuRdg ^N t,/j>wȻycA#Îv*cZQ5K?\4;>_&J /:Y0#`o;hiF0NljVƀ/'h] H(MDI=mٽDHP6P!l7@MFRv1<~`3:#ice97?]~kgT&oϞĘ&gTqS8e%┇MrpqJ} 'g K?N,spX|ɶFﺏtt{8܃8kǺ2 of])[=‡Hƅi>|1 :.DkPR|t_ΏS7<]t Qpot|jS-R/:9Ҧ4Gr&#T<=Ⱥ7MjESg>_x߽b}j։9ƛ3\?1]lyKELs4# +dqaoY+ Z[s=VqZgW@DWs,f>(ksʘwxӟ7iƊ#joAIqHmܻ}|ѽϱ Ɖs%[ mIb9lH(:8SBNOQb*,+',5V++!/Ū]ɯ7^)7>.Q0|՞< V}h #|TCP܏BC*E1r|y看w2:wXU։yYζME]MGL35UWo\g$>T:3/|6zxFŒׂn_nKpENaO8mvR-:omZl6v= zk䩌 r&_컨Wg闚 }r?AO?GW>{C;_ܭirt`~r!\3M9ԇhy+Z&uno7?FZh~0zX(xq*d88q~>!< +kŇWxa< C Aů@,yVX +=~ų@BYceE,l"wAJgMt~u<8 ÌނKq͙:拞e^2ilwo2:یwq7K!>4yMsvb z:>eï?3u83Y߁guߦvidL.eYށ,')Yks|~cꀵ>qv ʠ}m+3yk 's?8"u[ &2~!omxKp5([nYO\/VuoQo=Z?s⭇֋+ ~&e>^>Q>$3ݿ?ݯ}+oIxkxWv[g[ۿxk[K_;~>;~xS^s_;n㭇֩_]찍ϲWîxK>U;rN?#V%G3ro`S_U{M^W_U{HM5aO5t!Yx vIīC1,ފ1gb&獣ªG{}cKQKܻz|j*Xú4;~ĝX7wzcN'6fwjDW8Xw?|8928` Ns3gDg#rC\2A=>E'=&ămԥ/Q~MCC؟ yA?)DcѾ1pz7|EǗ_XXdaV'ʏ+/vM[9`SG+>y@!ǣ^A ;/ϕ&va9vΑB#=h qf雀D>WWحJZ? QsOho%פּhc"r_A,C,}Mvu9Mu?Ÿؘ1}īh_-| %s_IK|DOzf^r6r^kF~~/j^$Іm?L_%ǜzk؂lmG^ۄ6Ys=}w)C7<:~{+w Cf~<,Ծ=)_fg9pnm>[$çy*~yE}*:>[.im:.*c"{B7h|:R-}*x,Ҍ8#YpNJyc7nD15k1_ ᳞j L!;C=±t6׳m4Ծ73xaw'|!y?Z`݈6mXנ-ԋ^5[V5'b|.;Z*9|>bG4MB<<+w8y\o^W >+ ݗ݂iCЌ6ӽ cP}}nAǕмeyUw/;~Xs|Oq +ya6bȴ]9B_,ιNGڽvx_нtOɄ}._ ?a}4(k+Ӿ*}g}e.7;!׳a\ KtXmgv*nk@_X;&+u#Ftճuӄ\d>\e%W73֢b,έr_g\盹kz hB<ӾX~~F|#.0v=Շ}LQ 4r&EĘBԇP{ =̪]*#M["Z;Z?aI!h+~&z*|t#j]ڥ梦a_͎o}5<6qs_1Bo/5yL'x1[|7gv>! @:7!o]|ע?V0~ρts-U_r<95-ǟ '"SEYLKLsE>вa.Sf'+rSF.'oNoI.>eHQjK3Ŀ+c*.XhڣY3;~Z={8G. 3;s{?Uwνs\h^1o"^gO_ο">|^;ۥ1>Mxk=ꌨl.nљN}y8y8Ƽ|#>x@!j6b}yW ױ\k*ys6$eH?IMQr_M_.D[W(_Wqncnfs.s-r''ĚOßN>ڧi^L,D"}[UlAؽuVc,#?9b/;L[.8G;Uj+*>v}17-\%!؎@쵊#G33{47~ɋe 9N+wLX)ھl8LeS/rNu^|N}Fߋ}}; +{4+>Gi`}$OԷ;aDjm=:^>s8R>z^(#TEz˱D+YsMgdޥ=!~~W~W~WT]9߹$ OzI:(7ee==a a\=?c'7vR*>=gi>ߠ7bgw0&˵Q~sw"uwj(Yazv|||J+9o;ҞOظ#i_o/4]P//G{w= o3b#֦E_$Z/`A[(爵(1^F|$Zv#H"}"-/YnO>ߡ=?@Fԟ{_m퐥+w9fQû<賔󻖢 zTݖ1)摶ŒȎy/Z)bw-D[6e}܆ VE|֙ 6r\|}8}[vD!w"i[z@'S?p}. |2wҮ/ֿk*~'sLʋXbgrl +`lk=Ʈ/9=zl=syobL>Aw-˜Buށ~i^k^?ܕW{,s`ݔcf7d'||ګDK>MQX7z&b@[?PsxIZ9Aij7s&/ߞ}w9n=' uOgz_EMg.Bds(zBj\"o"8A&76([B=wD_7}Ώ<wvxOk~z)7c/+!ϟ0)nKd܀|%BT7iY#,c +n?kGv<FZzL;L\ wD|ʯl;â BRA7tƱ[^tgۈ2p~7`ڂg~7c9)qGhO&tg͐UG޿/ϗϺwzGeC63<;ynXY k?s:T5^X'T$Ao|%Љv*B S3"m!p Q$dA?gw8S|?̏?ECEۘy'z^s<;#O([yͲ^5PN=qX1ǷHό ˈޙg5Ϙ3:{lw'ú8&_g;y>gփ6x{{nkS]L;{xyx3]K#6LmͲn+}SzC_q(knil_-{Ŋþ% 1^طW7]=e{PܸrZ /φuѯ[>co +GSp^A#xǾb9Ul9{~l|$?γ)eZZW.? h?C~e+~xn:d<3wz<>u;(nyGy9 LWDg_]_'b B28vG(GpY?y=!}Zhk~/sw:b@3; OD )<&da#ۆy+ѷ4s\yXD 4Z?f }}cD+ft>sGgtwOͦsab|YCI\Y!q~s{aOxu↿#߭lx|b=fT磝|~~?y01nGS6ooUe:AOε^Է/VҁKha䷻39 Eg 1.--㻗c\oD{ wW(*:^}:{t@"l8`G}# ^Ҿʼn;GzhcXa\1jȨzĚzmH5[9ƎOX/x仱#\˜ǓO<dz9w.|W! :t +! >}Eu8G1:?:~M_\?: rhԺ)ML"~IJ7k^,ΠMx/2{j|6kܷeަ`SbɵabT W6 _5ߕaY1gnXx.8̬Jtґf?p5c^BXAA>~GkPxׯż^C7w޻i7;y9 8;7t8A}kp}vQ+srZr-y5-ɹk#J=Tlr}U}'+y5i^~+y75mDNqշ>h{ߥd˘bW!o6 QOACW vκaL4r%ۉcwݰoG>羾>7|Z/}k ^|[{D+ϚzϷv=Go;{i_4"S.Tjm/+q _+}Y~MUiwMң|~zhO}9q-e3_ۯm ;ź߱sۺ_-"M8^tq'kˆw]Žm¸>(xu@O|{0ۊU3''GZ'7AI}Ȅ1Iw>3Jr%:sR\miMB}m qxXwx;HϹ{ ߫mpX/団 wOc:Ͼد%c ҷn"7}3,|xwkN!m H<; +,w5k3+GFK%o•)yÉ~sKrҞ}WΏw8.w5G'1'uu;)cݎqݎf[;y]|$}, jrr8uZ%f9}W'ozq!l{Co_DAd_3.yv+ci,ʘS>#?o㱖9(6O/V[ZrgFv-O ܙ ځKsKܰ|G>x<"X?BKfoߠD-7m&9o@N &w8^"gd2HݪSNi4 bueǠ#'s{f8~9›.[ >:aTlrQp<6&6bd?C=~ eˋ4@koY ǩk/҃kw˸4#}͆mgC֗;ރ'ӷ{GT<%e߻U?:|9뇺?E?~C!U#@lD[r|z_1-~O_{rd6 gZy֠GD>3xƩL߃r];@ چʷn"U[ɋr*+|j †\;.!~|{ v˹Աg&ݓvTtG[ݟ~ ~-7@F s?=X{ڹ2{ i#t{_M{>hO]7,όц[=SmZ61ŮJbttqc O>LUEN{2{`;tzm1˼6{j'}%?u~4ؤI 9Ÿ9pO~X%΂|,Κ_Ίw +q(cF;.ς6:5`7>5৉ ˽zžtƊE/_bQ4$6i/3`W|V==%X?<~'xR,zߴMU65=2mSA:]l׿~v3_&!G!( kOyK;ڵ 㨳6 ]mhWP(>3qjW>.ߛ>,wO П@ԁN_t +.BؖK1Bzx6ĐvzY?Z*h)|<"zdcT{=o ڛuEy6{6h(ؾlz lg骍'lQCj{?WЉqqΒ h6yAGm@{^~Ss~'Zw0c2ڔ1>+|YnV񅳿=_9Q(ۜsҝw| zηwPϞ=xZ7~>7xZŅilҌ4GRsyH߮i|HNTBNN@?WzyfA<-}w }jݝ<ޯ*7 p Jgx8C( q$/Ϙ~]p|7,]F?E&Zo|/=9 hٌNC_xt𽿣?cyyEnp}e. ~,pW}exe]U_0KVU6ku s‹o:K*Kʯ*G֚Uu :!\se s7$;}uMմyq/ʪkϞn+vfU ZFAGtgpoNee -@SW"ݜ}|A+[PU7JԣFWͯuAUKϽ%$+aeIrEխ 0fYuP-Pu٭ ,k+dKQU HnlX0 bmj³ `)ի/_xQLoh_lV_SU^k xC]z,T5&W֢͛/+Rqv|4~'O|aUSJj߫‹ ɦN]!X fTM\>oARIW뼬.-QρBMRFTV5VMW=Θe&|I"ϼu~ jyƆ2[W[y>V54ke>2ÂlE&hHX/VWIj.L[8kVUv=}1/ӝ/;D/Vv}U9 ztzx +tE:MSzqKuCg1D#>)G@'4B]P>qWxauըw:4։9Ӯ|Փ(1k.'L&g(/y3k+:UkuUϟU_ w7. O;Zy$NT[7/C(0 C-sf"puCYէ)קRP>z>䪮tƐ2qނV|pߠI*Asf6J堐\WjJu _  DʯuI |^xvU/y)XUDrW*'{\]g!nfaԲ|N<^zz*FSq՟օI?ⳝ{,bdO/W* m['RtCGhP@BЁ²4Q;[uI@)' xo肫pfzl2JbnRJPRIO".S6$pU㥦}AQwL_?kTplhpܧs]Uw ATzYIZՠ.k_ɮ"LVU*y>NiJ]]mݴK7uz]#oW5ف)è@x.ZU~̪EgG%r)spYb*]^+.'ܪ)_J?b8T>D5)5qڜn4|dUI3J8dWzC5eL,FJKEy]:̂%HMA/tA s)}5OzgWC7۩S._P-$bzOrcB +Q? tF$03zMNgΔ#gzqY: 4u jy|QjPU{&?rFM`؜y+Ԕҹtsk?2Kk@wA {&^QW%$UeH.Eƣ^Qr.;衅Yʙdא9Hꊪ*XK*U geNuO^0 Un%ZV5z1oZаvToDh*c|,j COixd!{ 51QbPQ~sªݥ:{_?+՛sJ,?Qj)N\Q3PSo*:0ڛvW*Mi)*[U|( +Zj,b/i1K. ___Wg^ qgZi8X%YjsQeBoșLP~Ҙ0e)~DfWUKL:wБgZW)|rUѦS-hrߙVQrFUCi댑t +:er%br,G2>C&9pa&Ѓ0/9yh'&Ѧe*2JynſҚjյz1ߴZ*m2ĴyPB=G2SSq5&iR=afU/Q$Jt|=2y5=BP9=Pv.NsIߢ4rXH(EǹŅ9(@.8Va/~.H9 cfM[USeBc:1fI;#YÏ*=t@rHKNv1;\LhKZU}|-s]Vz/jE G҈Zj4ETy*‘Ӥr,\?7i)*MعVQׁqTEED%&ӫ%M`2h3Cl2ͲTbڪfP'8O{sAW!|Ej.W/|k :H6]2!Oc7LϕWإ:7 r5C)Y1?O^/w>SUԈYǓtꪪzI(\K4r7)dֻNrz+YotN'ɯW2]M#fcNS`SW;w=ם O`p7#)CC]x~,Q1㨺\r@Oz3\~t>3͜^K$-Ir<~`I +^~5ƶ%zL777V1\˽kt+ f#+O#.52djΓNW:Τz,3k C9I8E*T4Ĩtec]ݱnD{cWVN8ei+!dtzՐzc_#ϞȜjUTQ^)pLKZem]\'[Ѐ~AʙZV\t=!c[s9I#YL3`"1ye1dIH4UC4ۯ +pC5+q[DI,5ubٖ&ޥ:~~91Z9%emx>Lͱ 31G [\Ï +"4E^?B}]Y@;:>G5hg~ qd|TƦBỳ`Php)c㠇AWCg 4 v'BAA'Aϓ> , $o(zh&h h#h/u;pqfh+AׁKB㄃^/~ AKCӄo2!t,z4sc(4@(t> +UvvfVBAKRy4ͬBy|36#^a4XA ԆBUUփvv= +Z5ʿ +Xy$.tн٠GA@'A@e /ЅOB(ϫ'h>8h hg+.vY(% +v?%(yNNv +cS_ +P2aP`OaK-.qOrm]PhMp +Ճu=>F@ׁւNvVFm +e>ޏzF9pG+ ~|AkAG^C9*A|&}%({~AD"㠻@l1};:W( _QC?M>=Phz(;ʥ'/Y xj#3;ȸ>SC.['| |7]S#d4>#"T ; 0'SoѽϴK2:7%7~'Ϝ'/3§7ߍqIQ!Ði!SϹ?ߓԛXܟ Nz&OBi"Dh?aNOzHCOQحn;vok1uaڤbQF@R⋨ː/|eUg$Ls6ա7j_c0M}I=r~/?q)}g O'E .|:awSwt kT8@f28}1Z( A*㔌ޟ; v=]Ny7\OZIM9mðz˨vy|؏b2{>[Qg7r߰ƿ.MTϣIša/ՍGԍ +W*hm@ܙ'WF"I^`D'z{ >>`4sRM*;UAb"&~p +0LkOjfu#ߧQi>v>UT?mב)cߒח\׻/E -}ǭYmlZ{}'Vo-6?17tF։q\ux}a* n#,#u@NU\O/f[(~*!^d+i^|fqt)Mq6 1;yώcKmemFd<74fwߛғkc6Ξ?FB)cwsLOQ{RoІA<|!XC|an<8]/8~qR 5/^ӾtWD7yLх?;d&>(qRta$2GO1 >ړH 쳑cΓT*'z*YLL9Skp``&-X `Է"׈ρ$!w/: L5=Ίo5qRdQ\fU`Bōۛ ZBc ,u=2(76I2e 9;,?4l +i;D{U FWtQ߹,xyx(OOTyqr. +knF&E? ^|ijG8烟Q"pXۜ:ctc .V=?2YÞ^C>e\wMnO zn_S8iy$8*}|6C}L&߇ws6bjdjUC&)M*c{ 42m .i,׳z $ZNNxN&ϜRƉK@R=WF(:bo(Ko\'j+%4`w$LT3j +lz} +C!:b>F-0'_S>ʁvW2o:bNͷ[>V`@keJz0<SJkXj0ѰD^&I}Hg;=Fs}d{:>i?ZˡۜفPf*_ kvBvdES:9A&nH=#/su+&/[^wNyQIki?fYwns&ӧh'4TEy961w':{Ώcn8wYwJP/`i9`Yͽ3yC :_p+yZ$v۽{ [yϹ3r9wisMKF) ؇~ uVȩa+ڃZga ғ>UbJt:OEuNlX#bCxΚ V>6," 1k c^'iޔBAtaľ +1jJ ۧ i:ǠJ}{65!~$=~uj4藻 aOeq;SXdy3<=z_ܷWIyE42ؚšQ?eH*'*1CZe\?>aJdvGkj:ow n\]/V:e Ӽ UQo;xc[*^}iR7G/:H59u|n/>gje/Gtqt)ɯҭ7V^G ;:)zƾE {/[P4Ciklƿ]Ԗ9/3tzi',[G4B X,{bTZ + +n I.Oyߗ4dtKaaor۹Osl͢d? M)y3S}c E;䰽@ۊ3x{[:9/g P9е6q[n+:(VQgv]m< +|=:Fen'6#P&cOracWs=νkRw,j mp眵._g\XP6t-|Lȍ0lxyJ5}RmYYqRmqS +wg);VGw&|𙿈\sDkG Oh&`R +-0N=*y>uv0;lʠc ̽vf:ؤuN;k7lnv9؄ݼf6lV{r70q<`MK홓66mHjj5 +>~X4b3&2IѸv0l0'q;L!;-T_6Z.db59 Ngad]ŕ3_w噗ݬ7oE73w%n6o7l<y7ZF2s͆-9fSYf27;˗̬`awC|Qe@2W S͚ۤ3TF.QI켉̊$֕xA* Ko*v%AT9Y9 uʚHr~5H 'T<ОOKH0'8Ds6HfY9TT5nhgd +_ןNÜQuU&6  s ڎbULPQa:tS7iJD{^6uASQ?Él'e:Yf.vEwnqU}o7Bu94FiMA6%7IO'>Lf49٨Dv\7Ȧ&RnsZ/|J  +"i$y5 HY0$?*L,gT%OϷʕM]99YYٟٜgsso-^mYyY9wv^vcYmm՛YVSs{]֦ɟmengh綝moGԣu&cZY˲:ct˪k[#8nm)ld\$~s8IJ61z(;=!5 Xjc\؊,qZKQ%5AL&bPj~SSNtl(}591•/UJѫ q~"E$Wr21OoI⧏5tΚp[E|k-?ǘJ^ߊas(PEJaqgT-ddTkb-9t< UzcuJiL륞iYL{Ew%{-d͢z忀$,Z6 u &ֺ}kAԗJʿt}J_o5^Q&WR^OK\%1QJ_se Y0*J_,ڿZ/wEomߓORG-Y JJ'= 4ZR,צ;[kZv玺ֶ;S><az}V$IH+VJy+Yvފe++i{ǝ4 4lX\vz Bimn,Q-5}T]TfhDc9ի$FG?;ef3? [j붸66n( 8s)1u\̝≓ͭf j{bN9ziscaq`CYf}p9]HCw@j*uzӪUu2oye TS!U(\y|6>@TZHw9_@ 4lQ'|I_i n"W?y9?D^v~?Gzp]͈&QkIKD-沖ETzkT\?%>%[!GGI%W$ULE:OjZQN-{. ~c\I +*eŤ֓x墨*Uҡ=!?>WW?ᛊ[;~_xr$TlX@m:Pq_b tTԃ^YƲ ~e@{Ce#qD5ZضmNmu68E5Ojl^Z D?gYa6ֵf/L&G^c+^Id(ټpҚ(OI`5egT|~{C*vzn@k]c]u^ޞRZ6x 9m@umm07JYf{SZ +7VF{ohrߗ +4.s< fhH<1a nrb0ϙ[Tmk_(E[B-j!1n5"G c54!7ck + LաʣZFkDU๓RC]Pr1GS++$'ʖv Hc/*w|ꍾHuFjnkBy<< [sd+8N|$oJ'Wyp=ܰ#'gSI \bo/.zQ+0{sr=m5hv1ߢ!yke 1W[%sbC502QcTcҐܪ ݭސ\ZvcF)X]B:oH88xdӈ J}ESشWJ$~s5{ҤEZP} oxʵm.src/1Xr!yk 76oLЀJzi^WUuZov8{v:ڰCGpZ 0^$d=M;n^W]ɑn6Hxn1TՋ{?Xʵcg_ڰ bS946R`LT9y|Y]WhCK鶖"h\{EO픫Z";XWd-'~F\q5l#]9fR/~ȣJ(/75_|D~V[g[ʓOl̎?ԇ쐱ȟ@,A;f;$tW/d,Q;j4>W"ѷ`nMknٙBWY@/\?!CO`ߕoۙWT?;`?Xm_Ml?o=@VCJٽeҔw:m/ >%q&(|\IOt - ><$ˊKL >*q|O+AKA+-䫬-hH@^?#vYqw[A =A[y^lڂ$dLReW <ۂIm3$_b[|ϔ|Wq&wЂwv2lG=lg}ɫӆE,үU9Y$W#΋N+QYq~*?+ک?yBb44 !˙VQp9ԥ*J#N)PiT{4f pStkr {5|Jë5|ZӌY $<ڎJN=ᦆiq Wr\ս&5\?e pu%Y W`.o)IX_wpzJ. )pBl WVRrk~oED=4\kJR=4\ޚS{8)h~ B4So. Iû5|j5|Xo UG5q ]ÏkxOj\Z4z?jgioprW(%ixkxgh[piF)S×ix[Whx=Y*hJ /U^wix߭~hxwhG;5ܫ]n kn k8C /Q /^cF5|4|R7hii?~39?Q4\5S)C7M*4A 4<[ڭkx?%9 /p-JTjxӽ*}e?; j16,jne)Q~8"7i~Ʒ^wP,gɿ?O#ȿƿD5e_%O5~7__%"ɿ$M&M5{_HG 9S_ϒk;E%___koȿ3ɿۊox'xƧ߬ ?ׁw4&2B53_ȿ_N5~{ȿ{_D5~ _7k#_#a~k_ȿƷA5)ϒ_"ɿk|?_N5 o6 v#Q .f|5x]> #aإG!]݄ P|I^c^/}u8AdF5G"3|O?J}={.w]Dn^T]~ +]"FĘ~7-x!*N!n;#bp\\F{Tn{bT|EE,o,`tȭX䄽cAE{F25^6Hh{;-8M^lW` R}mj {Fޔ-gOw՞#{KWlWe~m7l/^ޔ=*/h{Y /h{4/wޔ|_SV{ ^~JN&?_Gp/h{Zu:yE;c{{|v7O<%@y&ZCzNzJd:tKȸ޹nzRUs)+9'J~v9MM(IIozm,pIgvw?n݃\v?nn7d69u*WIIo^B~|C^΢VyU4MYTyҫu[wrKvP02h$H'#JHF: MH+.@:Bg"mDZt H"t9ҙH@z)VӑDz9ҹHF+G:H"}i=mHt'Bڀt/қv#]tRA30#7"w B~nP~[1:RΟ bzv sJ9kv-s%Gʗuy2*ާlHk,Fɮ.a>pV\c:Jf^a>E IyhdgI .#ݖU5-{vk0jS5Z| nx}O˭s7֖.̃5gz =)ryv`tA;{Zߒ= +^֘>E60Bw s7@q:w@^{R ibݕ_{QzS?Tkfc^Gɔa G՘nP=b&6d(1ZvN">K&)Ϟ.u)zm{:A=J>&QvàXS1̶j 0Lv5w性+Jal}5>_Jȡqs0_;<6<0q ɞar2A>壐a20|K9/g_al`e7zg }8iXrs Zl5w>M+ ;|0bW[cd\ŸVW{zHgS(\֝ Υ @=x>A{Fz{{$wkĿkK jGjFo/7{G?däL;\t|XMu+xrM'i|F_Jv 1m@UR?KV?&tb=E|e& b`#VP|e@Cr-cեl炻ɍl={X6#O֋gggl ~ȗ$T%^-xE]~k3BYn*U3dHB\xvK_6c:ƻx^X bTXUL$d=q(D7(;ooeJcѾZ64?ukU/c]+j㛄Wb-lH@00l75v15Y*#Ųr޻NzǪ#.''/^# ҫiz;mak:=ָEbnzIPs[B%?'B>礷M/꓇Q~9z>gnr=WnzgҫwҫwKȭnzF|Z.wӋgHonz\Fz]Nz3y2w^$OFrx7=/Ws;M//Vs+vKJ~NzD^E(Ss;eыo+9u*%?^g _Us ^r@Io1P~^Io^t;7= 9FI!7 Y^b猓K7=1X +%?g7`K9⦗,?Iz޿C䛤?uӋ ^u7,hz 哤?Brhz7J~Nzg"J~Nznz"y7DSIM*oUsu~J~NzG3UX*9:3UX(y:]=L^*ůDIU7py%O'rBү^X)9:rJ~8R7P*9M/Q"R~Nz ÃލnzR 4nzLMz^M([H/}@ӻMH/}@'7= ~Al\rE*5H.EH{Dzr)#B;EH#-G(bnCW=:٣chD i-R]Dz9.s[G!G1 3bX[T AYZtİv_'̽;t̮Uӊa18R1ɣbI̕ڠK[cXWA0%L7Vr 4O۳WwLC:Ŏa-S1;1+ cu%xYwa%wZ1L u?-v}WŰ$wY1Ku Z>W-0UOl1oڊam :bX{fCn1cbu,wa ^Űv310IJst f`gЬ%~9d +T͙Fs;hNgV1KXY:u641 GX1,?*cXİ*H3ZV1˴1"İV15e21<31,/~8xgǰn.rʳx>_5;ZKlѱPU:vU +bgh0Psƚaܪ$4˾ck w?+kĽlՊ3:hxǓA.[y{vدd@.>7[gL=h:F+h6`;#8h^Q~*ZO^,J7h~yk:v5fk{%h^.#2eq%>g\~~nŕ3SڡQ#JEyoa15X?s!R`]!fNB۫&x҆l_,_m}|ncM6ld + :Yϊr.MBiLw(Oɿ}=O2_6ygYƌΫ͑3s9D,Q]ŅH4=]\^ /Fi,=Knz̏iz_璞:K{MO\(Ǔ:Kqjr%gܔ+~)W/w{ڦ+t7ꓷ?ufoNWdΠ3q~m4sϬryr\$G*ט'uKH=rNȕ̓ve#Rg 2\r:_Psg^P礷MOJ%?'߸酊d% %?'{ңw>WibYuxFw>I*"}]^ӽk|z._EN71LA,=CwfSgzWE 3.qKkIOg]/:KЛ*J<Л覇}/rM_"Qs+s ȟ*9 vKJ~Nz^7=^ICHއr=Q&EIoQ&(9Cm7h]N/HIoZGwH)wry&UgvWi*d:}M/Q!IOgM?B!.'enzأHXN]')M`kAӋk ٫q; *$PUA:틱sN\cGʘυ6اa'\4?Ί8ZmϨ؋ߧ* +K*f38hsL#Rw%pcʃfNw(-V4_| k򼦩}0}h8CUB>] P˅ØίC:`, +-(Ta ?Wxh]w0 j u +H|zBטQ6Jߌjm> xG6 I|p[ |G~x~ "HK#Cu:W?BC= +Wzeċ }K6|ti2: TQʙį|Le?rGlV,)╁i,iV>1qWS:@8MN5vcd%vGy>U~7~dy~Y'~ 'L|5f zg#=bh^|K28G| -;Q)ޠقwhc|euZeBy:CrW#ߊ|U\k|>׊ UPfMc^y<=>UfT3Qܝ3LDIJJyUjթQ=v;5Q~l \hS%0i7T_rߨ?v=,l˻Hk iiqe3D@.F{AmF@LZ:ѤlM\sfǣ-*,:0oD/BDvGt{uUⵕwS!/jfb\یo_E S`u߯`xP}yo_v7Lh;dŠmh8i5ST6eaKYZM @6eau߰YS! }2daSG8NL|eagv6Xߧz5 }`2|uA%h|eQv |zuD-=l@Ra%clO@Bi,U>EC2k^* d$rh'}2o UɎchXvV4[lKLoWcL%~õo 4_|/"7›'4Us-|jw¿ -Cwx<+vmi|`ϪyrMjB):{r |->`?_~~i|$3\ 5^:-Ob ' b"I{fU( {Zxx*OpBܴwg)˳Wt=6ף;,<@< WæO)<U _Dܟ'›'5|SA'Ot ?|m|}uR]ܯŠ,NA-| 4w +}i'4~O?A + Sr#i6pT5^4OEXm9j |Ϳ(Q6#kO,뻀2- |iZ>ڏ<#-B7_k?/Hˇh_ߘh8|HGW7OEGu~Oh2bO/~ͿjlG5~Kmϝb{Y6s'aI<'"gk|UqPxOqeA_  ExRf/ ]_pOUx',<@x?7|l7L>xBUϵ'ϴW5^tQo +Ҧ/]>BXG'4 o?>L<ԏ{,< O?n{*$}›'4:. @ܯW;G4S7ąG|?G 폮xTqlUڿ|E_?qmlWo''ia L.#7lί10L/F<ļg3f:qֿé{9eٳ̹dYwHu.9j٥ǺC|dOv]!y;Sܪ[/r(*ィP+[49Ͳ;h;8g#|6͆Gol=rbv}o +)BLg mąr??!6W]-8xђ (߉5fT]ouWg0A#Tc0lnYlqPa m/1h/x>Q xv;|6`9 _ w7yM[AwS}0(}E{T=ȑ|r~Dz1ߥ Ow,}쯿7]}VewuȻvڝ*>04mʇtVHi^hEkѶۤz(ڎ-xRag_@Ѧ)2狶$OA&Ge`,)#g +g܈7c|HTY|;0j)5(9׀2kTC^M AGWQ 7*|T|Gėo&?OYxCZڿzvSzܨ#G,>nW.>u;%qǶxG?oGg.9>ou?⏼lvTf]7]蓖_my_X89Y $ۿڿCw<}Ұ׎εY赃؂畮V}SH;;0xNbpՇ>TS⯣Rp,߀2/*i/?UX|yڱ\Ie[El@9^]u`{yRQ$Ɓ;^Ŀ<ؚt7~B YHc$kQ?02iHtxVɷPkOy߁ĸ>帮|=q[Yh@%|icúI|d +!l|_z >4m(dC^%;٠}ھQVzGYn-5Sƽ59y9%5ܼ] C޼L^u9w|Z1.F_~Qni +#  yOC]i2bD'9c~nj_(Gl,]zWNj0 v`*Wk?:R?0O5z!۶'\}+Q2yVɤ$JQòNt0K&q[}~靬¯u rD4>4JW + uW<MwRȾsN~C8nOMOEߍt86x+v_> 4?^R9>>CGR諰~+zQ^ ʁs~}ZM`/>Az#.)wX8_sNq1uʛElJ=ʡ¬9'VixfT։u!! =VXW޿.?%T?7{ϓ]J⻗Ǻs2|x \d0b\yXcy @4kty .\203Yy dd1&Cosby3%ۈLU]}ZR|P >7UY9 {_4^U!̱;灿yyX79#8_Qlꯗ[!ZX7ιgYE_Q9Q|4=E QOYt[ +1y56.l3@.Q1:jb.9L|&SBL]mvߣȰ7NQ.\`9.oD9sӭX"N^>$W\ȹr$֯IMgX|qrÄK0ٷ[YFV (wG~r}le8V(ܯoq,M%]m|Xoyn0sGVﮆ +o7 Eǯj<"dWvCQ224\ZP& +_C*>:#k\Ȑ6 )u-W3sެ-fowMM{ +([򷭳;uwBm1u 6mMs`mH6[}idymLƾ=j(ٯHj_OXLy>SHwŧsnLjpa`_r]XW3xǝC@ua +oШO_`l(_+:}yг;WcZ)?WWoacIedj;0iD_s_9j߳BH}͢"~0q|1%'G|mu8(Bs[0C,ߕZ9_my]L/riX{2JbMIy=zm nBIVu%og,_ga Ahxh1o>wr-Jk>{x@PGſ6[t,Q}{}"ݵ Ա7З+"C":3GӴ2#2[}~HjΕhO1'o@&`¶J}-3Se; ƚ؏Ȃ?>O9i_)}:_:qF%p1{|L?<d-QBSY Gc|gooT(*7W{|Vc:u/ĔP' a'3ƈek{:~ɲj|G;7ǿl_{t|*~7YenBhgn:}eYwlg:7RR;og]>g[? אaK?"VLge`o4%dMezYc3}l6aKFe@>aKzfe{@2osO?{`dڕ%N$ dssA+ʹ=qn8\qUۚ;fϵD=Xͬy?_s]?Ow{<ߙG9w<6qPV͏+(xoTf~P'+9]7gm +GfrزtYzr<*H sCt+W ;yc3~aO?k?Ϧ=q^j< G[v;y0 ;3wUfƮ&9[B;:΋ oͽTj*{ޡƺZ< <={WL=ϧf@>iy{LoyIz䘇q 4w:tmٺ}GO'o;"@=͋G95==8ъMԮnXLY.y^&N]O%={Sq#NAOZOkirRZOLOK>]Oå.Y}ydpȻ~(8xL6r=ǿmdWL\`yΗ:1(#e}? W[RYg:rnZ;_։)Wp=z~ mVosxx NMЙm*ݽl6yI}?~UV;8$NN53`ӏݛrһl{{O7o[;Wzwcyzv6^?D[e].a^sjv[ tދJy + ')X>kn"WN+O+G|?k3=ofͯGͯY˘_̯ .)k~/"_~ީ\?㩶RLE iEw>+&Igy%yWH +9\Wm7*ys!mkuЊωcqҁ e;%:Tgesrٽ]뛝N3}FK{^8/9?bJƥg ZT[ eij](NE81y +~>)N$؟N?։GnBbu:AňmE^jBZ/_/BRuĹ7|?CYZֳі/5YMOe){ޠGOiϣড়6(o)M+) +Ɓ?9ydh`F?(A9YcOmN>hIc\ZD'W:gzdx(OG̾?gO RV~C[o9jhoL;COo'i7>Xø~}mP)}~)e3G}< 3?Rg~}T#SNV.qLϙ=K;Ѿ*\wx~Ƴ$oTJ6Owo#GL 9Q*ן)zdu>ge˰wxDZ<>xjy+3 [r\6 Y֧|=l(h( _$~VT*nі^+^++!ۗg\ǕE}z96C sסrb}z>^~#Cym˅Oч&w#iZ6 +>Coo8~ص9b㠽K_"~hG_Nab۷4~vSi>^g[s]m;d6J$ڣ){i5}rvѵXWwuypr}:-mOD)[ߺxk9~oIBkߚH}ռ;SUnu}?{C?|}Zox϶dR۳-?l:-T˷ߊPnom9Uԫ}r*53٧OV-5/O[#N{,:}*q?1?8!׋ +*d}+Woѱbo&T!5kz5 ʅWW/;izN)☇z1b+N}(rVB1@hWҡV:JiuVzbTZ^ar< `y7Oo:h+~CdƖ̾ڏIyW^TnK>BKa\oGx#)/S{Rmϗ}Ǟ{5&5&pO:&?U7;nzL~h%?+yoyo;~-oޞwJxվ߬{:ny@r{xg8]17߰|]eBcγ_U e-7v~Otzg+Tl 1]ƲHGZҽ=WhcB}>-+9X|'Z= b~%TA m7z Of>KewkK;l};c^%ʼc< dcAߒ c޲nG: [׆w<`L /[5h޽H2_ڷy\O-.c*_޷x HhЭA#fHZZ~s->o.|/ҫ[Y3#|oykC煯;!a>ZJյyMY })uU YcV*> )x"gnWmzw5>s}QsKA>Gheۡ +ftK?t-͵9(*$0GuoqAI6{uo{9~AC1f͗XjӁ|KU@@Oa5)v=/2w'b>OC߆S^{qڏ)1LͪW2TJǪD)y8,3 LKgQHS6ːe+z/j9/oy2^eqE徉r sXwoWmg|l;8Pz~ns-?/:3Tw<ɋ1,ްgL'MP+ s,:<]z]7*;RNww&t,|MM~Y۬{,/ljl^vx"t{ڥI~7~(ʖ(+,|q/Vz>Í 3z;ǹV!j]T,_|KxXw<5x9c<=xjGNz<@aq/^\g/czb;} u,N_hX*^˟g/H}t>OgD'xǚm~7ܼ%=ݔ~cm+w=U<jo] ̇ AWay\i{}~x?IҶAq>纾<{`VBxƇ Ez&`& oڦ<%-S}UvƧy'9C/ee ]>G}'c#}x-"Xy'%DЍ59_߀nLo\lj.lFQsO߀Xz\,7YeQss#c-Iʈɞwy<\ھl4>2-gwsfg߿wDHLgRn8Tj3N.+OYNgʿCS>M~9/y?ٖ9踏G'2gŔYf͓{2j3Fiٞ~y¼|\~Rݕ ]g*g;M^ُ#Jrh:E94Yrh$9\jˁ,G`9,9E9SrkqF6h^W`owt&3PanSRz/ϩSVxb'{y xG?yq4q8qËZ>8 {vD{/S}{==oH=ߏbGJEi +Efaȍ墭< 乵0>r%'CݓcB^Y~ryzz. ^lĚ ~o zoP\`@ct؜`_K!l֖MyK} |Tչ0 Ry? >J[-W3dLL p &@ <[bkbwGj8Ǟ= ]~^[ZZk?^ji%Wkq>3SŸ o5"?3ב]s˘[+9nE]MY<|{Z\s➂\>j7^1W2\< mt>kÃuv\@{.vylO9?r*߻ q 5v|Fk\9Yi ګ+L2_ wO WydsN58ݍ~w}U} }ː6c-E>@c#uCl9#O ʋNf(LxE{wsZ=%߆|^A6mP1gӻt˿k"/nA>vzFtV'a$  9fߚ|WS7ӑ#bēyXϟ#>0pƇćyݓ/Fvm\[`:^> SݸXg;e,t C<.a>̟#bgqF|}42OUڙ0RO2IGTR^~7zwV1ݭ35>)y>o-yHkSZq~[^.vSGk\q)7'!ZYx,ֱJy\uyw5alr;nط[FޅKsr~/}Ɲï_`n8==zyN/6*:Mii6=~ cYޡ!p-xd,lt`VmNm͎5v[ignƮ7k(~ygϓB63N`ukPKieu/SqLE3e~Ky̺#NWp6|8K|.1y]WiIyJ_KuL)^"u7t%gQ.۬Y͹7Þ/G7o"75fFvM/<:8dhFFmOjmOk,Sn׆?C7bgs͟ +ouFLZ9wS.=^qF,c}c'dLw0hq=:~9jc«-S1U?~ ceM1q]7sBOyMusІkht:!Jʈ0e9 SGg1^獣Or|M=˖7%_\'*a>=F縑cCIݧ.XzྃK3yt^ԴQ-mV%ю72eqk`ί*v1@cW~n75Xx: c{>=w۲¾˽*8h10߂\"^M]_e|a_`͜x 'X0?(bG7qCpP1V~GYjF~P>e.>+޹}=-1j 3xoZrC4oʛϪp_;6:Z-G>R{h۪pywX}ݺ\ICvqX墨5#Q*ƗV;hmV#y|oYp]Hsj۸WGs1ga9/mc{U=ǢgVA8B> (<ׇ|| #{u v.rpkڑ폯;k=n:]s6*FW_~739pO߿B|vӋ֭'9_w1%ϩ <Sܟz;ypk[z.;hԸ{rN~HXAѫ/'ۚny\'y6twa^`~kQ`녜8ZlWmS}QzSFNM_ |ltzᛜSw?xq=֤Yʞ #R!K~#v3Fg~p9=[׭1N7yd rY:|ý'|p9s:*ragzzOFoc3GH? n-#P"sW}N[0z\bof]ڨ3mg{ywJﳞ/s?-Y/!هsr}d߂>_AKcϮ٥#mI3\};cߎqߎfݎvیg; >ȃܻ{Iݑg&guxOE6r񆈳1~xXb\g\ydK޻5si9/S< +umhxgC;E Mn+'"n!uS߰>=1;^8>vyU~;|n؅c;/wR>[#UI9qKs{I~sgzpI?nm|oaOءlv9H?/:dg臻)]&Ps\~7&}!I-zalgH|gY{&krliCgsϝMAv;ϼv<їؖU^y?7#ZOw ߗ~ߡCàGH,tyjsgɼJ%uMyyWm!8}'YWc@>A8=9@˻ȫ^D^iyV"%I]pOD8 {v<1tmF6qf&s9<(+vƭ_X. q~ k3|Cifԝ+yB^ϟ9)%|v҆[]}sN3R"[WvΉ:=9bƷ_469QlId{dޅkË<_ouucE/=|tΚe>|r1'c k`'R%rEo~3j] {Q1~e_"6hs +N>tV7.o{C`+]79߼t! +bY'w'3?^[4݇u:=׹uv }@ny#)C\߯[X}9:3s|\o]?9l1+S>ߑ>'cꀾxN2ch煽ަ= }]Sk_/o#us 8ޱ[ +-3k!R8;zd!u$k"oPT}~L]'͚\9kuM^^BOw'>G!P?WU[*f*B?=#!H4ϬK7T;ȟ:luL?UïE3qC{c|WCdaat[Q}|?I׬ + QO&"04/]+DQ yBdnEʸ Db"xIдbdmS!/ A7,./VVvO8VqD +zS*Vzh{Efvo%9"Q_Yр0ǂ?Dj8~YJߢ%JiR!GFA7Ԅ|rJѐ_pmDu;T{d(.g<ဌUj(}8CDyC0 ~L)5Ɇh*LK:  +: =qBLѾxެINk!ZGut!/x1D/vU^3)8%fN$fy_("#$`Esըʁ+&IUҟz;YBEb{B0"|~_O 2. +GΡ/#(/;T)GL|+ur{<b)3,*pcO cT$M-7ifقE3}phl6݇ -饥g*&&L`BY$L.Azӯw&bpȏ y 2{TZZ/+Yՙ7(6N,7X`HM3g,!L;U*LV.ȔmBK/M^(}ܖl>݀>1}(gfhh[E$Y?m5E$oH/5h'qʥ1*r6on$XR*2+L$Dja896c4%2G Y5;ScJUdHW|PҋX$(r䔫_Cl?E7̈́MyFX^l^]KR=ѿTzJ5W.~0_36pDkTyꐷ[X^Y\1Yea9 {M$H7vhkZIT\D7IëgI&VYx?!H+'Q,Mrl甖Hu?t6sƌRcz1bg‰k̬v=⦘YkgX %hX$AS3-VI;+_KgWcoN)aZYhd=vV4~ VI[D8(T F1S*R|ԫM_&Uje0 ʉ]mHؔ= |A r/S2`@,֐U^ +hP$ͽͿ_l{KG_kPv ȫ7LXJc)+kd] :Y]) /A$Ų6K"s[/._dC%F/7̑OS-)-uf)VPTҜ<4Pzn[@҅71E*QWaq{Z˹^ >y &Zx#QG{̄31Noof5Ǔ:o_!Sղ>+0&~qz!-Afը :ڢrEAѡiY_^EWóEgH::DN|M)CUZSC:[ LI( օ=7552jߐ:Ǧrƈi'b|2Vrv啻1qFL?eb&NU~X.L]dvyMĔD8dc}g3-P%2~ƢdC5ĆTQZ/TfC0^$1zaj:VN"YW+)侀=(SP #{Ri$K.ґR`f +,.X& _n!5?z]0eov2n5 P!YZ >EF|sHEcH,X C?|MYp?!ϻ,)NصRQWUYiכ"yI530Mt8Zsɛ@I 5ʑ(S-^$]Nл|Y-trH5O:F6:$-tx 0!JB,GD c +4Eh/7LMO/u~KΠ<J;t DC+T +0}~6<1O?]!feK/ef;3X4>IMDԍmd  +!j02Hb JrcQ?-c&q |N6Uo7ByC4rQDfpn4E/eM.E߈9JB~@ݏyE.){ՏΗDؙ`5usQexp`{e|jeu x ![bYQ=O.z6@wekYO]~,,oȲO6)X C1JjV> `įGmF=x psQ((f,"h x7``1: 3x+0, p,hB?W?K`|@; /e]zeUw +ȇ,G~qyM_U<~~=]4|ԉzps$ +rK zx(p } +>!ek#raW2k=|z]_nVe^ +zýsvxZ܋~ۃY2*Njw~3nHczjnHIPy%܃xQ6^*Q&:Uo -Qz4nq{ƭDTB'$N is1$^J<|4yg=p&8?A+pˁP:nk-J-)V/|%-ZmtTt "esӀ9_6SrZ=ݛ\&se{: rmss (]Lao)nw[!b\XVW VWͱ%GÃ)'--#%lP;Dx,J(Rǁ5xفy]h+?mu!mm%uh˰m ·ߚ'F؀[rj!p]!m+ڱUܲպUqkStVWז6ͮMm]{s~L3Ox9D=({~eўuk\3,N bCyq~w>IWEݡ*.mh-mFpb }t{b=,fҼÅC?퟼?ދ&QU Qr0ݽ;scv%Z%S%5?^!1ƅq@-ߺ:ЯꝳV m'dbllHGyi!5kIr +|- ^|YaR9XᅀV~_oqK>)>'m*oUkC>?:_rO"@"6l4h3up£G +r]eL",B9^|N}w/qlF|ƒÑ;L3?g9s"%9sT )0%e({*~;#]v_^?Iƀ?*f` +kɫ+(+({{e{= qU 2>F s3Mf|WC.hʽ>G*k= weAS}| @chO 5yyyyGt<}oEbsx`%C?n{[Y Sތ>]xpn~ +6ܻ_U~xGr'4KN\>T=is (lX=XeW9xF>L{OĿLuϞ6ZfC,cZ({ܫ?6:âOy,Mw1tgx{_RRuŁCͳV].Lre4 kOZg0nb[-}Gaҟo;Gl ̃_~{^=|eyXpߟϩN\UCZă^!zC)ig ߙQC(8?>}]XlϣN0~nN Ê{|Bk153q#kX9U^Q,?8#C=: pc)5ϣ)E1=tZ.{8.K51h*|uM(_!n߻i^ws Pm料y۹z7Ń9ߛ8.kK̻շw?5 T߇M|B2.e 3BFY["pqג/y[.{f] Bv&4]z VozYt ++q3]khرX-ڟfxUđ9,~Gt_ڰ[5޾4#~w ڋseoG]ޥɹV>N2nP[j!UeͤIAKq9R uIY0'&lh _0(sb> vwЛ+BUKV +q^ D瀲2R]@tP [0䘗6`i]!9qy%,撑\@5e3J"NW&trIW@BW\:rDc3}b&Wp2plM*މ ~h6{LU/gCxNe)kO; ɴVRUBrvCZ:%K^ X4j"3(Ԝ/ JE&cIW-dtl넴\mAy[/YU }bC ZvA:-iH:J . L\RrwLoɴPr9;XU4\Y 3et8 4O[,%NDz{|:eҨmV2a01+RɢWiwY`-2nNCcdByGu3=^"0G# k{y[#" JXxyy4+oy>4?c?i#/O,T+>:k(_y9 v=|oKQ.D nC]Cސoy|$ww#ot-/7D@tE3Dܯ X Fl IBp_`ry/VOr)Jѡn^ix**ɔyHeH~.Wc"/ȏ -󽞮ZLOHTiaR>k٣w=ҡ-AiY^(EӪeYY,##HiboD|~}qqk3a9cOjs-d* F4RYn1oelHo`쿛;8L' +=~O5R0Jq4D*A/St$kW_#mU 1H^K?WCX)#-/%)dxv@x1j;^Z U œ/jWY1v>R# ;)>u-+wv42r!nSI -싗 eom$OmaPxo2 +Q;xKa07ʵ#怎68ϤJ6@͒t䷦b ֆm*֓cLÖĚfj'>Pvq2AUvxD x,0ԓI^t-`G jkH"5k _hO]O&U舽߳ZJE/FS*ȝH#@셒A/T K9]٤_ڻ4`TQsjqL6kR}6ڟʙiA T@ K|3?TM7 ¾mɃ&E$^hT@[ΖvibS x͛lR;75P(<$ͱ&ΉLI|.$S$_>0T}e{zWtJ!?M)%H]ڬ0Ⴝf%R)) vmrEv",f[ VEiqMG6|]@G v o¿B/YoYƆPe$Z Yܪ1Vys+Vm_$2-FaoiNMBPΝN]c?w4ɺ`gR3N{ϾclVV[KuaaacC \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/install.sh b/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/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/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh b/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.cpp b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b6088c2b523c51507103f655da29412dc0bf2f30 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.cpp @@ -0,0 +1,199 @@ +#include +#include "graph/types.h" +#include "aclnn_add_custom.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,SOC_VERSION_ASCEND310P,SOC_VERSION_ASCEND910A,SOC_VERSION_ASCEND910B}; +uint32_t socSupportListLen = 4; + +TensorDesc inputDesc0_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc0_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list0_0 = {inputDesc0_0, 2, outputDesc0_0, 1}; +SupportInfo supportInfo0[1] = {list0_0}; +OpSocSupportInfo socSupportInfo0= {supportInfo0, 1}; + +TensorDesc inputDesc1_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc1_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list1_0 = {inputDesc1_0, 2, outputDesc1_0, 1}; +SupportInfo supportInfo1[1] = {list1_0}; +OpSocSupportInfo socSupportInfo1= {supportInfo1, 1}; + +TensorDesc inputDesc2_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc2_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list2_0 = {inputDesc2_0, 2, outputDesc2_0, 1}; +SupportInfo supportInfo2[1] = {list2_0}; +OpSocSupportInfo socSupportInfo2= {supportInfo2, 1}; + +TensorDesc inputDesc3_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc3_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list3_0 = {inputDesc3_0, 2, outputDesc3_0, 1}; +SupportInfo supportInfo3[1] = {list3_0}; +OpSocSupportInfo socSupportInfo3= {supportInfo3, 1}; + +OpSocSupportInfo opSocSupportList[4] = {socSupportInfo0, socSupportInfo1, socSupportInfo2, socSupportInfo3}; +OpSupportList supportList = {opSocSupportList, 4}; + +[[maybe_unused]] uint32_t NNOPBASE_AddCustom = 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 aclnnAddCustomGetWorkspaceSize( + const aclTensor *x, + const aclTensor *y, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + static NnopbaseDfxId tilingId = {0x60000, "aclnnAddCustomTiling", false}; + void *nnopExecutor; + static void *executorSpace = NULL; + const char *opType = "AddCustom"; + char inputDesc[] = {1, 1}; + char outputDesc[] = {1}; + char attrDesc[] = {}; + + NNOPBASE_ASSERT_NOTNULL_RETVAL(x); + NNOPBASE_ASSERT_NOTNULL_RETVAL(y); + 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, y, 1)); + 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 aclnnAddCustom( + 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/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.h similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h rename to Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.h diff --git a/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/Is_increase/build_out/autogen/custom_compile_options.ini b/Increase_Bedore_pipe/Is_increase/build_out/autogen/custom_compile_options.ini new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/autogen/libascend_all_ops.so b/Increase_Bedore_pipe/Is_increase/build_out/autogen/libascend_all_ops.so new file mode 100644 index 0000000000000000000000000000000000000000..e57397c8f3a7319b7c1b8fd118223add22033dc8 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/autogen/libascend_all_ops.so differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/autogen/op_proto.cc b/Increase_Bedore_pipe/Is_increase/build_out/autogen/op_proto.cc new file mode 100644 index 0000000000000000000000000000000000000000..ea46ba47b545dc908a6c1eb639b05377ac58b9bf --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/autogen/op_proto.cc @@ -0,0 +1,5 @@ +#include "op_proto.h" +namespace ge { + +} + diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h b/Increase_Bedore_pipe/Is_increase/build_out/autogen/op_proto.h similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h rename to Increase_Bedore_pipe/Is_increase/build_out/autogen/op_proto.h diff --git a/Increase_Bedore_pipe/Is_increase/build_out/cmake_install.cmake b/Increase_Bedore_pipe/Is_increase/build_out/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..51643a3e1d0660b1677b862b84723988e4369649 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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("/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Increase_Bedore_pipe/Is_increase/build_out/custom_opp_ubuntu_aarch64.run b/Increase_Bedore_pipe/Is_increase/build_out/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..2c2074695335102b60bc53993d1f192e06267e65 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,972 @@ +#!/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="3946831741" +MD5="00000000000000000000000000000000" +SHA="2f51447a589c6589b3ed76b6e1684662a273860382d65cbf31fe7dde9ebcd293" +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='' +targetdir="makeself-932073-20240525184804" +filesizes="103986" +totalsize="103986" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 300 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sat May 25 18:48:04 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 300 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 300; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (300 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 +Qf< pŕZaBk-x0`#Dz슱$_hvxwf=3kI86ťX{稄"X*G +9qՕ:8cb: `tMw~,"{_~{d0WN pek+BeKt ɴ.oi]֚*!̲UÊP`mYnNSՇ; MAL N.C7jAo/VY{u7kmcS)X +hKbU5{*UTmpHgTb,vƵmx,63:uZ1 +N30=4^2tw C\eTOU7׶,v}@ǺuJoEPD6D-2pIjW=f+jA[Wuj -;=Vm[^_牅,]fV,oeة&dFAB75 -4ޜŌ!&L@=[VR73#&T-2/X vmBK0cK`,PPnG fnWw\mcf +Wigv dƬQMWВWZU5.ż/HȺbW +#W5B[ZIɮȴ\!dn%_!$mU!tڪt/[P:b2b_xN_Y)lQ_6Ԛ)X˩] {gz /W1|UْNjEoPi[*^+SppV dD@h[U *xL@[ٚC9dCm)Mp_ӞSl,BNg'l|= 7´vAluOGwK?ydcGs{Gsoe@4q0OpƎWxŤLUV Shu=42CKcgı5!2mc'\`ZN Q}^)2@`Ms֧Hg%;%MO|)Y}[D0UzF18IAq=L R}g1܊SCz^wu*F0e?H\G+vށҀM\gQ sjk^Td(,Q˛)P4S +J*o ,@ks2lI~?F_W+fy>}\-sS,8Uw!r! O?j{Djb1aY-b,.C-'iI,bXRI~ӁYRй-Bw ]=A54866hѲ]q2]iHVlyd.=#,{[PfʺE)h!OT`jh}kZݡd}d]r`=BL^2loŜMKyʲl1dpCdz $꣺wrU(f|\Mgja]Ājؖ6zW{fC .ƒx1@d >mcʕd+gk\ɯdcykUyKBd1,ѱ6ֽ7_gJŴf@sc:Sc*Y "vR>?M28.K@7 +0ov :<0s@:O!צ_y +~AeL" +֊WXѲl\i]6Gt[x|1ByniW33brU,, ׎߳g2(o2Sr ɑK9Rn-/ YA.Yȋ{2<\nf_ +Aγs0}Z~Y!J1V(s>#gF9g7.yҟ{f#_|N,2:'LEР0_R 5TR:k>|hUR]jD:vRSRݞHuцv^P]φoCi5{84LXJӉ ,Sh* +Qܠdu[6Wn[>gz2<'E6߻U*EDVcʎ4ԙ#R Zq ~%(nζFn9Ż F>)0RۦhmpIYx"ַf!?fP󌴽7Vڕa,[-XQ~%Lem 憢h𪎒kݠ9ZuУ +(u,ż_jA%LS^=T25d]˕)ݒiTl3}*L7pyH $l}&3;282x:ĘFQ|qܬvI.GtX$3iMx' Ur}喨KYLn\dHϺVZKezk?C=5B䱅§9IcڵF ;9^Ƈw54 +{<\}>W]q뛰 G o4wg|m3|Iy5<~e&|6Sȃszλvpo?˿:/璎9=o&>srj a#Rܽ{{{N}g?c } RYT?7!O yF %X@Aq(@ +s=٧YY'he3*qO&Φr{.8Rwk@cqSq8#C>q&/-Ω8g\lOaz> v +yq'/,k]qd%$[D䡙$ӭ9s\UIYJ|6adT'G1+ҵY &(Pgyb%: |(|PgeUW%I=x(]@)].=j!~l +TzCyeU$98$oDf? 8\8W:c'Ü"R |G.b9҅;qF@xV^MؚbӅ'J|!p'Dh~t!/(E +OKwr\AQxoE|wq w& ʋq  DL\N{8]@xn%AZCˉr4pCxI90loX Iȋ}.[64߿bxJ]ȋ~e ?7 4!?ϣ ]CXa? +ehyxZ9>l8?bIqJE=XE'e°R}ә2|sY̿fܿ$\pz`wFWwT y)򥬞Ri*j6/i:"@l22G1W}PM͗չաúz%q5|~ ͩN 7[CfV]֯W:VF-?>8꺯> fmLˀWfrl##Wje+ȒX r(ZH.=K Ou!9Je8.J׵W׵5+u@ _/iesĨ:5:48~JzFS5VI߫ћ$=Sҏh~T׳N_)5zNu`S)>ѳPO;AayS<>casq{G XoUkZ T5{ʈߤJIR9H1J*|hx/$.j}br_/x O +\a}Yʕ5Su^*Ӿ~O[?0i;z1ۯ:o=w7w?؊7u=7v .}AQR;[]OplYugj~2^ܷK\.%v׷h&` w;WkV>"MO _^V4_#Fv6iskkWpQ8(gNv3 +'{̉O]d#?]ߗ7GGGG(:~/ J(Z Ev^#&٦O%ߵ(I':'}P&ҙ: ߥږ~5Y߿Wٮdvm }XZ2٧ɑ]] >KN.*퓍c J:_:Ut=+/ J86_J)9,86&~⣫c񐮸_@|$O3]i|˯{|H׏cDZV4ql*]*O7]FO?Z\ +Е([O{b^9=~l|N^i姷ǖFW N___/og}86Z-_"$ODZ8e@G/FUNNOB8׉.~ 䗊c['VuKs ˿~N|D~Уi(nrFS#k5\47nvfkmTk'~V"1(b FXKSKF)v4񬕱Ҧ +Yg&ømx~"j5cQ7?Pq0nq+g"Tv FLVT1BX?{0LhBs檰A|S6[bV +5";A7Yy dxod3cCQq{Z>353%?Ǖs3\2Rhm1 +k'3wvֲ562q6' L$gfmbXC\q$NA0` 0@}Su8 ˙Qt!cC"NCJUHd<*ZIq"ɗ`*jKFnxidrDx,X#LW12 OdRlC$ -- 9NJKcVta,πOnƣ;atRAߠ޽a<w$AzHJXlyBPײuIї?{o=up}[[ +fO.qBz [W!^`eϿ^|/U;p]Hceyz*G3jhDiVҴbg%6INTadTфQ,(UrH:x#Ŕtp$@ԔŤ'o"8sDc%ݎ`x-;m{$4V۝4n7W'xCVtҚ1!ahXv;9-<ѭ{C@hq;q#@3B&BĪ"/ұX0q'9 )%kI_sSG_+gmE#28ltGwwC+b~SX~Q+|NCgZ||Ha1lų')`D:'XVZ!n|A7Q۷t*N9W;Uap?[׼iKKu=jeC皲ɛDCK.EfTޚ`8ʆsDF1`VҰsf5ĉ #H +#,C-;#R׉$nZ;j Cl ^%158w-\86Lc$Ey3E6esxx4GP0fVո3;{0jChc{qo3yŐT.Uߊ b(WY\=#pj)&HڼIc.LkD.9Ŕp9iG.x/.7\OknQdF7(r! +eek`8F- =0E&Iw؊ GOp'SZ%<]1BAfch˩يR%e鈹?;FCgI" )Up"M6>OֿWRVW,#ΧD4=3oV1[ ")輢a,J>xCFM!#P#Itd5*O0stqjPşN؆eAd$ ]{4LeȕcBݤ0Fr\b)8!E.<.0 2(ΎŨ{({Pp ,T(X;2'7i~a>^؛rVEMst*ӞjE%BjRdQcԶeT$뱐r+F,(‘> +x;,a3~4~F:f ANu3Om2& SdkؽNL2-7ˮ&$ Y2qNaƵKF6Ai'K[iÎmK[eJ<:@ oh bQ,Jl(HIlںɂQ:uIVL~MdCֵ~+T K,I3l!R(D cD2fyX{;k*@JgŻR&hnWYy +Ael.%$})E%Le]*)*L'"~ Ӎc*o@4;=Ie-EP EEaDG aEc>sWw{)96;J0epQBj5'AQ&y#.W䎃Vඅ/E ^0o)DhM~mI1zʖ07%+^N 2/Ӡ"D/ X.KL@Qx9sx)[rql܇ bPh`,{lE譕B$ClXm3c&oz:Bˉ ~A IgddǾ %Xq4'C@p 9T$+XUʥ*Ti }$⺓ X* +?yo{ooC#E޼~g߯7?K3agrpnQ|{Vce h*|yWKS6G]ոic~N^aߕ'#}GjťtJkrf43chdb\*2\.;.,??3 +_.رJ|Xؾn=teyGVnm",% />JXs|9x}E(9\؇ƶ,W=}F>^CB8[ۖ߹ZX'KV|3rc-<\~ .{&]pϮ.Wݰ6yc:&2بp.Gt= gRT,͵gsH<bh,M[Mg>)UB:`}s7ie}$0*]&Rhfkk@' 2ؘ2 Mf%|c9<59>x6qiBvM"HAEA=Hp 10Jrs[ya4-[2V˕aʃ7zwWuc8mft$2f8H-+EfJ"d4IV>Os񈙏'x>f0qMtX +bBh7ql^e&+t䆉n@YGbDEwd&ؒf5&J3=+ A(f^Ê=*_2:G  xCVhHwݚjcgo :<|Xww^!6ʿj zt@3_:nK2"߳T~@BG !$cGsk37 g_v56o=#j&GC܏:[4Ywݪ1Jfp ؇5n;ڵgm+&l@;e81tLw>yۼX3hN43yꂆktHaXaTG}^u9svAֹpMFwbڛ N +Q>z9H&mMAAw OЗW>AO +5e!͞k;MFM*W];h1 `Mcٮ{5ޣu~PlH669qm '0SB\ѓŋ8n'8Vh/?&Mf)0Í*ׁɯ0 Qq~-$5̧> uagTwlwtL- +M6>8Ajrzͷ0?o#5 >|ڣQ LT!nPX +cڂ0Pu<~. A>R h]s=- _ɯ2x|ʎxj* *#^ȻD}o`0~ l[ލl$QQVA(BX6ޅth63sgr{j/au=kO? +_Sا[DT TnT@+k=!8^@eS` W`'ޟyN +v'C^RgbS仰]F[D ^+IGSS@>I^*!?^tĘieC*#"j7d;gUDIGNYv #I_hE<|)`7K삝<)*uPnɾꛤ@voic_|ñRO/3$?`OuL*H`7HY'IQ7BtwFt=/+̽nAiź8iX8dȘ́n9fbZ񟕸L6f(sz u/(j86yyI2yŪ@g g +/ٓ2}YOe1y$ο<\tJS6׾i<ߥMca6ly=f,A/`jš [6d[EFڶ"NYbNK=*ϯ,*vM#G{E~:*d,Ҟŭh6MT2#1٬8:1[ Z9Pu9Tua?cpb?ZO$) Qag@&Wb@R\;hWa(BEF +)n3`5Xď_MKCYZ8Px#-SqPn{ݪnT `Ҍ#ZCXc~=!L7A=Zk,3X+QNRco4n`{?ۦh?x;wZ >ip't:Xs~I}Qнtk]-2AAP]3'<: qA{mMܱu|T]qhvX,.'A/?| 鳟-S5K: pv[3tg'CqxB#ҪOk8wL )r[fΌZEiS:0hoiZy c M&^}|Q t1:g0P Zl붮ݣoO]&~ݽU3v3jAk/E>)GƤ}TuVG|WgE\P^ۢ:Y[@5j?u2VMo'웘Mm`fh9蟂62{U7[sgT[-|3 <7(b>g1_TKlZBܬF| SPC|E>v뛈iuՂ7ov|Zƺw+zSHWC^TAz+/ +;Q&OtM'(J}>QtSpх.`(_HZ,wȫ('tqBo o<6#zd +A9Ƒ +J@~ +(P>]w$o2ĂMʱǤ`?*'Rχ+"\ +<_+rqd ɣ<+u vZʱ /h]xP P P P e + r@qO6."x\lrIִ>رrˆ޴~Q~hrm<:gÕ~ri1A*OåLQy;eȸȿY\~VJfȸDC]O_ WV;a?'?܃U`U.'[H"Q+3H*gD,ƭx2Zh6OL̇s1sDT?qW?UϘA:y3T?p+U?UO5|0K1cUqUE?8s~QHz1pv>R'vim}G49ק#Oӊe:;۱>1 2{E8q+Z7c843t!0m0`\ Z7ct0^0%1vc'UM{K C?zC;k^gJt~YI)^xnU3ql(|!d;[t_]\y( ۃ:ѣ*@pLSV0>Z˟8 u߭eϵhgjT2nx8lgLMM8%la5̭*(:ֹdL}6=W>`2ړ>N%UӵW0}UteZq8ڊ$u9^Sx`:G 0_7>p3ML>|:D8w1EX64M/%12Qm) +%ծ[o{{z St'Lт_zT0E]\L}Z`a&(0E]x\LY`W&J?wo[r?}L+CL0?ӰɗÓtYbBKJ7s8߇5#}F}m⚺Ay+>~X9*#珉-CWÕF$_B/J%hKc/oQFWJ\e=-S/7ϽӊmX}qͪ:yFYuTI~s*>yܦJcO ]?:"MWaGNQB'iIF@|t:7INw݉qԥ#̢3q sz4=9yY8denݾFƮtꯪ[ު.f an~#3t`3V&Ot| +pݧy|YE~33̈́9NPv^NF?O.8y>NcvB^3qe{ ShMSP+urٺY,l=&BֿZc~˺]9ufOwcU+@+viviviviviWľ[[p|A?99#{xx+SUX忏Uݸ8z`qD"LR=(ҎKgfoP[ajh.iP]mKk|?yR%)YKvﲨS߇%{ g(FГW;^]_{ϯF{rW{L?Ѿ%ld(M絑 ?qUYj"?!ˌ/e<LS}M _K%嬤VQr%[qNʮ uv +cޥ0 +Ehw~ ] tdKcXf6Y`NYX֖¤80kSq5L3~F:-I8^;7ց kǮ ZJڪ7'JJ|8S8?KcErQ5yk=HEż9G%l'蕍 pPr$T|˜ysOV0"O?ALg0*sTcLio_~x8>9?.m-zTH>ps>RsӨVWOA/}6̞ǠJ3Vq9h'3o\?s~n//KN? qM?nJ?xOcP%+J4Ou8u7?|8e1U0ROu0s>Rs=-(I +ј"1{qIq1pLJ*KvVb?~-v^F|ezYXP<'~gWgxZ/L9 ++V|#.^u'9?m--/nɛ9Ts_yyǯnm;By9+ӣOc,j5#)G)f?</0dP{u36N6f?a$?k1<`R?&?8?'/4I9ٸApMjbxIy?|I&zԄXq73csLc&vI~ZM?٤]u0fϏMo3I+v+,cLҩabo7iU&e?dg*Io/Lvf82fĤ=Ԙܯ&INdxud~۵&r;MgI@:#|I${M& Sr]l&3iOMҙn2>;g \$cBw(q7+j*k`,/'*tze"s]>'zPߑI*9 +^4йxǩ|ޙĎ +x\O L%#Z㿕zPY#WU%+)/&ILrX&ݏ+UBAy% +a!+!i { k<1[ K]޵FV)m/y/! +<&,¬K +GױVj3:]£b@b*h$% W +4aspJ$s6{.3ERbz\^,!"do4o /۪Nw/Ϗ? Bjq6xF~5/r7匞Xy.JN5.nTr^WFVrăNwCY*4:ģXɌk%)!&I/rU"[RR[cXJ!XH15*tGzl+H'C;) AdGvK +X$G"4JEEd/"38j'osӱUJѡ ٷvQ\lnK -0%7HD=SP24_JZ4:hl/} 3ڕjC&uMcs` Sd8CGUQPw2L9 +:i#ǻP`/=< ø'bDW 0ZSH!NO#5Al +wZ<4{c 1t91rSc}qURalt6(3ԄZlA٤e0_ZPNl.- >Oh+\'ee ^mlpMq&Rڜ/ hXS J\4e 4}>K PBqҹL, +8a3L\SЏ!U9X@g-^PicNVѤ6M/ }QEfw=b0z4^sJBM>1Z^:ʭnE)6=lj2S=atbćE@h%8ܛF:oC#;8cw0v@tEl2eBA=nRGxîpK|D׭7*a ++OZOCC{{\Uwqh7oH9)_(x5\FNj ɵK]%{VWK%IԮ])WGY E]T<֟0+e_S'e,¥frʵL\q=q:џʓ?mN<>_GWM•'VaO _9ŞoeW0tG7[pgݔoCпumޕߊU:rw>7"?*^):<, :|:ߢϏJC}txwW>?V|&xx_9]ox!^A_+-TYV~W׋U\O5_z|/ ~Ư=CS&нGF\Nར~2&Hr%b GH_C\ѾqFu +n~z.g|>H\|AtU'0յtGg(κ4\mr NQ +-+$/"4)\Iw|&N۹|5/&x3/!x/%x%, >> ~9 +o%8!m/"%._E[KA3!_C/&w(59^B\ ^@pN'8XHpz}8YB +WW<չ gn57<XI8f`=QhCUyJ{^ }TۀMN:t #B|Bߍ }'z_|B? '&OQ>A '(F ݏ +'k(п@wO_|Br~-OwQ> !'|B Wh!O?|BP>B '7(ЖZ_@&D:B zBOyBzЗгQ~F_ }'t1'z' (ЋQA  z%'Ȕ;P>[Pu݆ ݉ D|B|Bߍ }'zPF~ OM(O|B? OQ't?'+(Я|B+3>dB𿾇q}/<ۿ|!/[-[i^>'K>qxm,!/fm_c1˰8cSUg'YxW?rY/qէ_ ` 8QCWHqV@iOGBܚ;'Q+Jԁ ِ6lbbPUoo^Fv %OKˠd'D;P;= _P5x1 [@v7@^?˘៖B=q.<$~/'ev:C(gsF¿;L#ᅫo~koiu,L,>\\l]5O 9{wBٙ@Bā<Oؒgp<5OݿGU]"wɍfxZoDZI@jUUf&!@J `Ֆ-GX[&f%Q$`Vo5G}>2s$(}_<^{^rα]9X?LN9ڮ󛾾ivs7V/6t:7K~Wo%ȯ2=n~I!t~w^>1t~t~n~ĂיίͯCXϑ/+ߵn~~$: +7 E=Wo__:/OE}Rux{ v ;NJ/ wSw}}w},ͰBRqdXI{OK/*KW7>RL<~iZiRN_4!ίOH[keJo7H__:n~}}Rnu dY_g:Z7hOOW?z w_$+M 76L7cw\.O/>G5nH/CIבk}{/g_g:򬯓oH!ϷWl!ϷƑ_i:'zf nn]HA;0sp|\qH\ǵq-3q]9.ǵuSq]D\zpz\Ƶq}q݂\\µqu'q}Z\ĵwp.\!Kv8hgcH~׾✛b9]mA{?k̳/;0z%bׅ=u׾l~Q<:h;Y,MK:RpMadQ]M[' -wht)lnu`Ny_;n ;a϶,G¿GX' +Kؿ"s~FXfþQOE|?~߈~{/ƖNmC> +{ث@6 {=[z|0KJ췞`}/ey>`<3%ەCO 킂Øۉػ۔w C`~n)zja뱿E8{rb/?m)`t؞-;XZb_dk-_F߰_?`dF:vv2m ئM #'[z2tjBJȺF  +F\_bX:,ߖ餻>`=݈w'<:i7*mMёpb[?ʡr[C00ߗc}1o%d0ڳ}%dmCC[CcO@;;`y*\ ;8Ķ {~=זy_/?}=pKorcw%0:g1t GO`΃X~91W(ζvG/Ͷv~17̶#O:g-NJA`džlϤc bfh0̶ $MuA ܷOd\:# F<{r}q] +a_F9"›쮐WG{%!B/˟Huxc|/C|8R@1-n}0|v(:avHX;E#/0vU"uz=6Au5sw=^VXK9i:պto._ӝj5$6*^b|TvV /XM ؈e_U;uړky=}=YG&Ru5<':fEj,a='Ɖ3Jl/|69&$뇺\Vb_^b_Q``J y2}˼߉+2dtG؅a"}A{i_[çx~0ෲmc{^=p0|Qݟq%v_/)}O_/-}[)~>+{m0-, ~>K^KI YA? v1=;x}O%sE0J;ϸ cr9fDvF꾼#З86}6q 軓|#d zwpwg}4]7mأm0fg`$VWZ~P\aK e(ood~ONݐ+`Z> yWkY*+8Zvy7y?;q>0-W'Bkfu%ߐ8V|:NpVhMsS\s>[wY|寮q't|8Vgxp> +5z\u' i?,|lx\^_IET%Q{tq F0vƒҘ=wrHX4ًBxA/Vt,o~j"~q_tZn@/yur,$~L?A}7ob-\0EvDe/lAK29PO4"EaL'[~L'Ov߉!//swr/s8үĸq[G.N{]3w|Z{|loXt6ȁҌ#!˽o%0w9ywz-)[ɍ馍nKWtscK}3frqږ7);i7yqi5qy %Vaڭ7Clm'd|{qh͠\ _DrL/}IH?I5 G7Wsȯ2#Ia+>iKwZlbCYn|rK :s㫓tt_|ǽZ6Et#ƫM`_.70z %{O[Kt:] +w 7EXOf:I8L{1*&;":}He>7cL]/{SocOqt#|kiLd7ktUfZ}t$7LCj݁$\YɽJW2i#>Kg#Iᳮ&ˮ$CE<6_,Wmu+X=yMn^>֙,Wͯu +ɽDM~r9nV_:tFV_{?V//4B/7+(i7?1/On~֗ RrΌGrqkܰALqԣW|Ɵ?dRt6 η]^zw"CWO:XϓKOg{)~WN'?Wv{{)~ZI;/4t~ VI϶'o_$Z"/OXRp XsǑ/Ig_3t߻n~\z{)~JZoi#j݋r;rR+`R>ʳ&\wזgO~r(Q7?u:ɽ_E'S{f I= Aa<t1vQߛbX׹-."\]R\T[μ:h? +?֍A1gw;,vx- eD׿{QzJLEvA?#h߾HAEsn - _'h"h>h!h*hi }Ov/= /vEFp>뱠\75˾>sF!`8y(+ .=Ɨƹ.*1aX x Rwy%K(¶V +5{E2yc?BA=V UWZf4~#B,]H+Zzxo1O1y*Y5e |6ᵮȲ{ 敡fUiMMю[W6㵈GYふb>Zz1/z (HKY/u62uY?urgJIN>kk|g =~@hGB_4:ʊn` !}ö2X؏2&3CCeXb7c*ɰ~*1G UdX +cnZa}fCJw]Ҽ1mͰsM:z43s萷:o^ƽs`emE˳I{sjm =xqe^Z0Y:3(Nǂά,{Sp׷/dFoe( ޏ+;6O +ؗSWZWiI+(^T技uRߚH5_=ʁ{4~}>QQܗc,黚+v1Jj xᣚ쑔V E?G^cSO'EcSGϱ}WB Q&ܯ؇p# E)>& %ү4}8֢9=փ.v~=%ޜ.\Y(i?29I&ik_6jرzY[(b5?2eWe+~ٯ.<_ +MuQ5$-xxD᫁ߢo"Pj]e4[;V/﫞Gx"ӉVuǚa CүҸ'LS6+'zPtc\/OxDRR;^'_>I1$%?I}LY=x)x#?W$> +x"S/J<!k#B}/x?hx`35HNX?z u/%H|4D<׸G >> /$ȐxmIyH5Odxnis/$Rm1)fۉCI| +|Y|]R>$?|JY~leR>'E%E򤜔Gkߡ$-F~C7 =1Kv9Y6iLYlO<0P~ <=$mA#+6DK|:FNgį~S+2_2rJ +/6z&?Y?QF~b~x@go'ަ"}ģ +_RaO<׀?aCcF~?F~^[/7)Q?1K$0UF~m +o#&O1*gS%F~/Hk^w6GJ</-mߗzPx>7#E>Ue[o %b'GOtcKJGx 3%~ S }1 $~xDgqċx!q~/ +7Is%*XwK/Kx_B$>CKm5H6#׀?as_XR?'Cz_? WI^[<_~G($ܯ臁JxDqU\ {< +I8Q}ԋx@Źw6oxrU{28F~m +F~: +#Wx)FN!|qO0*࣍>ʩ߯xTᓁi'K)b#3%RqEs5D\\5.UOnY}d\O!G?W k )x‡?&ۉG _M\8UԸCz/$Qq/k:eޓSԺd^WH.zvs ++?-oΛ~̳ː/7=Xs{"?*h?kG~q[땩yD>1"1W$3ʽЖ|b>7}]38`£U߃%27W'yVzagG$0!cN##@y%X1a=F8f֙c}T<73'y^ [z|,vмWK߅)'ۓ ׼쵲8^'9쵷fgѧ^CrշE}xճ9S}7=,zWz}t׳Ou}u]oWQz}rW{m9"bld%;r{ ay'bZ|[yDxB"xS?G> K4Nb^[w/K[??2X7K7o-־\o-3pݘ!Z@smI9Gp?Hhߖ6\Ny.qȷ0h}̍?CR%৞]o> :~̗p-ng'>"h/o #h^9m?E%aqKgsmQua&T?]ڏ`?횥>[ }>KW>N/|O|+tͧwTq=&)3P?靸, IY#^kOvo^Eɳ%6/luQyFZTM"%sfiH/"B>g'#N#_tM%}bny'Kǁ\wpx*w=@N9#Xk98r%*''NXe|׸d4Q64u"򵍵nFpgtԳNj]Q6_|9萏BHzW1V逳>w$dXvk~Y8kgNf>v4 5v})i_c?ķP&N<,3,uhayL EiB/MpKhZ>7z*b<+_HDZt|x#K%0xEWOO<(s?+rV5Y;5'~ LdzBKH4tVqV |oKJt;57#ITs'D|b ~bsA9 + cIV#ocߋtA*oX"Cj>gHW*!ֹH2f+'1`ɵgɫuD⌏m=Q?YVϯY-KfgFv@\UOȊ|u/Lqʏᙉx+aTwHJU9mе輻k[}i_;WXW}U";;{$[ßE]wn/"_)Q[|7l T~ྒ oYh7-(/^&b/:l9Nxg#2~}7F]8Rob岵"CA [hϨ{VbD2?C&U?ʀ/Gy?pվL#g1BL߈xfX9 CUBwrT C%k .=ż}kw=vs:yR$"[և\_s+;w;^}O_AKdq}x}??zǫ%?Ļ#O#TL?F]rw^c <F*>}w8%1dI>kUk]u7M>rG??:B8؊w]3 >oƈaOX jzq<ϘU+>[p-WO` n +nψ< + $\2|pVI"u Ra\ v`Dl&=ex|ɳ$0jz?i~KYVd&o bxre$gջ!xe}49~!JyݨS`2_<`O* ky>mrF|KbNߴQN)N|28qhd16qQcB\:=hިHoNiQqr'ƸcQ~#o]?KOr~r6l u{Pׇ +҉B߃>\^01H=S6_5fǫa+/<^?:-`L qu:$Vxm1cRA!(ܒkg8GhNL0f["6tC_rЉvtH+mݾ |_cS(a7!{ak'WsFGXFݥ>n=Brvnh%'?brQb\+^dC{=.@}͘\14, +l"|sK.kQ~G< gn}uUGLV Ho~[+>`wͬB,6F~įC +D1&q: -Cdm"1acX6qo3εǛ^\/iCVC֯e8F=ػ]屬ԁ)bIi3nc;WE'1u(ua\ֆS5o13$D84X7Tsgy2.W1W <|_kC60G8Őid5s=> +Y›\%R6͞{9Ҙ/pCg0~+5}$3E~wzH3tq,kIj\Eҽ9/A|h#}D뛸'kuc"8jr+-TJ[5|%x%tlV+N/{-:0$jl a>ȉhW57~RL0mؗ(o3SQ罣^Q/c ܎3׏c^9EޚH\yd^-˹>VI_0ԟEj-_A;^x{y/v7}."7qٷӼ~ߪqd\)vogO]¾'a]WDH?02 y ezxZc'f(]199}5-E=#>{rO'zEM!judh{ډB޼gwCc=vCޑDLjyɃ|\;c=~˯[~ ޗsq7l[߃c&ŰJ~|zu7%ks!fk;(Ƿ%gclA;>ہ ~+0b91k/e_X)k@;yY]{akXW}]e[Wc/7ᄅv| +2ǝPȁF 3#[Ƣ4k}e\M8U}/N:];wX ה1v9Yv9Bڱ;y1N5r~9?Ls6~m\vo9ׯW.]!Ǻj{ؼe\c &O:hӾ cXq8ſ2G0ނ~q~^q}'#љXQ#\,^Uoރq>A:S8Z[ fqJS<|w"Fv-[Nо}#){O0"i;>x!ƄoN-/(p?]Hz#~j?. {/oVku@^i*ؿ{^-q](E1w?zeíVYcƱcofqEb{'U': g/9&bbK9%gY*y ({S#GI__?c'TaX?|7tjh~%SY _@XGqs><=UORƄ7_H]7'3A31hKGrl>wZnen&>b苮f͗vrFoE#:ooex>u}z]xu + GRj:לK6@=<=xV%(Zd^M&R_:@\F辙O/eyW{c.G'Vy7|2՞ ;}q6XG~ō!Vtwa3_,挞Ŀ|1lKHxڡVŶjF|e=^f/A^yf7@^dK?$ln|KݴL1nXg%-Kп0yGs2Ν:x{+0~=5"nu2!GQb\p/3-΍¸k`dze+~ nɩv@qt-_{͒u `3Vdp~A eݞAd_|t^4<۽1x;F $z z1yaTY?$e,DmG*A ^Kf }|(kB08e"N􈓹.ʦs~O z y~$?GiU/S>~\HbKD-q,1f̕X3G~PF1QKtgfl}c/חacF/gr +|gٜ;'r\c䵘} +r<@!]pw.7~ko¦gj~T?qwvimk+6i!|Yfߎ"/Cw]{z[VmGV>[~2~Qs-ma>T)b~9'iE=o>wcҏgH?ַc؉uf~Ӛ~ ~Og?ozN_i~>QGg|V?_!-ݪzD;v ;zӳ@ /ة(fƣ7~`[Fm]&̒kEbܮ=>wvINµa>;mSviNC_Nihq44v:3+czE@SOCߕCZ/9k爥 l&0O(OJ쯽麭J{:9h/ Hz[q}wwJ> kq~R} +Um6?_vxZaqe+ѕӾ=hg\a{~_qyrƀ^iιѓ?PbQmwN{5O9ƕhʀ:DtmO+}}-e)ĵ,{3H', Cgq}c*yT"N ߶'Nn}miwsrG/r8r+wA\8_!_vA}6Kjw̏B3vC&q8i=ѻ:x}i;rg:v>QﳌS|Wˎ}-2n9zK>Kn]Lxg:#&6C`> X`6ϧr?!/-St!?S#Z#[ Җ۵-/r<4r5bzt~sTg߁2(jmmNzJzG\K::\PqJ&/F[6˵KO|!οy֯a>ɵn V5%&>X/2+CGNᇖGe=k7rh(ri # x,ֈR[t~mϿ7sO}DR_:~\LeuږY7r|hSڿ;l{2_Kwgb;Q׃칙'zöql.Wg&W(SD_&з,1V;+o|3}am+ZSDם.ǝiΠ;qgǺꟉ5 Fkչr^9dӓ*oG='3MͺTyvIU +59vrJ̞{{ ?'|>kd?m3,]:~8u OPuRdg ^N t,/j>wȻycA#Îv*cZQ5K?\4;>_&J /:Y0#`o;hiF0NljVƀ/'h] H(MDI=mٽDHP6P!l7@MFRv1<~`3:#ice97?]~kgT&oϞĘ&gTqS8e%┇MrpqJ} 'g K?N,spX|ɶFﺏtt{8܃8kǺ2 of])[=‡Hƅi>|1 :.DkPR|t_ΏS7<]t Qpot|jS-R/:9Ҧ4Gr&#T<=Ⱥ7MjESg>_x߽b}j։9ƛ3\?1]lyKELs4# +dqaoY+ Z[s=VqZgW@DWs,f>(ksʘwxӟ7iƊ#joAIqHmܻ}|ѽϱ Ɖs%[ mIb9lH(:8SBNOQb*,+',5V++!/Ū]ɯ7^)7>.Q0|՞< V}h #|TCP܏BC*E1r|y看w2:wXU։yYζME]MGL35UWo\g$>T:3/|6zxFŒׂn_nKpENaO8mvR-:omZl6v= zk䩌 r&_컨Wg闚 }r?AO?GW>{C;_ܭirt`~r!\3M9ԇhy+Z&uno7?FZh~0zX(xq*d88q~>!< +kŇWxa< C Aů@,yVX +=~ų@BYceE,l"wAJgMt~u<8 ÌނKq͙:拞e^2ilwo2:یwq7K!>4yMsvb z:>eï?3u83Y߁guߦvidL.eYށ,')Yks|~cꀵ>qv ʠ}m+3yk 's?8"u[ &2~!omxKp5([nYO\/VuoQo=Z?s⭇֋+ ~&e>^>Q>$3ݿ?ݯ}+oIxkxWv[g[ۿxk[K_;~>;~xS^s_;n㭇֩_]찍ϲWîxK>U;rN?#V%G3ro`S_U{M^W_U{HM5aO5t!Yx vIīC1,ފ1gb&獣ªG{}cKQKܻz|j*Xú4;~ĝX7wzcN'6fwjDW8Xw?|8928` Ns3gDg#rC\2A=>E'=&ămԥ/Q~MCC؟ yA?)DcѾ1pz7|EǗ_XXdaV'ʏ+/vM[9`SG+>y@!ǣ^A ;/ϕ&va9vΑB#=h qf雀D>WWحJZ? QsOho%פּhc"r_A,C,}Mvu9Mu?Ÿؘ1}īh_-| %s_IK|DOzf^r6r^kF~~/j^$Іm?L_%ǜzk؂lmG^ۄ6Ys=}w)C7<:~{+w Cf~<,Ծ=)_fg9pnm>[$çy*~yE}*:>[.im:.*c"{B7h|:R-}*x,Ҍ8#YpNJyc7nD15k1_ ᳞j L!;C=±t6׳m4Ծ73xaw'|!y?Z`݈6mXנ-ԋ^5[V5'b|.;Z*9|>bG4MB<<+w8y\o^W >+ ݗ݂iCЌ6ӽ cP}}nAǕмeyUw/;~Xs|Oq +ya6bȴ]9B_,ιNGڽvx_нtOɄ}._ ?a}4(k+Ӿ*}g}e.7;!׳a\ KtXmgv*nk@_X;&+u#Ftճuӄ\d>\e%W73֢b,έr_g\盹kz hB<ӾX~~F|#.0v=Շ}LQ 4r&EĘBԇP{ =̪]*#M["Z;Z?aI!h+~&z*|t#j]ڥ梦a_͎o}5<6qs_1Bo/5yL'x1[|7gv>! @:7!o]|ע?V0~ρts-U_r<95-ǟ '"SEYLKLsE>вa.Sf'+rSF.'oNoI.>eHQjK3Ŀ+c*.XhڣY3;~Z={8G. 3;s{?Uwνs\h^1o"^gO_ο">|^;ۥ1>Mxk=ꌨl.nљN}y8y8Ƽ|#>x@!j6b}yW ױ\k*ys6$eH?IMQr_M_.D[W(_Wqncnfs.s-r''ĚOßN>ڧi^L,D"}[UlAؽuVc,#?9b/;L[.8G;Uj+*>v}17-\%!؎@쵊#G33{47~ɋe 9N+wLX)ھl8LeS/rNu^|N}Fߋ}}; +{4+>Gi`}$OԷ;aDjm=:^>s8R>z^(#TEz˱D+YsMgdޥ=!~~W~W~WT]9߹$ OzI:(7ee==a a\=?c'7vR*>=gi>ߠ7bgw0&˵Q~sw"uwj(Yazv|||J+9o;ҞOظ#i_o/4]P//G{w= o3b#֦E_$Z/`A[(爵(1^F|$Zv#H"}"-/YnO>ߡ=?@Fԟ{_m퐥+w9fQû<賔󻖢 zTݖ1)摶ŒȎy/Z)bw-D[6e}܆ VE|֙ 6r\|}8}[vD!w"i[z@'S?p}. |2wҮ/ֿk*~'sLʋXbgrl +`lk=Ʈ/9=zl=syobL>Aw-˜Buށ~i^k^?ܕW{,s`ݔcf7d'||ګDK>MQX7z&b@[?PsxIZ9Aij7s&/ߞ}w9n=' uOgz_EMg.Bds(zBj\"o"8A&76([B=wD_7}Ώ<wvxOk~z)7c/+!ϟ0)nKd܀|%BT7iY#,c +n?kGv<FZzL;L\ wD|ʯl;â BRA7tƱ[^tgۈ2p~7`ڂg~7c9)qGhO&tg͐UG޿/ϗϺwzGeC63<;ynXY k?s:T5^X'T$Ao|%Љv*B S3"m!p Q$dA?gw8S|?̏?ECEۘy'z^s<;#O([yͲ^5PN=qX1ǷHό ˈޙg5Ϙ3:{lw'ú8&_g;y>gփ6x{{nkS]L;{xyx3]K#6LmͲn+}SzC_q(knil_-{Ŋþ% 1^طW7]=e{PܸrZ /φuѯ[>co +GSp^A#xǾb9Ul9{~l|$?γ)eZZW.? h?C~e+~xn:d<3wz<>u;(nyGy9 LWDg_]_'b B28vG(GpY?y=!}Zhk~/sw:b@3; OD )<&da#ۆy+ѷ4s\yXD 4Z?f }}cD+ft>sGgtwOͦsab|YCI\Y!q~s{aOxu↿#߭lx|b=fT磝|~~?y01nGS6ooUe:AOε^Է/VҁKha䷻39 Eg 1.--㻗c\oD{ wW(*:^}:{t@"l8`G}# ^Ҿʼn;GzhcXa\1jȨzĚzmH5[9ƎOX/x仱#\˜ǓO<dz9w.|W! :t +! >}Eu8G1:?:~M_\?: rhԺ)ML"~IJ7k^,ΠMx/2{j|6kܷeަ`SbɵabT W6 _5ߕaY1gnXx.8̬Jtґf?p5c^BXAA>~GkPxׯż^C7w޻i7;y9 8;7t8A}kp}vQ+srZr-y5-ɹk#J=Tlr}U}'+y5i^~+y75mDNqշ>h{ߥd˘bW!o6 QOACW vκaL4r%ۉcwݰoG>羾>7|Z/}k ^|[{D+ϚzϷv=Go;{i_4"S.Tjm/+q _+}Y~MUiwMң|~zhO}9q-e3_ۯm ;ź߱sۺ_-"M8^tq'kˆw]Žm¸>(xu@O|{0ۊU3''GZ'7AI}Ȅ1Iw>3Jr%:sR\miMB}m qxXwx;HϹ{ ߫mpX/団 wOc:Ͼد%c ҷn"7}3,|xwkN!m H<; +,w5k3+GFK%o•)yÉ~sKrҞ}WΏw8.w5G'1'uu;)cݎqݎf[;y]|$}, jrr8uZ%f9}W'ozq!l{Co_DAd_3.yv+ci,ʘS>#?o㱖9(6O/V[ZrgFv-O ܙ ځKsKܰ|G>x<"X?BKfoߠD-7m&9o@N &w8^"gd2HݪSNi4 bueǠ#'s{f8~9›.[ >:aTlrQp<6&6bd?C=~ eˋ4@koY ǩk/҃kw˸4#}͆mgC֗;ރ'ӷ{GT<%e߻U?:|9뇺?E?~C!U#@lD[r|z_1-~O_{rd6 gZy֠GD>3xƩL߃r];@ چʷn"U[ɋr*+|j †\;.!~|{ v˹Աg&ݓvTtG[ݟ~ ~-7@F s?=X{ڹ2{ i#t{_M{>hO]7,όц[=SmZ61ŮJbttqc O>LUEN{2{`;tzm1˼6{j'}%?u~4ؤI 9Ÿ9pO~X%΂|,Κ_Ίw +q(cF;.ς6:5`7>5৉ ˽zžtƊE/_bQ4$6i/3`W|V==%X?<~'xR,zߴMU65=2mSA:]l׿~v3_&!G!( kOyK;ڵ 㨳6 ]mhWP(>3qjW>.ߛ>,wO П@ԁN_t +.BؖK1Bzx6ĐvzY?Z*h)|<"zdcT{=o ڛuEy6{6h(ؾlz lg骍'lQCj{?WЉqqΒ h6yAGm@{^~Ss~'Zw0c2ڔ1>+|YnV񅳿=_9Q(ۜsҝw| zηwPϞ=xZ7~>7xZŅilҌ4GRsyH߮i|HNTBNN@?WzyfA<-}w }jݝ<ޯ*7 p Jgx8C( q$/Ϙ~]p|7,]F?E&Zo|/=9 hٌNC_xt𽿣?cyyEnp}e. ~,pW}exe]U_0KVU6ku s‹o:K*Kʯ*G֚Uu :!\se s7$;}uMմyq/ʪkϞn+vfU ZFAGtgpoNee -@SW"ݜ}|A+[PU7JԣFWͯuAUKϽ%$+aeIrEխ 0fYuP-Pu٭ ,k+dKQU HnlX0 bmj³ `)ի/_xQLoh_lV_SU^k xC]z,T5&W֢͛/+Rqv|4~'O|aUSJj߫‹ ɦN]!X fTM\>oARIW뼬.-QρBMRFTV5VMW=Θe&|I"ϼu~ jyƆ2[W[y>V54ke>2ÂlE&hHX/VWIj.L[8kVUv=}1/ӝ/;D/Vv}U9 ztzx +tE:MSzqKuCg1D#>)G@'4B]P>qWxauըw:4։9Ӯ|Փ(1k.'L&g(/y3k+:UkuUϟU_ w7. O;Zy$NT[7/C(0 C-sf"puCYէ)קRP>z>䪮tƐ2qނV|pߠI*Asf6J堐\WjJu _  DʯuI |^xvU/y)XUDrW*'{\]g!nfaԲ|N<^zz*FSq՟օI?ⳝ{,bdO/W* m['RtCGhP@BЁ²4Q;[uI@)' xo肫pfzl2JbnRJPRIO".S6$pU㥦}AQwL_?kTplhpܧs]Uw ATzYIZՠ.k_ɮ"LVU*y>NiJ]]mݴK7uz]#oW5ف)è@x.ZU~̪EgG%r)spYb*]^+.'ܪ)_J?b8T>D5)5qڜn4|dUI3J8dWzC5eL,FJKEy]:̂%HMA/tA s)}5OzgWC7۩S._P-$bzOrcB +Q? tF$03zMNgΔ#gzqY: 4u jy|QjPU{&?rFM`؜y+Ԕҹtsk?2Kk@wA {&^QW%$UeH.Eƣ^Qr.;衅Yʙdא9Hꊪ*XK*U geNuO^0 Un%ZV5z1oZаvToDh*c|,j COixd!{ 51QbPQ~sªݥ:{_?+՛sJ,?Qj)N\Q3PSo*:0ڛvW*Mi)*[U|( +Zj,b/i1K. ___Wg^ qgZi8X%YjsQeBoșLP~Ҙ0e)~DfWUKL:wБgZW)|rUѦS-hrߙVQrFUCi댑t +:er%br,G2>C&9pa&Ѓ0/9yh'&Ѧe*2JynſҚjյz1ߴZ*m2ĴyPB=G2SSq5&iR=afU/Q$Jt|=2y5=BP9=Pv.NsIߢ4rXH(EǹŅ9(@.8Va/~.H9 cfM[USeBc:1fI;#YÏ*=t@rHKNv1;\LhKZU}|-s]Vz/jE G҈Zj4ETy*‘Ӥr,\?7i)*MعVQׁqTEED%&ӫ%M`2h3Cl2ͲTbڪfP'8O{sAW!|Ej.W/|k :H6]2!Oc7LϕWإ:7 r5C)Y1?O^/w>SUԈYǓtꪪzI(\K4r7)dֻNrz+YotN'ɯW2]M#fcNS`SW;w=ם O`p7#)CC]x~,Q1㨺\r@Oz3\~t>3͜^K$-Ir<~`I +^~5ƶ%zL777V1\˽kt+ f#+O#.52djΓNW:Τz,3k C9I8E*T4Ĩtec]ݱnD{cWVN8ei+!dtzՐzc_#ϞȜjUTQ^)pLKZem]\'[Ѐ~AʙZV\t=!c[s9I#YL3`"1ye1dIH4UC4ۯ +pC5+q[DI,5ubٖ&ޥ:~~91Z9%emx>Lͱ 31G [\Ï +"4E^?B}]Y@;:>G5hg~ qd|TƦBỳ`Php)c㠇AWCg 4 v'BAA'Aϓ> , $o(zh&h h#h/u;pqfh+AׁKB㄃^/~ AKCӄo2!t,z4sc(4@(t> +UvvfVBAKRy4ͬBy|36#^a4XA ԆBUUփvv= +Z5ʿ +Xy$.tн٠GA@'A@e /ЅOB(ϫ'h>8h hg+.vY(% +v?%(yNNv +cS_ +P2aP`OaK-.qOrm]PhMp +Ճu=>F@ׁւNvVFm +e>ޏzF9pG+ ~|AkAG^C9*A|&}%({~AD"㠻@l1};:W( _QC?M>=Phz(;ʥ'/Y xj#3;ȸ>SC.['| |7]S#d4>#"T ; 0'SoѽϴK2:7%7~'Ϝ'/3§7ߍqIQ!Ði!SϹ?ߓԛXܟ Nz&OBi"Dh?aNOzHCOQحn;vok1uaڤbQF@R⋨ː/|eUg$Ls6ա7j_c0M}I=r~/?q)}g O'E .|:awSwt kT8@f28}1Z( A*㔌ޟ; v=]Ny7\OZIM9mðz˨vy|؏b2{>[Qg7r߰ƿ.MTϣIša/ՍGԍ +W*hm@ܙ'WF"I^`D'z{ >>`4sRM*;UAb"&~p +0LkOjfu#ߧQi>v>UT?mב)cߒח\׻/E -}ǭYmlZ{}'Vo-6?17tF։q\ux}a* n#,#u@NU\O/f[(~*!^d+i^|fqt)Mq6 1;yώcKmemFd<74fwߛғkc6Ξ?FB)cwsLOQ{RoІA<|!XC|an<8]/8~qR 5/^ӾtWD7yLх?;d&>(qRta$2GO1 >ړH 쳑cΓT*'z*YLL9Skp``&-X `Է"׈ρ$!w/: L5=Ίo5qRdQ\fU`Bōۛ ZBc ,u=2(76I2e 9;,?4l +i;D{U FWtQ߹,xyx(OOTyqr. +knF&E? ^|ijG8烟Q"pXۜ:ctc .V=?2YÞ^C>e\wMnO zn_S8iy$8*}|6C}L&߇ws6bjdjUC&)M*c{ 42m .i,׳z $ZNNxN&ϜRƉK@R=WF(:bo(Ko\'j+%4`w$LT3j +lz} +C!:b>F-0'_S>ʁvW2o:bNͷ[>V`@keJz0<SJkXj0ѰD^&I}Hg;=Fs}d{:>i?ZˡۜفPf*_ kvBvdES:9A&nH=#/su+&/[^wNyQIki?fYwns&ӧh'4TEy961w':{Ώcn8wYwJP/`i9`Yͽ3yC :_p+yZ$v۽{ [yϹ3r9wisMKF) ؇~ uVȩa+ڃZga ғ>UbJt:OEuNlX#bCxΚ V>6," 1k c^'iޔBAtaľ +1jJ ۧ i:ǠJ}{65!~$=~uj4藻 aOeq;SXdy3<=z_ܷWIyE42ؚšQ?eH*'*1CZe\?>aJdvGkj:ow n\]/V:e Ӽ UQo;xc[*^}iR7G/:H59u|n/>gje/Gtqt)ɯҭ7V^G ;:)zƾE {/[P4Ciklƿ]Ԗ9/3tzi',[G4B X,{bTZ + +n I.Oyߗ4dtKaaor۹Osl͢d? M)y3S}c E;䰽@ۊ3x{[:9/g P9е6q[n+:(VQgv]m< +|=:Fen'6#P&cOracWs=νkRw,j mp眵._g\XP6t-|Lȍ0lxyJ5}RmYYqRmqS +wg);VGw&|𙿈\sDkG Oh&`R +-0N=*y>uv0;lʠc ̽vf:ؤuN;k7lnv9؄ݼf6lV{r70q<`MK홓66mHjj5 +>~X4b3&2IѸv0l0'q;L!;-T_6Z.db59 Ngad]ŕ3_w噗ݬ7oE73w%n6o7l<y7ZF2s͆-9fSYf27;˗̬`awC|Qe@2W S͚ۤ3TF.QI켉̊$֕xA* Ko*v%AT9Y9 uʚHr~5H 'T<ОOKH0'8Ds6HfY9TT5nhgd +_ןNÜQuU&6  s ڎbULPQa:tS7iJD{^6uASQ?Él'e:Yf.vEwnqU}o7Bu94FiMA6%7IO'>Lf49٨Dv\7Ȧ&RnsZ/|J  +"i$y5 HY0$?*L,gT%OϷʕM]99YYٟٜgsso-^mYyY9wv^vcYmm՛YVSs{]֦ɟmengh綝moGԣu&cZY˲:ct˪k[#8nm)ld\$~s8IJ61z(;=!5 Xjc\؊,qZKQ%5AL&bPj~SSNtl(}591•/UJѫ q~"E$Wr21OoI⧏5tΚp[E|k-?ǘJ^ߊas(PEJaqgT-ddTkb-9t< UzcuJiL륞iYL{Ew%{-d͢z忀$,Z6 u &ֺ}kAԗJʿt}J_o5^Q&WR^OK\%1QJ_se Y0*J_,ڿZ/wEomߓORG-Y JJ'= 4ZR,צ;[kZv玺ֶ;S><az}V$IH+VJy+Yvފe++i{ǝ4 4lX\vz Bimn,Q-5}T]TfhDc9ի$FG?;ef3? [j붸66n( 8s)1u\̝≓ͭf j{bN9ziscaq`CYf}p9]HCw@j*uzӪUu2oye TS!U(\y|6>@TZHw9_@ 4lQ'|I_i n"W?y9?D^v~?Gzp]͈&QkIKD-沖ETzkT\?%>%[!GGI%W$ULE:OjZQN-{. ~c\I +*eŤ֓x墨*Uҡ=!?>WW?ᛊ[;~_xr$TlX@m:Pq_b tTԃ^YƲ ~e@{Ce#qD5ZضmNmu68E5Ojl^Z D?gYa6ֵf/L&G^c+^Id(ټpҚ(OI`5egT|~{C*vzn@k]c]u^ޞRZ6x 9m@umm07JYf{SZ +7VF{ohrߗ +4.s< fhH<1a nrb0ϙ[Tmk_(E[B-j!1n5"G c54!7ck + LաʣZFkDU๓RC]Pr1GS++$'ʖv Hc/*w|ꍾHuFjnkBy<< [sd+8N|$oJ'Wyp=ܰ#'gSI \bo/.zQ+0{sr=m5hv1ߢ!yke 1W[%sbC502QcTcҐܪ ݭސ\ZvcF)X]B:oH88xdӈ J}ESشWJ$~s5{ҤEZP} oxʵm.src/1Xr!yk 76oLЀJzi^WUuZov8{v:ڰCGpZ 0^$d=M;n^W]ɑn6Hxn1TՋ{?Xʵcg_ڰ bS946R`LT9y|Y]WhCK鶖"h\{EO픫Z";XWd-'~F\q5l#]9fR/~ȣJ(/75_|D~V[g[ʓOl̎?ԇ쐱ȟ@,A;f;$tW/d,Q;j4>W"ѷ`nMknٙBWY@/\?!CO`ߕoۙWT?;`?Xm_Ml?o=@VCJٽeҔw:m/ >%q&(|\IOt - ><$ˊKL >*q|O+AKA+-䫬-hH@^?#vYqw[A =A[y^lڂ$dLReW <ۂIm3$_b[|ϔ|Wq&wЂwv2lG=lg}ɫӆE,үU9Y$W#΋N+QYq~*?+ک?yBb44 !˙VQp9ԥ*J#N)PiT{4f pStkr {5|Jë5|ZӌY $<ڎJN=ᦆiq Wr\ս&5\?e pu%Y W`.o)IX_wpzJ. )pBl WVRrk~oED=4\kJR=4\ޚS{8)h~ B4So. Iû5|j5|Xo UG5q ]ÏkxOj\Z4z?jgioprW(%ixkxgh[piF)S×ix[Whx=Y*hJ /U^wix߭~hxwhG;5ܫ]n kn k8C /Q /^cF5|4|R7hii?~39?Q4\5S)C7M*4A 4<[ڭkx?%9 /p-JTjxӽ*}e?; j16,jne)Q~8"7i~Ʒ^wP,gɿ?O#ȿƿD5e_%O5~7__%"ɿ$M&M5{_HG 9S_ϒk;E%___koȿ3ɿۊox'xƧ߬ ?ׁw4&2B53_ȿ_N5~{ȿ{_D5~ _7k#_#a~k_ȿƷA5)ϒ_"ɿk|?_N5 o6 v#Q .f|5x]> #aإG!]݄ P|I^c^/}u8AdF5G"3|O?J}={.w]Dn^T]~ +]"FĘ~7-x!*N!n;#bp\\F{Tn{bT|EE,o,`tȭX䄽cAE{F25^6Hh{;-8M^lW` R}mj {Fޔ-gOw՞#{KWlWe~m7l/^ޔ=*/h{Y /h{4/wޔ|_SV{ ^~JN&?_Gp/h{Zu:yE;c{{|v7O<%@y&ZCzNzJd:tKȸ޹nzRUs)+9'J~v9MM(IIozm,pIgvw?n݃\v?nn7d69u*WIIo^B~|C^΢VyU4MYTyҫu[wrKvP02h$H'#JHF: MH+.@:Bg"mDZt H"t9ҙH@z)VӑDz9ҹHF+G:H"}i=mHt'Bڀt/қv#]tRA30#7"w B~nP~[1:RΟ bzv sJ9kv-s%Gʗuy2*ާlHk,Fɮ.a>pV\c:Jf^a>E IyhdgI .#ݖU5-{vk0jS5Z| nx}O˭s7֖.̃5gz =)ryv`tA;{Zߒ= +^֘>E60Bw s7@q:w@^{R ibݕ_{QzS?Tkfc^Gɔa G՘nP=b&6d(1ZvN">K&)Ϟ.u)zm{:A=J>&QvàXS1̶j 0Lv5w性+Jal}5>_Jȡqs0_;<6<0q ɞar2A>壐a20|K9/g_al`e7zg }8iXrs Zl5w>M+ ;|0bW[cd\ŸVW{zHgS(\֝ Υ @=x>A{Fz{{$wkĿkK jGjFo/7{G?däL;\t|XMu+xrM'i|F_Jv 1m@UR?KV?&tb=E|e& b`#VP|e@Cr-cեl炻ɍl={X6#O֋gggl ~ȗ$T%^-xE]~k3BYn*U3dHB\xvK_6c:ƻx^X bTXUL$d=q(D7(;ooeJcѾZ64?ukU/c]+j㛄Wb-lH@00l75v15Y*#Ųr޻NzǪ#.''/^# ҫiz;mak:=ָEbnzIPs[B%?'B>礷M/꓇Q~9z>gnr=WnzgҫwҫwKȭnzF|Z.wӋgHonz\Fz]Nz3y2w^$OFrx7=/Ws;M//Vs+vKJ~NzD^E(Ss;eыo+9u*%?^g _Us ^r@Io1P~^Io^t;7= 9FI!7 Y^b猓K7=1X +%?g7`K9⦗,?Iz޿C䛤?uӋ ^u7,hz 哤?Brhz7J~Nzg"J~Nznz"y7DSIM*oUsu~J~NzG3UX*9:3UX(y:]=L^*ůDIU7py%O'rBү^X)9:rJ~8R7P*9M/Q"R~Nz ÃލnzR 4nzLMz^M([H/}@ӻMH/}@'7= ~Al\rE*5H.EH{Dzr)#B;EH#-G(bnCW=:٣chD i-R]Dz9.s[G!G1 3bX[T AYZtİv_'̽;t̮Uӊa18R1ɣbI̕ڠK[cXWA0%L7Vr 4O۳WwLC:Ŏa-S1;1+ cu%xYwa%wZ1L u?-v}WŰ$wY1Ku Z>W-0UOl1oڊam :bX{fCn1cbu,wa ^Űv310IJst f`gЬ%~9d +T͙Fs;hNgV1KXY:u641 GX1,?*cXİ*H3ZV1˴1"İV15e21<31,/~8xgǰn.rʳx>_5;ZKlѱPU:vU +bgh0Psƚaܪ$4˾ck w?+kĽlՊ3:hxǓA.[y{vدd@.>7[gL=h:F+h6`;#8h^Q~*ZO^,J7h~yk:v5fk{%h^.#2eq%>g\~~nŕ3SڡQ#JEyoa15X?s!R`]!fNB۫&x҆l_,_m}|ncM6ld + :Yϊr.MBiLw(Oɿ}=O2_6ygYƌΫ͑3s9D,Q]ŅH4=]\^ /Fi,=Knz̏iz_璞:K{MO\(Ǔ:Kqjr%gܔ+~)W/w{ڦ+t7ꓷ?ufoNWdΠ3q~m4sϬryr\$G*ט'uKH=rNȕ̓ve#Rg 2\r:_Psg^P礷MOJ%?'߸酊d% %?'{ңw>WibYuxFw>I*"}]^ӽk|z._EN71LA,=CwfSgzWE 3.qKkIOg]/:KЛ*J<Л覇}/rM_"Qs+s ȟ*9 vKJ~Nz^7=^ICHއr=Q&EIoQ&(9Cm7h]N/HIoZGwH)wry&UgvWi*d:}M/Q!IOgM?B!.'enzأHXN]')M`kAӋk ٫q; *$PUA:틱sN\cGʘυ6اa'\4?Ί8ZmϨ؋ߧ* +K*f38hsL#Rw%pcʃfNw(-V4_| k򼦩}0}h8CUB>] P˅ØίC:`, +-(Ta ?Wxh]w0 j u +H|zBטQ6Jߌjm> xG6 I|p[ |G~x~ "HK#Cu:W?BC= +Wzeċ }K6|ti2: TQʙį|Le?rGlV,)╁i,iV>1qWS:@8MN5vcd%vGy>U~7~dy~Y'~ 'L|5f zg#=bh^|K28G| -;Q)ޠقwhc|euZeBy:CrW#ߊ|U\k|>׊ UPfMc^y<=>UfT3Qܝ3LDIJJyUjթQ=v;5Q~l \hS%0i7T_rߨ?v=,l˻Hk iiqe3D@.F{AmF@LZ:ѤlM\sfǣ-*,:0oD/BDvGt{uUⵕwS!/jfb\یo_E S`u߯`xP}yo_v7Lh;dŠmh8i5ST6eaKYZM @6eau߰YS! }2daSG8NL|eagv6Xߧz5 }`2|uA%h|eQv |zuD-=l@Ra%clO@Bi,U>EC2k^* d$rh'}2o UɎchXvV4[lKLoWcL%~õo 4_|/"7›'4Us-|jw¿ -Cwx<+vmi|`ϪyrMjB):{r |->`?_~~i|$3\ 5^:-Ob ' b"I{fU( {Zxx*OpBܴwg)˳Wt=6ף;,<@< WæO)<U _Dܟ'›'5|SA'Ot ?|m|}uR]ܯŠ,NA-| 4w +}i'4~O?A + Sr#i6pT5^4OEXm9j |Ϳ(Q6#kO,뻀2- |iZ>ڏ<#-B7_k?/Hˇh_ߘh8|HGW7OEGu~Oh2bO/~ͿjlG5~Kmϝb{Y6s'aI<'"gk|UqPxOqeA_  ExRf/ ]_pOUx',<@x?7|l7L>xBUϵ'ϴW5^tQo +Ҧ/]>BXG'4 o?>L<ԏ{,< O?n{*$}›'4:. @ܯW;G4S7ąG|?G 폮xTqlUڿ|E_?qmlWo''ia L.#7lί10L/F<ļg3f:qֿé{9eٳ̹dYwHu.9j٥ǺC|dOv]!y;Sܪ[/r(*ィP+[49Ͳ;h;8g#|6͆Gol=rbv}o +)BLg mąr??!6W]-8xђ (߉5fT]ouWg0A#Tc0lnYlqPa m/1h/x>Q xv;|6`9 _ w7yM[AwS}0(}E{T=ȑ|r~Dz1ߥ Ow,}쯿7]}VewuȻvڝ*>04mʇtVHi^hEkѶۤz(ڎ-xRag_@Ѧ)2狶$OA&Ge`,)#g +g܈7c|HTY|;0j)5(9׀2kTC^M AGWQ 7*|T|Gėo&?OYxCZڿzvSzܨ#G,>nW.>u;%qǶxG?oGg.9>ou?⏼lvTf]7]蓖_my_X89Y $ۿڿCw<}Ұ׎εY赃؂畮V}SH;;0xNbpՇ>TS⯣Rp,߀2/*i/?UX|yڱ\Ie[El@9^]u`{yRQ$Ɓ;^Ŀ<ؚt7~B YHc$kQ?02iHtxVɷPkOy߁ĸ>帮|=q[Yh@%|icúI|d +!l|_z >4m(dC^%;٠}ھQVzGYn-5Sƽ59y9%5ܼ] C޼L^u9w|Z1.F_~Qni +#  yOC]i2bD'9c~nj_(Gl,]zWNj0 v`*Wk?:R?0O5z!۶'\}+Q2yVɤ$JQòNt0K&q[}~靬¯u rD4>4JW + uW<MwRȾsN~C8nOMOEߍt86x+v_> 4?^R9>>CGR諰~+zQ^ ʁs~}ZM`/>Az#.)wX8_sNq1uʛElJ=ʡ¬9'VixfT։u!! =VXW޿.?%T?7{ϓ]J⻗Ǻs2|x \d0b\yXcy @4kty .\203Yy dd1&Cosby3%ۈLU]}ZR|P >7UY9 {_4^U!̱;灿yyX79#8_Qlꯗ[!ZX7ιgYE_Q9Q|4=E QOYt[ +1y56.l3@.Q1:jb.9L|&SBL]mvߣȰ7NQ.\`9.oD9sӭX"N^>$W\ȹr$֯IMgX|qrÄK0ٷ[YFV (wG~r}le8V(ܯoq,M%]m|Xoyn0sGVﮆ +o7 Eǯj<"dWvCQ224\ZP& +_C*>:#k\Ȑ6 )u-W3sެ-fowMM{ +([򷭳;uwBm1u 6mMs`mH6[}idymLƾ=j(ٯHj_OXLy>SHwŧsnLjpa`_r]XW3xǝC@ua +oШO_`l(_+:}yг;WcZ)?WWoacIedj;0iD_s_9j߳BH}͢"~0q|1%'G|mu8(Bs[0C,ߕZ9_my]L/riX{2JbMIy=zm nBIVu%og,_ga Ahxh1o>wr-Jk>{x@PGſ6[t,Q}{}"ݵ Ա7З+"C":3GӴ2#2[}~HjΕhO1'o@&`¶J}-3Se; ƚ؏Ȃ?>O9i_)}:_:qF%p1{|L?<d-QBSY Gc|gooT(*7W{|Vc:u/ĔP' a'3ƈek{:~ɲj|G;7ǿl_{t|*~7YenBhgn:}eYwlg:7RR;og]>g[? אaK?"VLge`o4%dMezYc3}l6aKFe@>aKzfe{@2osO?{`dڕ%N$ dssA+ʹ=qn8\qUۚ;fϵD=Xͬy?_s]?Ow{<ߙG9w<6qPV͏+(xoTf~P'+9]7gm +GfrزtYzr<*H sCt+W ;yc3~aO?k?Ϧ=q^j< G[v;y0 ;3wUfƮ&9[B;:΋ oͽTj*{ޡƺZ< <={WL=ϧf@>iy{LoyIz䘇q 4w:tmٺ}GO'o;"@=͋G95==8ъMԮnXLY.y^&N]O%={Sq#NAOZOkirRZOLOK>]Oå.Y}ydpȻ~(8xL6r=ǿmdWL\`yΗ:1(#e}? W[RYg:rnZ;_։)Wp=z~ mVosxx NMЙm*ݽl6yI}?~UV;8$NN53`ӏݛrһl{{O7o[;Wzwcyzv6^?D[e].a^sjv[ tދJy + ')X>kn"WN+O+G|?k3=ofͯGͯY˘_̯ .)k~/"_~ީ\?㩶RLE iEw>+&Igy%yWH +9\Wm7*ys!mkuЊωcqҁ e;%:Tgesrٽ]뛝N3}FK{^8/9?bJƥg ZT[ eij](NE81y +~>)N$؟N?։GnBbu:AňmE^jBZ/_/BRuĹ7|?CYZֳі/5YMOe){ޠGOiϣড়6(o)M+) +Ɓ?9ydh`F?(A9YcOmN>hIc\ZD'W:gzdx(OG̾?gO RV~C[o9jhoL;COo'i7>Xø~}mP)}~)e3G}< 3?Rg~}T#SNV.qLϙ=K;Ѿ*\wx~Ƴ$oTJ6Owo#GL 9Q*ן)zdu>ge˰wxDZ<>xjy+3 [r\6 Y֧|=l(h( _$~VT*nі^+^++!ۗg\ǕE}z96C sסrb}z>^~#Cym˅Oч&w#iZ6 +>Coo8~ص9b㠽K_"~hG_Nab۷4~vSi>^g[s]m;d6J$ڣ){i5}rvѵXWwuypr}:-mOD)[ߺxk9~oIBkߚH}ռ;SUnu}?{C?|}Zox϶dR۳-?l:-T˷ߊPnom9Uԫ}r*53٧OV-5/O[#N{,:}*q?1?8!׋ +*d}+Woѱbo&T!5kz5 ʅWW/;izN)☇z1b+N}(rVB1@hWҡV:JiuVzbTZ^ar< `y7Oo:h+~CdƖ̾ڏIyW^TnK>BKa\oGx#)/S{Rmϗ}Ǟ{5&5&pO:&?U7;nzL~h%?+yoyo;~-oޞwJxվ߬{:ny@r{xg8]17߰|]eBcγ_U e-7v~Otzg+Tl 1]ƲHGZҽ=WhcB}>-+9X|'Z= b~%TA m7z Of>KewkK;l};c^%ʼc< dcAߒ c޲nG: [׆w<`L /[5h޽H2_ڷy\O-.c*_޷x HhЭA#fHZZ~s->o.|/ҫ[Y3#|oykC煯;!a>ZJյyMY })uU YcV*> )x"gnWmzw5>s}QsKA>Gheۡ +ftK?t-͵9(*$0GuoqAI6{uo{9~AC1f͗XjӁ|KU@@Oa5)v=/2w'b>OC߆S^{qڏ)1LͪW2TJǪD)y8,3 LKgQHS6ːe+z/j9/oy2^eqE徉r sXwoWmg|l;8Pz~ns-?/:3Tw<ɋ1,ްgL'MP+ s,:<]z]7*;RNww&t,|MM~Y۬{,/ljl^vx"t{ڥI~7~(ʖ(+,|q/Vz>Í 3z;ǹV!j]T,_|KxXw<5x9c<=xjGNz<@aq/^\g/czb;} u,N_hX*^˟g/H}t>OgD'xǚm~7ܼ%=ݔ~cm+w=U<jo] ̇ AWay\i{}~x?IҶAq>纾<{`VBxƇ Ez&`& oڦ<%-S}UvƧy'9C/ee ]>G}'c#}x-"Xy'%DЍ59_߀nLo\lj.lFQsO߀Xz\,7YeQss#c-Iʈɞwy<\ھl4>2-gwsfg߿wDHLgRn8Tj3N.+OYNgʿCS>M~9/y?ٖ9踏G'2gŔYf͓{2j3Fiٞ~y¼|\~Rݕ ]g*g;M^ُ#Jrh:E94Yrh$9\jˁ,G`9,9E9SrkqF6h^W`owt&3PanSRz/ϩSVxb'{y xG?yq4q8qËZ>8 {vD{/S}{==oH=ߏbGJEi +Efaȍ墭< 乵0>r%'CݓcB^Y~ryzz. ^lĚ ~o zoP\`@ct؜`_K!l֖MyK} |Tչ0 Ry? >J[-W3dLL p &@ <[bkbwGj8Ǟ= ]~^[ZZk?^ji%Wkq>3SŸ o5"?3ב]s˘[+9nE]MY<|{Z\s➂\>j7^1W2\< mt>kÃuv\@{.vylO9?r*߻ q 5v|Fk\9Yi ګ+L2_ wO WydsN58ݍ~w}U} }ː6c-E>@c#uCl9#O ʋNf(LxE{wsZ=%߆|^A6mP1gӻt˿k"/nA>vzFtV'a$  9fߚ|WS7ӑ#bēyXϟ#>0pƇćyݓ/Fvm\[`:^> SݸXg;e,t C<.a>̟#bgqF|}42OUڙ0RO2IGTR^~7zwV1ݭ35>)y>o-yHkSZq~[^.vSGk\q)7'!ZYx,ֱJy\uyw5alr;nط[FޅKsr~/}Ɲï_`n8==zyN/6*:Mii6=~ cYޡ!p-xd,lt`VmNm͎5v[ignƮ7k(~ygϓB63N`ukPKieu/SqLE3e~Ky̺#NWp6|8K|.1y]WiIyJ_KuL)^"u7t%gQ.۬Y͹7Þ/G7o"75fFvM/<:8dhFFmOjmOk,Sn׆?C7bgs͟ +ouFLZ9wS.=^qF,c}c'dLw0hq=:~9jc«-S1U?~ ceM1q]7sBOyMusІkht:!Jʈ0e9 SGg1^獣Or|M=˖7%_\'*a>=F縑cCIݧ.XzྃK3yt^ԴQ-mV%ю72eqk`ί*v1@cW~n75Xx: c{>=w۲¾˽*8h10߂\"^M]_e|a_`͜x 'X0?(bG7qCpP1V~GYjF~P>e.>+޹}=-1j 3xoZrC4oʛϪp_;6:Z-G>R{h۪pywX}ݺ\ICvqX墨5#Q*ƗV;hmV#y|oYp]Hsj۸WGs1ga9/mc{U=ǢgVA8B> (<ׇ|| #{u v.rpkڑ폯;k=n:]s6*FW_~739pO߿B|vӋ֭'9_w1%ϩ <Sܟz;ypk[z.;hԸ{rN~HXAѫ/'ۚny\'y6twa^`~kQ`녜8ZlWmS}QzSFNM_ |ltzᛜSw?xq=֤Yʞ #R!K~#v3Fg~p9=[׭1N7yd rY:|ý'|p9s:*ragzzOFoc3GH? n-#P"sW}N[0z\bof]ڨ3mg{ywJﳞ/s?-Y/!هsr}d߂>_AKcϮ٥#mI3\};cߎqߎfݎvیg; >ȃܻ{Iݑg&guxOE6r񆈳1~xXb\g\ydK޻5si9/S< +umhxgC;E Mn+'"n!uS߰>=1;^8>vyU~;|n؅c;/wR>[#UI9qKs{I~sgzpI?nm|oaOءlv9H?/:dg臻)]&Ps\~7&}!I-zalgH|gY{&krliCgsϝMAv;ϼv<їؖU^y?7#ZOw ߗ~ߡCàGH,tyjsgɼJ%uMyyWm!8}'YWc@>A8=9@˻ȫ^D^iyV"%I]pOD8 {v<1tmF6qf&s9<(+vƭ_X. q~ k3|Cifԝ+yB^ϟ9)%|v҆[]}sN3R"[WvΉ:=9bƷ_469QlId{dޅkË<_ouucE/=|tΚe>|r1'c k`'R%rEo~3j] {Q1~e_"6hs +N>tV7.o{C`+]79߼t! +bY'w'3?^[4݇u:=׹uv }@ny#)C\߯[X}9:3s|\o]?9l1+S>ߑ>'cꀾxN2ch煽ަ= }]Sk_/o#us 8ޱ[ +-3k!R8;zd!u$k"oPT}~L]'͚\9kuM^^BOw'>G!P?WU[*f*B?=#!H4ϬK7T;ȟ:luL?UïE3qC{c|WCdaat[Q}|?I׬ + QO&"04/]+DQ yBdnEʸ Db"xIдbdmS!/ A7,./VVvO8VqD +zS*Vzh{Efvo%9"Q_Yр0ǂ?Dj8~YJߢ%JiR!GFA7Ԅ|rJѐ_pmDu;T{d(.g<ဌUj(}8CDyC0 ~L)5Ɇh*LK:  +: =qBLѾxެINk!ZGut!/x1D/vU^3)8%fN$fy_("#$`Esըʁ+&IUҟz;YBEb{B0"|~_O 2. +GΡ/#(/;T)GL|+ur{<b)3,*pcO cT$M-7ifقE3}phl6݇ -饥g*&&L`BY$L.Azӯw&bpȏ y 2{TZZ/+Yՙ7(6N,7X`HM3g,!L;U*LV.ȔmBK/M^(}ܖl>݀>1}(gfhh[E$Y?m5E$oH/5h'qʥ1*r6on$XR*2+L$Dja896c4%2G Y5;ScJUdHW|PҋX$(r䔫_Cl?E7̈́MyFX^l^]KR=ѿTzJ5W.~0_36pDkTyꐷ[X^Y\1Yea9 {M$H7vhkZIT\D7IëgI&VYx?!H+'Q,Mrl甖Hu?t6sƌRcz1bg‰k̬v=⦘YkgX %hX$AS3-VI;+_KgWcoN)aZYhd=vV4~ VI[D8(T F1S*R|ԫM_&Uje0 ʉ]mHؔ= |A r/S2`@,֐U^ +hP$ͽͿ_l{KG_kPv ȫ7LXJc)+kd] :Y]) /A$Ų6K"s[/._dC%F/7̑OS-)-uf)VPTҜ<4Pzn[@҅71E*QWaq{Z˹^ >y &Zx#QG{̄31Noof5Ǔ:o_!Sղ>+0&~qz!-Afը :ڢrEAѡiY_^EWóEgH::DN|M)CUZSC:[ LI( օ=7552jߐ:Ǧrƈi'b|2Vrv啻1qFL?eb&NU~X.L]dvyMĔD8dc}g3-P%2~ƢdC5ĆTQZ/TfC0^$1zaj:VN"YW+)侀=(SP #{Ri$K.ґR`f +,.X& _n!5?z]0eov2n5 P!YZ >EF|sHEcH,X C?|MYp?!ϻ,)NصRQWUYiכ"yI530Mt8Zsɛ@I 5ʑ(S-^$]Nл|Y-trH5O:F6:$-tx 0!JB,GD c +4Eh/7LMO/u~KΠ<J;t DC+T +0}~6<1O?]!feK/ef;3X4>IMDԍmd  +!j02Hb JrcQ?-c&q |N6Uo7ByC4rQDfpn4E/eM.E߈9JB~@ݏyE.){ՏΗDؙ`5usQexp`{e|jeu x ![bYQ=O.z6@wekYO]~,,oȲO6)X C1JjV> `įGmF=x psQ((f,"h x7``1: 3x+0, p,hB?W?K`|@; /e]zeUw +ȇ,G~qyM_U<~~=]4|ԉzps$ +rK zx(p } +>!ek#raW2k=|z]_nVe^ +zýsvxZ܋~ۃY2*Njw~3nHczjnHIPy%܃xQ6^*Q&:Uo -Qz4nq{ƭDTB'$N is1$^J<|4yg=p&8?A+pˁP:nk-J-)V/|%-ZmtTt "esӀ9_6SrZ=ݛ\&se{: rmss (]Lao)nw[!b\XVW VWͱ%GÃ)'--#%lP;Dx,J(Rǁ5xفy]h+?mu!mm%uh˰m ·ߚ'F؀[rj!p]!m+ڱUܲպUqkStVWז6ͮMm]{s~L3Ox9D=({~eўuk\3,N bCyq~w>IWEݡ*.mh-mFpb }t{b=,fҼÅC?퟼?ދ&QU Qr0ݽ;scv%Z%S%5?^!1ƅq@-ߺ:ЯꝳV m'dbllHGyi!5kIr +|- ^|YaR9XᅀV~_oqK>)>'m*oUkC>?:_rO"@"6l4h3up£G +r]eL",B9^|N}w/qlF|ƒÑ;L3?g9s"%9sT )0%e({*~;#]v_^?Iƀ?*f` +kɫ+(+({{e{= qU 2>F s3Mf|WC.hʽ>G*k= weAS}| @chO 5yyyyGt<}oEbsx`%C?n{[Y Sތ>]xpn~ +6ܻ_U~xGr'4KN\>T=is (lX=XeW9xF>L{OĿLuϞ6ZfC,cZ({ܫ?6:âOy,Mw1tgx{_RRuŁCͳV].Lre4 kOZg0nb[-}Gaҟo;Gl ̃_~{^=|eyXpߟϩN\UCZă^!zC)ig ߙQC(8?>}]XlϣN0~nN Ê{|Bk153q#kX9U^Q,?8#C=: pc)5ϣ)E1=tZ.{8.K51h*|uM(_!n߻i^ws Pm料y۹z7Ń9ߛ8.kK̻շw?5 T߇M|B2.e 3BFY["pqג/y[.{f] Bv&4]z VozYt ++q3]khرX-ڟfxUđ9,~Gt_ڰ[5޾4#~w ڋseoG]ޥɹV>N2nP[j!UeͤIAKq9R uIY0'&lh _0(sb> vwЛ+BUKV +q^ D瀲2R]@tP [0䘗6`i]!9qy%,撑\@5e3J"NW&trIW@BW\:rDc3}b&Wp2plM*މ ~h6{LU/gCxNe)kO; ɴVRUBrvCZ:%K^ X4j"3(Ԝ/ JE&cIW-dtl넴\mAy[/YU }bC ZvA:-iH:J . L\RrwLoɴPr9;XU4\Y 3et8 4O[,%NDz{|:eҨmV2a01+RɢWiwY`-2nNCcdByGu3=^"0G# k{y[#" JXxyy4+oy>4?c?i#/O,T+>:k(_y9 v=|oKQ.D nC]Cސoy|$ww#ot-/7D@tE3Dܯ X Fl IBp_`ry/VOr)Jѡn^ix**ɔyHeH~.Wc"/ȏ -󽞮ZLOHTiaR>k٣w=ҡ-AiY^(EӪeYY,##HiboD|~}qqk3a9cOjs-d* F4RYn1oelHo`쿛;8L' +=~O5R0Jq4D*A/St$kW_#mU 1H^K?WCX)#-/%)dxv@x1j;^Z U œ/jWY1v>R# ;)>u-+wv42r!nSI -싗 eom$OmaPxo2 +Q;xKa07ʵ#怎68ϤJ6@͒t䷦b ֆm*֓cLÖĚfj'>Pvq2AUvxD x,0ԓI^t-`G jkH"5k _hO]O&U舽߳ZJE/FS*ȝH#@셒A/T K9]٤_ڻ4`TQsjqL6kR}6ڟʙiA T@ K|3?TM7 ¾mɃ&E$^hT@[ΖvibS x͛lR;75P(<$ͱ&ΉLI|.$S$_>0T}e{zWtJ!?M)%H]ڬ0Ⴝf%R)) vmrEv",f[ VEiqMG6|]@G v o¿B/YoYƆPe$Z Yܪ1Vys+Vm_$2-FaoiNMBPΝN]c?w4ɺ`gR3N{ϾclVV[KuaaacC \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/build_out/custom_opp_ubuntu_aarch64.run.json b/Increase_Bedore_pipe/Is_increase/build_out/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..25eed1a0d61c9a368d0eea5ea3d0c46a1271be82 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/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" : "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46e8ebd327cc00953e9aa9fa6c482aa58ec549ba --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/progress.marks b/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/framework/Makefile b/Increase_Bedore_pipe/Is_increase/build_out/framework/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..3a169bf76dc7a2622bff433ce147ff52ce9da42c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/Makefile @@ -0,0 +1,211 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# 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" +.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/cmake_install.cmake b/Increase_Bedore_pipe/Is_increase/build_out/framework/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e5c40a89b674e70fe9fe3be7a53bd6bbaee65002 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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("/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake") +endif() + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46e8ebd327cc00953e9aa9fa6c482aa58ec549ba --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..c212da7610336f8ed47f766abd7c0fcf9bb89735 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc" "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o" "gcc" "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..45045fa844b81dc360c2bbcce12baf0e63455bd3 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Include any dependencies generated for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make + +# Include the progress variables for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make + +# Include the compile flags for this target's objects. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: ../framework/tf_plugin/tensorflow_add_custom_plugin.cc +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o -MF CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc > CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_plugin.cc.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + +# Object files for target cust_tf_parsers +cust_tf_parsers_OBJECTS = \ +"CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a9bb611dde79737be869ff0056a9bb5f34c9ea5 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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_add_custom_plugin.cc.o" + "CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..036e0cb3475aa37da7f08a603353ae926cb05643 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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_add_custom_plugin.cc.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..6c28a2fdcdf617e2a67adf3f62934e2a19e655f6 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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_add_custom_plugin.cc.o: ../framework/tf_plugin/tensorflow_add_custom_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/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/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/aarch64-linux-gnu/sys/select.h: + +../framework/tf_plugin/tensorflow_add_custom_plugin.cc: + +/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/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.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/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.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/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/functional: + +/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/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ab564b315366e9116e7e5f75105bbec566fea95a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e471fdc8bd7fbf949f581db94fd24c02afe34b2c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..c535bf42276cdcd86c6127c4fd95adfb8535b346 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..062c6316bae87bff6aafc9afe9c4103aff08b755 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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_add_custom_plugin.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lgraph diff --git a/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b700c2c902219d74619014853aade0d7ec177030 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..b72c4be62481c8c358978f27edc091b5b2724300 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..751080b366a763cffb1ab375ddcb7cb941868a05 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d @@ -0,0 +1,184 @@ +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/Makefile b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f034e9f28f78c6347dbe0f05665c84215180881c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.o + +# target to build an object file +tensorflow_add_custom_plugin.cc.o: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.cc.o + +tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.i + +# target to preprocess a source file +tensorflow_add_custom_plugin.cc.i: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.cc.i + +tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_plugin.s + +# target to generate assembly for a file +tensorflow_add_custom_plugin.cc.s: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_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_add_custom_plugin.o" + @echo "... tensorflow_add_custom_plugin.i" + @echo "... tensorflow_add_custom_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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e4be31842d67c02b7ed01fa1d73086a76f9f9889 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake @@ -0,0 +1,67 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/framework/tf_plugin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so similarity index 76% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so rename to Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so index 5b560a882596ffbbc8311dabc96005caee719128..87e886ca87b5fb794d40c594a132a06e9113ac99 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so and b/Increase_Bedore_pipe/Is_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/install_manifest.txt b/Increase_Bedore_pipe/Is_increase/build_out/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d44f54cd3a0646591307b1afd20b8fc226988a1 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/install_manifest.txt @@ -0,0 +1,33 @@ +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46e8ebd327cc00953e9aa9fa6c482aa58ec549ba --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d596682e7cdbd6d3bfda32698b6199aea2db1d3a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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" + "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..4a3beb18b4699ad9920afd1910077c009b44e433 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..d4d482da5000aa7c2f94c7ee4854d4481a0d622c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..2c1ad73ed42b3d70cc30a310c117fd9dc12886b7 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..0508cb47ea1c74145ab864dbef8e200ef47f097a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d @@ -0,0 +1,256 @@ +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom_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 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..217c07d68028661acaff6a9bb70b8288a5b8ea6d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..76762a8e098c581958fbe1179c4be461e3dfdd2e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/add_custom.cpp.o" + "CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..0157bcbb15a18a72294e375c4c2ca5ed73491c45 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -0,0 +1,603 @@ +# 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 + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/op_proto.cc + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom_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 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..7e340429ebca448573d17cc454d9f37c74a930dd --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make @@ -0,0 +1,1167 @@ +# 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/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/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: + +/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: + +../op_host/add_custom_tiling.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: + +../op_host/add_custom.cpp: + +/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/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/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/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/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/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: + +/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..00aea2a2166cd0cf975b12f723dcde014eadd86f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..437958170a48b3a6c7d205ebff07d609573ed7a7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..500116bd6ec74c07207f47a6f4768ee037614eec --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1980c4be60686983f9e3e4ea3aaf58a3d196a6e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..4b14cc1dc1aa37d472dbfc8a2fa41782337787bc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2c33b637d98602ff342269f316dfa4b521f50d29 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..6f7c1889d179b57235d243a0ef45c41d29c4ed6e Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..9034208e4f5b9550ba686b0979b5b83dc4d5ec35 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d @@ -0,0 +1,142 @@ +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.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 \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2be93def1ec889632ba72ff523112abc5edb4072 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: autogen/aclnn_add_custom.cpp +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.cpp + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + +# Object files for target cust_opapi +cust_opapi_OBJECTS = \ +"CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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_add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_opapi.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9d876da097b6be339a44bbaad98b35165c800459 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..6b7c9d88f400d80c4fcc651c9b73aa4fefbc53a4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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_add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.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 + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..56ef6b61098e09cde993f76dbda7b9df045f32af --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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_add_custom.cpp.o: autogen/aclnn_add_custom.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_add_custom.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: + +/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: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/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/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: + +autogen/aclnn_add_custom.h: + +/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: + +autogen/aclnn_add_custom.cpp: + +/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b3bb157ef98b31b6076bead4dea655c2f5a1372c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..dae58d60b8fdca49c5c52471d0043c3eafbf4b20 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..f4b2f4fafda7e2aaa1a9da9823cd1f14c66759d1 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5142feae62c78720184d9560ea460c7bf6b55931 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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_add_custom.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lascendcl -lnnopbase diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..3a86673aa7c1868ad77aa16c631effd83be0da02 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bf8a2190e53e169a8a06bebc84c56fc405697d45 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..4307ab8c4d25656c65fd137981ebc5eb3d8906e1 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..6f1c78ee44ef50e328081ff92a288295338ab433 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d @@ -0,0 +1,256 @@ +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom_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 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8d35f6ee0fb89672528c31e1404bb9535942ff52 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s + +# Object files for target cust_optiling +cust_optiling_OBJECTS = \ +"CMakeFiles/cust_optiling.dir/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_optiling.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..35e371cfbc32ed11a1b1737449b7c9175dc8945a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + "CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..0891f71d0c18eadb182d718adafad456af3afd8f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -0,0 +1,305 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host/add_custom_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 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..5567d98ff64b0e29ddffa684537d7bdf403fc180 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make @@ -0,0 +1,866 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/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/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/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/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/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/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +../op_host/add_custom_tiling.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/features-time64.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: + +/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/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/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/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/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/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/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/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/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: + +../op_host/add_custom.cpp: + +/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/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/include/c++/11/string: + +/usr/include/c++/11/cstdint: + +/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: + +/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..74472e36eba2a28932ae542c70b920de2f6fda33 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe68c7fa27e765cc54c7a4b724d3af19e0f40b0c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..6d98162bed09f0ecad0e8a6d9c9ec8a6dcf6fd1c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5406749e2144ba093cf2e4588d7fd78273ea4006 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/add_custom.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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..72bb7dd025afc5824222cbd3a1e64841afc2792c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..565011826ff04c973a15249b27b0b03b8bd3931d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/optiling_compat.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d6c62180661baf2894b2e39b1390c4aad97bd7e7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f6005bcf9aa9a636cea7c8c99afc1c47b58651ec --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..218ad6e5c7fb31bec1c5dc1c351cf18dde37c686 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/progress.marks b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7f8f011eb73d6043d2e6db9d2c101195ae2801f2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/CMakeFiles/progress.marks @@ -0,0 +1 @@ +7 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_host/Makefile b/Increase_Bedore_pipe/Is_increase/build_out/op_host/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..edca3a24b723b542c8fb84127fde2113dbef601a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_host//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_add_custom.o: __/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.o + +# target to build an object file +__/autogen/aclnn_add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.cpp.o + +__/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.i + +# target to preprocess a source file +__/autogen/aclnn_add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.cpp.i + +__/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.s + +# target to generate assembly for a file +__/autogen/aclnn_add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 + +add_custom.o: add_custom.cpp.o +.PHONY : add_custom.o + +# target to build an object file +add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o +.PHONY : add_custom.cpp.o + +add_custom.i: add_custom.cpp.i +.PHONY : add_custom.i + +# target to preprocess a source file +add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i +.PHONY : add_custom.cpp.i + +add_custom.s: add_custom.cpp.s +.PHONY : add_custom.s + +# target to generate assembly for a file +add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s +.PHONY : add_custom.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_add_custom.o" + @echo "... __/autogen/aclnn_add_custom.i" + @echo "... __/autogen/aclnn_add_custom.s" + @echo "... __/autogen/op_proto.o" + @echo "... __/autogen/op_proto.i" + @echo "... __/autogen/op_proto.s" + @echo "... add_custom.o" + @echo "... add_custom.i" + @echo "... add_custom.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_host/cmake_install.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_host/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1b44cd30d0e3ae389fdaa09708f82225cfccb51a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_host/cmake_install.cmake @@ -0,0 +1,125 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_host + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aclnn_add_custom.h") +endif() + diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so b/Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opapi.so similarity index 86% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so rename to Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opapi.so index b49919b0e8ae7dd623b5eb673ee9cf1721bae62c..41fa718f34536d8db08a00262f00d08b9801448a 100644 Binary files a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so and b/Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opapi.so differ diff --git a/Increase_DataCopy_case/No_Increase/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 b/Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opmaster_rt2.0.so similarity index 98% rename from Increase_DataCopy_case/No_Increase/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 rename to Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opmaster_rt2.0.so index 8c4fb0fb026848917aa6ff32fe5efee5b5280949..52d0a964cb3ec39449fab04e5eeda916c67e9b95 100644 Binary files a/Increase_DataCopy_case/No_Increase/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 and b/Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opmaster_rt2.0.so differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so b/Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opsproto_rt2.0.so similarity index 98% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so rename to Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opsproto_rt2.0.so index 5b7376c2dfc3b2433fdc1b90e6dcc1458c86381c..549af7e629616cd18c7d87e12c47b84a7818ecd5 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so and b/Increase_Bedore_pipe/Is_increase/build_out/op_host/libcust_opsproto_rt2.0.so differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46e8ebd327cc00953e9aa9fa6c482aa58ec549ba --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..43014c30ee466df5581c0eed09d8f82ffa9961a0 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..533ecfc39068edc37496c5f20d46fe6ca8911459 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b57b3514902bdc581ce7b6f2090f38b51b58a5cd --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0e4fa1ebcb2d0d5d7bebf601f98e8703328cd19a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..95689e12a2dda1f6de5c9b71f3718b237f1031df --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom + +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build: ascendc_bin_ascend310b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..38a06b015c3e023560a0fa9de37b73b7ca57a255 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e95ee76f3d9703ef8091b70a19582e24d00f765f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..58b558eb68c6d807294185f925ed321477ea370e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_0. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..754500eac28042be7fdd2dab29ec522e93118cb2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py + +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build: ascendc_bin_ascend310b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46fb4bc6149a3535eb17d2477be0ede99f4fc0e7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..c5c85be36aa5e2e6f74f004b38461136d888143a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..2635634fb6bd8928b3caefb8d8fab2e8b1004af4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_copy. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..e8543d30ae3330bb4387febb82d3fc57899cb353 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..24a965458b519674d3578a185e154cafbbdb984d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src + +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make +.PHONY : ascendc_bin_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build: ascendc_bin_ascend310p +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..29f1345fc9496c14675f26c06edf36673e952b07 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..5905ecc160820e0a73ef8d9bb75d28c635236a3c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ee634a4c1431b0c147efb29f842a0061cc5ac0d3 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310p. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9ee3e1003dd102b0c8ac794e00990c46fe3e9db2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom + +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build: ascendc_bin_ascend310p_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e22e93688a2b67642c9f4ea4be7806cfbdfc1139 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..96558e28e2f2220fcfa72e786f4e140209c94145 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..568ee864e609387cc4655a71bf5bc8315bf1d85b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_0. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c187449f26b5c0b4fd4ded3957b72053ce8d808f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py + +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build: ascendc_bin_ascend310p_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bfd0aecad835c1738fb6a7a02c1c579a3d07ff26 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bbac3f403d04baf37b7a81e85e98a1b1bb699664 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..6d72996dc703fc20b387c132ea53db85586061e8 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_copy. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..a36eb96289eb75b55ad21a5042257a06fd804eae --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin -s ascend310p + +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build: ascendc_bin_ascend310p_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..04065814d838ba423c04e3b879f86464249e7b06 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe676784dbc4032caa6e617f8440676aa5d85d8c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..d8cac7b847c351fe38d0b55d0d4b1564feff044c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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_ascend310p_gen_ops_config. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1fc9c9e0bf079aa2d7f7ab424a9299acfd680806 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src + +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910 +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make +.PHONY : ascendc_bin_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build: ascendc_bin_ascend910 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e6f6e4c8ff20dc23a2d6b62c17b66c8ef37a8289 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..782969025ccb8c64e90b3b22abd4daaf6d5e72ae --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e030b5a7ee789c10785cf720bb0c2605543765a9 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b8251e8f40ecfc6de7fd79789f7bcf60df7464af --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom + +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build: ascendc_bin_ascend910_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cb374e5db0ced9e34a5ac46e2962bc620e08e54c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..898dbaf4004189058a9b387b9b8c39959fae588b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..264efb0f0ac0357179489a980a560be33bcc9861 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_0. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7e63a0d85a8887d1c21bd9ee580e4d7b1a5c482e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py + +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build: ascendc_bin_ascend910_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b5f35f6ac75713d63c5c8fb9c0df5ff72051fc34 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e6d1a4abe9bcb0c340eafa5bfced1f241c6da4db --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..03123d7544bd32f82ee9ff827e0db03153450acb --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_copy. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9ad3747d255e16c8b2e7eeee9e01398167587da5 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin -s ascend910 + +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build: ascendc_bin_ascend910_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fe935158535a5294b1f23ef6ba62e3cba945ce4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..4c78feda9afd2a04955572c876aced5cf1834441 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c021ce2d8f944d05bc1b308af92e7bfd7b3bef9d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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_ascend910_gen_ops_config. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..4738507078e9201b3a47396988d9125b98bda0a4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src + +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make +.PHONY : ascendc_bin_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build: ascendc_bin_ascend910b +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0f5b4484aadb7aa885dce07b651783d494277a56 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..356ef894a7b9d628fe6440122b9c3d40dccdf797 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..88d46aa9ddd231b41e53be097939e3070552bb3a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910b. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9a341a450cd07b76104c3c56937adc5a0b71adca --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom + +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build: ascendc_bin_ascend910b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0a2d54cf3dc6fd67677dc7081d5fc8616f0d7a3e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d4ce4f8ba12b1dba8f69fbe9508e807e22c45fae --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0950b6704c2d696eaece186f438bab6549dfd872 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_0. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..52af8723b8d60f7876db9f7a2218a1bb08edfd5c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py + +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build: ascendc_bin_ascend910b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..6dd19a79d6e41007f82f301f87634d311ff2b00b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..0ad143cb482336abd1bbad6feaad0cff158367a3 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ecb8ebe977207b0b9c883f1660ca50fad522f8a5 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_copy. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5352aaf06dd75d905e3237541ab936e4c3b413e4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin -s ascend910b + +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build: ascendc_bin_ascend910b_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..82891cada87e395484a36d9497ca43aadafa6e0d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..caede33a485c69655d3a61af2f2bf72a4c2473fd --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e5c001f3af05083708095ee4d076b182fd30525f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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_ascend910b_gen_ops_config. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5b9f6ba5b3fc4fbc4fb721727ddd6a54133fb5d8 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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-ascend310p-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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && mkdir -m 700 -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_impl_build.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && rm -rf /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/.impl_timestamp + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && touch /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0dabd8217f51de05d3c48e464f9ed87a459cca1a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e4c9fac661464ec05ea1a443edb0dc2b0b41806f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b895e90a30e456d3811a0bb2e4d043284245aacd --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..781c7de277467a8195d562b5d08164806763e9bb --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5347d7e2e5a6ce024ebf49faa7d76a365f6a3faf --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/binary.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ae76984f5565d466b92a810925e025e54471e63 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e688fdae426435b7338ad5ae7e9a8b33847b35f2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f22f6ab4259e686344dd2262cc15fc223bd41f47 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ba53f74ba2d858c8bfc7efb38dd681c435d51ab8 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..74257cf6ebf8321bd1cdf1fd3b9dff6f31a88317 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9f8bf5f55283f2af94a1d6c3d002e1abf9fb06be --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..391e044314f82c750bb472ea75da0830fe80882c --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..e42d498a89857163707bdf7455d3193d8ed5bfe2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 12 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1df428d6b7d3e1cb280134387a1d182ce124fbfe --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0873ef7dbd668d16556df9538a9fa0bf4a335d09 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b1c31a685ba07abf8d9ee8e5c14347e18147775b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..48b406611124e445506c38d8a534c940c16a3dcf --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..7e0358250d669f4e34f1dc4a0fb4d44932f34e28 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 13 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..99392c6a5281bd98491f59ed446f6c5d335b1bd0 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ops_info_gen_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p +ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make +.PHONY : ops_info_gen_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build: ops_info_gen_ascend310p +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f287b559bc0c027efc13763de2e2365c2d70d15 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend310p" + "tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d19bb709bb14351506df228db182aa100cbbb8f6 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c42f277a097a418418ede14a7bec2dc336c18cc9 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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_ascend310p. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..db9f2e439e11ef2781ec53779fc020fa01a2ea5b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 14 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..575b67b9d379d80797194a0ba6d81d85fc2e33ff --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ops_info_gen_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910 +ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make +.PHONY : ops_info_gen_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build: ops_info_gen_ascend910 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ddda5e8fddad294c116e69843a8829f4e7611789 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910" + "tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f0018fab5ff3d8a40c1b63606bbdb60145ae6134 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f38b3613acab3544a1ca93d23556ddb0900d2d90 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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_ascend910. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..6bdbd1465365992dad3be11acb9be72443f38ce5 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 15 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..13f977e62ad9452513165a5653b28c553e998910 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out + +# Utility rule file for ops_info_gen_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b +ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make +.PHONY : ops_info_gen_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build: ops_info_gen_ascend910b +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a4652c5b2ad65cb30b012f83f4c93bb1aca0dde --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910b" + "tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..de46960c131f3e7df591cd8804f02fdb8ad3d1b3 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..92989fc6e53d3136aec2bcc4e72270f683fa176a --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend910b. diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..0b890e87759b3c0771a961d0361c64e8e5d7fd17 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 16 + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/progress.marks b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..1e8b314962144c26d5e0e50fd29d2ca327864913 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/CMakeFiles/progress.marks @@ -0,0 +1 @@ +6 diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/Makefile b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..5ccac805756b009365907585ae0e96de720d2ee0 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/Makefile @@ -0,0 +1,556 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_bin_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" +.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json similarity index 94% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index 757b37758ae8df243a5c2c1f6b724ff09e0324fd..c1fad300aeae26c5791bb8288499439660a1e81b 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -7,9 +7,9 @@ "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "magic": "RT_DEV_BINARY_MAGIC_ELF", "memoryStamping": [], - "opParaSize": 32, + "opParaSize": 8, "parameters": [], - "sha256": "d96ae256a94d13e613caea472b6151e02120388bbfdf0080b7c3909b1df5f934", + "sha256": "a72d7cae92e44648fafbee2c99955debde936e315245eda1f7047bc4351466d0", "workspace": { "num": 1, "size": [ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..0b215321d0182a7d7a7dd979be14bd30a795b459 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/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 b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/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 rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..3f446142934ab30fa88a51b04215cc7938678d90 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..196505de17c22cabbba151534e0df616a65c2043 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d1316bfac1c636611df1dd9644c71ab319882a44 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp @@ -0,0 +1,62 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum,&cur_pipe); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..db18d31cff2416131d51138fd09f9aa0626c566b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 8, + "parameters": [], + "sha256": "68949a7d5bc4881861b4930a8ea7fa1fc013719b853b8e614dd48f79988ed635", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..21c975579fde16d41a03d1581d6b0ee398e79785 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..fd99195a8424aa66347c90e0ee35886aea92348d --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4312368590fd657bd1005e690cdd4fbe2d3b077 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d1316bfac1c636611df1dd9644c71ab319882a44 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp @@ -0,0 +1,62 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum,&cur_pipe); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..ba8cce34e9ce2da60959f788c42d217097dc4c56 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 8, + "parameters": [], + "sha256": "62a21e3773526418fdfcc39e10275e8461683341c4def7ed6cf0f2e7c0c0e922", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..d47eeac5bbc48abc9833cd39a084f91ac67304ba Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..b14e76eb8aa067fe05bccfb956b6020889e4c704 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py similarity index 100% rename from Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..998ada09fffdb68a41daafc9ed6bbda32c8e4d19 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d1316bfac1c636611df1dd9644c71ab319882a44 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp @@ -0,0 +1,62 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum,&cur_pipe); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json similarity index 94% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index 1ae9d007024c9ed0100033422e9d8a1498487e87..c328ce8ea29e6597ea4719f14e7a97e549514578 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -8,9 +8,9 @@ "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "magic": "RT_DEV_BINARY_MAGIC_ELF_AIVEC", "memoryStamping": [], - "opParaSize": 32, + "opParaSize": 8, "parameters": [], - "sha256": "8257bf9300a401f04fdf0c92ebdcd97feb3c1917fc40352e32baa1d86ae48774", + "sha256": "f3635436b52d4e255e079e7e0821bbf6e1ec9ddc2aa51ff15d06bf1c37981f57", "workspace": { "num": 1, "size": [ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o similarity index 30% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 12f2f3dc0373d9d805f0c10fff086641dd4d3758..a577be8145e046227330bb27bd5245d3d9bef3e1 100644 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..4dbbc5b7d7895d794fc7ad385fb4735382f4d768 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py similarity index 100% rename from Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9637b6948cfc72b79b07820cd64881a45ee665b5 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d1316bfac1c636611df1dd9644c71ab319882a44 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp @@ -0,0 +1,62 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum,&cur_pipe); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/cmake_install.cmake b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b278689e011ca674e38b2b7e6f182c2ca1535186 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/cmake_install.cmake @@ -0,0 +1,120 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/ascend310p" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom") +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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.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/config/ascend310b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom") +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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-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/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom") +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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.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/config/ascend910b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-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/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom") +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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/Is_increase/op_kernel/add_custom.cpp") +endif() + diff --git a/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/.impl_timestamp b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/.impl_timestamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py diff --git a/Increase_DataCopy_case/Is_increase/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 b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/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 rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json b/Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json similarity index 100% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json rename to Increase_Bedore_pipe/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json diff --git a/Increase_Bedore_pipe/Is_increase/build_out/scripts/install.sh b/Increase_Bedore_pipe/Is_increase/build_out/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/scripts/upgrade.sh b/Increase_Bedore_pipe/Is_increase/build_out/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/build_out/version.info b/Increase_Bedore_pipe/Is_increase/build_out/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/build_out/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/Increase_Bedore_pipe/Is_increase/cmake/config.cmake b/Increase_Bedore_pipe/Is_increase/cmake/config.cmake new file mode 100644 index 0000000000000000000000000000000000000000..886119daadd85495676c07dfb0b629e3deab8ccf --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/func.cmake b/Increase_Bedore_pipe/Is_increase/cmake/func.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ad187e7d6c0a7c801d0d791d3fab38b2e9d4e71f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/func.cmake @@ -0,0 +1,228 @@ + +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_ops_replay_targets) + cmake_parse_arguments(OPREPLAY "" "OPS_INFO;COMPUTE_UNIT;IMPL_DIR;OUT_DIR;INSTALL_DIR" "OPS_BATCH;OPS_ITERATE" ${ARGN}) + # ccec compile options + set(ccec_base_opts -c -O2 --cce-aicore-only -mllvm -cce-aicore-function-stack-size=16000 + -mllvm -cce-aicore-record-overflow=false -std=c++17) + set(ccec_extopts_ascend310p --cce-aicore-arch=dav-m200 -mllvm -cce-aicore-fp-ceiling=2) + set(ccec_extopts_ascend910 --cce-aicore-arch=dav-c100) + set(ccec_extopts_ascend910b --cce-aicore-arch=dav-c220-cube) + file(MAKE_DIRECTORY ${OPREPLAY_OUT_DIR}) + execute_process(COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_replay_build.py + ${OPREPLAY_OPS_INFO} + "${OPREPLAY_OPS_BATCH}" "${OPREPLAY_OPS_ITERATE}" + ${OPREPLAY_IMPL_DIR} + ${OPREPLAY_OUT_DIR} + ${OPREPLAY_COMPUTE_UNIT} + ) + file(GLOB replay_kernel_entries ${OPREPLAY_OUT_DIR}/*.cce) + if (NOT "${replay_kernel_entries}x" STREQUAL "x") + foreach(replay_kernel_file ${replay_kernel_entries}) + get_filename_component(replay_kernel_file_name "${replay_kernel_file}" NAME) + string(REPLACE "_entry.cce" "" op_kerne_name ${replay_kernel_file_name}) + file(GLOB replay_lib_src ${OPREPLAY_OUT_DIR}/${op_kerne_name}*.cpp) + set(OP_TILING_DATA_H_PATH ${OPREPLAY_OUT_DIR}/${op_kerne_name}_tiling_data.h) + add_library(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} SHARED ${replay_lib_src}) + if(EXISTS ${OP_TILING_DATA_H_PATH}) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -include ${OP_TILING_DATA_H_PATH} + ) + endif() + target_compile_definitions(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + ${op_kerne_name}=${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + ) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -D__ASCENDC_REPLAY__ + ) + target_link_libraries(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE intf_pub + tikreplaylib::${OPREPLAY_COMPUTE_UNIT} + register + ) + add_custom_command(OUTPUT ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + COMMAND ccec ${ccec_base_opts} ${ccec_extopts_${OPREPLAY_COMPUTE_UNIT}} ${replay_kernel_file} + -o ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DEPENDS ${replay_kernel_file} + ) + add_custom_target(replay_kernel_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} ALL + DEPENDS ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + ) + install(TARGETS replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + install(FILES ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + endforeach() + 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} + 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 + ) +endfunction() diff --git a/Increase_Bedore_pipe/Is_increase/cmake/intf.cmake b/Increase_Bedore_pipe/Is_increase/cmake/intf.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2f362c396622d66132f80f54492a8cc3204882fb --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/makeself.cmake b/Increase_Bedore_pipe/Is_increase/cmake/makeself.cmake new file mode 100644 index 0000000000000000000000000000000000000000..48c565bfb4f2edc6534a81abaa8565c4cf2dfc30 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/__init__.py b/Increase_Bedore_pipe/Is_increase/cmake/util/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c4ddc893a9275672e046b1311c6ee2d1578f405e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc b/Increase_Bedore_pipe/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a74bca00a87127ab9bd2f2c5a136c0a879f0fe43 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/Increase_Bedore_pipe/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24d4be4e1cce916d9b9c90d2b22ab294e2e238a0 Binary files /dev/null and b/Increase_Bedore_pipe/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_bin_param_build.py b/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_bin_param_build.py new file mode 100644 index 0000000000000000000000000000000000000000..decf34544880c68fd89e809b15d415844b9882e6 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_bin_param_build.py @@ -0,0 +1,129 @@ +#!/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] + 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] + 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() + atype = atype.replace('list', 'list_') + 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 = 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/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_impl_build.py b/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_impl_build.py new file mode 100644 index 0000000000000000000000000000000000000000..7fe177da1e5e8c0931189a1810f83fc3f42d9204 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_impl_build.py @@ -0,0 +1,446 @@ +#!/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 stat +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 + +''' + +IMPL_API = ''' +@tbe_register.register_operator("{}") +@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"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "{}" + ascendc_src_file = "{}" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) +''' + +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 {}") + 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 = [{}]) + 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', 'listInt': '[]', + 'listFloat': '[]', 'listBool': '[]', 'listListInt': '[[]]', 'str': ''} + + +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 + + +class AdpBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + self.argsname = [] + 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() + att_type = att_type.replace('LIST', 'LIST_') + 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) + + 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(' __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(' __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(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, kern_name, self.op_type, ', '.join(self.input_name),\ + ', '.join(self.output_name), 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/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_ops_config.py b/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_ops_config.py new file mode 100644 index 0000000000000000000000000000000000000000..7a97180beda87facffebb18a9784264f6e0e8964 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_ops_config.py @@ -0,0 +1,114 @@ +#!/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, 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') + 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} + 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') + 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, 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/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_replay_build.py b/Increase_Bedore_pipe/Is_increase/cmake/util/ascendc_replay_build.py new file mode 100644 index 0000000000000000000000000000000000000000..1cac7d911b84df4f3ef3a83ce9cac65ce2e89e0b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/batch_replay_impl.temp b/Increase_Bedore_pipe/Is_increase/cmake/util/batch_replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..0e88346642009514af64265b4da24c9946e3ebbf --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/code_channel_infer.py b/Increase_Bedore_pipe/Is_increase/cmake/util/code_channel_infer.py new file mode 100644 index 0000000000000000000000000000000000000000..137c9f39fa8609cd0cf672388c1066e85aff792f --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/code_channel_infer.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. +""" +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 ccec 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 + if params.compile_options is None: + compile_options = [] + else: + compile_options = params.compile_options + ccec = shutil.which("ccec") + if ccec is not None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + compile_options.append("-I" + tikcpp_path) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + compile_options += ["-include", params.tiling_header] + arch = "dav-c220-cube" + sub_core_type = "AIC" + optional_core = "AiCore" + compile_cmd = [shutil.which("ccec"), '-c', '-O3'] + compile_cmd += compile_options + temp_file_name_tag = "_" + str(os.getpid()) + "_temp.o" + dst_file = os.path.join(kernel_meta_dir, kernel_name + temp_file_name_tag) + compile_cmd += [params.src_file, "--cce-aicore-arch={}".format(arch), + "--cce-aicore-only", "-o", dst_file, + "-mllvm", "-cce-aicore-function-stack-size=16000", + "-mllvm", "-cce-aicore-record-overflow=true", + "-mllvm", "-cce-aicore-addr-transform"] + compile_cmd += ["-std=c++17"] + print('get_code_channel: ', ' '.join(compile_cmd)) + proc = subprocess.Popen( + compile_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel coretype compile error: ', out.decode()) + msg = "compile %s error :%s\n" % (params.src_file, out.decode()) + raise Exception(f"get_code_channel coretype error, msg is{msg}") + objdump_cmd = ['objdump', '-s', '-j', '.text', '{}'.format(dst_file)] + + proc = subprocess.Popen( + objdump_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel objdump error: ', out.decode()) + msg = "get_code_channel objdump %s error :%s\n" % (src_file, out.decode()) + raise Exception(f"get_code_channel objdump error, msg is{msg}") + os.remove(dst_file) + lines = out.decode('utf-8').split('\n') + for line in lines: + insts = line.strip().split() + if len(insts) < 5: + continue + for inst in insts[1:]: + if len(inst) != 8: + continue + if inst[6] == 'f': + return CODE_MIX + return CODE_VEC diff --git a/Increase_Bedore_pipe/Is_increase/cmake/util/const_var.py b/Increase_Bedore_pipe/Is_increase/cmake/util/const_var.py new file mode 100644 index 0000000000000000000000000000000000000000..8b32c3b915d0aaaf1f366cf95cf1a337e8959c89 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/gen_impl_and_mrege_json.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/gen_impl_and_mrege_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..55e12e5edff6d1d39207db0c439a15fcb8656951 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/gen_impl_and_mrege_json.sh @@ -0,0 +1,57 @@ +#!/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 ai_core operators implements +# tbe_impl_files_num=$(ls $project_path/tbe/impl/* 2> /dev/null | wc -l) +# if [[ "$tbe_impl_files_num" -gt 0 ]];then +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/ai_core/tbe/customize_impl +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/vector_core/tbe/customize_impl +# 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 + +# merge aicpu.ini and aicore.ini to generate npu_supported_ops.json +# mkdir -p ${build_path}/framework/op_info_cfg +# mkdir -p ${build_path}/framework/op_info_cfg/aicpu_kernel +# mkdir -p ${build_path}/framework/op_info_cfg/ai_core + +# if [[ -d "${project_path}/tbe/op_info_cfg/ai_core" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/tbe/op_info_cfg/ai_core ${build_path}/framework/op_info_cfg/ai_core +# fi + +# if [[ -d "${project_path}/cpukernel/op_info_cfg/aicpu_kernel" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/cpukernel/op_info_cfg/aicpu_kernel ${build_path}/framework/op_info_cfg/aicpu_kernel +# fi + +# aicpu_filter_file=${build_path}/framework/op_info_cfg/aicpu_kernel/npu_supported_ops.json +# aicore_filter_file=${build_path}/framework/op_info_cfg/ai_core/npu_supported_ops.json +# if [[ -f "${aicpu_filter_file}" ]] && [[ ! -f "${aicore_filter_file}" ]]; then +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi +# if [[ -f "${aicore_filter_file}" ]] && [[ ! -f "${aicpu_filter_file}" ]]; then +# cp $aicore_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + +# if [[ -f "${aicore_filter_file}" ]] && [[ -f "${aicpu_filter_file}" ]]; then +# chmod u+w ${aicpu_filter_file} +# python3 ${project_path}/cmake/util/insert_op_info.py ${aicore_filter_file} ${aicpu_filter_file} +# chmod u-w ${aicpu_filter_file} +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + diff --git a/Increase_Bedore_pipe/Is_increase/cmake/util/gen_ops_filter.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/gen_ops_filter.sh new file mode 100644 index 0000000000000000000000000000000000000000..d4c27d17feb8617dfee0f6fd3262c36583033339 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/gen_version_info.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/gen_version_info.sh new file mode 100644 index 0000000000000000000000000000000000000000..a06cfc78d29482807d086b880375533cd0a3679e --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/insert_op_info.py b/Increase_Bedore_pipe/Is_increase/cmake/util/insert_op_info.py new file mode 100644 index 0000000000000000000000000000000000000000..28ba08757c9301391a8f4005ae8fb0b290e43950 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/insert_simplified_keys.py b/Increase_Bedore_pipe/Is_increase/cmake/util/insert_simplified_keys.py new file mode 100644 index 0000000000000000000000000000000000000000..ace727b903b1de37e6feece649cd20f242d94798 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/insert_simplified_keys.py @@ -0,0 +1,248 @@ +#!/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 glob +import json +import argparse +import const_var + + +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, + 'string': 13, + 'dual': 14, + 'dual': 15, + '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') + bin_suffix = contents.get('binFileSuffix') + # '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/Increase_Bedore_pipe/Is_increase/cmake/util/kernel_entry.py b/Increase_Bedore_pipe/Is_increase/cmake/util/kernel_entry.py new file mode 100644 index 0000000000000000000000000000000000000000..2b77c970d4e6c1f0aaca07572cd8c7221ac00e22 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/kernel_impl.temp b/Increase_Bedore_pipe/Is_increase/cmake/util/kernel_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..5079a1043a25cd6b73449e708ceae40807cb03a1 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/COPYING b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/COPYING new file mode 100644 index 0000000000000000000000000000000000000000..d159169d1050894d3ea3b98e1c965c4058208fe1 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/README.md b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b41f0168201e8596e6cb8dc8754d606581d18dcf --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/VERSION b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/VERSION new file mode 100644 index 0000000000000000000000000000000000000000..59aa62c1fa4c234af19118ff8d8572c1d50437fd --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/VERSION @@ -0,0 +1 @@ +2.4.5 diff --git a/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/make-release.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/make-release.sh new file mode 100644 index 0000000000000000000000000000000000000000..b5692d49071716e68c821688b9ded040bd3a11c4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself-header.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself-header.sh new file mode 100644 index 0000000000000000000000000000000000000000..9409031483e2bc377d344d64b34b13877a0afd7b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.1 b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.1 new file mode 100644 index 0000000000000000000000000000000000000000..81bf6e4ff4cfeb226c0a0992d8e6d2b94dd4f172 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.lsm b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.lsm new file mode 100644 index 0000000000000000000000000000000000000000..3c4cea8c18982e288f0d51eba9b4d97f0f708f32 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/makeself.sh new file mode 100644 index 0000000000000000000000000000000000000000..c8ea565971c5ac03c775a665596a593287881708 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/run-tests.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/makeself/run-tests.sh new file mode 100644 index 0000000000000000000000000000000000000000..31ee1651156c64caddfdadd683d4dc2d0be3ddc4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/merge_aicpu_info_json.sh b/Increase_Bedore_pipe/Is_increase/cmake/util/merge_aicpu_info_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..a977bd51d2e98a1511db4296070a8dda6b90a262 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/opdesc_parser.py b/Increase_Bedore_pipe/Is_increase/cmake/util/opdesc_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..c38e79edc89a80b528581afafdbc119db68ea590 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/opdesc_parser.py @@ -0,0 +1,260 @@ +#!/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", + "ascend910b3": "ascend910b", + "ascend910b4": "ascend910b", + "ascend310p1": "ascend310p", + "ascend310p3": "ascend310p", + "ascend310p3vir01": "ascend310p", + "ascend310p3vir02": "ascend310p", + "ascend310p3vir04": "ascend310p", + "ascend310p3vir08": "ascend310p", + "ascend310b1": "ascend310b", + "bs9sx1aa": "bs9sx1a" +} + + +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_type = [] + self.input_dtype = [] + self.input_fmt = [] + self.output_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_name.append(self._parse_str(conf)) + 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_name.append(self._parse_str(conf)) + 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) + + 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._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/Increase_Bedore_pipe/Is_increase/cmake/util/parse_ini_to_json.py b/Increase_Bedore_pipe/Is_increase/cmake/util/parse_ini_to_json.py new file mode 100644 index 0000000000000000000000000000000000000000..721465fee306bfca8895e2991ba06d1547c9eb2b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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"] +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: + # Only the owner and group have rights + os.chmod(json_file_real_path, stat.S_IWGRP + 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/Increase_Bedore_pipe/Is_increase/cmake/util/preset_parse.py b/Increase_Bedore_pipe/Is_increase/cmake/util/preset_parse.py new file mode 100644 index 0000000000000000000000000000000000000000..8f1124b1db30f552915958bc14066b8783f6ef74 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/replay_codegen.py b/Increase_Bedore_pipe/Is_increase/cmake/util/replay_codegen.py new file mode 100644 index 0000000000000000000000000000000000000000..1baa364ef8b3a7dee9ea1f9ce53e7c06641a2d02 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/replay_impl.temp b/Increase_Bedore_pipe/Is_increase/cmake/util/replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..1d30dd8658e0a72200b3d5222e11d29170e21f57 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/cmake/util/tiling_data_def_build.py b/Increase_Bedore_pipe/Is_increase/cmake/util/tiling_data_def_build.py new file mode 100644 index 0000000000000000000000000000000000000000..a96304261c9369c9b2e24c5f2485615c0835f277 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/cmake/util/tiling_data_def_build.py @@ -0,0 +1,84 @@ +#!/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 += ' memcpy(const_data, tiling, sizeof({}));\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/Increase_Bedore_pipe/Is_increase/framework/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/framework/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6be9b492610f4d45b25bb7725648df9aac39a12 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6aba5c207d3b85ad16fdea69dd813dd6cc371b1 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc b/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc new file mode 100644 index 0000000000000000000000000000000000000000..2cd837ce58d9aba9d65d15d57c5fe74adac868c4 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/framework/tf_plugin/tensorflow_add_custom_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("AddCustom") + .FrameworkType(TENSORFLOW) // type: CAFFE, TENSORFLOW + .OriginOpType("Add") // name in tf module + .ParseParamsByOperatorFn(AutoMappingByOpFn); +} // namespace domi diff --git a/Increase_Bedore_pipe/Is_increase/op_host/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/op_host/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..40dd51cfac524b0a9607b7d8b2813edd2210c509 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp b/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..491d1846cf7ccc452da94f22197542b26a22472b --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/op_host/add_custom.cpp @@ -0,0 +1,75 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2023-2024. 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 "add_custom_tiling.h" +#include "register/op_def_registry.h" + +namespace optiling { +const uint32_t BLOCK_DIM = 8; +const uint32_t TILE_NUM = 8; +static ge::graphStatus TilingFunc(gert::TilingContext *context) +{ + TilingData tiling; + uint32_t totalLength = context->GetInputShape(0)->GetOriginShape().GetShapeSize(); + context->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 optiling + +namespace ge { +static 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 ge + +namespace ops { +class AddCustom : public OpDef { +public: + explicit AddCustom(const char *name) : OpDef(name) + { + this->Input("x") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Input("y") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Output("z") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + + this->SetInferShape(ge::InferShape).SetInferDataType(ge::InferDataType); + this->AICore() + .SetTiling(optiling::TilingFunc) + .AddConfig("ascend910") + .AddConfig("ascend310p") + .AddConfig("ascend310b") + .AddConfig("ascend910b"); + } +}; +OP_ADD(AddCustom); +} // namespace ops diff --git a/Increase_Bedore_pipe/Is_increase/op_host/add_custom_tiling.h b/Increase_Bedore_pipe/Is_increase/op_host/add_custom_tiling.h new file mode 100644 index 0000000000000000000000000000000000000000..323f3076f0bc4a06fc661c67b0df66081403dea8 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/op_host/add_custom_tiling.h @@ -0,0 +1,22 @@ +/** + * @file add_custom_tiling.h + * + * Copyright (C) 2023-2024. 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 ADD_CUSTOM_TILING_H +#define ADD_CUSTOM_TILING_H +#include "register/tilingdata_base.h" + +namespace optiling { +BEGIN_TILING_DATA_DEF(TilingData) +TILING_DATA_FIELD_DEF(uint32_t, totalLength); +TILING_DATA_FIELD_DEF(uint32_t, tileNum); +END_TILING_DATA_DEF; + +REGISTER_TILING_DATA_CLASS(AddCustom, TilingData) +} // namespace optiling +#endif // ADD_CUSTOM_TILING_H diff --git a/Increase_Bedore_pipe/Is_increase/op_kernel/CMakeLists.txt b/Increase_Bedore_pipe/Is_increase/op_kernel/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/op_kernel/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/Is_increase/op_kernel/add_custom.cpp b/Increase_Bedore_pipe/Is_increase/op_kernel/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d1316bfac1c636611df1dd9644c71ab319882a44 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/op_kernel/add_custom.cpp @@ -0,0 +1,62 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum,&cur_pipe); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/output/AddCustom_case_20240821114242.json b/Increase_Bedore_pipe/Is_increase/output/AddCustom_case_20240821114242.json new file mode 100644 index 0000000000000000000000000000000000000000..4b5f7932922660fa7eab026bdabdc3b6fa67a782 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/output/AddCustom_case_20240821114242.json @@ -0,0 +1,58 @@ +[ + { + "case_name": "Test_AddCustom_001", + "op": "AddCustom", + "input_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "x" + }, + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "y" + } + ], + "output_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "name": "z" + } + ] + } +] \ No newline at end of file diff --git a/Increase_Bedore_pipe/Is_increase/scripts/install.sh b/Increase_Bedore_pipe/Is_increase/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/Is_increase/scripts/upgrade.sh b/Increase_Bedore_pipe/Is_increase/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Bedore_pipe/Is_increase/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/Increase_Bedore_pipe/No_increase/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..584132d80993d309434fb1303de83910a1989aba --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/CMakePresets.json b/Increase_Bedore_pipe/No_increase/CMakePresets.json new file mode 100644 index 0000000000000000000000000000000000000000..f0933976520a982d22bfb3e19833a9d5e5698e08 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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": "ascend310p;ascend310b;ascend910;ascend910b" + }, + "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++" + } + } + } + ] +} diff --git a/Increase_Bedore_pipe/No_increase/build.sh b/Increase_Bedore_pipe/No_increase/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..4be96d7d8b99f0dd4b8052a16d17afe9c809fb54 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build.sh @@ -0,0 +1,37 @@ +#!/bin/bash +script_path=$(realpath $(dirname $0)) + + +mkdir -p build_out +rm -rf build_out/* +cd build_out + +cmake_version=$(cmake --version | grep "cmake version" | awk '{print $3}') +if [ "$cmake_version" \< "3.19.0" ] ; then + opts=$(python3 $script_path/cmake/util/preset_parse.py $script_path/CMakePresets.json) + echo $opts + cmake .. $opts +else + cmake .. --preset=default +fi +target=package +if [ "$1"x != ""x ]; then target=$1; fi + +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 exit 1; fi + cmake --build . --target $target -j16 + fi +fi + +# for debug +# cd build_out +# make +# cpack +# verbose append -v diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeCache.txt b/Increase_Bedore_pipe/No_increase/build_out/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..047ef5e3602c488fa692567fe1718157b5d4fea1 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeCache.txt @@ -0,0 +1,425 @@ +# This is the CMakeCache file. +# For build in directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=ascend310p;ascend310b;ascend910;ascend910b + +//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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +//Value Computed by CMake +opp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +opp_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +//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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase +//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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f6b31326644e6ae468c7bf688ced7b16ee316e3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeOutput.log b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..39a334af6c7c9fa088312b35d59d74816f18cecc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_af73b/fast && /usr/bin/gmake -f CMakeFiles/cmTC_af73b.dir/build.make CMakeFiles/cmTC_af73b.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_af73b.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_af73b.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_af73b.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_af73b.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/cc1FQT7O.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_af73b.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_af73b.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.o /tmp/cc1FQT7O.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_af73b.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_af73b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af73b.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.o -o cmTC_af73b +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_af73b' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_af73b.' + /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/ccTGgXoc.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_af73b /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_af73b.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_af73b' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_af73b.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_af73b/fast && /usr/bin/gmake -f CMakeFiles/cmTC_af73b.dir/build.make CMakeFiles/cmTC_af73b.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_af73b.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_af73b.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_af73b.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_af73b.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/cc1FQT7O.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_af73b.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_af73b.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.o /tmp/cc1FQT7O.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_af73b.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_af73b] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af73b.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_af73b.dir/CMakeCCompilerABI.c.o -o cmTC_af73b ] + 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_af73b' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_af73b.'] + 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/ccTGgXoc.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_af73b /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_af73b.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/ccTGgXoc.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_af73b] ==> 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_af73b.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: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_1ce61/fast && /usr/bin/gmake -f CMakeFiles/cmTC_1ce61.dir/build.make CMakeFiles/cmTC_1ce61.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_1ce61.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_1ce61.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_1ce61.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_1ce61.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/ccAe87gD.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_1ce61.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_1ce61.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccAe87gD.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_1ce61.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_1ce61 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1ce61.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_1ce61 +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_1ce61' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_1ce61.' + /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/ccGEzyzc.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_1ce61 /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_1ce61.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_1ce61' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_1ce61.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_1ce61/fast && /usr/bin/gmake -f CMakeFiles/cmTC_1ce61.dir/build.make CMakeFiles/cmTC_1ce61.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_1ce61.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_1ce61.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_1ce61.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_1ce61.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/ccAe87gD.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_1ce61.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_1ce61.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccAe87gD.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_1ce61.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_1ce61] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1ce61.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_1ce61.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_1ce61 ] + 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_1ce61' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_1ce61.'] + 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/ccGEzyzc.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_1ce61 /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_1ce61.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/ccGEzyzc.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_1ce61] ==> 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_1ce61.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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeRuleHashes.txt b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..766786a21ee9283bca496a9fbd0f18e1eb59eb8a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,33 @@ +# Hashes of file build rules. +b1cce43d8efd1e75300d47ec674b8a23 CMakeFiles/gen_version_info +388b5cf5135753da6115c0ecb7a82e4c CMakeFiles/modify_vendor +f97c1cf546a41507cc199e45e185b14b op_host/CMakeFiles/optiling_compat +3270997c92bc0069a36461762d15808b op_kernel/CMakeFiles/ascendc_bin_ascend310b +a40fdd7333d6f14935a3f93e6faaf9ed op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +ca3113c48eaff53a370fc271db6a2e56 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +aa0db98a0b892869f3cd44074f5d0d57 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +ac18dd1ea362dd30644251dff9361ec1 op_kernel/CMakeFiles/ascendc_bin_ascend310p +994aca57582a696193255de1d8c6fa5d op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +537609957df9eace75990d1929571cb8 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +87a67a55f430c24b8379c04861ff85df op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +bd0d9d8c64ac7c7dc8ab30e44f7b6ad6 op_kernel/CMakeFiles/ascendc_bin_ascend910 +e712ce90dc7b7a955e387128ff41822b op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +503a715071282da85c2bbb6bcc85ff0a op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +1c00ef039ce5361c5640a208d3c97a64 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +0ded3a778940e0a62a2c522d9a22b6d8 op_kernel/CMakeFiles/ascendc_bin_ascend910b +dc0d27e392520d56144f02baa79eadfe op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +a4ba6367bb4187dc5e462050b19c5d5f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +2dd77d54cb1e1bef7d759df91ce126bc op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +633620144a2c22db8e6fef9430d81eb4 op_kernel/CMakeFiles/ascendc_impl_gen +633620144a2c22db8e6fef9430d81eb4 op_kernel/CMakeFiles/npu_supported_ops +633620144a2c22db8e6fef9430d81eb4 op_kernel/CMakeFiles/ops_info_gen_ascend310b +633620144a2c22db8e6fef9430d81eb4 op_kernel/CMakeFiles/ops_info_gen_ascend310p +633620144a2c22db8e6fef9430d81eb4 op_kernel/CMakeFiles/ops_info_gen_ascend910 +633620144a2c22db8e6fef9430d81eb4 op_kernel/CMakeFiles/ops_info_gen_ascend910b +fa38fc4d2b07363695d5561003607d49 op_kernel/tbe/.impl_timestamp +c3f3774a95f7284e679fed7d5ab170fa op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +79495c2f3e6aa9bf3afa1aea4b288f17 op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +a795a73353c90d315186170c80ccf636 op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +093369e87d79739e264a844bf30d785b op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +9aca85b7344de7bda9886033e0dcc0e0 op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +35c9fb3305e491035e11eb6a77ada2dc scripts/install.sh diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/Makefile.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7ec716ab72c14b930e863bc1ca7611d708b11e05 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/Makefile.cmake @@ -0,0 +1,167 @@ +# 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_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/binary.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake" + ) diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/Makefile2 b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..38bc57af934fbdd6417b6241e1e1ab654460b473 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/Makefile2 @@ -0,0 +1,976 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_ascend310p.dir/all +op_kernel/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend310p.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_ascend310p.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_ascend310p_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/TargetDirectories.txt b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..01ab3a41df30df7036a51c3b1e83c1856a7ae416 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,70 @@ +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/cmake.check_cache b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b664bca0eb47d056f62394006aff9b07f4a5f22b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/gen_version_info.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4183a837bc0dec14a4def868f73d30454795d838 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..94061306968c7012026090d774e6ed8954710fe1 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..714ce8ff0ea68770397b4b735a816647351f4c4c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8693237f053d3a35cd656cd33c9b1934e7b5da26 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/scripts/upgrade.sh" "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..430b1b780305227e401fb2390fb59c09911998b7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/scripts + cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/scripts/* /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/modify_vendor.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..563285175969cc11e838c67e32b7fd052a517b5f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bda5864a979e6a287be963ee99667bd4c0d2ed79 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4290d3f2e262181b1ffff8509a18a20ec4278023 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..27952ed76a534aed5b8a5fa4bfd9bb2d3e51eeba --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 11 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/progress.marks b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..b6a7d89c68e0ca66e96a9a51892cc33db66fb8a3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles/progress.marks @@ -0,0 +1 @@ +16 diff --git a/Increase_Bedore_pipe/No_increase/build_out/CPackConfig.cmake b/Increase_Bedore_pipe/No_increase/build_out/CPackConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..05f63d03d4f6e17d6274e5580868b5b26058a653 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase;/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "External") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Bedore_pipe/No_increase/build_out/CPackSourceConfig.cmake b/Increase_Bedore_pipe/No_increase/build_out/CPackSourceConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0f142f556e86cf3f39a7df3c930d6312dff27d52 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase;/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Bedore_pipe/No_increase/build_out/Makefile b/Increase_Bedore_pipe/No_increase/build_out/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f41ce6746232a5ed856bcc6d712d1a2b984b87f6 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/Makefile @@ -0,0 +1,631 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_ascend310p + +# Build rule for target. +ops_info_gen_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend310p +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/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_ascend310p + +# Build rule for target. +ascendc_bin_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend310p_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_gen_ops_config +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_copy +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_0 +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/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_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_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_copy +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_0 +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910 + +# Build rule for target. +ops_info_gen_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910 +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910 + +# Build rule for target. +ascendc_bin_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910 +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_gen_ops_config +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_copy +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_0 +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910b + +# Build rule for target. +ops_info_gen_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910b +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b + +# Build rule for target. +ascendc_bin_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910b_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_gen_ops_config +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_copy +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_0 +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... gen_version_info" + @echo "... modify_vendor" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" + @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/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..38aeef0f74011534ab32ead65e586a5a60af5ad9 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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" : "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..75e0d667758999e2300d161e50ed45a28f8d4c9e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,953 @@ +#!/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="2149904594" +MD5="00000000000000000000000000000000" +SHA="22a0c049f2277d542e559f98241cc0e440dfbf75423bd78c01101363b97e96e3" +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='' +targetdir="makeself-926681-20240525184308" +filesizes="104847" +totalsize="104847" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 300 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sat May 25 18:43:08 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 300 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 300; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (300 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 +Qf< pŕZaBm?Y6 Dz슱$_|g;H;zf֒plKAQuQ E T"$rw㒫+'$:8cb: U0g{f?@Ӄׯ_w=r2eI'GHXޚJPْYn!-Z-˖tfYK&Ch:% ؖd8U}sXД4Ԡbt3kي6 bgXwݖ*9v*oij>hE^0t,X%[QSEUۡWtI5K-b7lZ=b#9#S.鱬9C C%Cw{BYXP1zWs>E͵-) ?б~1y,l+T+4ib%QK`.\SيZnr8GEnl%zvWyba!0K]U ۙnWw\mcf +Wig.v dҭƬQMWFВW:U5.ż/HȺjW +#W5B[ZIŮȴ\!bn%_!$mU!tڪt/[P:b2b_xN_Y)lQ_6Ԛ)X˩] {gz /W1|VْNjEoPi[*^+SppV dD@h[U *xL@[ٚC9dC)Mp_ӞSl,BNg'l|= 7´vAluOvmmvcKkwk>~t#w쑯Gs۱oe@4q0OpƎWxŤLV Shu22CKcgı5!2mc'\`ZN Q}^)2@`Ms֧Hg%;%MO|)Y}[D0UzF18IAq=L R}g1܊SCz^wu*F0e?H\G+vށҀM\gQ sjk^Td(,Q˛)P4S +J*o ,@ks2lI~?F_W+fy>}\-sS,8Uw!r! O?j{Djb1aYmb,.C-'iI,bXR]I~ӁYRй-Bw ]=A548.6궚hѲ]q2]iHVmyd.=#,{[PfʺE)h!OT`jh}kZݡd}d]r`=BLY2loŜUMKyʲl1dpCdz $꣺wrU(f|\Mgja]Ājؖ6zW{fC .ƒx1@d >mcʕd+gk\ɯdcEkUyKBd1,ѱ6ֽ7_gJŴf@sc:Sc*Y "vR>?M28.K@7 +0ov :<0s@:O!צ_y +~AeL" +Ԋ֊WXѲlŊו$regk"2FH;/M2m%9?C.x(WUyp= >OQ,rsџॐk L\ɗrkyF +?qp +D^ޣn/=r++RrӄZQBǏ HܟK>y.oKo~9]a*/$5r_e:"^wC'&l"wLΛpq>yL6xy%zD\I&clmđENdjfh^)O4퍎AiGƏ||k@FǑ u?mc=A֏L:g|ְd,?s<߉|/!#=K';_!dDǁtx[:0}0ȝk+u{~^` /1Waہ!g%žiw |0vN{{VyύKvJ>At͙@Ã_lBWg+<x`j*ʭwFc{-܇䱆FCpf`f`f`f`>|P +\x)xV*x)x }Jܓܞ9.?/03?3|)87DT93O8Ks*8gXC=A +;8}c\8ǟ?q=?յ.4X2dt"SW[ZŜLH9$ zr,%KF>0r#Xڬ]@W1|]}FSwT\.cT}TӋzEmuQ6*=Ղ*t7"u.bzA@a yD)X]> B^ Qn%:Xxt!/(E+ [B^cQpP#D#.(O.E[a0N8(JYm9|"n㯑|8s$Ay?<<@AB ˉr $(_}q~r9QnoHP޿9 :=ps-ӄ7 +yOxˇ 3a6 y:q}sޟ&W] yѯ_`bߑ8]@&AySV򟀣&rx+CXk?'!EZ -1<VΟNOXRRD*VI~ٱ0|t&Lzsl̿fܿ$\pz`wVWwT y)򥬞Ri*j6/i:"eyeb,/s3#CuoA,UK0khxSan2$-0̬>D;oؠtn]kpueHU[?V8d|Z)S% bAЎF@pAv!huO;S1NXU&JxF}MONUY3i4sgbA#s9:]=a `- ۙ>il"R]Or% ~ż`Zm6|h<8v~0 1'B~ rj,SZa?͒PpZtTB>v̌KLd"uf۴=m%`p_ʎf`!UفP(g9SvZ As1a덜I6k^ABDR6oojmmCY @,(6P^C[ +qC$,CP1ॻp]HUfE#5 +U!^#TJ.\v'h$b{CNWu@(_q6 @Y8-UW͵z.i-ҎxrnNYa@(t4/+\v ]iN@ު]J }^ԫ^ў(_IJ_eTWE[뾴|D{n aj*F_Bp&pq}Dr;-+q`}Λ>ogR_yc^*j_?WßY΋*߬B_VVS~T[}qchϽͷ GDv%lnl oFS*NrΡ$;'J-R0 2e!39QE'.@B6Ϙv +,,bʈeRJ +s/ +'oP{9{7neP5VoB}&n 0I]ؾ+2e?zQ Az4Kzkg.?uꙷ/s979o%6ܾ ӹ?ADg!oXV߁bX3/ϮmCz3 o 'į1WӋb߁ +?mf?nc_y{¿M1s Iz m]hG{ +8A-b_exW7e7+~K/y7~7qmt:~s + +vӊɔyvOѳPO;AayS<>c>ōTݜSay1|aŃeF|&Tz˒*^AzX̴ħHWH**l K"vѯDZ˗ԯ =߇p= ^[]Oܵx7.Vi6U~bgQ/}52U-oygVYs즞gƞ?e H?P7|_,9x!lO\ rŴh{-sA.dVĞ)zt{wUp5Ws5rd#;&y}wjN4 +';nFd/p9)~ahh3hӔhEG6O6zE!a AX|b$Z1}SɶVE/ +dQ]gbR: BR]gw=dү½.*բخZ_%}٥#8Ҫ>800\ƱxHc4rcN'>86tMN4>ӕgh+(͇t86u+(N'9FR^Q4UoU']i}Aʏ'jS!˿AR~jQql9QatU_9}OzWc%y*!FɩTt$ORqlZ%pl+/c{©Wqlo74_@WñRql zjninBϟz4E6ލfڈg*@|ͭ͛ev{9@0XGFB6g !S&tSpqXcZd^x"+,K1<*KV!rcx8frfnp%XpFd;0ЫoKuT:H#¬@yLtmVW%脑^[YO2Rځ-VT +t'7נPW E#Vco.CI}pO< *(XQklY1/ioiij>Y^·sooij>YʃvHP(yVio +?o5m`v?+5 !u#kh;JFVK鉼3dz̑oE\NcbV4,Qc-q4~Ǵl^' m,ςQC+YF +`'w $]ڣ݉D@rV`'Lh@sffA~|S6oOkf5%;@'O̢OĆ֭ u'HwBI i{bP$W4 +EȈ֪ZH__,:֭ZSI ~H'ϖs)baMJl km舺sx i\ĎvpN<{5Evo,ٶirH +d4bȰaoϙ\O)1 iH2چДZZ7:rM![0"B!? km aGFsfzo,mM qB!_떭'ï~=}9 LF^ 'O:!o? _-@bk[0th"~_}g/zK^*y$2=գl'f^󶲡6,+n?vt8TAm#~ fZ JUh + +9$1bRxeBz YT jJbRW4 dbv_6xwJA3gmsD!ʲSv;Ea| KC6' aUd]sDzyEnLC[!00nh+Raŝq=3!qtvXRO¨>]Nvy80Yƒg ~&)ĸpV!dhl7GFXv?ZVg<#9WG38,w~p5msa{ <%OKw 9RA;vl۶-NISt&6k0ā6_oC-E[3-yhp|hɥ{kן))3B.e6nغeu`+QEhhq^؀Ga4n  +N$1T +`x k<"I Όǹ,Lo.MɷK`#yP-ҥb+ Ӈ;`QbZBʞeh +Fzp +]C1}gf@;Л0wxOqJB[aÉx-'<\ si.p.dMx8pB\#%rII;r{qgX9]ats< 4K1@F NGM3Gl=h0fn 2 VJ9zzGR~oܟ/ѭҨ. +2#=NV*+KG-TE7qN&`qŇ]=gL9(0on(H臫lx|Uzj1>)b)E2KE4rDlxp$eMA%cQAϋ 7nrU>L#+zqˆQK$+[ *t0?|JqƸJfULN2tОdE% :W2>fAq*h݊ Hacޮ g-eih +p!AFu3SLe-CKe& & LȞvubQ,v0ejV)x@H~ q-C0rCDt@Q-la6- +%Io ?<W)Y%I EXפmEH+t7r?&2!:3/UZy.# Dbn銲_R8vǑ(j=q +iXwi72EZ>Ea}R<犠${RP7DHɞ+:Rd=0l݈{f6$'4\Gs.[@drhhn&ض$bi])",3Bf?ea ~58o|,^mɝz᯾Yd{Rc/uHI [_qT`EĽ;wC[ Dc-r|XD,8J0ep1kW6 a…8wI 0dv +pqH,9da<1,ə=wjQL ʢFkn/NZ̎g:>`3)cta\Pƃo'p>:q9q:Gx+<8oĕjqO*YXeIzNE& x[e+jVf >޸|wIY-}m CGj\|M%#xcSZ߶ձᾍÃғ8A@7B1oSisK:uSzΕ>F*>5ߺmu}躰Cc;*xoNp4MUœd$dUd("a)HD8 # +Ԝn7+#Vse9^ٜ0qNtLF?qKliMiSP+1lGn0ҽRN/1-#rvA-ΣѻfD[w(sA(ƈ=Fos0e|-ɹGxRn1y#Vhe}+zعٹ|p05'4|Ls^m-G|$VL G8oo6~5wYJ@vUggh> L]N?؝\҇5:l0:mŪ>gOuqe*04M8b]uykR]5Lr:,a=tl2 3%죜hʪnه<TNéDFNt-`W> +BNWGz; +S2co?S݌y"!=Bݬ3~f7ߟ._3OeKTاY?V;Ǹ1[笛) IVl*D:!m{mjcY&ˁŊiߠ0r6}HAL +p>P4N+K tjP]qrfm+fT̈́bfjTLJgΌ" +T8T/lg+|P~~yP250Ep~xWXL[MO@,߀xoBoxD߷Ikߋx_A/7t/23R7IFTOe=]{ >!c>z2P/7Q[PqJX,QR^kے}4_ovjIƵ$zJdیc%^쒞key/=Vr]{'lYT׾\%]*yJc%S%p}8wpANt}p.Ո]sм4#[+9 HGogd8$ҕH2EV8L476'h)eXc(P2R +W%bP2a5'*BVP' GKf )P%i6C8ɜyg CĚy}mw2{pPCO';ZcL9{;Ȳ烏 T~T, |>mppف#<4n ztg k휡_X—bL-gץ=EL+SڠѲh ^B@!uuyi#FӽV`Nkցj=1{LczcO\x +? ^k/Bta/|"b qd $~&pq OCXXur Gz + '%_H!}H%Kp2G$ȵtSI<\{n&Gy$׾Gʜ%)qcYw#RxFa"L0&D_IŜ+кF\XC"Rcy|,k[u6x)׆\_ZG\,C>Brih=IQDkgE?3)CdJaT8gkNYgG/0<"r$yL +>'\*W!2{^ jgӜH^JSMI9KBt,DJRh*eRXdU4J&cD2 +ǒZP߄ττO~%s) F-3S{P5{_"~] ,;uyK]`OW٣=I}p{oдU}ܺ]HG`3^(Fݪe:l*-uRFkjUbw!NF5;Gź?֫fRSݘ]dKt,ߏC;6Z݌ qx`'=? d'X +?zI6KtfTPݫd5To||cF'DUha`[PfO;w*5'r oiqf,@=G4훧 SYR,9vl) + +N$/JGE[DfKeږ#K$eRLnhNh>:dv;,d)M7 m dxlv6!]8IF's=!7mc@?{,h-$ˊz[ U70T<~PCdG!m\ԆOS]&+'m@;fbA"B7!ԣ4L]KXNǓqzO(ϕ0{?_/sW8S DP_[zv<=ƞzz^ݑnqk=-a 5Fqy#wVI3Β$9gYN %!O.LK%!OIS +-SsOWC.lj_H;"~!;{-zP$؞_hh5-3?v8\QnSl@;_ҊvX3QR(A@y%e +{I*N2 솖+̪vrVy[d`yms_M-wLܷ½Kwc;iu=`S~:o+u?/VLm2'ߟZa'nVwLj[~>@P,ݯleE<ݻ[8 ϸҾlږ|FKw 8K/o;Dvir-aw}[dk}';د2RӺ{(++>Tu\f;O9Ч2Y8m;:zIuUVh5{<˽wXݓp9 ʹPl +햣W:&ŦL( ʛ +j@Ƭ5ĥD6A gW*Wò̱+y➴+C;:@-DvLX[Jl'yVd-eblԦ(Nu{7OA>9jEG6jSLmkXg5w@Yp[W0n[$՞֝eh-2Cz[J\2y|v9fmG&_5^6;Lo6ajq)wu>`66ғg hqJ!iɂ6چj|X\Ev͇WWYю e\$V5_"Nv6^Z"o2S?aD7gkzM!<7?wy\7W 9Pފ;ZB;´z%s} #Ym`,xZl.lD\ X΋%j4H{:/01UpuE]@(ӏ%7M˵ΒFfoJQ*{*]M^n@Z[hP|sF³LjS8#A*-`ElLŀgm1LVBQGy1skN^kko#? VX)/gq 7?[?^\8G_h6=%aEt1.?Gv`@䫰A%WC]rWa8`|ӌPHw~g/y*z,$iu;ۯxo<[7ڃt~D۳mkHCe7ϫ%$8|!i_[K?+lcڧ?]Og/~qϤ۳OG>]XTJzK IZu]z +.6cJciqaBFBx5ˌ<1㿪@;ⰶʘĘ1Mri3|^nLI>J~yR!4yn1&) L1iWM?2bL_?0L1ɸ2Qyz$^|>0I>ʸޟgLI>})&NbRkL+L֙&|=n3Uky7:7aqb2MWI?RĨo`ư!l&m<-[ )7Bm$) Hi1-.O$ ]UZoX.jw' _gPm좮i ͫB% fOI;=}zgP]JV.*}(n>Oh Noʸp["XE\='&Y4%RG&k+0R=`+VϠ )=-n*wGh<C+=4odDMj4'8v'G!qMܥƴx__RDe Y]ߣfRC4L'"ÆYh7šm4k+bѾxd B(a?[} kUCq=X(zLt냪InO04mH ʬ1thmmL8@0M)`F<,A;=*@ޘN:oPaD< :pb@a*X| 7ix˸]U4˴%~Vw㈇%}fy~2 v&AhnWáL#)L~Oo[[ =(~ v֭HԼ^칹88T*h"Mgc[uל +]RIL +KaZw$ ԕۇ-$~Mq!WoJ #qMPtWM9FF3zFSQ5Raj"4fzB4rPnuWv;k$hx'l',^8v C*q҈\81hdcfVFCAϪ00%{q- 8K1y|#v01 [ 1*肙x/aȟ<ϴpDP|',m,cJuԌ ^(7_.{@,Ga(ALJϺP#D_r)Jv%S}(,J_dkfVϯaqjdc)2XcW>?- 70V >pSIXl(68.w#g%l |= lO7 qMCa`OtmWVb(0?~p;7us'סYPP s%pDKM]#;TPȍ1NȥƂk+TOnkS\9ޓzYtFֹ[+֟iPcqYJl#Q6Z"[]њ8xiYZ  VOO<2zx/|<iy +[?oG8~y߳RV? s,1BM+?:%vݝGȮp['uI~?["EV'9]ʯ:<ׇux3k^:]v=7ؕr^+{8N!C_.2Qw٥îB^,pq/9Q2^zDq>$O/Ƌ}R> pOLGxXKxVa-{$YI~ NJ['$QHJ ?*=~\I I||aF1+@/#6 +~ HJ8o0!?#^!%\0p9,I p2pYOAX$"BLk%R wISY/V B;$\ R7JU-័~ Z“^##~g%|ok%|RŸ%|ivKx%W?%%\V:(! pg Q zḄI .dr4Kp<" k$\C_+:& of o p<>E(HxF%|?[gUu3s3  ~THȝ;J\R5ƊJW^h,Uv5[j*D>{2$A!9`ܹsN}?dW1J%&Ndp~ⒽI(ٯJ$6>_$dZGdWCɞJCZ~\d_$YIv? 1}d/KOd_* w<ɾL_,ٯ3$|7%r~ds~~(o$="oJv'3v{b`W<SF˾h6,Nj}cKVף!PHzjIߎڒOQ]IK^/)e9K!/)~KI/)R9<ŗtKe/(ߢ~K_;(~]NK_һ((Q|IN%ŗtů~/_G)>I%}K ŗ i/)ڒt!.E}+Pot5GS(̜>K|/(/E%=Kڢrzŗ|/k(Q|I/ۺŎD%7-_ҷS|IK./_wS|IK%}?ş)~KQ/)~Kz+şS|I')_~K-op^|g<==vx-u=0v‰D(K`H<&*/Qa6O"mT' 0lps7uu)p+go{%7mT$GF6* GJ@N6 uv_7ڼhKfz6:{p<}=>_}'y3 ?F2?ɞ34IZeggfFFz)vb%{1l?,^%~^r`O=.?QAT|bs<Ѣl*.=h>ʺ|Ns {J8U*o΋7IZ**oOuTޞɀsYʻMYxע v~.xA-yM 鼸 ^%^T뼴 Sy<~#:/GETDvÃ"*H+7Vyt^̀9~6>^nSy~x "X,SySy꼈,?Ky`ȟۮ.y'ټt^ "*:Cȟۢ|_X>|7LSy:/ ST/t9/y1c /ټ:/2LʻVBxQפU)8*X?xpȟ<6ROy 0WoP癅pȟgyB8_OxI]NFyt>tqR!ޗ9׃\\b} a_"?'fO5<6;Tu% {Z-\{Hnc|J }qfp=vMNeoc&tY/r/M~&{fgh1d6xx92q^AuC3\l5}(PſgL14&BEvi#1͘Rpuƣt+Z }, }cu/|9I6%j/L}8%z<B&Q=BO~ƵCkz~=B͘oap/1ɝ9 50)h(/+KBQƧ1dz¥ 񉣯$&fߊLލwd:?c&m&%k{mIPF| +ޡR苖uLH eпqtnQ +=[(7>;R8\}_#wɿǰ]xh9W?AQY{9k,55q~3!՛rڳ$Ƞg-:}!?O 6`-w |N5+>G>"j|7KG}>n7; >&|H>D΂<>]ԏ"Pr }'؋ヨ'ֵms= yNw$fKou|Vm1ʏGFe2eǮ j2v'.?1<YB" N`lRn\AI2@󱟾۪ϳ`EӲu32&W B &%[YN:ўA[V ?!۴ k} V +`r|}Յ +]Fzu x(ע:w6}#1SJ8i49s}/q''α8|:N䚤5:><͎:qҵ0=;W5_f`/?E]>C}ϦXV[Hլ֧->,WG-YTtlXf BXX&{y@5~dž=NGekOC"=[|5v~l=/֭֝u/Zlw^]MZ@jkεKk0&]3m4ŵ1̙f}ڝ\ŵLrڥMkؕ]ˁxϵǿɗ 7+b)e[l+@5@{ +U?LC#[}]t,L>m6n t:_ ><.{!b,?#lA3TcSt{ca'E3챺pčda{̝fs{%L['sSFren%q/sS`ƽ,]Og0v$nP<=^b2+ea[8D5C-h=g9,Vևť. ^T6Weg]uQ2?/qs7qbs` ;~Y<7)wN˓s~Ql^,Dmbo+}~Nʃ+(/bO<`>|ưƵvq.{繸tVR\w㽬R8xb<{V1/'s'u酱{9&I>h8[X>8Iy<3OxwX>tOxt>xb<ǻIc࿉'s%:/>:'s:?@B"*#&@ȟ΋L ET:/5"*/]=B\h&J*VDQ[fp +(ůe$.*ՙ^>*B՚mZr/F[Qw}fL=ϟ {{^{Z{9'5O/^03|o)?-?.{ })+r4+?tͽ_>c -t鯜Q hl<!)YR2):wQOgC۹>ipK3\51!;z!p/I|P!Xwƚ~-aZ~%afl@ܿx"A9FppxjWlyo @y9<?|Ŷo.c c/".!_s7Z[`BߠDm*_wGw[xO*+Sf4}nvѺ"eQ1Oc;[d; RmaUy!޵@w@ydL~lx:1 p1⹮k5a>v,v9K.GR9e|> !~ ۤEl#p!&mr_ |_hn!~w#ГrK?~ >[N9GQ(sFzmp"oȋ\ϛ X\c-v>Mһk1u*ى cOd-̃9 L̡n}>zP.\ <]-p}Eݛ*M,)F B=} $!ҹ^59kimBsDz0 +OFPkuZ<C= 6\[F>yvz[;&u+p|~nDwZ^|z;r5~mȕ>BYx}|cIߵAyg6\G Oo,Lb:?EZWP&yH27˥i >#(GP'缞@p9뵿_gsW+k>PLZ{kOSzX|C'{mйBoT'3=2R$ZS'Q@ ƎwE6uK%~ٯVfOj,%^H⮫% +C+_@\ ρ߫n? +|[d +_LeHAEH62ݥªUtp/U!ߢqx)k%~pٮ^̯;`x'&*υ: ʨ<>7ުp7Qy/ʓ>xVTį~~T7H|(l>x7%>% j&A{#j<{ĝ?NR!]'~:E׸xہAďߡ^?wďA!UN9:dz?:Fhl+ Q>H7Io5B\t(S7DNFૣ=$eQؒ( +{6EɠFEQ>ɏWHR$^~+uT?Va.ytއ|2 XK4>$Cෘ|ځ^ +|)g"UoVoи'S#_i)+| o|J +wlʙ|_p‡2'.J +w+|(&ě>x74nt*<xD-[Q%Sۜ3CNk<_{5!ުv43%~/ ʒ'nO<_-V[L{&ݘķ䟸_o?q̉&27ɿ?@/_cOܫ灯4J|=&ě_&IğA?|?qqWgOܯǁךK9 xɿ̯/7'8xɿ7WwA5o7'ެYgO?HӁMה[,o! o⮋$~3+MIGc䛸b6&../0鈟^e!*+͌;>xOcs.@ӤY#w_&>j|̯jA\NkxP᧓a/Sif#}CWH7'R?q1LK + eX:WI|;ެ>*Wk+|3_Fܭ뗀xP_p_p+*WqQSDC:*^^|^T>ǁך|J: + x.nx?qYs.xg?qN~ɿ̯bM>{U{7Qf |?'A>U]4'TxKL;sM7+:[34@\r5"U{h|W.ۜW~WOj#+<gw:x+o Vq)I>x qh|?ߦq[7W䟸_ɿ̯*|7MT|&:n~C&2›3#?cIOsUM>;O.ƻU= |ɧ̯d)3} M>\S6g\&ě33M>Wi&23>W5M* +&Ľk>䟸`\TMl½M>WooUx!kMe~ƩUM~?q̤/P__d'VqsLě>x?>qfʇx/~^8uz8Bh̯l_z7+/o Vqj/x “S  +5n1?=8]xָ[ŝaOܥd/U_1U|&: +|ɿu5'T1'Rq7S#7bLy!m53HC]o^*v@A.R>X˾x +)hW5q&)b;6?imFp9>`?hKOC3d2w~ٹm׬}-,Y{Ӓ;o K{w&>A{_gF;c{s2ro:;-$ѱ[ϡ[u{vZK&Iho۠^օ3/5TK˹#kREdMP;CQ2ߝ'/܊6C:/N4h״k^'NƗ?:6lK;oLz$)H78Ec C_R._\&"q}M-F66#Rh>hz>|f_ Ry]A5<qrпx|JO_~5~W~Kہ1ϵE?N^z?Kv(þ[+nOZGgs/zsV{׎wPYNgD.Ddd\ij&gG%czB~/IHi(~6q#2>P0G^+"  ^O^'jSy 2sO!G0>X8/),;[ȸZDu]x>38;/d.ӱʧzk]_&I?E_Mț,<'okvK~4'J|R"ZL~eo? }X.pH_2ߑ |ۓzMGo׈BwD`;8" icǵcGPcї"uun])OB;qPπ>333sT/ >ixSύ?ǸpƟBqy ڳ +sSD!"-}*!l'dє'2Ɵ1`gm"QV2|SVؓ-L7b͍E_[.Woo{o]N5pt}#է oaǫSD:)mqZZQ|w7ӴYr(GE|aЦO܏9ᣝyJRvx*eyX+&ü KI/6޼!icc@ƚC[k/]u_5iSxV$ژ >~ + cc+w(Oz|.?3ߌAk Xc7㉔5NxFA1GtݜEhLm>"#3㶍)B+lۜbӿ?6oE<@^u" cN{!Ɔө7"+F|.61?y hj[g/N 4!&Foԩaϧ@.Q>߲Ki:j4B&28qhN 067?Vc}H28a4QnqozPEbeci ?Ck֚iui+#5_ì7\Y"¶=w݈ +@L.̙ܣ>7_5>fk/O\?:&"Ƕ0Mw?#B7}I}%AYHkH;F}vM9E1 X۸RPK}&^gydijv Dr`mH}6ʋ\ۗZd]eBC"Ɛd)>R4S~I>[/ + `%' @ԿK>U|1uc.ۉ(!^ݡ?B/M\*pȪWN8<_tQ=hͪaz]Sr˽Gv&h!]dk;_lІ9c<$Qy(бMg0M,]Ÿoskv(jm3K4,]%Y6ql DSDZw˳cڮM<)bFԙ|#im%c%B[T냃z0u(cma\֌?0ƳT|$I3ooQxB(I͝_ G,籑|0mő8K\+F ?y ZRܑ0.91 tOhH1(<. *AӴqKf|NpO-pvx2cDr,m5.NP^ל>7: \6M5PDZSu^N6>R~˟>D@ Ab"b ^#V)ֶ?K-^ճỐ?ƕ s͍Ź(#;u1 +*TymiW0ayF%ksEV\ 6>'h;za}H5IFy[v\"#a=i=tjA}u +qM= 饣DVQ"&chO Q\CLCOBV  朜^yI9oQv^ҹtv SO36?lcEf{7u#8i=& maKh燺=;Zk1z9jcSP=D 53T/^5Q` ,:H^)BM1s }h|1c\[WX[3{g!:N%zjRjmՋ:8k.]-uȇ1}O0w1|E۩;x!{m .|8`y=[)}ٶdvFlK 4j1 {,sG6xR}c5rD!K9t~@&|5p-DC6qqHŞ"2J;6zǂ'б=k+Z8"P|=Køq߽T;}ܛqG0&f(Ø̸qФ,A}Uc)ǣPrm3S)t^\޽;V_[Mcb vVKKF!F|;ש֑]_񾖯u͙4P{f?xV#ZdZMFcN\/%"6&#vm8oJ/.b?ϳ\u'y|lz4l1Dž}D梍sX9gd1F+>at5a?@CM}im*<;K:ssV@vF}0+ @9Y4ҿDvyS\t!N}E<ýQx!.}Qͨd[hЃwiW'Щk/#pM\o l+1z?{ƽ}n6et'.~Ò~Or iJ 8b*\e ?Ư |[F~j=m _ts%Y"&Ew -pv;?!>_cW$E eꪷ'=BO=Ӥpso hA\+J#v +0箧^t(|zڬ!ZOߌwz~v=e]OKנ-2_(} .oԂWHm@S\Wc^2^Ȼf=OLִd3&:9h'zKߐ !kY+օ.Am!\':msԱr_Oob(!>v9DcNa/q-8NOU+t,XPcL%gI ^la3=L(7@C;pG6 vGj2—ANvήudže CݺցV]W;Eӳ)(}3Ӽk=X=?#+FQ, V2׍E}#f޿Yt{2_䈎wG8BP׃"3B;8H8Y- "{ht HV,Β?~M).Βq'qgwo7܎~^5X3X{Y"ȧfwQtY-hǙT;BG>*> tdt(2c{@yO/8qY&;C\h ;|d+⾢i;r@ї@ރTЅ~5tsE<]f)kѣ.S2MhC}OO{Yo/MqG00NgFc@usN.tJ'c:ܣNp?3?{J'A)8⏭>PGԑ^ ?ۜK]Ջ B2/z_=jn}r<{ ڍ *^rz8e frpq)/~>i&)1cQ]Ă1_?7|ڴQe?=K|q:[:[>m%Dyw ׿ }Jk@}N^.=5OJg2 ɸ6e|dF)e&˽ Lj/p/6Gxu3oc* s"jU/̊Gs}Tscy&GG!;ƻ-uǠLک #||g(םx28Y=Qg6q|Vk-,gLyxcj /C8?=pp]R?Y?5=Ɖs%@ x{psص8Y;AH%AL%ߢuեJ575xȌ_I3ZԧvhN:rR'ςU$w]?z>{gt_$/>sxl/c>\<_g?ɱ6=COXن|[wՙDga(7m]Լ +stg+rj/#Q/nS/W:]lz +2Ql2k뿽{nz=JsV,]w~6JuƟ~i1ց̯5 {{ѩg[x>|7Mi?9]gzsh3$1V]4rMvc 7^X`lsoFo{{yoQ<q޽4Z7'PLP'#p>՞F!34چKmߠ٬78qNS)>@B]Cd6ԌýF=eN4]پ#*`M0PF i3BDkc|zόz~4!ޒd0-/DgD9[oU[b 0>rX[}**oeo?,xk;ʯɿ_Bs}Ӛ V޾}C%y֩xW[lә㭭_C\{”ۙ㭭][嚱xk9[ Fעg{xK[x+n|'Ŗv}MsǟH@~w +gLC.M?kz~=j)k^^:wVA1> ?Pd0 DD{p;RYaw;h 3//qJ+ORc ۲-b4'5qߩA%þS'7a߉WgNn `> Vj(ۢw9ټ`ꡈiZ!öP;CI"b~ B|@3b3ǣ?^;;Fw}06[DS;Ϻ?տt8i*>tt?{#<7ȳ<72 sϳ~Du]~uO?dW1mjw/;ۇg@$czNuA\E[{)܇>BEuIq//**Ƣýڋ"ҟ6yy\C +@vCv#7:$"ѝgs;1i+H^̑6ASo;et-Gw?(W]DVyN{+qvzJ>[RDŽd!wK}t:TwPw tuml4Ȱw3;B=}uW|w AyɌݱy`=Q@A9/9/.(oxP">l5GF''>Y@d OlN>OezboSft~1R>,o>,վ=t˱XOvԳ֗V8|7>[$çy*;3}1~_X߿ /տmG ޻4>x)F_3i֑gi0%Yg_-d .|{-`y~Σn'rO8l~2_gj׺,:'E!;C=±ŔEong+t?ؾ;O4>.hp~}P$S;vuwk\K.#F!\;l=X=͝BG >ވC^>-޾cPHSxѾ0H9l_k2V yt{ö!OpGJ_оW\ &}/l_=.^/87xu|]O>[`k{?\m:..7ݐYi pϊ}gUq큿ez>!{NkQc#.ρʹH[>~| >^Gř3\{ȋ\υ5orf}ti>=)a/kGv9631.<3?Rυm/ܩ|Ys/;9 WW@g]|:iG=9NC/>x]=uLa{0F##oܮ /%KԂW̏"^:ڤ#(C^S a5_ocbaǹGA{j/Clma9aÒ3a)9s{(vuᤡw5 rmÈuz1q␡H.g~< +7׶;q;H;`_yO{^>߱᝸;|;<;J;dA^;}9Nißꏾ6lݟ!϶-U4 +;Ҹζ7C֨f*E?YgKش$YE +5?Vs@+'~Ŀny>ȗSEgqka<ϡEy_[~|G!:ⷱcRf{?0OؒRּ{ڛu79G׳xy;*6c(V?U㳋E"#y`[ua;(ʹB w%؅?xrΤ;pm|7O ;c^vI=}P:zlc6X6Sy(="4#8C'w>m([B=w xW}Eϣ{gWpg~i?oGZ[CYs>ߕ?a<ne<d0_~߂néNb>b@[n +ga C O{x`ZiCKSLycס\ #~/4J ~:K;7>BvtSXočg\GM-'3ѿU'17c~1/#c31/>7fӭ̾Yg%MqXcBy_| +I}~ YZ?j{w#7vwDlO>l[M=(q#(s|j޿-(~4e>p5 ;,E=&QǼܵޘH̸=GϾǔ;ԁ?ʜ}9ro}ӾbaQan|;>s=y:+A66%GJzB>Ww>+c{b9{(ɶe˶/ig.{_.>kS!-p],>ENC*+N/;y}s#ݦNmx]7}=s1q\{x GWAlx.n=b 6O&coyKg 7K߿|K /7 GƯݙjhQʀa`< +9>3Djq;[̳xs#m[mycXvx`s-5hO5M9lO4A/#mbynF毿y$wiǼd|B_1.3`q#cBg;{uş)Vų9w·#{]Էb!#>E!e"(0:?:~MՏhk=[7%_'ARAN&e-xGy~MӲ߉_WkіV<dz#?qNMRg-2 +sF#eזJ}}9/&~6&ڟ^o{/ ~IXZv˝X]DҜ E ;mY!~ME Z#6L/E,{a +ꦉ}{nѿ3,} ԉxʍ8\>y<.Hv19ǪBt?v{<[l|¾f%t-ey' yа[9ǡݚ߹|[7ag_yS=Dww"xN|>/ײYVzK}b[W2Cvv,WwVrop%5ߍ\뼣#y7mO gߥɘԍyRB ĿXmyz\m['7`oa?3Sg9AȒ1w!c7ϣp_is_? t>_ְ݂};z߰'y۪GV}׾ijv-"r@ iP#<9"I].Tlm/&+TGG+} ~MU|ߌ^y>JZPcq}j9q[|/e3_ҼmbGvÜ9E\Ĝ Ǒ\ 0,_0N%o^뷯.rڸ7 P:#8 Vȉ qsbѾbaG¹bghq]\M B+%՘Bgh}G\L+ z;b#m|"Dbۇ]vm3jx1н!Ws01WEBw5:{7KGq7SMo}l^ K<-rXlk3QFK%oDS)slù%o⇸g"δ+0]o/%]ϰf$Fck.-zNhY\YW/|cl3Q >ȃZ\#ָEVqjLVڤ> o9w<^Wzɳ[OC>]ƼO{}pjh=C5y`v0G(4agv[ ?{8-BWg5|G>h<'^^_DOߑN[eoi; cべЏ9o@雬)x颿_K_>s#U+9i|-bg5' #'r{:aCI;~:!C6Xc~ê䮟M6tw}I @koYU7 ]k̖l3esT{0 QymGo-,mq9CqZϵ=%дC!h*E{3З7W=/t$-fN7筃-]A#ZTCՈ1g`yƀ|8偞?t[{ U[W9V/ +c+iϣvJ]c7ϧ/"۠ǃCHG҆!h.D޺9r.D>Ij><(mP\goe kK\WaFF=l1(3dKjT;uݢu>6B_~D=Ф1Q^(o_o7z>cS鎴7?]tt d=Н[~&Bܗx'U? q{C[~%"GXɘ7`C\b(cv _H_mB^ +ca~uGw_e Qn=g\@awuƊ^9태# _1W^h=_:W|V=y#||hSBG(1wC#77@7l݄oӍ(Ē <dʀ}55oiA6`kCь>ݍ1ٷ/bU9vtذ@| +[!?8c]'H/D!V}kl`<vWى>Zo0_DYĴ޿ ok>K1V7ߓY棿k\WgosϦȑ.}Z>1}dkG#fh +R# ޅ`V3|uY_V{{2-9Ц P~!ݣs_g&oy6ricAӷ qky}]$,HR>u]7A?ߊ6̃/tuwyQ}=_Uq~KRcI.駇_|6-N/mF 93f z#g 1%Z7R;ĥ}z^uM6;N}%eJG^5,꫆N.NȯK|fUָJ|5e믿U᫚VV媙ST]@oRBL__tKVTTϪ.k*k|7͚V3}8\זϪ[Em}u]^Q6vk峦j| +]ʙܴ+攕\T^_Q5dne3+N]S>_Mye|h,E˦]Ob׷WV(*(L +-S `^W&;|3n^bYT=wVIx.U,lVMGtJQB***-(+N,ˊfVU+t}K)5|Z 7M/)͙U4oztp+)Yb1.z3QfT͝]s R3ưhhYa=T6H>(T*~pl|Uh*\`kkfL[KyzLoz$xU;:E}+FGޯUte|iWU +W>KVjWZs͕h3TQyfWN+.GঢʪȜWYU3Iw$:*dMLgO)?sv3_sLeUMu:jV!%Ke+|P>Ygͤҹ|XTBRؾʒZ_El'Df5lnVK%Uy|W-0-:JTMΒ^V>mz%?̪>Gܦ_^S2j/>G@ r*!U.*-+fzw_ĪrWA[i,v9~¤[ &L,=h¢1!. e(/3K+}fXUky +\gM϶d\.[R[QSDa֣/ Mzvrk +>F_+/h_Wy%> )3gܴɀW-)^k]T]2V,KiERu-EkD]5ͤ y!zH$ʮ|o_ie3crjaDrWUT*'},(2f>T~|*)W)ոUӣ4+BE"%2_aE/M_"8BVNUW*d?hv&EKx=S|Jf# +@?1x-)q(=aTY)Z"QkxOe4?φmM-gPnLꪢ[`s dp՞QԵ:;OM :ﲪ0K_Xi̼?FS;ʁ"LV(Q.U_Q.uktUUeՄ]J]5 ~5 >/T% q]T+5J5z*spXcPy6(V\NN9US\ut&@yc5WG<&∵9Ro,5ȺؒaD $ܯ)ӴF*uUNE﭅X4Wf:[+7kKfpU$T e9b'B7*۱*)KǎØ0_T ̪Vujij*k*˫+&aAS&x֫6bohf\)SuK7s˨.Hwjie;֢ /*d +D{K"QP/.%RB_W|fTLΉII阌eeЖYe&_GŐuiO^0 X,dUn7\-4Ljcك&iK\ot/XDq&|,IBZ -1C(ZNBD>.M~~_F*ZwnΉ+K\S-Dѣh'咢&̪򑇙ބ[oYх51EU*صXD+0C\@ryr 7}[UqE)t<}9Ljek|Fo C{L}&2lZ).:cc|'3ZnYU /òl虳k/];sRV_9Tpjy$v^6ìa-cJ)\((j_އϐ,8k@ʥЃ/շgAUS(Zfb2M;DK,1u?J-OOTŤ.9\lSyZQ,ʪݖVK+UuEEcxM%*IST͡O[& t,Qk*tVBySiL}6_JKU: amZ 'z"W&c-S\j2QOyML7~7kdhq8D2-N+>_U'(3MؗJ'&,YncfsfyLDUJB79 fjk#Q哘w125{ +Qrz\v7!u*E}2a!JuX>MT\H +XU'RR8a +BҌBqd/FזU!Tfa:1fQ=c>s?AWVɛ:Yz/G1-Ņֆgf5W]nh>O/T 4Umu^jE Gkݪ+Htb/#SٓU#I㚲B_71%7LaIYZ(wzHގM}tp4 6Ӊ LLu|+k暄c+*}5P?)RK%FY^~sY%.]D\KF92xrZu'oj,v3n@{O;ɗHCb\v|uBB3Sd%kϐjgKg+'N踺A8wJ3ݟy4C'NY6SXz?7c|2㱀;*y"ɷ$9Mr.:ii{ڑ^Ubh{1fYhjLTUU&ڠ +x"!CMoVTQ1㨪\ز@gvjT}_4sj%:/-/).ђFUYIeU+SW^OĬ'G\~uW4v#k/+f>U $eKR1cGԄL-qHXpS#U,uq߹C|{S\]4LG(;):;&W[V+.sF)W[".Xk}ƝQjd*T̵ArxQY5OB\ Yt>s97[{8z|hE}kNgInEKzio[[ƀs*PP;wҷ&*IWU>KT>*|鐙-NiA})sQ~!7!J3\yFƌҔ,/7Ln96sD Msx)!9yWϚ[,f3Y`f4ƒ̕ۑ~" %PbYV2Y>a|\JY8v&24 BfFKju'Uwoӿ +ju4źu7.#0[ 1UF2Eo*8YrB*a<\cJ8_3. /UjV.vqlv 5S+gjYIt;P}nt"xzT9ՁWlDKtIߜc=WЛpU[.wn4uE5h%"/zr}CP: p0)"n?~xʗ!]tI7\{ #אt7wYaHȗgH^t(R7H+7CH+1tRWwGz3H }8cHGdн0j"mGzDވI ҡ 飷Ɛ{a܁tG06"wa$Dwo0#ꅼ b nD>"ԏt\axqӑ>t'.AiHM3#?d" ÐGF*IHw#"/څ4Q4X yOÑtR ]t}:A=w2cC1钇qwڇԵFEB!Zl/!)^?][fAd1tcB0֟CHg/]C c T0#mFVA+?Ez3א"ݍtR*/CH_C:{a C'A钧5sZ"}vtӆQvD+G:i6Y= ~z^;pzt+ǐ&z=gw#ݽ |/CHv+h͆,Hg\#}/eozg}T"lL9ʑ57>؍sύ.R]O:r-OxmX'Lǩ=c-ߛțl_6^Mfi+>I({ dw( ,/E6ӳ@7҅q;KKwy W @DϘyP60/dz'薷4G*Jݗ%{Vۧ}c%/>fN[AvV<0^wM!O#ϳIlEwuqQ2I7Kmb}?lsқdS,U3oY ة +ڱ:ߖe=s//Mk-.\| QGY( GM.;(ҹʑn.۳wnV>c-Ki(W}p?TIu9;+l'M:Sb‹"w|X*=;03޴kE0߭*@wmm7b/?i=9,{y+WkabӥoZH[O^7 +$obvԱPٛ_ted糏I4K0)bCeOo7#fKWKП;,!Ud͟/& u>/^GX[}=o6tvdx8B-b;SdOy۶xrEkV'lUwzB'hbR!b=_J*[]]^];wU%A; XҥYƒ&64_{aSRWnʎݿʤK{?X,:Xl:`Iv> l۾gw=,!IПW! m77Ly==uND=='Bb}`wסؿK9+źn* DRר%g nkEǝ;GC^ ,n5v>9nſd;ǓK>7O5|χCVL1P^s^:}$O~!𲤂zny++cٵӳ}4*eH1Ξ3U3 8-R\f2M;cMFpYIA^Pfau2̩ݺÍ:%><9eb%*ݯ/-z蠿4p߾C5Qm> Qn)7|w^m !#> }2 Kɔ;9k݆I(m9$`VsYt>61OkFU0_Iό鈽s'H'N7/MVQAR*hKU__rWPgӪX9*LنKewdE9w`;&3О*FG};yҔmn6:JJ(7+M8\;~I)1_:oz Kٿ3Y'mzKU@2;ՉwS> w +0g=u6YwW2nП0tIKQ%y +ul}\P.9Q 0 `,tVPx힝5NV:YxxXYe=V/oo9z&~u ƾr:3e/(KRQ0o>2X)u~]y˒F3_iݽ+oAhG>eNf;gWXYtm;\Z+}h!*V?vӁݸ"~Cq^??m@ݥL$?=V-X_?b^9Oؙk izB9p^~nڮMsqbʻwlg$ Iɏ=-7W}/$M)[w)z +!'/q3],7ws{r nޮ TIUsʤUWZ휸ox}]n|)s<.iӳM{*yalz%urMr=a/y׳o/hOLUNno䱬 x|,а Ds]fi~ 7EVf+߈7|k|yq`#5ŰcZAY'(3嶼:me'i uR߃qRpӌ0e^*r QA◆!3ʏO.Dco/̛(Ӌ]/Dm*$sbcNcwF#TjIMSYhKͳ4.`eU.K_VwSy4xKcLv/bZ$'dHvaıSY>TI0]v/cLu7QXޱlKv:_FB=v%}'=_Sdz2ճ'eXaw8]oz|e]zOM2zX?g]΂uIv&_9 ˵.]*˝.=gh]ֱ3kSݕtəz+tPJ}# y"Y.;n7qy;aNq w~rmW%?1rI.J&7ps*.RȲ}qzGmˣPꝌ5+Dҙd$(@"Ae*QSUcQ3HtZYWS3&a=j3L6L*g8NQo#NҴ0bnwowﱻ;5w?Ww zyu[ppga;ȏ_f; +O8f\(Wh5d"6Gٴ .kb'i>Qmb6jGv}bvή_(bv}e.p=]C1҄bdZ/*|DE Sf^/MfsEF4}Ζ5]`!:gąogYf+=s>ƶMnh#c^g^-y7,ٔO2lַ἟!YnÜ-pTr㤟Gr~RgcW km}l w@`L.l\ ?KZX5SJ.@'1ScElBa,ήVȖp46*Kԡ71|kKW\+_UpH?W]Ģ:S/%(^45}fGlOfO/ذnٴ6->eyإt7t-h7[ڂE©]DjEN,oҡ9-@VS|.N>SZ Q5]"i9 4X1rJxY݀ Y-zX[./ PMP7h{^VuvaVf|2%l +t^(Km®]@;\*١,˵)~>'*B믖g +x>Ya_,lerx~Mgˡ!99W1f*KcxQh-~)vY;Yu?GsM5͔DžM r%ifk{[ݟx.m8^q.˘3MpsƇX>y[q[42\9udPpQKSnziy̙/.nC8͋9#Q`D9DkD38p2>"P1L + +^?NٓJ1\WH#L4fȅI|ـ[VR&#?(aB^oq{bUx_*SJG"E* _Sf-S?~ǏUo&v+S2|7~$@ë28GY.OQNUN \~O#wpĹT鏳D8eo@Ĝ}L)O11UK_b2JTC8DVv o,Q>*/J({^s"|u*GWq>) rb,?|_Kj TjZ_Ƒ97H>@Q}"hi:D.d +AY +jG}CTmvZxzm8f("3/,M}4஫cćGjø_D`'u4IVO~ue@ЪUޭb׵xoĮ[EtA <^L^bH=d:ڻڍV|\(MPp$F\LXqr(;+8ZpA5[9߅>x#hdRՌo N۷ػfK#{jׅ>.BFmѲ"*Q^$~u8Ž`y{ړax ŵW miф7hf9Wk%{[.- |OL5r_/J>;&[( ]1\L5T>uZjz#O:>|L^g*j0sV(7[XN3( ǃ/}3C5_`Se?bia}-?TQ8?;䅲K0qY% A^H{eIZ\_U8}OT:M!e#E V-'geN ;_S0  8a0#uQiG;V jWf<7: ƃmF:83vƃ]^qK $h"i#ҽ!p8D{e0e28.y 2!͡#=`o /%\|0m{%UVӸndd Nay*=+ :7nW{P ub[`A#FFD$3ja c`z|L5%~H'#Ich(7|]X]6m{F= ͸؁xH<[D-y+<*m{,tEnz5Y)ӽ;µݮE-Lg LX2`g +j<4|Kew*|T*xW|Z JYp^,ø*H_{mXt+ Qc׊5CH<׆`=c}}IY$##Qe.lSQQ+#bÀ\,%cfMN#G"8TB 6ˇeP{##Q{"8hvr#=Zб%ĕq(rDp + 0XW|TwV8ъ|F[}6D3^͆n_ /+דS+sΠvzՊGO}c?-ΊXzcjJu(%2B7_?B_*|gPp ~/qm>ROOf̐M}/a$;EeiIvSDW$KoR|}iayYN8Dq有 +sO7w0Kd 3yFYi/5s¬6qיxt_cSM|AڛL[l536%iomaFox|~"le(&JI%S9e3Y\'|_ Q2uLpN&\'|p^,9\Ay W |p5ep5渜ɥppetNA 8Bp5O8[D89(!\SnS˩)\9( ~ co$|MO~+7>ImO^C4[! %|+s'|p9@8=O FN— ?@8{&3N.'s72;J& M᭄O$| %|sCkpᴿM?Hx+"PM{!Zy{02'nI+ᵠ-N,?SdI ,8ܹs]}?}=sw0Eҫ)R|I׎Q|Io~Kz ŗ_P|I?K%uT?O%5ŗ_/S|IKU/?QY /P|IK(ŗ_Q|IL%EFu/ŗ)/_ҟS|IP|IH%nGu>ZIEmI=.C^ҕwI$=uk)Q=KJ/(E%=KKڢsG _ )oK_wR|IMsz_=qTO%m/(Ka/_k)SyG_)B%4ŗ3_R|I׍)_ҿ~KeoO]y5L灡VY+xSo/'1|y^*w% SDCA-3y:7wNOEm1Vökɇ./щ)Oeb16SB#_ϑg]0ih=ضNcb^0΍cY܇uH5Ƌ#gwC]8Y/k_0{aZ ;Yx,/0^./q_#u7H}4cǫ\~%^쉣|9Q>ܥlOr]>'G`5?] $|⵨Qy1zGts'kWy+t*>u{K:/冿3F}]H/ټVkQy6ȟʫy)SyW<#KOMy%:/u+ET!*&?g,kET"c :ȟgv뼶1P)~X!Sy[uYn?΋ʟ[RpOPcxi\絍)Rxaga?D煊 ⵨u^~OkylHʛB"*oKgET:m"*Fa8W!*ټ (Sy꼶bȟ;X "yX d  ?潢&4?+Q +LS]ZQ>QFߛpbԸxȧd)|Mz28wy28{VT1Mntscj37J@C;m=Kж]v>Uh]:3nB[v+V6݁&hD2K@kh}2FоѮ@{J'ѮBۇv 3hqO6bèc7ހz&71x0RW|ͺfa½?1)o-V ˧ W͏ Sn+~jlK&1$\@:ڟMLdp{Şg|$B* HM1p?Ȏ5`L1g-ŴcM]6K*mzU<XcnmI}3 > .};HݹyJ'ʘW:%.Oⵛ4y7f|kd#Cx㫉iNk=n&2~2_A7Mދ5z'@ό1޺}t7:L~/$x ,?)g& cbE >+}RPA0u/X-&^1y>c0޳q |%X).e+e9ԧ&w5`NL{)c{s)`>;J! +Ɗw4>vZ Cq3K-6j7y'>wn` Utlc;M\d(ٶfLv?>ἴAOL'8>Aoq/ )|Dϸ8+S+;F{hW1x_P&ڄy^a񳤗ހz?#u * ;zIS[)]kЯm +|m]0&>Ķ\pߓ(IP~).#7Ӛ1 +ފg&&R->gSu>'LE|$GbYT8@>;vBQ(r`7-okض\)ly^oKx+ղ#'ܾݞ{?6;2SgܞrsZ#7<`to2]c*[p:/N.z_ 1u1\[cj%kb 08xn;zYXKyQZ:mfА?K;+I,q{~SXll LmL6ݴ݅mݛS^C]vEf2xG }ֹ+V\9c&sp4n{Yk8и7LWwՉyԧxɎCkſ*ƕ +Wc1oHKkeNj3WZ2]>k-nq\i-W[|j\i*i~јp @Igʃܫ,>|+k,OZeq7i\h ϵE̓X +&CMm;->@3Z߶qݢ5+OlC,Z>upݢ5֫n -ZREp]5)ŏ(\hiýkOx!]{O[m+yZGL-Nmם.'Qwˡ]΋콜A*<ʝ{t{wJܻǜk߻nwk{wwod9tҵ^-_A{}FN9vbApmߜȶ=m92lD?+wO7mC3)tL|;|פchi +*Ol剅čV&~>$jOV ϳy4ƌg7ZHK/_^y}|ST_FfےG^zȈZ?bF6I}Ր}l+Oh[o|vd..@{ +6suևè9~>Nn[/[z +e_.~_D :.yyx_yt^tyT?yF9S[u^"* ,~ʟ[ +8OSy?y +&^{\Jx l^X癕px l7ݬ ?xw}F@)K}O0Sg&³Wrۈ}OP*H<{R( +.U6Sڼ _>oɍv7݉vvFA=v?>[ўAmNhAmA37-Bm ACہ]?kh]v FmA{WqЦ.F{e\vM ڌ<&QFس0L+<,f7MJL_´uSձ%ign>E\K;Hک~WjG w3nϧ/A6ei dv2>B:_cձ꩎k^Gp:hpQ&QVb@h&JݕMLUB\f %Ez(T&A3].D2 +TR!̼߳3 K{μ9ys,F&%WO?kCZMr +3/>/yA>V>z7b紅BcAcX{O +C&?uzl-{X/=O }ޡ&ݯZ_{XV=%ޤ=="vgRSa=%H >T{X{XBe""jju,:|x'am6{X sDwU=z# ucj}t ^Zt֏jk:7VR}~Jf՛XmcP nP{X\{X۽=Ρ=1){C'9QZ~ꍎX\FX=UF=H7ғ5X@^ܼj;'3{XYYa MbkGb+y=,'ݰqqmaݕ-bacܿ:`{Xupq=CP,Kc6a7qM*_Ybr}^XIHѸ[͵o􏼿Bk wrwJ] lO!ӷTw5(k +?qV}+SW~ң~/z&KXGyjxLOz?g=x}P׃u^֫Z:7xw{2}<^/Q{4Z_{D[y>sotׯ{W)7:4)~ xU]loFo5|!W Iߣk8F5}Mot,{tܾ,*K E_E?5`ܻޅD_=7c |Y|̧}7z:w-uSL]P>{zH]>+%g|݇>}8?i*;iy/OYpgkk9Uv|ز2ݖAS*o>Uԯ*w4K @y{#ҧխ?rY̒pzb݈|(;%GԳ}=}V\Gbe>Sv3es}zO}pwC#45W}+K}TŊ{Erɽȹf#qi NAݐ{IOAOuvFӐwutr?{6y+2E}c,#mߜ pi_˽3\sspWYAK%&IǹCNxhW3,^G틲{FY#YL.ݝf"-xmBO_Stˬ1&rCk~= !_E'֦[g\KO]*?i'J"?F,N'Ǻ:t!?hrݣW\30ttG{f{5hq FHN:_9d~erfoZU.kЉ8݊KuY=mte֗t4KnQq*]k3AAFu5h^(6Ug+J tT{&^hvf"OOq:gwu"mv0&6n©Vo\KOLl`r-=T~V'k ~ַ-LɰG{N77_0ZzT~7k ~SRyX[O'ݔ/3ɵ ZXO']j&?wY*`WR.Nf5H%Z*5SEY-gT~H/_T~gVH^xԣW|4_3>7'*oTk D~r-=ob*@/ZzߕZ{Yϓ\KO<;-ɵ!|YJOm&_J=:ϝϝmB/_n*?_3d~SE;9Ss[3_ ǚ&q:OZ?K''ך$ǵRs 9;E~ebJȳT{&Znku˕krW[,werϦ[y'LmB~էE~.$=؎_+ +lM?(~`+bCgׂ@~󛾡ןzBg-+lF?y@As?&'zF]Z፞={7_"s#3wР';UZp>kyoԻs+LQg5)t=(s73Vt hN5/Qi|iNkz +Xþ"a5/2tmMr̓{9IOطPc 5g\b¾ &o?뿀q (H.Q.a-">X9|^/ ߄rl> +xê&W26^ |ÚE|+p[ |Úg?V8uapȢh#z4ok}Ӭwy}51-Lu#4;Q`m&ͧh#߾ i۷K +WI3 |09;Yy}3W'k=ݻ{YOu!Yap}K8ĪɠY(=u9<\j$]lW]t1Y{#B]"{'+9qm+GɵQ=rv @LLNVO~C֥GU? -nAJ^w'|(P>кԾFY{jי6fɽNh-h tX+JV8sz~*?zprun/|}7Qy}+̺3QַCt(?^YM^+-^GyQWZWifWƱ \푾No '^{rz'ڗJx'oDx}r^Ew5yxݿHihg^_k2Uj觎B]cSGNS'.NOti|=-i >'WD~^L^~<@`]T$J#|;~!G +s#89t94Kq6Wd쏌yF_J,$r5v^b`Y̰(rc&W*M5.2r8g[cWJj:5%TdjO\ -gh|¯^O^Yph|,WᣁO꬞p86Nc-.] + YU=9k^bjܑFGH\#~&^I/0"Sx?s!Wx6q}#% ><xoUoIHWQM-^ᇀwNJ|X%9 G{%>JG_S;ĽC[x!ƽNß%j|qw_g7oUxqytqyG,vx#ߧ.=7 +/cA24Bx@gjd%9UnhOU})x6FNIL9%,g3z&TF~p-#] +?xD:i{r$9*|o ުC-}S +|i3Oo_E_ƽ} +_ l'TxF~>R? y#?V7Jq6$(ă +/Oi~/%F~ +%%>F~W_`O'gOTF~W#n'~ +#eF~I_O<+`x;S + F~➁|8CIלR-ؙ%3e~7 gI |;|I<iFn +g&ĝO5|ă(l@7|~x'Ç8G P?x!ƽ=ICиxD;|oS ^o_-Hh|Wx_P/xDM7^$Oqo^a|T[ԋxDO\ǿWd*-c#?/~GŹÀ1G%s>IU6"PSBҸE9 x Ux_{8x=*.{h|VXT|K-\w.-,W?qG$]x!V|ƽ^ۀq?7H _]7(%[5B|_Wk'ǀ?cw\? Oܭч/7*>S0ashC碨[yb3ggzv7T6딹/&%s뒧s]M]:o?s'鼹)yvBC[ݿ5|9aG2sLu0}6pyINg[kبGR%3˽Ц}.GX8  +[,.<]][tpltUI>MDWqRF#@6>;bnCv'ݝ$eχzX|Rns9WF>/^ m՜p +~"ȶh؛]gyκyvݝ/K[ yߙ_ęgqKY׶?!(isyУc8%tHɏ }Wm'$7-ކٮҎ{'Kx yF )<#Jr/FvX&ͳqqvXd:"-5ݝ'zTw:4)nݽUqlS` J/{.Y^r4 zl/܎ɏs=?#챣feGw\CnKmw;ko8)u4oR{a}R)]T_gwD@L;^<""WH1 tMJ ~'g~w4>(">=_S=`tM,u\/̺ $,.EzGhtMhA%9"#ojq5ڷ) oC|b7uׇH=ek@k_s q/;>Wk:v>>x |(v%;x5䌂U-[mg sjP}akv~w+Ra5J}di}t>'j ;hc~Toȳ|G?z-B ʳ6Iy/ec! p@]t]ώ >p3l5HSyY<m|a,..Nj9y[[v:01c@B1Ww:[gLh~ +Nڡ;S(6XD꼣uޯ;ʼ=:>9MbZ~ri9Yj9߳|"ENUNv,ʸ"|O|mm/2bPW"ecYvT囖"ecMv=B:ଏ@Oapkĺ]bUK9aƎcGPcww*mգrgt'd'̭ܣ9Y[I*xvC;W# MbS8}˻WϿGwŘ{3\ |!E(/Gd/!ʳs|ev5zo΁>3>ڪN^bMG~Hbn[r}GSncO^ u8|y.q\)uЙIDZ^XU`*J"o#{2!vfHhJlɆvV.tБ!~+2?ۊ` {3<-#>2{ 1Q-Րs]~u>:z纝˫yӳgee-fgM b+F>y@-B<\\\][[za^ssxَq" O\}mk68 uEDX2h["#ov4u(& 4oNdD~|i"٢?&w&fb\/0gN!kz8$6RbLg}Bw:ۃyèc!xX뷱aUg%!?3 R;{Zx`1v&S;ms|>c qv߂DhL"Zp+TpWZQP"O8ğ;ĺ\~LS /Os]kn=;vOG +h \֊o:SYi5/\g^5t`83BMߨ#Z'XF gGʼr}qkk,O ,Ʈ&nb$ts(LQ/_xsO[,΀s{0{DsOК|+`:sZ.Cߝ-wnO]YSP&=/»#\U01K:^ xk7|%72{=].~M:~"C]e|\OPY8jƵ()P< +@%=rlhM)N DC,B;]E#>D)]]cQ>۳-s36&J͢?gLl[ZcK9^v+Rnk;`]괮/f{ !iŐ8CW1$C~Y%tI0rlq.Ty>JSe{'{K`gϺ3Q_3&O [/\3.wKS~Gqx4euJ|<ކ[ոr{YǺ})5ަxk&?Gzԡ@θ +c^2dcWdRjL|8q)b1s2s2։ck!ۏ}!XV +1m]xZ2رҍ`]C:tAx7qYkg÷Է1'XC{\j. +R O|0+oq .K+<|Z1ih՛ Y3w%\“ag1g _lӬW@`|4p'wFpcwg5.C.HnD^ל5s upM[57ܗY J:ď[c#\wD +>>縲ҍ|:'\.\(%źE&&[SbNޝyjllBvsոD~aNQ&F쏕o3EA0m +20>h=kEٵTV!X[]?Ÿ~qm[?Jg դЎn[_袟1?w-rk1/Y\'L!86=J==Jm]޵99 ebxZCG)]*#;6`crX[3#Wl.>݃}B_܂y XG։wÏ.ݴ:^Ͽp~'Ҏ~PGcj'T#øN0G@'hz0ƷU2~%ݝX7\uuo棘rL<߈WM{I=0Vyr^~a>o9h_VB\xuaG\Dz=a];KE;A=[2bu0W޹a1ͷq>iUGk45Nu +VCC +W߽ ,67꛰WӾ+0xわboQZTߢwyNk{8~Yq9^P Y96w 74q+%g: ˎ{7m"yq{uvWj?ƽ%70yc٬3^ ?5k\ߥ؉؏p܁M\>p;֫bpu'z׆7O5bHgcI}},pŵlu#rfY ޻چIpGZ<êuPMWLE xk (-cʹMJ,|_"Vku? s-ui9+K fL  yH@_Jl le?b_ z:Ƚñ&Cm}A_O5㻆5~<b}<(/ g߿8`hdbwvVv}37>ET[¾S7l?לUq\4 `q/`zik=3w6@`n4ħƯƁyYC2Gfl)ۣ^ wV}~'ڳ}~:qVe,Z3.&)}`4t>HņB|Qӳ]=n&+?D5I]>k,n!c#V enIo9L6X䃱rݛiF awT;[FI堭v$ih(ǴzÍ_=uF: #Dڿ_ +ݍV Rwupq^\oFNBw>}c lGJמt́,)8";eb=kȷݑeQGg"6މ@zXigWПৢs%BX&η|[~`< _ȳ ೟(DE56Ěלn q~Av|bT#.gb<[%(.6q/pRB_ MExa`Gx +vqC F ./'I^?5"- AwT%K#۹\qbn<'1 >Q-'|-x YKX~L<]Et +=(ܟ'=Ρu+DA3xEXsC,^p i&M}? =7`}9)=յ ׋p5yR1ߞM Y]E .uF~&h DFLi!\ e"/BOO׾ߺ3ӵ}wo[3]oEe~i2bef_c؇o[tJҏH?F!X~5Uoy1σ(/x|ꠟB}A??[{C mu9s{'燾S|ۻNю΀m,cnthu 䅝;p𖓳o!ۂ6v(ۚ%mەgqL䞼vڶCQmvwON#N_;fN9')iW.:.n} .oCwǠ}@ߓ[T;kܮヾo湪 Iޑ#n=\@ׁ ]?u)kt]/zZׁ~GǺ94ٿ]ݿ:OlmK蚿yӳ61ݺ76e?˳{veF;?~{_ޢM% 9x /u]YӱA<1<'\+a%xwo['S7>ƶ|uG17b[;LjXmBɎDZL=Q9dJ;_/xrÇxxM$N"^)8z5^K7j;qT;luxegL}hljmP۸cqgE>j93R`Wg7L<ȳy t,.3a.cVOTN?=C9,Ttk ?כ8Ds`\rRn|[n +98G͹1(2<|Iz?Pg_p뎳mpپ>uKfM`3~g-MoU;߿a>ɵ\7ߺmLh3G\oQռp7!uT7ڲޙ':HXL]`2`Xbͩk\o @?zp]2OT}6tIWR&r~šwD Dkrkm +Αch/z6*sjh/?g7sM}n\s5k ȶ(ݶ̺ݾhofstCl݁IVnޯoN ql,UgMu +}ob&3Udzܩq72@ kFLd\wwƝc;a-y'z+\ٌY5=8pqfOΊ3߂z6Lg΀͛uROy}T1|1+-Cr}BG6PFpjy6։2V<ͣY%Ҳm''2}sf\C kv!Z!C]8f֕R>.|P[ƅI |Qƕ:.D/GyMs>|_9(w<)(6h>5p)}0~d7N-}yF%#FUm1xgh~_); +SxYIeRMX T]X?(ծ/_;hdg (?K =ͼwdA:&{G|(7;sd20|yr9JgoXgrE+/#H{$")M[L36QWoR]5dA$>P~z&տo+Yzk/kP*8y-hSDTh*,cEM%Bڤ]z[NjuƮGvu< y}CL~9Hƍbߣܵ')ޭ~sr9In圦 j>C3@}8 !΢k2\v\#_M(Fcm{>zC}z#wyC-Lj[1_<419^d,>9Ze}~}:̿[1Ypkp@oreCƆ>sǩÔxΎaۖψ[tqZ m2RrgY)e} +O '/GS1R}y+;և6kT[a tzţbKۤM6-ֆ["oْ~-\*z{ΦNo5li'7 Zo͸{m99^݁'߻'vMPn__X={U:?=[O6Vz;~XVC*c[O2Zo=ؓߊ[R-/O&=[OR_hSmdB]D|O:qK@yAnK.9}omym1Oaʾǯ<"@:́v γ ߜK39;h"z!ƦY1fq@jMX߿AlxL t.~wFz跰sj mi'?k?—CM=H:JCES'^,=%TZ"௮}&;Ezq +אAݡ"zLHD43ߗ#Ml̑|#EAa8q@#ڀ Fw>WYD\u;~{J=H[D !ߣ]]=u:H7D lu|3t"zy126fLpw{%*ڠW|߅yɈ͉y=Q+A5:Kr>^;Q_b؈yD߫4?M\Ԓrn<8/KFmpK;aRe?;k>B/g/xS +N9E ֋2R gYP~0RjSʾ9M&*Q` qϙLg@gc#G=xSEM;^I=|?gQ*='t\j"l069 ]0I;q_4q=[3қ|1Nf"/!G?aT[9r9^!ǕǗ̈,&Υ%9!ߛѲaRb'NPr[4(/F)ř(;H;wzۤ= W`c(YXN>¹!z"G +eԳW冿yCO6xe=zPpl"bйvM[Z?V"fE}dzs{v e.YϬm~#CGt{hKjG7cvJ{ܣ#-=PwgxOėy ̱WT՝sl<f,]|?b_Gty >Nj̳OC8޽oSfmo7ƶTGښBέ ܚm}DS/׫\wk(sY?2$Wo |8s\_L^{.D[LAW(/W,9ϛ6}MyU'ZӰQXL,oS, #/CEC;{vn` .[ vּKۈl˼3}1˾^IZ }OoA_isu se苇`;1+xEQ7 Qv eyQW['^V91Ns6율 ,ou0o)~*s 'dg}ÿ!'w}~/?[?@jGߨo?wzu:.)}fo7?)='P/Tfnƚwo@='#=(?KBwOt+;)Y_~'tܔVCNRuZuF|gyz'uR*>=ai>oTdo5?wbYLͅim*lߝƋuG:ΏG9%'=Q/<Ǒ,9ו}}q$邲~q7M}9|ꃶ6z G4q?mkh.Oi~幑<rZD?@﴿V!?/Jh7nޑvzB ߷ׄxE>h}+~AX}SӼm}[6s.qx|\w[ ʪOWzBSПۈ' ]9gRV~k1yTwWyv6󄲇 +e9[Pc>x:x!1S~OEh.Alq¯6DI?xTMh)!ynVss}^qVZ-}ro +W ߧf>,xq;x^pa߂H>®?0+$eS.[2 +[$/OpNmw"?K[Bߠ?&i$g4=csIQSih?b=.0Ҳ3ez wno}2c EgA939)ϒq>Slb^SmNHSr;NWqc,nb3<+˩b.#ey[jjbgQ(f׿y]Nh(i iV]<(aOyዏ=}7OjK<=?וiQ~gͱ=u!7A;ǜ}ft%_sD}Ո46~߉X7y~(6%WWo 3Eg7ک?b Ecv]V8v[*Zp@pe%fnc5yͱ~낿zG ܃g=-1>[wo::n'awoK(N~w\?costg>nQu˗u[J;֮7u_Dc%MS=!-틸e_S,>D};US6߉پm<;os MΜM{ 䈦m4!y:?e Wί=jR|?BrDrqutwFo^s?C鰾F܉>V5_zsz[܌ks~Azv8_ |{'1Зq ܹ=.nbL?ǒO5 ( ]ux6곘sDgQBqn8|d(ѓX7}~/_g릔wA?OwX8׋P~V;sj<uiE][oLSkyO@sj #ؖ qz7c7op43N-"m`;6 +@uw3k{ }0S3]m@|э֭:\%F\s|NzhK}yp%/׌u,iX~Á{GiibN~HA'_0NpdlXVp./u9rot0.0e?ߨlFp. +y5J6~]RǿכXi-'7@QEȍ1Aw;ӒJu~ Kp0椰Qڞ{ә1إ-bwo~Ebۆۯ.-~q zgMp. +nVcN΃ kJ3hgԹno~l~ +ߗi[&ZYcji "k3ېG3J%ESYg=Qp'~> [v9!هr~_}סq q~b4uͥEImv|Əv7; ϛlGBʠ^kwؿdY0)0w&_'-&xEx7(٭\E!)c^O,sr}ÚOfh=B5ENkN0W4Oο's(vT|? /kr.|X-^\GDO̶S[eMloi~ߘ-c` r\UVM8rt 2~gkJmS-#bpwΞ0uB՚u†c&!i^'{Am ~1Fòc?~Ёew~~^,3Q7Q_3_YFמ*ゴ5ECg3c۟ރ7bΤݷk[T<%e{ ͈nkOH1ߐ|C!U#svQg ֠-9nlBOhE1nq;᜔&㼕W|$oB-ls!mL휮9Gc>5l[/ ۜp iٲ s-E_n +=-Ž-=?tY[L{>gkO-#]W.Jц[mclgύ7+um11QQЕowoz>cFa9lW&^:.ΥE2.^]}pQ凝6> +%}!Gi 1nɟ Ps4rmёqe/ykoX@^ˢƶ,hc=ц>翲.Vr3]bUYDG]{A[4~/߽(4j`W|&iᮢQ(9bϯ +mk襟w ֽ$smqk dmu[l3[:}.F!tܞ s5oiA6`׆^#6݁1ٶ+:v}+ + IEkʀt|?b7dž_W;&޳=*fE4X _|9"f-U|lh)dcD{}o>ڛ|uEy6{6l-h ؾljz lgGygx{? ) HGz3қ.ъ̓g̓3׊W#hcd~?B/pm]-^aLF3s|o]?9_>+U?w>̕'SmOw|; {N[仦gEm|?o+o5]G=_q)}I;|-?i{o^pzwo9⦠?W_?knGj/cG.+{aÝ6NzGglw/} M?]US? Ō3[>SA =3f ǚz7_)eA:֔fO]lgQ9B qֵ}.q6SEnͼC߼;_\w_]V>{ʈ.L|хsR'2ٕ5rMfʥV^VSY鯚V^宙[Z]qG\B(K/-Ygά,+]]^UTg^S>{Z W⺶bvKm}u]1|\,Ik%3+fO+|?*gVK?|Veռsj*fUᯩL&UfٵNeWOJj:q=JH\PY5jtmeWhrU~_5PyJ!syeRemk3*&֔O)- %WN9E߯:,/U9|&ZqT.r?Y 9USA=feU\ +XB VGXW3UUc +ZƯc`?br|12W<~Xښ95 Ɩ**bv,zU=㥷]#.WrՔj^ Y^Zi xMb,T]WƯ)TW̚/)S:gfh}umUN<ת}ϝM dMBL* 7qլ93 N+*nӡPS"ϮT}DUFeq9 _HS-_[SYuKCc*ˮ7mU5VRPakK\t4Y-VUVIf^t)wrԩUk,TNwqX[ Ӧѭ){ۤ+jʦW4BrI +t4kN#Ŀ9S'N3ހV>ϤMc~yո ו?z̤IcJJp0I?g49+/GyAޟ5efd6kUZQ=g_Vm׵s-$ήYSV,촥RRu-UkT]=Ћ zH_avfwUX^N$GyUJ`+5D͌яZN7u?}TW)ոcsiv=J'TT*'mK'/@D! GUBsUW +Av(GLJo%x}&Ɂ+(L)(s^5DENXCWN6&pcMFQwTt +552$~v˫7a0_Rijf-Q]Ʈ+&w~r7Q}S~rZ7~TUUV}F3 +?wMN7{6|T-!R>}Ɣ2]B<ڗo7%oǾ +%+'jJXaD>D3c W9Sjv&թV3ܯ)׼̞⮜:Z k(otwEuv>S<$pWgTm) }ή3rJ1qݎs슚 +@+3*Puc\A+vsJy7Ț|YB549U5jh|QԠݡ\kgy]7v [?yhSSϥy4}74;S doѤrB"%x ҥx'r9_||6zhar&'%w@<I=R9\$%{D2o^Q&LUz6H[ϩдd͵#Z5:iL4mr4|\5ZX>c C}O blBv-j'R=Ӓeq5BE~. Nvlo~_FBjUoΙ+SmDucs%G@MI(,jou\71EH&S(kvLڼ[KܕsluUɵ0UnW/f%eקB2U>Yݟ]+k{3~C-oKc¸=ncЉ ƫ겫0Ot$햞j]%ѵs:sXVE5f98bk+gOQ5ZQeDϡ0%v,ȫaʕSm 6mHSz\}{6KNn5ډEh2K"4ovX`~[աI[T+8r7R?٨ZQ^Dm-O]_^Z rz&B55% UKK#Ӑ-pOmA(06s?eCWΜ^7G̖SjL;+p'ұփ+ZL1v.m +kx!)wRǁ8>\ynſ Wo)ƌ*%"xjgMncsVE,UjBW::Ԋ +֝DWv߾^!SS*eqIAd8-1˹#8_˱t(\h=[U`R$)0iF!9'igc٘NLZHg r̯Fǯ7E:Qzd +[qgG^jgEJ~O/wYiN븼sՊǡIćpI,:/H&Jl*‘ӤcrMyzFyz+jDZϺPRCvbBLAg:Q1!Nȸͩg'gV״@BK\.{5Jp2s.")ʥ f~\$ Sf3m}ߧlj3-q3i@3{ƧХjG7Y +/YΔ8tl dzCD&y:?Cʫ]fbK+tt\] xj:Rxa~'~܉;>gKO%V'K4)Rmo|ܒY:5Ԏ^:s2i{~ͬ,j Alijz*g]A2<Ρ?z*ިqTU.l[==.^WM3SKEgKu^Z_R]=ȣ')zՍʪNvEM2SO=\RN.'qWpkێ,|Jm|80tU)yKR cǸՄL-qHYpS#U"us_]|{u<] dOi#Z;!>; ?-1XT-bE>85WfγArxQ\jNQNr_w·oswIӲI/)a_ޫ&L0/N}{km9j̕+J OE'U>[L>dtȐ%Wsd瑓$"pҩ^9cm+nd̸MyM r~io~\TCI.3gΊ/.%vS {fjbf_ĨP9~C-?vLuVLeeJah2kg1(Gf"7 $1*]V[UEwQÞZ[L\w2c2~ՐIzc=SMM9Ub2:R$ W/E7*Z+N6U3$wBt>T:m2*^v\vj_Dssc=WЛpӫXhJk*݇ΕJсn>ڟ5AB{l54!+9.%>Cz%~=xk,V}E">7">5#ͿtH!}Gb;p}#/NG*E>2bӑE#eX=~>H?Cگ3<鳣b ϐD9@zY ]t}!MccH?2{נ]B?b H?C@1!یmb,6UEX>FGچL෠ H4X> ?Fs2bH! +bLA{ q>A@/H?-% }zH_B: HE64^tЌXHD@N tn C#ՠ|݆C=3@> q4!!݌TA(`7Hz !_c>/6 @CHׁ@! sꐮEARc<'kzb!} >b7Z?Ӝ'HwlC~#G@R>d==݅Q/! } U,A:Y7"nA +iϐ^孎Evt/BH{ 4H"G-G=k?}7ANၷp}=?t1Q=ѷ{ bȡ;m.Ә zfH{U9ÿm$hMMw.GS$h=?0#+ӵ% h%S-%wzւ݁-3K7:LLx]F/ɨ CtY`Cy"EK;?k1OU I Cϐ2%Jc:>:^L($z[%YunnGK?x_G]orZO{K~$Ѽ1Kse彜Zu^ Ҵ'%'~ ?3)Q4uXd^lG?X*]&뺸}M0u "!VKm!k ;v⼪1S0{vy;$lCGBΆ:** ZE-RD[kUV&YR ފv]O> vf*Wss>sJ؋1UHj>l;Mo aoK25M`㏙b; y %SX̠TphFc9EC8gbGbjjو]~$:+}iڵgѪ^(nbQqʦ~\2!:er1oPfXxOo}͢v +w% Q 4${>{2c^bgQkkU!I9iEqCO6x(ӿq e!%|W Kd/?<JM'8t}sӐ*䱩.85SZzGv? +K b.tNgK (F9TP24q6=S+AzpǭVP?K]2/FAnWA]wbҧsX<RlSȤ#{C{Kz..޵O1r bdD; rNs3_7yҜ8D$&*2#hQMq tMXwޙ^u{㼼}p\e{L#{#U)^Ǚ~ޗ`;z箏6{T<_%tRjȓy?w%;}@}]P(xZ$]~[3`:wE亪qyrT\QJG<ڍPv"yDU:"Y8J I(/4!S ?`\L}݆o2tDqDw:L>>*ԩ3xOMOJ<[s6PSy?K #S9\ʰ8aۆ +ܒy21ⷋDE(4Fgm#16=Ek0ܝO7z3ҋw?ѳ.?恩Z"5yrZ3'q vİ"?Wܛ~B(ϢJ6BN;ͪR;quh;DxUy0V?ßJ^Sܓz&6nN&@G#08IWD=\%Nj܎xu>G:_rr + +Q6'|uE=k;2=۬6Qcu]M%7؜"Fn+חP{m:wO7=M+/y$^(]OҺ4T2 uG%n{6W&Fp.!w.)jkϮ}/*J.nT)}SWzьaUUJ} "[G|vƫ{%ۡ;cc:r\_0qlm(nﳔ<9)%Aw"רv/x+'?,OѢ+pxXOn{cW?) b"Ѩ#Fxjmcu~~2`ퟌf}9o @hBBpDGe3#C4~QOhu =0 xfm`vyMe b[6˩w, J#l64-ٳ6dԍTN3ʨM)&㩠'lAqN Ă]|,%:o`/V>uly֞OWyϯX,` +\Yͱ~/ZF Uűyi!F[FV~Mn .l>?[2B?aocgƏg 8l;YAeH(>.'.*!4b+i/M_ qHmYW4Xڹ$'˪WIMuVr?7X6ύ$`q2D.ᐭn6{_LEVAl[6c +؈ڃ |`4fI~fW@W ]oly e 8mtJݗ0gg8$BE_qQ5~=Lyè]t+AõQ^A+U[e:H3F1Iy6a`f&nί٤Rr߭F-,*$i/gMcίBIO1|8žɀK~a1I +q0O_Ih%oƈR"{ 'Vu_e7eT^P./YP^%UjZ7q=ʲ[N*{?IUl)nxc- |A:tYs.S퍊]<[5Vtci+-󪭓ԃnEYQ[$Ӫ=yYjgU/~} +/Dbw[(<&ùTeeU=Wԟ ^)UW}'^5#ɺPː\CվRmm˪=u  +ߌ+*tEe\|_|*^δַ:r +r\ZE3۷ +(Z|-Ν99y]|W>c9͵-M-ϰsW3Ѫ=\jޖuKѯnTRƺ3e9-5m/ʡ˩nhҳg+y-GrMMߓsgR4`3K -infx):@#ïRRz7&ubM|qK +㐎 .㚮w#T5qQجB i|wt}G5z i㚮'Ǻ~uյVbߣ:nZyo`LD_ZźgY, F]Y,~U^l@ubŇD}ftx+wk.+(1\.T"(DPP5ׄaJדǩ)de5,,ӹ5/["}qxWWl)eYl&<' /8` ӹ02tQeB-^/TGzRFwEm@yVfDeRK eY)Y⦥elN->ْ>Nw_J]s]l! li!d^ ^ݱ~u'i d"ADO;F`ʀ=*B'㨄˗pD[gU0^ )}eҦ]G28.`[dj orj _;+^*< @}`CbTdؐO؆5<%H%nPtt*ohKv‰`hdЮDT/B&c[R]z+6ҀNd]0%B݉OlEA">Bk!}> d"4ݯמzꩧrT \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/install.sh b/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/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/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh b/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.cpp b/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b6088c2b523c51507103f655da29412dc0bf2f30 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.cpp @@ -0,0 +1,199 @@ +#include +#include "graph/types.h" +#include "aclnn_add_custom.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,SOC_VERSION_ASCEND310P,SOC_VERSION_ASCEND910A,SOC_VERSION_ASCEND910B}; +uint32_t socSupportListLen = 4; + +TensorDesc inputDesc0_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc0_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list0_0 = {inputDesc0_0, 2, outputDesc0_0, 1}; +SupportInfo supportInfo0[1] = {list0_0}; +OpSocSupportInfo socSupportInfo0= {supportInfo0, 1}; + +TensorDesc inputDesc1_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc1_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list1_0 = {inputDesc1_0, 2, outputDesc1_0, 1}; +SupportInfo supportInfo1[1] = {list1_0}; +OpSocSupportInfo socSupportInfo1= {supportInfo1, 1}; + +TensorDesc inputDesc2_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc2_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list2_0 = {inputDesc2_0, 2, outputDesc2_0, 1}; +SupportInfo supportInfo2[1] = {list2_0}; +OpSocSupportInfo socSupportInfo2= {supportInfo2, 1}; + +TensorDesc inputDesc3_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc3_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list3_0 = {inputDesc3_0, 2, outputDesc3_0, 1}; +SupportInfo supportInfo3[1] = {list3_0}; +OpSocSupportInfo socSupportInfo3= {supportInfo3, 1}; + +OpSocSupportInfo opSocSupportList[4] = {socSupportInfo0, socSupportInfo1, socSupportInfo2, socSupportInfo3}; +OpSupportList supportList = {opSocSupportList, 4}; + +[[maybe_unused]] uint32_t NNOPBASE_AddCustom = 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 aclnnAddCustomGetWorkspaceSize( + const aclTensor *x, + const aclTensor *y, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + static NnopbaseDfxId tilingId = {0x60000, "aclnnAddCustomTiling", false}; + void *nnopExecutor; + static void *executorSpace = NULL; + const char *opType = "AddCustom"; + char inputDesc[] = {1, 1}; + char outputDesc[] = {1}; + char attrDesc[] = {}; + + NNOPBASE_ASSERT_NOTNULL_RETVAL(x); + NNOPBASE_ASSERT_NOTNULL_RETVAL(y); + 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, y, 1)); + 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 aclnnAddCustom( + 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/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h b/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.h similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h rename to Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.h diff --git a/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910-ops-info.ini b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Bedore_pipe/No_increase/build_out/autogen/custom_compile_options.ini b/Increase_Bedore_pipe/No_increase/build_out/autogen/custom_compile_options.ini new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Bedore_pipe/No_increase/build_out/autogen/libascend_all_ops.so b/Increase_Bedore_pipe/No_increase/build_out/autogen/libascend_all_ops.so new file mode 100644 index 0000000000000000000000000000000000000000..f9b9b89a8fdb3d7f874bad961f443c9dd7cf07c0 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/autogen/libascend_all_ops.so differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/autogen/op_proto.cc b/Increase_Bedore_pipe/No_increase/build_out/autogen/op_proto.cc new file mode 100644 index 0000000000000000000000000000000000000000..ea46ba47b545dc908a6c1eb639b05377ac58b9bf --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/autogen/op_proto.cc @@ -0,0 +1,5 @@ +#include "op_proto.h" +namespace ge { + +} + diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h b/Increase_Bedore_pipe/No_increase/build_out/autogen/op_proto.h similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h rename to Increase_Bedore_pipe/No_increase/build_out/autogen/op_proto.h diff --git a/Increase_Bedore_pipe/No_increase/build_out/cmake_install.cmake b/Increase_Bedore_pipe/No_increase/build_out/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bdbf2394c906b54d5c88fd5e782befb75ee98f6e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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("/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Increase_Bedore_pipe/No_increase/build_out/custom_opp_ubuntu_aarch64.run b/Increase_Bedore_pipe/No_increase/build_out/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..75e0d667758999e2300d161e50ed45a28f8d4c9e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,953 @@ +#!/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="2149904594" +MD5="00000000000000000000000000000000" +SHA="22a0c049f2277d542e559f98241cc0e440dfbf75423bd78c01101363b97e96e3" +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='' +targetdir="makeself-926681-20240525184308" +filesizes="104847" +totalsize="104847" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 300 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sat May 25 18:43:08 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 300 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 300; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (300 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 +Qf< pŕZaBm?Y6 Dz슱$_|g;H;zf֒plKAQuQ E T"$rw㒫+'$:8cb: U0g{f?@Ӄׯ_w=r2eI'GHXޚJPْYn!-Z-˖tfYK&Ch:% ؖd8U}sXД4Ԡbt3kي6 bgXwݖ*9v*oij>hE^0t,X%[QSEUۡWtI5K-b7lZ=b#9#S.鱬9C C%Cw{BYXP1zWs>E͵-) ?б~1y,l+T+4ib%QK`.\SيZnr8GEnl%zvWyba!0K]U ۙnWw\mcf +Wig.v dҭƬQMWFВW:U5.ż/HȺjW +#W5B[ZIŮȴ\!bn%_!$mU!tڪt/[P:b2b_xN_Y)lQ_6Ԛ)X˩] {gz /W1|VْNjEoPi[*^+SppV dD@h[U *xL@[ٚC9dC)Mp_ӞSl,BNg'l|= 7´vAluOvmmvcKkwk>~t#w쑯Gs۱oe@4q0OpƎWxŤLV Shu22CKcgı5!2mc'\`ZN Q}^)2@`Ms֧Hg%;%MO|)Y}[D0UzF18IAq=L R}g1܊SCz^wu*F0e?H\G+vށҀM\gQ sjk^Td(,Q˛)P4S +J*o ,@ks2lI~?F_W+fy>}\-sS,8Uw!r! O?j{Djb1aYmb,.C-'iI,bXR]I~ӁYRй-Bw ]=A548.6궚hѲ]q2]iHVmyd.=#,{[PfʺE)h!OT`jh}kZݡd}d]r`=BLY2loŜUMKyʲl1dpCdz $꣺wrU(f|\Mgja]Ājؖ6zW{fC .ƒx1@d >mcʕd+gk\ɯdcEkUyKBd1,ѱ6ֽ7_gJŴf@sc:Sc*Y "vR>?M28.K@7 +0ov :<0s@:O!צ_y +~AeL" +Ԋ֊WXѲlŊו$regk"2FH;/M2m%9?C.x(WUyp= >OQ,rsџॐk L\ɗrkyF +?qp +D^ޣn/=r++RrӄZQBǏ HܟK>y.oKo~9]a*/$5r_e:"^wC'&l"wLΛpq>yL6xy%zD\I&clmđENdjfh^)O4퍎AiGƏ||k@FǑ u?mc=A֏L:g|ְd,?s<߉|/!#=K';_!dDǁtx[:0}0ȝk+u{~^` /1Waہ!g%žiw |0vN{{VyύKvJ>At͙@Ã_lBWg+<x`j*ʭwFc{-܇䱆FCpf`f`f`f`>|P +\x)xV*x)x }Jܓܞ9.?/03?3|)87DT93O8Ks*8gXC=A +;8}c\8ǟ?q=?յ.4X2dt"SW[ZŜLH9$ zr,%KF>0r#Xڬ]@W1|]}FSwT\.cT}TӋzEmuQ6*=Ղ*t7"u.bzA@a yD)X]> B^ Qn%:Xxt!/(E+ [B^cQpP#D#.(O.E[a0N8(JYm9|"n㯑|8s$Ay?<<@AB ˉr $(_}q~r9QnoHP޿9 :=ps-ӄ7 +yOxˇ 3a6 y:q}sޟ&W] yѯ_`bߑ8]@&AySV򟀣&rx+CXk?'!EZ -1<VΟNOXRRD*VI~ٱ0|t&Lzsl̿fܿ$\pz`wVWwT y)򥬞Ri*j6/i:"eyeb,/s3#CuoA,UK0khxSan2$-0̬>D;oؠtn]kpueHU[?V8d|Z)S% bAЎF@pAv!huO;S1NXU&JxF}MONUY3i4sgbA#s9:]=a `- ۙ>il"R]Or% ~ż`Zm6|h<8v~0 1'B~ rj,SZa?͒PpZtTB>v̌KLd"uf۴=m%`p_ʎf`!UفP(g9SvZ As1a덜I6k^ABDR6oojmmCY @,(6P^C[ +qC$,CP1ॻp]HUfE#5 +U!^#TJ.\v'h$b{CNWu@(_q6 @Y8-UW͵z.i-ҎxrnNYa@(t4/+\v ]iN@ު]J }^ԫ^ў(_IJ_eTWE[뾴|D{n aj*F_Bp&pq}Dr;-+q`}Λ>ogR_yc^*j_?WßY΋*߬B_VVS~T[}qchϽͷ GDv%lnl oFS*NrΡ$;'J-R0 2e!39QE'.@B6Ϙv +,,bʈeRJ +s/ +'oP{9{7neP5VoB}&n 0I]ؾ+2e?zQ Az4Kzkg.?uꙷ/s979o%6ܾ ӹ?ADg!oXV߁bX3/ϮmCz3 o 'į1WӋb߁ +?mf?nc_y{¿M1s Iz m]hG{ +8A-b_exW7e7+~K/y7~7qmt:~s + +vӊɔyvOѳPO;AayS<>c>ōTݜSay1|aŃeF|&Tz˒*^AzX̴ħHWH**l K"vѯDZ˗ԯ =߇p= ^[]Oܵx7.Vi6U~bgQ/}52U-oygVYs즞gƞ?e H?P7|_,9x!lO\ rŴh{-sA.dVĞ)zt{wUp5Ws5rd#;&y}wjN4 +';nFd/p9)~ahh3hӔhEG6O6zE!a AX|b$Z1}SɶVE/ +dQ]gbR: BR]gw=dү½.*բخZ_%}٥#8Ҫ>800\ƱxHc4rcN'>86tMN4>ӕgh+(͇t86u+(N'9FR^Q4UoU']i}Aʏ'jS!˿AR~jQql9QatU_9}OzWc%y*!FɩTt$ORqlZ%pl+/c{©Wqlo74_@WñRql zjninBϟz4E6ލfڈg*@|ͭ͛ev{9@0XGFB6g !S&tSpqXcZd^x"+,K1<*KV!rcx8frfnp%XpFd;0ЫoKuT:H#¬@yLtmVW%脑^[YO2Rځ-VT +t'7נPW E#Vco.CI}pO< *(XQklY1/ioiij>Y^·sooij>YʃvHP(yVio +?o5m`v?+5 !u#kh;JFVK鉼3dz̑oE\NcbV4,Qc-q4~Ǵl^' m,ςQC+YF +`'w $]ڣ݉D@rV`'Lh@sffA~|S6oOkf5%;@'O̢OĆ֭ u'HwBI i{bP$W4 +EȈ֪ZH__,:֭ZSI ~H'ϖs)baMJl km舺sx i\ĎvpN<{5Evo,ٶirH +d4bȰaoϙ\O)1 iH2چДZZ7:rM![0"B!? km aGFsfzo,mM qB!_떭'ï~=}9 LF^ 'O:!o? _-@bk[0th"~_}g/zK^*y$2=գl'f^󶲡6,+n?vt8TAm#~ fZ JUh + +9$1bRxeBz YT jJbRW4 dbv_6xwJA3gmsD!ʲSv;Ea| KC6' aUd]sDzyEnLC[!00nh+Raŝq=3!qtvXRO¨>]Nvy80Yƒg ~&)ĸpV!dhl7GFXv?ZVg<#9WG38,w~p5msa{ <%OKw 9RA;vl۶-NISt&6k0ā6_oC-E[3-yhp|hɥ{kן))3B.e6nغeu`+QEhhq^؀Ga4n  +N$1T +`x k<"I Όǹ,Lo.MɷK`#yP-ҥb+ Ӈ;`QbZBʞeh +Fzp +]C1}gf@;Л0wxOqJB[aÉx-'<\ si.p.dMx8pB\#%rII;r{qgX9]ats< 4K1@F NGM3Gl=h0fn 2 VJ9zzGR~oܟ/ѭҨ. +2#=NV*+KG-TE7qN&`qŇ]=gL9(0on(H臫lx|Uzj1>)b)E2KE4rDlxp$eMA%cQAϋ 7nrU>L#+zqˆQK$+[ *t0?|JqƸJfULN2tОdE% :W2>fAq*h݊ Hacޮ g-eih +p!AFu3SLe-CKe& & LȞvubQ,v0ejV)x@H~ q-C0rCDt@Q-la6- +%Io ?<W)Y%I EXפmEH+t7r?&2!:3/UZy.# Dbn銲_R8vǑ(j=q +iXwi72EZ>Ea}R<犠${RP7DHɞ+:Rd=0l݈{f6$'4\Gs.[@drhhn&ض$bi])",3Bf?ea ~58o|,^mɝz᯾Yd{Rc/uHI [_qT`EĽ;wC[ Dc-r|XD,8J0ep1kW6 a…8wI 0dv +pqH,9da<1,ə=wjQL ʢFkn/NZ̎g:>`3)cta\Pƃo'p>:q9q:Gx+<8oĕjqO*YXeIzNE& x[e+jVf >޸|wIY-}m CGj\|M%#xcSZ߶ձᾍÃғ8A@7B1oSisK:uSzΕ>F*>5ߺmu}躰Cc;*xoNp4MUœd$dUd("a)HD8 # +Ԝn7+#Vse9^ٜ0qNtLF?qKliMiSP+1lGn0ҽRN/1-#rvA-ΣѻfD[w(sA(ƈ=Fos0e|-ɹGxRn1y#Vhe}+zعٹ|p05'4|Ls^m-G|$VL G8oo6~5wYJ@vUggh> L]N?؝\҇5:l0:mŪ>gOuqe*04M8b]uykR]5Lr:,a=tl2 3%죜hʪnه<TNéDFNt-`W> +BNWGz; +S2co?S݌y"!=Bݬ3~f7ߟ._3OeKTاY?V;Ǹ1[笛) IVl*D:!m{mjcY&ˁŊiߠ0r6}HAL +p>P4N+K tjP]qrfm+fT̈́bfjTLJgΌ" +T8T/lg+|P~~yP250Ep~xWXL[MO@,߀xoBoxD߷Ikߋx_A/7t/23R7IFTOe=]{ >!c>z2P/7Q[PqJX,QR^kے}4_ovjIƵ$zJdیc%^쒞key/=Vr]{'lYT׾\%]*yJc%S%p}8wpANt}p.Ո]sм4#[+9 HGogd8$ҕH2EV8L476'h)eXc(P2R +W%bP2a5'*BVP' GKf )P%i6C8ɜyg CĚy}mw2{pPCO';ZcL9{;Ȳ烏 T~T, |>mppف#<4n ztg k휡_X—bL-gץ=EL+SڠѲh ^B@!uuyi#FӽV`Nkցj=1{LczcO\x +? ^k/Bta/|"b qd $~&pq OCXXur Gz + '%_H!}H%Kp2G$ȵtSI<\{n&Gy$׾Gʜ%)qcYw#RxFa"L0&D_IŜ+кF\XC"Rcy|,k[u6x)׆\_ZG\,C>Brih=IQDkgE?3)CdJaT8gkNYgG/0<"r$yL +>'\*W!2{^ jgӜH^JSMI9KBt,DJRh*eRXdU4J&cD2 +ǒZP߄ττO~%s) F-3S{P5{_"~] ,;uyK]`OW٣=I}p{oдU}ܺ]HG`3^(Fݪe:l*-uRFkjUbw!NF5;Gź?֫fRSݘ]dKt,ߏC;6Z݌ qx`'=? d'X +?zI6KtfTPݫd5To||cF'DUha`[PfO;w*5'r oiqf,@=G4훧 SYR,9vl) + +N$/JGE[DfKeږ#K$eRLnhNh>:dv;,d)M7 m dxlv6!]8IF's=!7mc@?{,h-$ˊz[ U70T<~PCdG!m\ԆOS]&+'m@;fbA"B7!ԣ4L]KXNǓqzO(ϕ0{?_/sW8S DP_[zv<=ƞzz^ݑnqk=-a 5Fqy#wVI3Β$9gYN %!O.LK%!OIS +-SsOWC.lj_H;"~!;{-zP$؞_hh5-3?v8\QnSl@;_ҊvX3QR(A@y%e +{I*N2 솖+̪vrVy[d`yms_M-wLܷ½Kwc;iu=`S~:o+u?/VLm2'ߟZa'nVwLj[~>@P,ݯleE<ݻ[8 ϸҾlږ|FKw 8K/o;Dvir-aw}[dk}';د2RӺ{(++>Tu\f;O9Ч2Y8m;:zIuUVh5{<˽wXݓp9 ʹPl +햣W:&ŦL( ʛ +j@Ƭ5ĥD6A gW*Wò̱+y➴+C;:@-DvLX[Jl'yVd-eblԦ(Nu{7OA>9jEG6jSLmkXg5w@Yp[W0n[$՞֝eh-2Cz[J\2y|v9fmG&_5^6;Lo6ajq)wu>`66ғg hqJ!iɂ6چj|X\Ev͇WWYю e\$V5_"Nv6^Z"o2S?aD7gkzM!<7?wy\7W 9Pފ;ZB;´z%s} #Ym`,xZl.lD\ X΋%j4H{:/01UpuE]@(ӏ%7M˵ΒFfoJQ*{*]M^n@Z[hP|sF³LjS8#A*-`ElLŀgm1LVBQGy1skN^kko#? VX)/gq 7?[?^\8G_h6=%aEt1.?Gv`@䫰A%WC]rWa8`|ӌPHw~g/y*z,$iu;ۯxo<[7ڃt~D۳mkHCe7ϫ%$8|!i_[K?+lcڧ?]Og/~qϤ۳OG>]XTJzK IZu]z +.6cJciqaBFBx5ˌ<1㿪@;ⰶʘĘ1Mri3|^nLI>J~yR!4yn1&) L1iWM?2bL_?0L1ɸ2Qyz$^|>0I>ʸޟgLI>})&NbRkL+L֙&|=n3Uky7:7aqb2MWI?RĨo`ư!l&m<-[ )7Bm$) Hi1-.O$ ]UZoX.jw' _gPm좮i ͫB% fOI;=}zgP]JV.*}(n>Oh Noʸp["XE\='&Y4%RG&k+0R=`+VϠ )=-n*wGh<C+=4odDMj4'8v'G!qMܥƴx__RDe Y]ߣfRC4L'"ÆYh7šm4k+bѾxd B(a?[} kUCq=X(zLt냪InO04mH ʬ1thmmL8@0M)`F<,A;=*@ޘN:oPaD< :pb@a*X| 7ix˸]U4˴%~Vw㈇%}fy~2 v&AhnWáL#)L~Oo[[ =(~ v֭HԼ^칹88T*h"Mgc[uל +]RIL +KaZw$ ԕۇ-$~Mq!WoJ #qMPtWM9FF3zFSQ5Raj"4fzB4rPnuWv;k$hx'l',^8v C*q҈\81hdcfVFCAϪ00%{q- 8K1y|#v01 [ 1*肙x/aȟ<ϴpDP|',m,cJuԌ ^(7_.{@,Ga(ALJϺP#D_r)Jv%S}(,J_dkfVϯaqjdc)2XcW>?- 70V >pSIXl(68.w#g%l |= lO7 qMCa`OtmWVb(0?~p;7us'סYPP s%pDKM]#;TPȍ1NȥƂk+TOnkS\9ޓzYtFֹ[+֟iPcqYJl#Q6Z"[]њ8xiYZ  VOO<2zx/|<iy +[?oG8~y߳RV? s,1BM+?:%vݝGȮp['uI~?["EV'9]ʯ:<ׇux3k^:]v=7ؕr^+{8N!C_.2Qw٥îB^,pq/9Q2^zDq>$O/Ƌ}R> pOLGxXKxVa-{$YI~ NJ['$QHJ ?*=~\I I||aF1+@/#6 +~ HJ8o0!?#^!%\0p9,I p2pYOAX$"BLk%R wISY/V B;$\ R7JU-័~ Z“^##~g%|ok%|RŸ%|ivKx%W?%%\V:(! pg Q zḄI .dr4Kp<" k$\C_+:& of o p<>E(HxF%|?[gUu3s3  ~THȝ;J\R5ƊJW^h,Uv5[j*D>{2$A!9`ܹsN}?dW1J%&Ndp~ⒽI(ٯJ$6>_$dZGdWCɞJCZ~\d_$YIv? 1}d/KOd_* w<ɾL_,ٯ3$|7%r~ds~~(o$="oJv'3v{b`W<SF˾h6,Nj}cKVף!PHzjIߎڒOQ]IK^/)e9K!/)~KI/)R9<ŗtKe/(ߢ~K_;(~]NK_һ((Q|IN%ŗtů~/_G)>I%}K ŗ i/)ڒt!.E}+Pot5GS(̜>K|/(/E%=Kڢrzŗ|/k(Q|I/ۺŎD%7-_ҷS|IK./_wS|IK%}?ş)~KQ/)~Kz+şS|I')_~K-op^|g<==vx-u=0v‰D(K`H<&*/Qa6O"mT' 0lps7uu)p+go{%7mT$GF6* GJ@N6 uv_7ڼhKfz6:{p<}=>_}'y3 ?F2?ɞ34IZeggfFFz)vb%{1l?,^%~^r`O=.?QAT|bs<Ѣl*.=h>ʺ|Ns {J8U*o΋7IZ**oOuTޞɀsYʻMYxע v~.xA-yM 鼸 ^%^T뼴 Sy<~#:/GETDvÃ"*H+7Vyt^̀9~6>^nSy~x "X,SySy꼈,?Ky`ȟۮ.y'ټt^ "*:Cȟۢ|_X>|7LSy:/ ST/t9/y1c /ټ:/2LʻVBxQפU)8*X?xpȟ<6ROy 0WoP癅pȟgyB8_OxI]NFyt>tqR!ޗ9׃\\b} a_"?'fO5<6;Tu% {Z-\{Hnc|J }qfp=vMNeoc&tY/r/M~&{fgh1d6xx92q^AuC3\l5}(PſgL14&BEvi#1͘Rpuƣt+Z }, }cu/|9I6%j/L}8%z<B&Q=BO~ƵCkz~=B͘oap/1ɝ9 50)h(/+KBQƧ1dz¥ 񉣯$&fߊLލwd:?c&m&%k{mIPF| +ޡR苖uLH eпqtnQ +=[(7>;R8\}_#wɿǰ]xh9W?AQY{9k,55q~3!՛rڳ$Ƞg-:}!?O 6`-w |N5+>G>"j|7KG}>n7; >&|H>D΂<>]ԏ"Pr }'؋ヨ'ֵms= yNw$fKou|Vm1ʏGFe2eǮ j2v'.?1<YB" N`lRn\AI2@󱟾۪ϳ`EӲu32&W B &%[YN:ўA[V ?!۴ k} V +`r|}Յ +]Fzu x(ע:w6}#1SJ8i49s}/q''α8|:N䚤5:><͎:qҵ0=;W5_f`/?E]>C}ϦXV[Hլ֧->,WG-YTtlXf BXX&{y@5~dž=NGekOC"=[|5v~l=/֭֝u/Zlw^]MZ@jkεKk0&]3m4ŵ1̙f}ڝ\ŵLrڥMkؕ]ˁxϵǿɗ 7+b)e[l+@5@{ +U?LC#[}]t,L>m6n t:_ ><.{!b,?#lA3TcSt{ca'E3챺pčda{̝fs{%L['sSFren%q/sS`ƽ,]Og0v$nP<=^b2+ea[8D5C-h=g9,Vևť. ^T6Weg]uQ2?/qs7qbs` ;~Y<7)wN˓s~Ql^,Dmbo+}~Nʃ+(/bO<`>|ưƵvq.{繸tVR\w㽬R8xb<{V1/'s'u酱{9&I>h8[X>8Iy<3OxwX>tOxt>xb<ǻIc࿉'s%:/>:'s:?@B"*#&@ȟ΋L ET:/5"*/]=B\h&J*VDQ[fp +(ůe$.*ՙ^>*B՚mZr/F[Qw}fL=ϟ {{^{Z{9'5O/^03|o)?-?.{ })+r4+?tͽ_>c -t鯜Q hl<!)YR2):wQOgC۹>ipK3\51!;z!p/I|P!Xwƚ~-aZ~%afl@ܿx"A9FppxjWlyo @y9<?|Ŷo.c c/".!_s7Z[`BߠDm*_wGw[xO*+Sf4}nvѺ"eQ1Oc;[d; RmaUy!޵@w@ydL~lx:1 p1⹮k5a>v,v9K.GR9e|> !~ ۤEl#p!&mr_ |_hn!~w#ГrK?~ >[N9GQ(sFzmp"oȋ\ϛ X\c-v>Mһk1u*ى cOd-̃9 L̡n}>zP.\ <]-p}Eݛ*M,)F B=} $!ҹ^59kimBsDz0 +OFPkuZ<C= 6\[F>yvz[;&u+p|~nDwZ^|z;r5~mȕ>BYx}|cIߵAyg6\G Oo,Lb:?EZWP&yH27˥i >#(GP'缞@p9뵿_gsW+k>PLZ{kOSzX|C'{mйBoT'3=2R$ZS'Q@ ƎwE6uK%~ٯVfOj,%^H⮫% +C+_@\ ρ߫n? +|[d +_LeHAEH62ݥªUtp/U!ߢqx)k%~pٮ^̯;`x'&*υ: ʨ<>7ުp7Qy/ʓ>xVTį~~T7H|(l>x7%>% j&A{#j<{ĝ?NR!]'~:E׸xہAďߡ^?wďA!UN9:dz?:Fhl+ Q>H7Io5B\t(S7DNFૣ=$eQؒ( +{6EɠFEQ>ɏWHR$^~+uT?Va.ytއ|2 XK4>$Cෘ|ځ^ +|)g"UoVoи'S#_i)+| o|J +wlʙ|_p‡2'.J +w+|(&ě>x74nt*<xD-[Q%Sۜ3CNk<_{5!ުv43%~/ ʒ'nO<_-V[L{&ݘķ䟸_o?q̉&27ɿ?@/_cOܫ灯4J|=&ě_&IğA?|?qqWgOܯǁךK9 xɿ̯/7'8xɿ7WwA5o7'ެYgO?HӁMה[,o! o⮋$~3+MIGc䛸b6&../0鈟^e!*+͌;>xOcs.@ӤY#w_&>j|̯jA\NkxP᧓a/Sif#}CWH7'R?q1LK + eX:WI|;ެ>*Wk+|3_Fܭ뗀xP_p_p+*WqQSDC:*^^|^T>ǁך|J: + x.nx?qYs.xg?qN~ɿ̯bM>{U{7Qf |?'A>U]4'TxKL;sM7+:[34@\r5"U{h|W.ۜW~WOj#+<gw:x+o Vq)I>x qh|?ߦq[7W䟸_ɿ̯*|7MT|&:n~C&2›3#?cIOsUM>;O.ƻU= |ɧ̯d)3} M>\S6g\&ě33M>Wi&23>W5M* +&Ľk>䟸`\TMl½M>WooUx!kMe~ƩUM~?q̤/P__d'VqsLě>x?>qfʇx/~^8uz8Bh̯l_z7+/o Vqj/x “S  +5n1?=8]xָ[ŝaOܥd/U_1U|&: +|ɿu5'T1'Rq7S#7bLy!m53HC]o^*v@A.R>X˾x +)hW5q&)b;6?imFp9>`?hKOC3d2w~ٹm׬}-,Y{Ӓ;o K{w&>A{_gF;c{s2ro:;-$ѱ[ϡ[u{vZK&Iho۠^օ3/5TK˹#kREdMP;CQ2ߝ'/܊6C:/N4h״k^'NƗ?:6lK;oLz$)H78Ec C_R._\&"q}M-F66#Rh>hz>|f_ Ry]A5<qrпx|JO_~5~W~Kہ1ϵE?N^z?Kv(þ[+nOZGgs/zsV{׎wPYNgD.Ddd\ij&gG%czB~/IHi(~6q#2>P0G^+"  ^O^'jSy 2sO!G0>X8/),;[ȸZDu]x>38;/d.ӱʧzk]_&I?E_Mț,<'okvK~4'J|R"ZL~eo? }X.pH_2ߑ |ۓzMGo׈BwD`;8" icǵcGPcї"uun])OB;qPπ>333sT/ >ixSύ?ǸpƟBqy ڳ +sSD!"-}*!l'dє'2Ɵ1`gm"QV2|SVؓ-L7b͍E_[.Woo{o]N5pt}#է oaǫSD:)mqZZQ|w7ӴYr(GE|aЦO܏9ᣝyJRvx*eyX+&ü KI/6޼!icc@ƚC[k/]u_5iSxV$ژ >~ + cc+w(Oz|.?3ߌAk Xc7㉔5NxFA1GtݜEhLm>"#3㶍)B+lۜbӿ?6oE<@^u" cN{!Ɔө7"+F|.61?y hj[g/N 4!&Foԩaϧ@.Q>߲Ki:j4B&28qhN 067?Vc}H28a4QnqozPEbeci ?Ck֚iui+#5_ì7\Y"¶=w݈ +@L.̙ܣ>7_5>fk/O\?:&"Ƕ0Mw?#B7}I}%AYHkH;F}vM9E1 X۸RPK}&^gydijv Dr`mH}6ʋ\ۗZd]eBC"Ɛd)>R4S~I>[/ + `%' @ԿK>U|1uc.ۉ(!^ݡ?B/M\*pȪWN8<_tQ=hͪaz]Sr˽Gv&h!]dk;_lІ9c<$Qy(бMg0M,]Ÿoskv(jm3K4,]%Y6ql DSDZw˳cڮM<)bFԙ|#im%c%B[T냃z0u(cma\֌?0ƳT|$I3ooQxB(I͝_ G,籑|0mő8K\+F ?y ZRܑ0.91 tOhH1(<. *AӴqKf|NpO-pvx2cDr,m5.NP^ל>7: \6M5PDZSu^N6>R~˟>D@ Ab"b ^#V)ֶ?K-^ճỐ?ƕ s͍Ź(#;u1 +*TymiW0ayF%ksEV\ 6>'h;za}H5IFy[v\"#a=i=tjA}u +qM= 饣DVQ"&chO Q\CLCOBV  朜^yI9oQv^ҹtv SO36?lcEf{7u#8i=& maKh燺=;Zk1z9jcSP=D 53T/^5Q` ,:H^)BM1s }h|1c\[WX[3{g!:N%zjRjmՋ:8k.]-uȇ1}O0w1|E۩;x!{m .|8`y=[)}ٶdvFlK 4j1 {,sG6xR}c5rD!K9t~@&|5p-DC6qqHŞ"2J;6zǂ'б=k+Z8"P|=Køq߽T;}ܛqG0&f(Ø̸qФ,A}Uc)ǣPrm3S)t^\޽;V_[Mcb vVKKF!F|;ש֑]_񾖯u͙4P{f?xV#ZdZMFcN\/%"6&#vm8oJ/.b?ϳ\u'y|lz4l1Dž}D梍sX9gd1F+>at5a?@CM}im*<;K:ssV@vF}0+ @9Y4ҿDvyS\t!N}E<ýQx!.}Qͨd[hЃwiW'Щk/#pM\o l+1z?{ƽ}n6et'.~Ò~Or iJ 8b*\e ?Ư |[F~j=m _ts%Y"&Ew -pv;?!>_cW$E eꪷ'=BO=Ӥpso hA\+J#v +0箧^t(|zڬ!ZOߌwz~v=e]OKנ-2_(} .oԂWHm@S\Wc^2^Ȼf=OLִd3&:9h'zKߐ !kY+օ.Am!\':msԱr_Oob(!>v9DcNa/q-8NOU+t,XPcL%gI ^la3=L(7@C;pG6 vGj2—ANvήudže CݺցV]W;Eӳ)(}3Ӽk=X=?#+FQ, V2׍E}#f޿Yt{2_䈎wG8BP׃"3B;8H8Y- "{ht HV,Β?~M).Βq'qgwo7܎~^5X3X{Y"ȧfwQtY-hǙT;BG>*> tdt(2c{@yO/8qY&;C\h ;|d+⾢i;r@ї@ރTЅ~5tsE<]f)kѣ.S2MhC}OO{Yo/MqG00NgFc@usN.tJ'c:ܣNp?3?{J'A)8⏭>PGԑ^ ?ۜK]Ջ B2/z_=jn}r<{ ڍ *^rz8e frpq)/~>i&)1cQ]Ă1_?7|ڴQe?=K|q:[:[>m%Dyw ׿ }Jk@}N^.=5OJg2 ɸ6e|dF)e&˽ Lj/p/6Gxu3oc* s"jU/̊Gs}Tscy&GG!;ƻ-uǠLک #||g(םx28Y=Qg6q|Vk-,gLyxcj /C8?=pp]R?Y?5=Ɖs%@ x{psص8Y;AH%AL%ߢuեJ575xȌ_I3ZԧvhN:rR'ςU$w]?z>{gt_$/>sxl/c>\<_g?ɱ6=COXن|[wՙDga(7m]Լ +stg+rj/#Q/nS/W:]lz +2Ql2k뿽{nz=JsV,]w~6JuƟ~i1ց̯5 {{ѩg[x>|7Mi?9]gzsh3$1V]4rMvc 7^X`lsoFo{{yoQ<q޽4Z7'PLP'#p>՞F!34چKmߠ٬78qNS)>@B]Cd6ԌýF=eN4]پ#*`M0PF i3BDkc|zόz~4!ޒd0-/DgD9[oU[b 0>rX[}**oeo?,xk;ʯɿ_Bs}Ӛ V޾}C%y֩xW[lә㭭_C\{”ۙ㭭][嚱xk9[ Fעg{xK[x+n|'Ŗv}MsǟH@~w +gLC.M?kz~=j)k^^:wVA1> ?Pd0 DD{p;RYaw;h 3//qJ+ORc ۲-b4'5qߩA%þS'7a߉WgNn `> Vj(ۢw9ټ`ꡈiZ!öP;CI"b~ B|@3b3ǣ?^;;Fw}06[DS;Ϻ?տt8i*>tt?{#<7ȳ<72 sϳ~Du]~uO?dW1mjw/;ۇg@$czNuA\E[{)܇>BEuIq//**Ƣýڋ"ҟ6yy\C +@vCv#7:$"ѝgs;1i+H^̑6ASo;et-Gw?(W]DVyN{+qvzJ>[RDŽd!wK}t:TwPw tuml4Ȱw3;B=}uW|w AyɌݱy`=Q@A9/9/.(oxP">l5GF''>Y@d OlN>OezboSft~1R>,o>,վ=t˱XOvԳ֗V8|7>[$çy*;3}1~_X߿ /տmG ޻4>x)F_3i֑gi0%Yg_-d .|{-`y~Σn'rO8l~2_gj׺,:'E!;C=±ŔEong+t?ؾ;O4>.hp~}P$S;vuwk\K.#F!\;l=X=͝BG >ވC^>-޾cPHSxѾ0H9l_k2V yt{ö!OpGJ_оW\ &}/l_=.^/87xu|]O>[`k{?\m:..7ݐYi pϊ}gUq큿ez>!{NkQc#.ρʹH[>~| >^Gř3\{ȋ\υ5orf}ti>=)a/kGv9631.<3?Rυm/ܩ|Ys/;9 WW@g]|:iG=9NC/>x]=uLa{0F##oܮ /%KԂW̏"^:ڤ#(C^S a5_ocbaǹGA{j/Clma9aÒ3a)9s{(vuᤡw5 rmÈuz1q␡H.g~< +7׶;q;H;`_yO{^>߱᝸;|;<;J;dA^;}9Nißꏾ6lݟ!϶-U4 +;Ҹζ7C֨f*E?YgKش$YE +5?Vs@+'~Ŀny>ȗSEgqka<ϡEy_[~|G!:ⷱcRf{?0OؒRּ{ڛu79G׳xy;*6c(V?U㳋E"#y`[ua;(ʹB w%؅?xrΤ;pm|7O ;c^vI=}P:zlc6X6Sy(="4#8C'w>m([B=w xW}Eϣ{gWpg~i?oGZ[CYs>ߕ?a<ne<d0_~߂néNb>b@[n +ga C O{x`ZiCKSLycס\ #~/4J ~:K;7>BvtSXočg\GM-'3ѿU'17c~1/#c31/>7fӭ̾Yg%MqXcBy_| +I}~ YZ?j{w#7vwDlO>l[M=(q#(s|j޿-(~4e>p5 ;,E=&QǼܵޘH̸=GϾǔ;ԁ?ʜ}9ro}ӾbaQan|;>s=y:+A66%GJzB>Ww>+c{b9{(ɶe˶/ig.{_.>kS!-p],>ENC*+N/;y}s#ݦNmx]7}=s1q\{x GWAlx.n=b 6O&coyKg 7K߿|K /7 GƯݙjhQʀa`< +9>3Djq;[̳xs#m[mycXvx`s-5hO5M9lO4A/#mbynF毿y$wiǼd|B_1.3`q#cBg;{uş)Vų9w·#{]Էb!#>E!e"(0:?:~MՏhk=[7%_'ARAN&e-xGy~MӲ߉_WkіV<dz#?qNMRg-2 +sF#eזJ}}9/&~6&ڟ^o{/ ~IXZv˝X]DҜ E ;mY!~ME Z#6L/E,{a +ꦉ}{nѿ3,} ԉxʍ8\>y<.Hv19ǪBt?v{<[l|¾f%t-ey' yа[9ǡݚ߹|[7ag_yS=Dww"xN|>/ײYVzK}b[W2Cvv,WwVrop%5ߍ\뼣#y7mO gߥɘԍyRB ĿXmyz\m['7`oa?3Sg9AȒ1w!c7ϣp_is_? t>_ְ݂};z߰'y۪GV}׾ijv-"r@ iP#<9"I].Tlm/&+TGG+} ~MU|ߌ^y>JZPcq}j9q[|/e3_ҼmbGvÜ9E\Ĝ Ǒ\ 0,_0N%o^뷯.rڸ7 P:#8 Vȉ qsbѾbaG¹bghq]\M B+%՘Bgh}G\L+ z;b#m|"Dbۇ]vm3jx1н!Ws01WEBw5:{7KGq7SMo}l^ K<-rXlk3QFK%oDS)slù%o⇸g"δ+0]o/%]ϰf$Fck.-zNhY\YW/|cl3Q >ȃZ\#ָEVqjLVڤ> o9w<^Wzɳ[OC>]ƼO{}pjh=C5y`v0G(4agv[ ?{8-BWg5|G>h<'^^_DOߑN[eoi; cべЏ9o@雬)x颿_K_>s#U+9i|-bg5' #'r{:aCI;~:!C6Xc~ê䮟M6tw}I @koYU7 ]k̖l3esT{0 QymGo-,mq9CqZϵ=%дC!h*E{3З7W=/t$-fN7筃-]A#ZTCՈ1g`yƀ|8偞?t[{ U[W9V/ +c+iϣvJ]c7ϧ/"۠ǃCHG҆!h.D޺9r.D>Ij><(mP\goe kK\WaFF=l1(3dKjT;uݢu>6B_~D=Ф1Q^(o_o7z>cS鎴7?]tt d=Н[~&Bܗx'U? q{C[~%"GXɘ7`C\b(cv _H_mB^ +ca~uGw_e Qn=g\@awuƊ^9태# _1W^h=_:W|V=y#||hSBG(1wC#77@7l݄oӍ(Ē <dʀ}55oiA6`kCь>ݍ1ٷ/bU9vtذ@| +[!?8c]'H/D!V}kl`<vWى>Zo0_DYĴ޿ ok>K1V7ߓY棿k\WgosϦȑ.}Z>1}dkG#fh +R# ޅ`V3|uY_V{{2-9Ц P~!ݣs_g&oy6ricAӷ qky}]$,HR>u]7A?ߊ6̃/tuwyQ}=_Uq~KRcI.駇_|6-N/mF 93f z#g 1%Z7R;ĥ}z^uM6;N}%eJG^5,꫆N.NȯK|fUָJ|5e믿U᫚VV媙ST]@oRBL__tKVTTϪ.k*k|7͚V3}8\זϪ[Em}u]^Q6vk峦j| +]ʙܴ+攕\T^_Q5dne3+N]S>_Mye|h,E˦]Ob׷WV(*(L +-S `^W&;|3n^bYT=wVIx.U,lVMGtJQB***-(+N,ˊfVU+t}K)5|Z 7M/)͙U4oztp+)Yb1.z3QfT͝]s R3ưhhYa=T6H>(T*~pl|Uh*\`kkfL[KyzLoz$xU;:E}+FGޯUte|iWU +W>KVjWZs͕h3TQyfWN+.GঢʪȜWYU3Iw$:*dMLgO)?sv3_sLeUMu:jV!%Ke+|P>Ygͤҹ|XTBRؾʒZ_El'Df5lnVK%Uy|W-0-:JTMΒ^V>mz%?̪>Gܦ_^S2j/>G@ r*!U.*-+fzw_ĪrWA[i,v9~¤[ &L,=h¢1!. e(/3K+}fXUky +\gM϶d\.[R[QSDa֣/ Mzvrk +>F_+/h_Wy%> )3gܴɀW-)^k]T]2V,KiERu-EkD]5ͤ y!zH$ʮ|o_ie3crjaDrWUT*'},(2f>T~|*)W)ոUӣ4+BE"%2_aE/M_"8BVNUW*d?hv&EKx=S|Jf# +@?1x-)q(=aTY)Z"QkxOe4?φmM-gPnLꪢ[`s dp՞QԵ:;OM :ﲪ0K_Xi̼?FS;ʁ"LV(Q.U_Q.uktUUeՄ]J]5 ~5 >/T% q]T+5J5z*spXcPy6(V\NN9US\ut&@yc5WG<&∵9Ro,5ȺؒaD $ܯ)ӴF*uUNE﭅X4Wf:[+7kKfpU$T e9b'B7*۱*)KǎØ0_T ̪Vujij*k*˫+&aAS&x֫6bohf\)SuK7s˨.Hwjie;֢ /*d +D{K"QP/.%RB_W|fTLΉII阌eeЖYe&_GŐuiO^0 X,dUn7\-4Ljcك&iK\ot/XDq&|,IBZ -1C(ZNBD>.M~~_F*ZwnΉ+K\S-Dѣh'咢&̪򑇙ބ[oYх51EU*صXD+0C\@ryr 7}[UqE)t<}9Ljek|Fo C{L}&2lZ).:cc|'3ZnYU /òl虳k/];sRV_9Tpjy$v^6ìa-cJ)\((j_އϐ,8k@ʥЃ/շgAUS(Zfb2M;DK,1u?J-OOTŤ.9\lSyZQ,ʪݖVK+UuEEcxM%*IST͡O[& t,Qk*tVBySiL}6_JKU: amZ 'z"W&c-S\j2QOyML7~7kdhq8D2-N+>_U'(3MؗJ'&,YncfsfyLDUJB79 fjk#Q哘w125{ +Qrz\v7!u*E}2a!JuX>MT\H +XU'RR8a +BҌBqd/FזU!Tfa:1fQ=c>s?AWVɛ:Yz/G1-Ņֆgf5W]nh>O/T 4Umu^jE Gkݪ+Htb/#SٓU#I㚲B_71%7LaIYZ(wzHގM}tp4 6Ӊ LLu|+k暄c+*}5P?)RK%FY^~sY%.]D\KF92xrZu'oj,v3n@{O;ɗHCb\v|uBB3Sd%kϐjgKg+'N踺A8wJ3ݟy4C'NY6SXz?7c|2㱀;*y"ɷ$9Mr.:ii{ڑ^Ubh{1fYhjLTUU&ڠ +x"!CMoVTQ1㨪\ز@gvjT}_4sj%:/-/).ђFUYIeU+SW^OĬ'G\~uW4v#k/+f>U $eKR1cGԄL-qHXpS#U,uq߹C|{S\]4LG(;):;&W[V+.sF)W[".Xk}ƝQjd*T̵ArxQY5OB\ Yt>s97[{8z|hE}kNgInEKzio[[ƀs*PP;wҷ&*IWU>KT>*|鐙-NiA})sQ~!7!J3\yFƌҔ,/7Ln96sD Msx)!9yWϚ[,f3Y`f4ƒ̕ۑ~" %PbYV2Y>a|\JY8v&24 BfFKju'Uwoӿ +ju4źu7.#0[ 1UF2Eo*8YrB*a<\cJ8_3. /UjV.vqlv 5S+gjYIt;P}nt"xzT9ՁWlDKtIߜc=WЛpU[.wn4uE5h%"/zr}CP: p0)"n?~xʗ!]tI7\{ #אt7wYaHȗgH^t(R7H+7CH+1tRWwGz3H }8cHGdн0j"mGzDވI ҡ 飷Ɛ{a܁tG06"wa$Dwo0#ꅼ b nD>"ԏt\axqӑ>t'.AiHM3#?d" ÐGF*IHw#"/څ4Q4X yOÑtR ]t}:A=w2cC1钇qwڇԵFEB!Zl/!)^?][fAd1tcB0֟CHg/]C c T0#mFVA+?Ez3א"ݍtR*/CH_C:{a C'A钧5sZ"}vtӆQvD+G:i6Y= ~z^;pzt+ǐ&z=gw#ݽ |/CHv+h͆,Hg\#}/eozg}T"lL9ʑ57>؍sύ.R]O:r-OxmX'Lǩ=c-ߛțl_6^Mfi+>I({ dw( ,/E6ӳ@7҅q;KKwy W @DϘyP60/dz'薷4G*Jݗ%{Vۧ}c%/>fN[AvV<0^wM!O#ϳIlEwuqQ2I7Kmb}?lsқdS,U3oY ة +ڱ:ߖe=s//Mk-.\| QGY( GM.;(ҹʑn.۳wnV>c-Ki(W}p?TIu9;+l'M:Sb‹"w|X*=;03޴kE0߭*@wmm7b/?i=9,{y+WkabӥoZH[O^7 +$obvԱPٛ_ted糏I4K0)bCeOo7#fKWKП;,!Ud͟/& u>/^GX[}=o6tvdx8B-b;SdOy۶xrEkV'lUwzB'hbR!b=_J*[]]^];wU%A; XҥYƒ&64_{aSRWnʎݿʤK{?X,:Xl:`Iv> l۾gw=,!IПW! m77Ly==uND=='Bb}`wסؿK9+źn* DRר%g nkEǝ;GC^ ,n5v>9nſd;ǓK>7O5|χCVL1P^s^:}$O~!𲤂zny++cٵӳ}4*eH1Ξ3U3 8-R\f2M;cMFpYIA^Pfau2̩ݺÍ:%><9eb%*ݯ/-z蠿4p߾C5Qm> Qn)7|w^m !#> }2 Kɔ;9k݆I(m9$`VsYt>61OkFU0_Iό鈽s'H'N7/MVQAR*hKU__rWPgӪX9*LنKewdE9w`;&3О*FG};yҔmn6:JJ(7+M8\;~I)1_:oz Kٿ3Y'mzKU@2;ՉwS> w +0g=u6YwW2nП0tIKQ%y +ul}\P.9Q 0 `,tVPx힝5NV:YxxXYe=V/oo9z&~u ƾr:3e/(KRQ0o>2X)u~]y˒F3_iݽ+oAhG>eNf;gWXYtm;\Z+}h!*V?vӁݸ"~Cq^??m@ݥL$?=V-X_?b^9Oؙk izB9p^~nڮMsqbʻwlg$ Iɏ=-7W}/$M)[w)z +!'/q3],7ws{r nޮ TIUsʤUWZ휸ox}]n|)s<.iӳM{*yalz%urMr=a/y׳o/hOLUNno䱬 x|,а Ds]fi~ 7EVf+߈7|k|yq`#5ŰcZAY'(3嶼:me'i uR߃qRpӌ0e^*r QA◆!3ʏO.Dco/̛(Ӌ]/Dm*$sbcNcwF#TjIMSYhKͳ4.`eU.K_VwSy4xKcLv/bZ$'dHvaıSY>TI0]v/cLu7QXޱlKv:_FB=v%}'=_Sdz2ճ'eXaw8]oz|e]zOM2zX?g]΂uIv&_9 ˵.]*˝.=gh]ֱ3kSݕtəz+tPJ}# y"Y.;n7qy;aNq w~rmW%?1rI.J&7ps*.RȲ}qzGmˣPꝌ5+Dҙd$(@"Ae*QSUcQ3HtZYWS3&a=j3L6L*g8NQo#NҴ0bnwowﱻ;5w?Ww zyu[ppga;ȏ_f; +O8f\(Wh5d"6Gٴ .kb'i>Qmb6jGv}bvή_(bv}e.p=]C1҄bdZ/*|DE Sf^/MfsEF4}Ζ5]`!:gąogYf+=s>ƶMnh#c^g^-y7,ٔO2lַ἟!YnÜ-pTr㤟Gr~RgcW km}l w@`L.l\ ?KZX5SJ.@'1ScElBa,ήVȖp46*Kԡ71|kKW\+_UpH?W]Ģ:S/%(^45}fGlOfO/ذnٴ6->eyإt7t-h7[ڂE©]DjEN,oҡ9-@VS|.N>SZ Q5]"i9 4X1rJxY݀ Y-zX[./ PMP7h{^VuvaVf|2%l +t^(Km®]@;\*١,˵)~>'*B믖g +x>Ya_,lerx~Mgˡ!99W1f*KcxQh-~)vY;Yu?GsM5͔DžM r%ifk{[ݟx.m8^q.˘3MpsƇX>y[q[42\9udPpQKSnziy̙/.nC8͋9#Q`D9DkD38p2>"P1L + +^?NٓJ1\WH#L4fȅI|ـ[VR&#?(aB^oq{bUx_*SJG"E* _Sf-S?~ǏUo&v+S2|7~$@ë28GY.OQNUN \~O#wpĹT鏳D8eo@Ĝ}L)O11UK_b2JTC8DVv o,Q>*/J({^s"|u*GWq>) rb,?|_Kj TjZ_Ƒ97H>@Q}"hi:D.d +AY +jG}CTmvZxzm8f("3/,M}4஫cćGjø_D`'u4IVO~ue@ЪUޭb׵xoĮ[EtA <^L^bH=d:ڻڍV|\(MPp$F\LXqr(;+8ZpA5[9߅>x#hdRՌo N۷ػfK#{jׅ>.BFmѲ"*Q^$~u8Ž`y{ړax ŵW miф7hf9Wk%{[.- |OL5r_/J>;&[( ]1\L5T>uZjz#O:>|L^g*j0sV(7[XN3( ǃ/}3C5_`Se?bia}-?TQ8?;䅲K0qY% A^H{eIZ\_U8}OT:M!e#E V-'geN ;_S0  8a0#uQiG;V jWf<7: ƃmF:83vƃ]^qK $h"i#ҽ!p8D{e0e28.y 2!͡#=`o /%\|0m{%UVӸndd Nay*=+ :7nW{P ub[`A#FFD$3ja c`z|L5%~H'#Ich(7|]X]6m{F= ͸؁xH<[D-y+<*m{,tEnz5Y)ӽ;µݮE-Lg LX2`g +j<4|Kew*|T*xW|Z JYp^,ø*H_{mXt+ Qc׊5CH<׆`=c}}IY$##Qe.lSQQ+#bÀ\,%cfMN#G"8TB 6ˇeP{##Q{"8hvr#=Zб%ĕq(rDp + 0XW|TwV8ъ|F[}6D3^͆n_ /+דS+sΠvzՊGO}c?-ΊXzcjJu(%2B7_?B_*|gPp ~/qm>ROOf̐M}/a$;EeiIvSDW$KoR|}iayYN8Dq有 +sO7w0Kd 3yFYi/5s¬6qיxt_cSM|AڛL[l536%iomaFox|~"le(&JI%S9e3Y\'|_ Q2uLpN&\'|p^,9\Ay W |p5ep5渜ɥppetNA 8Bp5O8[D89(!\SnS˩)\9( ~ co$|MO~+7>ImO^C4[! %|+s'|p9@8=O FN— ?@8{&3N.'s72;J& M᭄O$| %|sCkpᴿM?Hx+"PM{!Zy{02'nI+ᵠ-N,?SdI ,8ܹs]}?}=sw0Eҫ)R|I׎Q|Io~Kz ŗ_P|I?K%uT?O%5ŗ_/S|IKU/?QY /P|IK(ŗ_Q|IL%EFu/ŗ)/_ҟS|IP|IH%nGu>ZIEmI=.C^ҕwI$=uk)Q=KJ/(E%=KKڢsG _ )oK_wR|IMsz_=qTO%m/(Ka/_k)SyG_)B%4ŗ3_R|I׍)_ҿ~KeoO]y5L灡VY+xSo/'1|y^*w% SDCA-3y:7wNOEm1Vökɇ./щ)Oeb16SB#_ϑg]0ih=ضNcb^0΍cY܇uH5Ƌ#gwC]8Y/k_0{aZ ;Yx,/0^./q_#u7H}4cǫ\~%^쉣|9Q>ܥlOr]>'G`5?] $|⵨Qy1zGts'kWy+t*>u{K:/冿3F}]H/ټVkQy6ȟʫy)SyW<#KOMy%:/u+ET!*&?g,kET"c :ȟgv뼶1P)~X!Sy[uYn?΋ʟ[RpOPcxi\絍)Rxaga?D煊 ⵨u^~OkylHʛB"*oKgET:m"*Fa8W!*ټ (Sy꼶bȟ;X "yX d  ?潢&4?+Q +LS]ZQ>QFߛpbԸxȧd)|Mz28wy28{VT1Mntscj37J@C;m=Kж]v>Uh]:3nB[v+V6݁&hD2K@kh}2FоѮ@{J'ѮBۇv 3hqO6bèc7ހz&71x0RW|ͺfa½?1)o-V ˧ W͏ Sn+~jlK&1$\@:ڟMLdp{Şg|$B* HM1p?Ȏ5`L1g-ŴcM]6K*mzU<XcnmI}3 > .};HݹyJ'ʘW:%.Oⵛ4y7f|kd#Cx㫉iNk=n&2~2_A7Mދ5z'@ό1޺}t7:L~/$x ,?)g& cbE >+}RPA0u/X-&^1y>c0޳q |%X).e+e9ԧ&w5`NL{)c{s)`>;J! +Ɗw4>vZ Cq3K-6j7y'>wn` Utlc;M\d(ٶfLv?>ἴAOL'8>Aoq/ )|Dϸ8+S+;F{hW1x_P&ڄy^a񳤗ހz?#u * ;zIS[)]kЯm +|m]0&>Ķ\pߓ(IP~).#7Ӛ1 +ފg&&R->gSu>'LE|$GbYT8@>;vBQ(r`7-okض\)ly^oKx+ղ#'ܾݞ{?6;2SgܞrsZ#7<`to2]c*[p:/N.z_ 1u1\[cj%kb 08xn;zYXKyQZ:mfА?K;+I,q{~SXll LmL6ݴ݅mݛS^C]vEf2xG }ֹ+V\9c&sp4n{Yk8и7LWwՉyԧxɎCkſ*ƕ +Wc1oHKkeNj3WZ2]>k-nq\i-W[|j\i*i~јp @Igʃܫ,>|+k,OZeq7i\h ϵE̓X +&CMm;->@3Z߶qݢ5+OlC,Z>upݢ5֫n -ZREp]5)ŏ(\hiýkOx!]{O[m+yZGL-Nmם.'Qwˡ]΋콜A*<ʝ{t{wJܻǜk߻nwk{wwod9tҵ^-_A{}FN9vbApmߜȶ=m92lD?+wO7mC3)tL|;|פchi +*Ol剅čV&~>$jOV ϳy4ƌg7ZHK/_^y}|ST_FfےG^zȈZ?bF6I}Ր}l+Oh[o|vd..@{ +6suևè9~>Nn[/[z +e_.~_D :.yyx_yt^tyT?yF9S[u^"* ,~ʟ[ +8OSy?y +&^{\Jx l^X癕px l7ݬ ?xw}F@)K}O0Sg&³Wrۈ}OP*H<{R( +.U6Sڼ _>oɍv7݉vvFA=v?>[ўAmNhAmA37-Bm ACہ]?kh]v FmA{WqЦ.F{e\vM ڌ<&QFس0L+<,f7MJL_´uSձ%ign>E\K;Hک~WjG w3nϧ/A6ei dv2>B:_cձ꩎k^Gp:hpQ&QVb@h&JݕMLUB\f %Ez(T&A3].D2 +TR!̼߳3 K{μ9ys,F&%WO?kCZMr +3/>/yA>V>z7b紅BcAcX{O +C&?uzl-{X/=O }ޡ&ݯZ_{XV=%ޤ=="vgRSa=%H >T{X{XBe""jju,:|x'am6{X sDwU=z# ucj}t ^Zt֏jk:7VR}~Jf՛XmcP nP{X\{X۽=Ρ=1){C'9QZ~ꍎX\FX=UF=H7ғ5X@^ܼj;'3{XYYa MbkGb+y=,'ݰqqmaݕ-bacܿ:`{Xupq=CP,Kc6a7qM*_Ybr}^XIHѸ[͵o􏼿Bk wrwJ] lO!ӷTw5(k +?qV}+SW~ң~/z&KXGyjxLOz?g=x}P׃u^֫Z:7xw{2}<^/Q{4Z_{D[y>sotׯ{W)7:4)~ xU]loFo5|!W Iߣk8F5}Mot,{tܾ,*K E_E?5`ܻޅD_=7c |Y|̧}7z:w-uSL]P>{zH]>+%g|݇>}8?i*;iy/OYpgkk9Uv|ز2ݖAS*o>Uԯ*w4K @y{#ҧխ?rY̒pzb݈|(;%GԳ}=}V\Gbe>Sv3es}zO}pwC#45W}+K}TŊ{Erɽȹf#qi NAݐ{IOAOuvFӐwutr?{6y+2E}c,#mߜ pi_˽3\sspWYAK%&IǹCNxhW3,^G틲{FY#YL.ݝf"-xmBO_Stˬ1&rCk~= !_E'֦[g\KO]*?i'J"?F,N'Ǻ:t!?hrݣW\30ttG{f{5hq FHN:_9d~erfoZU.kЉ8݊KuY=mte֗t4KnQq*]k3AAFu5h^(6Ug+J tT{&^hvf"OOq:gwu"mv0&6n©Vo\KOLl`r-=T~V'k ~ַ-LɰG{N77_0ZzT~7k ~SRyX[O'ݔ/3ɵ ZXO']j&?wY*`WR.Nf5H%Z*5SEY-gT~H/_T~gVH^xԣW|4_3>7'*oTk D~r-=ob*@/ZzߕZ{Yϓ\KO<;-ɵ!|YJOm&_J=:ϝϝmB/_n*?_3d~SE;9Ss[3_ ǚ&q:OZ?K''ך$ǵRs 9;E~ebJȳT{&Znku˕krW[,werϦ[y'LmB~էE~.$=؎_+ +lM?(~`+bCgׂ@~󛾡ןzBg-+lF?y@As?&'zF]Z፞={7_"s#3wР';UZp>kyoԻs+LQg5)t=(s73Vt hN5/Qi|iNkz +Xþ"a5/2tmMr̓{9IOطPc 5g\b¾ &o?뿀q (H.Q.a-">X9|^/ ߄rl> +xê&W26^ |ÚE|+p[ |Úg?V8uapȢh#z4ok}Ӭwy}51-Lu#4;Q`m&ͧh#߾ i۷K +WI3 |09;Yy}3W'k=ݻ{YOu!Yap}K8ĪɠY(=u9<\j$]lW]t1Y{#B]"{'+9qm+GɵQ=rv @LLNVO~C֥GU? -nAJ^w'|(P>кԾFY{jי6fɽNh-h tX+JV8sz~*?zprun/|}7Qy}+̺3QַCt(?^YM^+-^GyQWZWifWƱ \푾No '^{rz'ڗJx'oDx}r^Ew5yxݿHihg^_k2Uj觎B]cSGNS'.NOti|=-i >'WD~^L^~<@`]T$J#|;~!G +s#89t94Kq6Wd쏌yF_J,$r5v^b`Y̰(rc&W*M5.2r8g[cWJj:5%TdjO\ -gh|¯^O^Yph|,WᣁO꬞p86Nc-.] + YU=9k^bjܑFGH\#~&^I/0"Sx?s!Wx6q}#% ><xoUoIHWQM-^ᇀwNJ|X%9 G{%>JG_S;ĽC[x!ƽNß%j|qw_g7oUxqytqyG,vx#ߧ.=7 +/cA24Bx@gjd%9UnhOU})x6FNIL9%,g3z&TF~p-#] +?xD:i{r$9*|o ުC-}S +|i3Oo_E_ƽ} +_ l'TxF~>R? y#?V7Jq6$(ă +/Oi~/%F~ +%%>F~W_`O'gOTF~W#n'~ +#eF~I_O<+`x;S + F~➁|8CIלR-ؙ%3e~7 gI |;|I<iFn +g&ĝO5|ă(l@7|~x'Ç8G P?x!ƽ=ICиxD;|oS ^o_-Hh|Wx_P/xDM7^$Oqo^a|T[ԋxDO\ǿWd*-c#?/~GŹÀ1G%s>IU6"PSBҸE9 x Ux_{8x=*.{h|VXT|K-\w.-,W?qG$]x!V|ƽ^ۀq?7H _]7(%[5B|_Wk'ǀ?cw\? Oܭч/7*>S0ashC碨[yb3ggzv7T6딹/&%s뒧s]M]:o?s'鼹)yvBC[ݿ5|9aG2sLu0}6pyINg[kبGR%3˽Ц}.GX8  +[,.<]][tpltUI>MDWqRF#@6>;bnCv'ݝ$eχzX|Rns9WF>/^ m՜p +~"ȶh؛]gyκyvݝ/K[ yߙ_ęgqKY׶?!(isyУc8%tHɏ }Wm'$7-ކٮҎ{'Kx yF )<#Jr/FvX&ͳqqvXd:"-5ݝ'zTw:4)nݽUqlS` J/{.Y^r4 zl/܎ɏs=?#챣feGw\CnKmw;ko8)u4oR{a}R)]T_gwD@L;^<""WH1 tMJ ~'g~w4>(">=_S=`tM,u\/̺ $,.EzGhtMhA%9"#ojq5ڷ) oC|b7uׇH=ek@k_s q/;>Wk:v>>x |(v%;x5䌂U-[mg sjP}akv~w+Ra5J}di}t>'j ;hc~Toȳ|G?z-B ʳ6Iy/ec! p@]t]ώ >p3l5HSyY<m|a,..Nj9y[[v:01c@B1Ww:[gLh~ +Nڡ;S(6XD꼣uޯ;ʼ=:>9MbZ~ri9Yj9߳|"ENUNv,ʸ"|O|mm/2bPW"ecYvT囖"ecMv=B:ଏ@Oapkĺ]bUK9aƎcGPcww*mգrgt'd'̭ܣ9Y[I*xvC;W# MbS8}˻WϿGwŘ{3\ |!E(/Gd/!ʳs|ev5zo΁>3>ڪN^bMG~Hbn[r}GSncO^ u8|y.q\)uЙIDZ^XU`*J"o#{2!vfHhJlɆvV.tБ!~+2?ۊ` {3<-#>2{ 1Q-Րs]~u>:z纝˫yӳgee-fgM b+F>y@-B<\\\][[za^ssxَq" O\}mk68 uEDX2h["#ov4u(& 4oNdD~|i"٢?&w&fb\/0gN!kz8$6RbLg}Bw:ۃyèc!xX뷱aUg%!?3 R;{Zx`1v&S;ms|>c qv߂DhL"Zp+TpWZQP"O8ğ;ĺ\~LS /Os]kn=;vOG +h \֊o:SYi5/\g^5t`83BMߨ#Z'XF gGʼr}qkk,O ,Ʈ&nb$ts(LQ/_xsO[,΀s{0{DsOК|+`:sZ.Cߝ-wnO]YSP&=/»#\U01K:^ xk7|%72{=].~M:~"C]e|\OPY8jƵ()P< +@%=rlhM)N DC,B;]E#>D)]]cQ>۳-s36&J͢?gLl[ZcK9^v+Rnk;`]괮/f{ !iŐ8CW1$C~Y%tI0rlq.Ty>JSe{'{K`gϺ3Q_3&O [/\3.wKS~Gqx4euJ|<ކ[ոr{YǺ})5ަxk&?Gzԡ@θ +c^2dcWdRjL|8q)b1s2s2։ck!ۏ}!XV +1m]xZ2رҍ`]C:tAx7qYkg÷Է1'XC{\j. +R O|0+oq .K+<|Z1ih՛ Y3w%\“ag1g _lӬW@`|4p'wFpcwg5.C.HnD^ל5s upM[57ܗY J:ď[c#\wD +>>縲ҍ|:'\.\(%źE&&[SbNޝyjllBvsոD~aNQ&F쏕o3EA0m +20>h=kEٵTV!X[]?Ÿ~qm[?Jg դЎn[_袟1?w-rk1/Y\'L!86=J==Jm]޵99 ebxZCG)]*#;6`crX[3#Wl.>݃}B_܂y XG։wÏ.ݴ:^Ͽp~'Ҏ~PGcj'T#øN0G@'hz0ƷU2~%ݝX7\uuo棘rL<߈WM{I=0Vyr^~a>o9h_VB\xuaG\Dz=a];KE;A=[2bu0W޹a1ͷq>iUGk45Nu +VCC +W߽ ,67꛰WӾ+0xわboQZTߢwyNk{8~Yq9^P Y96w 74q+%g: ˎ{7m"yq{uvWj?ƽ%70yc٬3^ ?5k\ߥ؉؏p܁M\>p;֫bpu'z׆7O5bHgcI}},pŵlu#rfY ޻چIpGZ<êuPMWLE xk (-cʹMJ,|_"Vku? s-ui9+K fL  yH@_Jl le?b_ z:Ƚñ&Cm}A_O5㻆5~<b}<(/ g߿8`hdbwvVv}37>ET[¾S7l?לUq\4 `q/`zik=3w6@`n4ħƯƁyYC2Gfl)ۣ^ wV}~'ڳ}~:qVe,Z3.&)}`4t>HņB|Qӳ]=n&+?D5I]>k,n!c#V enIo9L6X䃱rݛiF awT;[FI堭v$ih(ǴzÍ_=uF: #Dڿ_ +ݍV Rwupq^\oFNBw>}c lGJמt́,)8";eb=kȷݑeQGg"6މ@zXigWПৢs%BX&η|[~`< _ȳ ೟(DE56Ěלn q~Av|bT#.gb<[%(.6q/pRB_ MExa`Gx +vqC F ./'I^?5"- AwT%K#۹\qbn<'1 >Q-'|-x YKX~L<]Et +=(ܟ'=Ρu+DA3xEXsC,^p i&M}? =7`}9)=յ ׋p5yR1ߞM Y]E .uF~&h DFLi!\ e"/BOO׾ߺ3ӵ}wo[3]oEe~i2bef_c؇o[tJҏH?F!X~5Uoy1σ(/x|ꠟB}A??[{C mu9s{'燾S|ۻNю΀m,cnthu 䅝;p𖓳o!ۂ6v(ۚ%mەgqL䞼vڶCQmvwON#N_;fN9')iW.:.n} .oCwǠ}@ߓ[T;kܮヾo湪 Iޑ#n=\@ׁ ]?u)kt]/zZׁ~GǺ94ٿ]ݿ:OlmK蚿yӳ61ݺ76e?˳{veF;?~{_ޢM% 9x /u]YӱA<1<'\+a%xwo['S7>ƶ|uG17b[;LjXmBɎDZL=Q9dJ;_/xrÇxxM$N"^)8z5^K7j;qT;luxegL}hljmP۸cqgE>j93R`Wg7L<ȳy t,.3a.cVOTN?=C9,Ttk ?כ8Ds`\rRn|[n +98G͹1(2<|Iz?Pg_p뎳mpپ>uKfM`3~g-MoU;߿a>ɵ\7ߺmLh3G\oQռp7!uT7ڲޙ':HXL]`2`Xbͩk\o @?zp]2OT}6tIWR&r~šwD Dkrkm +Αch/z6*sjh/?g7sM}n\s5k ȶ(ݶ̺ݾhofstCl݁IVnޯoN ql,UgMu +}ob&3Udzܩq72@ kFLd\wwƝc;a-y'z+\ٌY5=8pqfOΊ3߂z6Lg΀͛uROy}T1|1+-Cr}BG6PFpjy6։2V<ͣY%Ҳm''2}sf\C kv!Z!C]8f֕R>.|P[ƅI |Qƕ:.D/GyMs>|_9(w<)(6h>5p)}0~d7N-}yF%#FUm1xgh~_); +SxYIeRMX T]X?(ծ/_;hdg (?K =ͼwdA:&{G|(7;sd20|yr9JgoXgrE+/#H{$")M[L36QWoR]5dA$>P~z&տo+Yzk/kP*8y-hSDTh*,cEM%Bڤ]z[NjuƮGvu< y}CL~9Hƍbߣܵ')ޭ~sr9In圦 j>C3@}8 !΢k2\v\#_M(Fcm{>zC}z#wyC-Lj[1_<419^d,>9Ze}~}:̿[1Ypkp@oreCƆ>sǩÔxΎaۖψ[tqZ m2RrgY)e} +O '/GS1R}y+;և6kT[a tzţbKۤM6-ֆ["oْ~-\*z{ΦNo5li'7 Zo͸{m99^݁'߻'vMPn__X={U:?=[O6Vz;~XVC*c[O2Zo=ؓߊ[R-/O&=[OR_hSmdB]D|O:qK@yAnK.9}omym1Oaʾǯ<"@:́v γ ߜK39;h"z!ƦY1fq@jMX߿AlxL t.~wFz跰sj mi'?k?—CM=H:JCES'^,=%TZ"௮}&;Ezq +אAݡ"zLHD43ߗ#Ml̑|#EAa8q@#ڀ Fw>WYD\u;~{J=H[D !ߣ]]=u:H7D lu|3t"zy126fLpw{%*ڠW|߅yɈ͉y=Q+A5:Kr>^;Q_b؈yD߫4?M\Ԓrn<8/KFmpK;aRe?;k>B/g/xS +N9E ֋2R gYP~0RjSʾ9M&*Q` qϙLg@gc#G=xSEM;^I=|?gQ*='t\j"l069 ]0I;q_4q=[3қ|1Nf"/!G?aT[9r9^!ǕǗ̈,&Υ%9!ߛѲaRb'NPr[4(/F)ř(;H;wzۤ= W`c(YXN>¹!z"G +eԳW冿yCO6xe=zPpl"bйvM[Z?V"fE}dzs{v e.YϬm~#CGt{hKjG7cvJ{ܣ#-=PwgxOėy ̱WT՝sl<f,]|?b_Gty >Nj̳OC8޽oSfmo7ƶTGښBέ ܚm}DS/׫\wk(sY?2$Wo |8s\_L^{.D[LAW(/W,9ϛ6}MyU'ZӰQXL,oS, #/CEC;{vn` .[ vּKۈl˼3}1˾^IZ }OoA_isu se苇`;1+xEQ7 Qv eyQW['^V91Ns6율 ,ou0o)~*s 'dg}ÿ!'w}~/?[?@jGߨo?wzu:.)}fo7?)='P/Tfnƚwo@='#=(?KBwOt+;)Y_~'tܔVCNRuZuF|gyz'uR*>=ai>oTdo5?wbYLͅim*lߝƋuG:ΏG9%'=Q/<Ǒ,9ו}}q$邲~q7M}9|ꃶ6z G4q?mkh.Oi~幑<rZD?@﴿V!?/Jh7nޑvzB ߷ׄxE>h}+~AX}SӼm}[6s.qx|\w[ ʪOWzBSПۈ' ]9gRV~k1yTwWyv6󄲇 +e9[Pc>x:x!1S~OEh.Alq¯6DI?xTMh)!ynVss}^qVZ-}ro +W ߧf>,xq;x^pa߂H>®?0+$eS.[2 +[$/OpNmw"?K[Bߠ?&i$g4=csIQSih?b=.0Ҳ3ez wno}2c EgA939)ϒq>Slb^SmNHSr;NWqc,nb3<+˩b.#ey[jjbgQ(f׿y]Nh(i iV]<(aOyዏ=}7OjK<=?וiQ~gͱ=u!7A;ǜ}ft%_sD}Ո46~߉X7y~(6%WWo 3Eg7ک?b Ecv]V8v[*Zp@pe%fnc5yͱ~낿zG ܃g=-1>[wo::n'awoK(N~w\?costg>nQu˗u[J;֮7u_Dc%MS=!-틸e_S,>D};US6߉پm<;os MΜM{ 䈦m4!y:?e Wί=jR|?BrDrqutwFo^s?C鰾F܉>V5_zsz[܌ks~Azv8_ |{'1Зq ܹ=.nbL?ǒO5 ( ]ux6곘sDgQBqn8|d(ѓX7}~/_g릔wA?OwX8׋P~V;sj<uiE][oLSkyO@sj #ؖ qz7c7op43N-"m`;6 +@uw3k{ }0S3]m@|э֭:\%F\s|NzhK}yp%/׌u,iX~Á{GiibN~HA'_0NpdlXVp./u9rot0.0e?ߨlFp. +y5J6~]RǿכXi-'7@QEȍ1Aw;ӒJu~ Kp0椰Qڞ{ә1إ-bwo~Ebۆۯ.-~q zgMp. +nVcN΃ kJ3hgԹno~l~ +ߗi[&ZYcji "k3ېG3J%ESYg=Qp'~> [v9!هr~_}סq q~b4uͥEImv|Əv7; ϛlGBʠ^kwؿdY0)0w&_'-&xEx7(٭\E!)c^O,sr}ÚOfh=B5ENkN0W4Oο's(vT|? /kr.|X-^\GDO̶S[eMloi~ߘ-c` r\UVM8rt 2~gkJmS-#bpwΞ0uB՚u†c&!i^'{Am ~1Fòc?~Ёew~~^,3Q7Q_3_YFמ*ゴ5ECg3c۟ރ7bΤݷk[T<%e{ ͈nkOH1ߐ|C!U#svQg ֠-9nlBOhE1nq;᜔&㼕W|$oB-ls!mL휮9Gc>5l[/ ۜp iٲ s-E_n +=-Ž-=?tY[L{>gkO-#]W.Jц[mclgύ7+um11QQЕowoz>cFa9lW&^:.ΥE2.^]}pQ凝6> +%}!Gi 1nɟ Ps4rmёqe/ykoX@^ˢƶ,hc=ц>翲.Vr3]bUYDG]{A[4~/߽(4j`W|&iᮢQ(9bϯ +mk襟w ֽ$smqk dmu[l3[:}.F!tܞ s5oiA6`׆^#6݁1ٶ+:v}+ + IEkʀt|?b7dž_W;&޳=*fE4X _|9"f-U|lh)dcD{}o>ڛ|uEy6{6l-h ؾljz lgGygx{? ) HGz3қ.ъ̓g̓3׊W#hcd~?B/pm]-^aLF3s|o]?9_>+U?w>̕'SmOw|; {N[仦gEm|?o+o5]G=_q)}I;|-?i{o^pzwo9⦠?W_?knGj/cG.+{aÝ6NzGglw/} M?]US? Ō3[>SA =3f ǚz7_)eA:֔fO]lgQ9B qֵ}.q6SEnͼC߼;_\w_]V>{ʈ.L|хsR'2ٕ5rMfʥV^VSY鯚V^宙[Z]qG\B(K/-Ygά,+]]^UTg^S>{Z W⺶bvKm}u]1|\,Ik%3+fO+|?*gVK?|Veռsj*fUᯩL&UfٵNeWOJj:q=JH\PY5jtmeWhrU~_5PyJ!syeRemk3*&֔O)- %WN9E߯:,/U9|&ZqT.r?Y 9USA=feU\ +XB VGXW3UUc +ZƯc`?br|12W<~Xښ95 Ɩ**bv,zU=㥷]#.WrՔj^ Y^Zi xMb,T]WƯ)TW̚/)S:gfh}umUN<ת}ϝM dMBL* 7qլ93 N+*nӡPS"ϮT}DUFeq9 _HS-_[SYuKCc*ˮ7mU5VRPakK\t4Y-VUVIf^t)wrԩUk,TNwqX[ Ӧѭ){ۤ+jʦW4BrI +t4kN#Ŀ9S'N3ހV>ϤMc~yո ו?z̤IcJJp0I?g49+/GyAޟ5efd6kUZQ=g_Vm׵s-$ήYSV,촥RRu-UkT]=Ћ zH_avfwUX^N$GyUJ`+5D͌яZN7u?}TW)ոcsiv=J'TT*'mK'/@D! GUBsUW +Av(GLJo%x}&Ɂ+(L)(s^5DENXCWN6&pcMFQwTt +552$~v˫7a0_Rijf-Q]Ʈ+&w~r7Q}S~rZ7~TUUV}F3 +?wMN7{6|T-!R>}Ɣ2]B<ڗo7%oǾ +%+'jJXaD>D3c W9Sjv&թV3ܯ)׼̞⮜:Z k(otwEuv>S<$pWgTm) }ή3rJ1qݎs슚 +@+3*Puc\A+vsJy7Ț|YB549U5jh|QԠݡ\kgy]7v [?yhSSϥy4}74;S doѤrB"%x ҥx'r9_||6zhar&'%w@<I=R9\$%{D2o^Q&LUz6H[ϩдd͵#Z5:iL4mr4|\5ZX>c C}O blBv-j'R=Ӓeq5BE~. Nvlo~_FBjUoΙ+SmDucs%G@MI(,jou\71EH&S(kvLڼ[KܕsluUɵ0UnW/f%eקB2U>Yݟ]+k{3~C-oKc¸=ncЉ ƫ겫0Ot$햞j]%ѵs:sXVE5f98bk+gOQ5ZQeDϡ0%v,ȫaʕSm 6mHSz\}{6KNn5ډEh2K"4ovX`~[աI[T+8r7R?٨ZQ^Dm-O]_^Z rz&B55% UKK#Ӑ-pOmA(06s?eCWΜ^7G̖SjL;+p'ұփ+ZL1v.m +kx!)wRǁ8>\ynſ Wo)ƌ*%"xjgMncsVE,UjBW::Ԋ +֝DWv߾^!SS*eqIAd8-1˹#8_˱t(\h=[U`R$)0iF!9'igc٘NLZHg r̯Fǯ7E:Qzd +[qgG^jgEJ~O/wYiN븼sՊǡIćpI,:/H&Jl*‘ӤcrMyzFyz+jDZϺPRCvbBLAg:Q1!Nȸͩg'gV״@BK\.{5Jp2s.")ʥ f~\$ Sf3m}ߧlj3-q3i@3{ƧХjG7Y +/YΔ8tl dzCD&y:?Cʫ]fbK+tt\] xj:Rxa~'~܉;>gKO%V'K4)Rmo|ܒY:5Ԏ^:s2i{~ͬ,j Alijz*g]A2<Ρ?z*ިqTU.l[==.^WM3SKEgKu^Z_R]=ȣ')zՍʪNvEM2SO=\RN.'qWpkێ,|Jm|80tU)yKR cǸՄL-qHYpS#U"us_]|{u<] dOi#Z;!>; ?-1XT-bE>85WfγArxQ\jNQNr_w·oswIӲI/)a_ޫ&L0/N}{km9j̕+J OE'U>[L>dtȐ%Wsd瑓$"pҩ^9cm+nd̸MyM r~io~\TCI.3gΊ/.%vS {fjbf_ĨP9~C-?vLuVLeeJah2kg1(Gf"7 $1*]V[UEwQÞZ[L\w2c2~ՐIzc=SMM9Ub2:R$ W/E7*Z+N6U3$wBt>T:m2*^v\vj_Dssc=WЛpӫXhJk*݇ΕJсn>ڟ5AB{l54!+9.%>Cz%~=xk,V}E">7">5#ͿtH!}Gb;p}#/NG*E>2bӑE#eX=~>H?Cگ3<鳣b ϐD9@zY ]t}!MccH?2{נ]B?b H?C@1!یmb,6UEX>FGچL෠ H4X> ?Fs2bH! +bLA{ q>A@/H?-% }zH_B: HE64^tЌXHD@N tn C#ՠ|݆C=3@> q4!!݌TA(`7Hz !_c>/6 @CHׁ@! sꐮEARc<'kzb!} >b7Z?Ӝ'HwlC~#G@R>d==݅Q/! } U,A:Y7"nA +iϐ^孎Evt/BH{ 4H"G-G=k?}7ANၷp}=?t1Q=ѷ{ bȡ;m.Ә zfH{U9ÿm$hMMw.GS$h=?0#+ӵ% h%S-%wzւ݁-3K7:LLx]F/ɨ CtY`Cy"EK;?k1OU I Cϐ2%Jc:>:^L($z[%YunnGK?x_G]orZO{K~$Ѽ1Kse彜Zu^ Ҵ'%'~ ?3)Q4uXd^lG?X*]&뺸}M0u "!VKm!k ;v⼪1S0{vy;$lCGBΆ:** ZE-RD[kUV&YR ފv]O> vf*Wss>sJ؋1UHj>l;Mo aoK25M`㏙b; y %SX̠TphFc9EC8gbGbjjو]~$:+}iڵgѪ^(nbQqʦ~\2!:er1oPfXxOo}͢v +w% Q 4${>{2c^bgQkkU!I9iEqCO6x(ӿq e!%|W Kd/?<JM'8t}sӐ*䱩.85SZzGv? +K b.tNgK (F9TP24q6=S+AzpǭVP?K]2/FAnWA]wbҧsX<RlSȤ#{C{Kz..޵O1r bdD; rNs3_7yҜ8D$&*2#hQMq tMXwޙ^u{㼼}p\e{L#{#U)^Ǚ~ޗ`;z箏6{T<_%tRjȓy?w%;}@}]P(xZ$]~[3`:wE亪qyrT\QJG<ڍPv"yDU:"Y8J I(/4!S ?`\L}݆o2tDqDw:L>>*ԩ3xOMOJ<[s6PSy?K #S9\ʰ8aۆ +ܒy21ⷋDE(4Fgm#16=Ek0ܝO7z3ҋw?ѳ.?恩Z"5yrZ3'q vİ"?Wܛ~B(ϢJ6BN;ͪR;quh;DxUy0V?ßJ^Sܓz&6nN&@G#08IWD=\%Nj܎xu>G:_rr + +Q6'|uE=k;2=۬6Qcu]M%7؜"Fn+חP{m:wO7=M+/y$^(]OҺ4T2 uG%n{6W&Fp.!w.)jkϮ}/*J.nT)}SWzьaUUJ} "[G|vƫ{%ۡ;cc:r\_0qlm(nﳔ<9)%Aw"רv/x+'?,OѢ+pxXOn{cW?) b"Ѩ#Fxjmcu~~2`ퟌf}9o @hBBpDGe3#C4~QOhu =0 xfm`vyMe b[6˩w, J#l64-ٳ6dԍTN3ʨM)&㩠'lAqN Ă]|,%:o`/V>uly֞OWyϯX,` +\Yͱ~/ZF Uűyi!F[FV~Mn .l>?[2B?aocgƏg 8l;YAeH(>.'.*!4b+i/M_ qHmYW4Xڹ$'˪WIMuVr?7X6ύ$`q2D.ᐭn6{_LEVAl[6c +؈ڃ |`4fI~fW@W ]oly e 8mtJݗ0gg8$BE_qQ5~=Lyè]t+AõQ^A+U[e:H3F1Iy6a`f&nί٤Rr߭F-,*$i/gMcίBIO1|8žɀK~a1I +q0O_Ih%oƈR"{ 'Vu_e7eT^P./YP^%UjZ7q=ʲ[N*{?IUl)nxc- |A:tYs.S퍊]<[5Vtci+-󪭓ԃnEYQ[$Ӫ=yYjgU/~} +/Dbw[(<&ùTeeU=Wԟ ^)UW}'^5#ɺPː\CվRmm˪=u  +ߌ+*tEe\|_|*^δַ:r +r\ZE3۷ +(Z|-Ν99y]|W>c9͵-M-ϰsW3Ѫ=\jޖuKѯnTRƺ3e9-5m/ʡ˩nhҳg+y-GrMMߓsgR4`3K -infx):@#ïRRz7&ubM|qK +㐎 .㚮w#T5qQجB i|wt}G5z i㚮'Ǻ~uյVbߣ:nZyo`LD_ZźgY, F]Y,~U^l@ubŇD}ftx+wk.+(1\.T"(DPP5ׄaJדǩ)de5,,ӹ5/["}qxWWl)eYl&<' /8` ӹ02tQeB-^/TGzRFwEm@yVfDeRK eY)Y⦥elN->ْ>Nw_J]s]l! li!d^ ^ݱ~u'i d"ADO;F`ʀ=*B'㨄˗pD[gU0^ )}eҦ]G28.`[dj orj _;+^*< @}`CbTdؐO؆5<%H%nPtt*ohKv‰`hdЮDT/B&c[R]z+6ҀNd]0%B݉OlEA">Bk!}> d"4ݯמzꩧrT \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/custom_opp_ubuntu_aarch64.run.json b/Increase_Bedore_pipe/No_increase/build_out/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..38aeef0f74011534ab32ead65e586a5a60af5ad9 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/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" : "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f6b31326644e6ae468c7bf688ced7b16ee316e3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/progress.marks b/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Increase_Bedore_pipe/No_increase/build_out/framework/Makefile b/Increase_Bedore_pipe/No_increase/build_out/framework/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..a26accb87707b6c145bdfd54bde46c2c0c87f309 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/Makefile @@ -0,0 +1,211 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# 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" +.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/cmake_install.cmake b/Increase_Bedore_pipe/No_increase/build_out/framework/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8859519efed75346b0e04637e60a7f2a39426258 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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("/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/cmake_install.cmake") +endif() + diff --git a/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f6b31326644e6ae468c7bf688ced7b16ee316e3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4be8017a9fd3b3a602e16dbdf5ca20512c399bf3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc" "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o" "gcc" "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..605a5f3089a04db0e9c3164aed1a4369e51fe7ba --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Include any dependencies generated for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make + +# Include the progress variables for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make + +# Include the compile flags for this target's objects. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: ../framework/tf_plugin/tensorflow_add_custom_plugin.cc +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o -MF CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc > CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_plugin.cc.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + +# Object files for target cust_tf_parsers +cust_tf_parsers_OBJECTS = \ +"CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a9bb611dde79737be869ff0056a9bb5f34c9ea5 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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_add_custom_plugin.cc.o" + "CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..eb5cd8561cce60f9798553258b081939ca34505f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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_add_custom_plugin.cc.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..6c28a2fdcdf617e2a67adf3f62934e2a19e655f6 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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_add_custom_plugin.cc.o: ../framework/tf_plugin/tensorflow_add_custom_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/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/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/aarch64-linux-gnu/sys/select.h: + +../framework/tf_plugin/tensorflow_add_custom_plugin.cc: + +/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/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.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/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.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/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/functional: + +/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/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ab564b315366e9116e7e5f75105bbec566fea95a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e471fdc8bd7fbf949f581db94fd24c02afe34b2c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..c535bf42276cdcd86c6127c4fd95adfb8535b346 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..062c6316bae87bff6aafc9afe9c4103aff08b755 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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_add_custom_plugin.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lgraph diff --git a/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b700c2c902219d74619014853aade0d7ec177030 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..b72c4be62481c8c358978f27edc091b5b2724300 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..63edc0a9bd217f8a3a97283de31d6181679b836a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d @@ -0,0 +1,184 @@ +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/Makefile b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..cd67c6eee911d5af94073cda3385258c9d83ce7c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.o + +# target to build an object file +tensorflow_add_custom_plugin.cc.o: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.cc.o + +tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.i + +# target to preprocess a source file +tensorflow_add_custom_plugin.cc.i: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.cc.i + +tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_plugin.s + +# target to generate assembly for a file +tensorflow_add_custom_plugin.cc.s: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_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_add_custom_plugin.o" + @echo "... tensorflow_add_custom_plugin.i" + @echo "... tensorflow_add_custom_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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/cmake_install.cmake b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a5eafa080f30db1aa8a7499e3f2bf490c5311b1e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/cmake_install.cmake @@ -0,0 +1,67 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/framework/tf_plugin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so similarity index 76% rename from Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so rename to Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so index 5b560a882596ffbbc8311dabc96005caee719128..87e886ca87b5fb794d40c594a132a06e9113ac99 100644 Binary files a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so and b/Increase_Bedore_pipe/No_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/install_manifest.txt b/Increase_Bedore_pipe/No_increase/build_out/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ac03b99ccf302fe2ed41f253b11e89139b616b0 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/install_manifest.txt @@ -0,0 +1,33 @@ +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f6b31326644e6ae468c7bf688ced7b16ee316e3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0368345f05ae86d68c8d2620b779cd5fb4862b37 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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" + "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..4a3beb18b4699ad9920afd1910077c009b44e433 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..db53ec9401f2b427bbf1055b974ecaac04655593 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..2c1ad73ed42b3d70cc30a310c117fd9dc12886b7 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..7096e5aa33e9dd469eebf3f8a1f813532b91ba60 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d @@ -0,0 +1,256 @@ +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom_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 diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5184faae880ae3e59f4bc47b0fc68b566b2219d7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..76762a8e098c581958fbe1179c4be461e3dfdd2e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/add_custom.cpp.o" + "CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f01527ae1c741076d96187e14402c0d81330e19b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -0,0 +1,603 @@ +# 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 + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/op_proto.cc + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom_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 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..7e340429ebca448573d17cc454d9f37c74a930dd --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make @@ -0,0 +1,1167 @@ +# 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/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/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: + +/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: + +../op_host/add_custom_tiling.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: + +../op_host/add_custom.cpp: + +/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/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/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/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/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/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: + +/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..00aea2a2166cd0cf975b12f723dcde014eadd86f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..437958170a48b3a6c7d205ebff07d609573ed7a7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..500116bd6ec74c07207f47a6f4768ee037614eec --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1980c4be60686983f9e3e4ea3aaf58a3d196a6e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..4b14cc1dc1aa37d472dbfc8a2fa41782337787bc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..737bbb9f84bd6770d4f8616a7903ab4c41fa8376 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..6f7c1889d179b57235d243a0ef45c41d29c4ed6e Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..a1994ba66b4c233c7d4b325c9a3717da1de75a77 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d @@ -0,0 +1,142 @@ +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.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 \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..cd9466deab6d0b1cc1639bd21df12a5f8ed5199c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: autogen/aclnn_add_custom.cpp +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.cpp + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + +# Object files for target cust_opapi +cust_opapi_OBJECTS = \ +"CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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_add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_opapi.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9d876da097b6be339a44bbaad98b35165c800459 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..3589e767e22220f99a6ae061f58f7fa18072b1c2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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_add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.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 + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..56ef6b61098e09cde993f76dbda7b9df045f32af --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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_add_custom.cpp.o: autogen/aclnn_add_custom.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_add_custom.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: + +/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: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/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/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: + +autogen/aclnn_add_custom.h: + +/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: + +autogen/aclnn_add_custom.cpp: + +/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b3bb157ef98b31b6076bead4dea655c2f5a1372c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..dae58d60b8fdca49c5c52471d0043c3eafbf4b20 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..f4b2f4fafda7e2aaa1a9da9823cd1f14c66759d1 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5142feae62c78720184d9560ea460c7bf6b55931 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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_add_custom.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lascendcl -lnnopbase diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..3a86673aa7c1868ad77aa16c631effd83be0da02 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..fcbfa53fd0e486a47e09124c9304bfe87293bf0c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 + "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..4307ab8c4d25656c65fd137981ebc5eb3d8906e1 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..042f33f0c7b196a80c083eeca0399c5f975f943f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d @@ -0,0 +1,256 @@ +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom_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 diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8d5e1568af5f503febd57134f512390023247b4f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s + +# Object files for target cust_optiling +cust_optiling_OBJECTS = \ +"CMakeFiles/cust_optiling.dir/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_optiling.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..35e371cfbc32ed11a1b1737449b7c9175dc8945a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + "CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..b9c63e640dd1d176be1dd8ab1bae2107e0b86778 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -0,0 +1,305 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host/add_custom_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 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..5567d98ff64b0e29ddffa684537d7bdf403fc180 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make @@ -0,0 +1,866 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/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/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/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/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/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/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +../op_host/add_custom_tiling.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/features-time64.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: + +/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/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/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/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/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/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/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/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/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: + +../op_host/add_custom.cpp: + +/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/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h: + +/usr/include/c++/11/string: + +/usr/include/c++/11/cstdint: + +/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: + +/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..74472e36eba2a28932ae542c70b920de2f6fda33 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe68c7fa27e765cc54c7a4b724d3af19e0f40b0c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..6d98162bed09f0ecad0e8a6d9c9ec8a6dcf6fd1c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5406749e2144ba093cf2e4588d7fd78273ea4006 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/add_custom.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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..72bb7dd025afc5824222cbd3a1e64841afc2792c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..29d9cbdaf6e98ffdef09d830a439ba17906eb525 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/optiling_compat.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d6c62180661baf2894b2e39b1390c4aad97bd7e7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f6005bcf9aa9a636cea7c8c99afc1c47b58651ec --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..218ad6e5c7fb31bec1c5dc1c351cf18dde37c686 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/progress.marks b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7f8f011eb73d6043d2e6db9d2c101195ae2801f2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/CMakeFiles/progress.marks @@ -0,0 +1 @@ +7 diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_host/Makefile b/Increase_Bedore_pipe/No_increase/build_out/op_host/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..8be60d663d1c9fe82067ef12a6256f234a308d7a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_host//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_add_custom.o: __/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.o + +# target to build an object file +__/autogen/aclnn_add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.cpp.o + +__/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.i + +# target to preprocess a source file +__/autogen/aclnn_add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.cpp.i + +__/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.s + +# target to generate assembly for a file +__/autogen/aclnn_add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 + +add_custom.o: add_custom.cpp.o +.PHONY : add_custom.o + +# target to build an object file +add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o +.PHONY : add_custom.cpp.o + +add_custom.i: add_custom.cpp.i +.PHONY : add_custom.i + +# target to preprocess a source file +add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i +.PHONY : add_custom.cpp.i + +add_custom.s: add_custom.cpp.s +.PHONY : add_custom.s + +# target to generate assembly for a file +add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s +.PHONY : add_custom.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_add_custom.o" + @echo "... __/autogen/aclnn_add_custom.i" + @echo "... __/autogen/aclnn_add_custom.s" + @echo "... __/autogen/op_proto.o" + @echo "... __/autogen/op_proto.i" + @echo "... __/autogen/op_proto.s" + @echo "... add_custom.o" + @echo "... add_custom.i" + @echo "... add_custom.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_host/cmake_install.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_host/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8c5cce83ac723fc6e514d1f5fdc05ae548d317aa --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_host/cmake_install.cmake @@ -0,0 +1,125 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_host + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aclnn_add_custom.h") +endif() + diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so b/Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opapi.so similarity index 86% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so rename to Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opapi.so index b49919b0e8ae7dd623b5eb673ee9cf1721bae62c..41fa718f34536d8db08a00262f00d08b9801448a 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so and b/Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opapi.so differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so b/Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opmaster_rt2.0.so similarity index 98% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so rename to Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opmaster_rt2.0.so index 8c4fb0fb026848917aa6ff32fe5efee5b5280949..52d0a964cb3ec39449fab04e5eeda916c67e9b95 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so and b/Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opmaster_rt2.0.so differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so b/Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opsproto_rt2.0.so similarity index 98% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so rename to Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opsproto_rt2.0.so index 5b7376c2dfc3b2433fdc1b90e6dcc1458c86381c..549af7e629616cd18c7d87e12c47b84a7818ecd5 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so and b/Increase_Bedore_pipe/No_increase/build_out/op_host/libcust_opsproto_rt2.0.so differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f6b31326644e6ae468c7bf688ced7b16ee316e3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d35aa2f99ef3c6dbc7351f2e9ca5cdda836e371e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..533ecfc39068edc37496c5f20d46fe6ca8911459 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b57b3514902bdc581ce7b6f2090f38b51b58a5cd --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0e4fa1ebcb2d0d5d7bebf601f98e8703328cd19a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7f679ebe1106521f456d723fa535d5527d23f5fd --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom + +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build: ascendc_bin_ascend310b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..38a06b015c3e023560a0fa9de37b73b7ca57a255 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e95ee76f3d9703ef8091b70a19582e24d00f765f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..58b558eb68c6d807294185f925ed321477ea370e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_0. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7465d8aea1af5fdf6cf43447fabf6e24837514ea --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py + +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build: ascendc_bin_ascend310b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46fb4bc6149a3535eb17d2477be0ede99f4fc0e7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..c5c85be36aa5e2e6f74f004b38461136d888143a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..2635634fb6bd8928b3caefb8d8fab2e8b1004af4 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_copy. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..0e4c00124e4d781df33b806ab74b2b35c8366e42 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..ded4f9a7ab3ddccc50316d265292e0743f6a49f6 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src + +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make +.PHONY : ascendc_bin_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build: ascendc_bin_ascend310p +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..29f1345fc9496c14675f26c06edf36673e952b07 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..5905ecc160820e0a73ef8d9bb75d28c635236a3c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ee634a4c1431b0c147efb29f842a0061cc5ac0d3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310p. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..62c005baff44386693e77e339fc3e20785da59c7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom + +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build: ascendc_bin_ascend310p_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e22e93688a2b67642c9f4ea4be7806cfbdfc1139 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..96558e28e2f2220fcfa72e786f4e140209c94145 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..568ee864e609387cc4655a71bf5bc8315bf1d85b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_0. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..23d9e8e608eae70f36c69a5066902037f97954ce --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py + +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build: ascendc_bin_ascend310p_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bfd0aecad835c1738fb6a7a02c1c579a3d07ff26 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bbac3f403d04baf37b7a81e85e98a1b1bb699664 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..6d72996dc703fc20b387c132ea53db85586061e8 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_copy. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9fd6e71064b23ea5e075e9957218dc26e6965978 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin -s ascend310p + +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build: ascendc_bin_ascend310p_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..04065814d838ba423c04e3b879f86464249e7b06 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe676784dbc4032caa6e617f8440676aa5d85d8c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..d8cac7b847c351fe38d0b55d0d4b1564feff044c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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_ascend310p_gen_ops_config. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d72f08cd7568446db222480db01833aa1de537fe --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src + +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910 +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make +.PHONY : ascendc_bin_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build: ascendc_bin_ascend910 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e6f6e4c8ff20dc23a2d6b62c17b66c8ef37a8289 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..782969025ccb8c64e90b3b22abd4daaf6d5e72ae --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e030b5a7ee789c10785cf720bb0c2605543765a9 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..074c305b1f7b1278031994930624350629657f74 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom + +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build: ascendc_bin_ascend910_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cb374e5db0ced9e34a5ac46e2962bc620e08e54c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..898dbaf4004189058a9b387b9b8c39959fae588b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..264efb0f0ac0357179489a980a560be33bcc9861 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_0. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c07c8dc78a900ca9d71498930d0b65840a4dbb5d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py + +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build: ascendc_bin_ascend910_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b5f35f6ac75713d63c5c8fb9c0df5ff72051fc34 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e6d1a4abe9bcb0c340eafa5bfced1f241c6da4db --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..03123d7544bd32f82ee9ff827e0db03153450acb --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_copy. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5a23890340f77256f3928b4d42642f852a6ba84c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin -s ascend910 + +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build: ascendc_bin_ascend910_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fe935158535a5294b1f23ef6ba62e3cba945ce4 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..4c78feda9afd2a04955572c876aced5cf1834441 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c021ce2d8f944d05bc1b308af92e7bfd7b3bef9d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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_ascend910_gen_ops_config. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c91a00964f24560b21f56e6e6bcf848066a652f5 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src + +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make +.PHONY : ascendc_bin_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build: ascendc_bin_ascend910b +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0f5b4484aadb7aa885dce07b651783d494277a56 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..356ef894a7b9d628fe6440122b9c3d40dccdf797 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..88d46aa9ddd231b41e53be097939e3070552bb3a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910b. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b25d6b964e76e88fed3e53978f63f5321bfb4558 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom + +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build: ascendc_bin_ascend910b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0a2d54cf3dc6fd67677dc7081d5fc8616f0d7a3e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d4ce4f8ba12b1dba8f69fbe9508e807e22c45fae --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0950b6704c2d696eaece186f438bab6549dfd872 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_0. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6f8682710ae98828afac49441cb7b9564e6cfbf5 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py + +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build: ascendc_bin_ascend910b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..6dd19a79d6e41007f82f301f87634d311ff2b00b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..0ad143cb482336abd1bbad6feaad0cff158367a3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ecb8ebe977207b0b9c883f1660ca50fad522f8a5 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_copy. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b93a6c8809d9c43ac31ffe0939ae3eaec47e1c13 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin -s ascend910b + +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build: ascendc_bin_ascend910b_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..82891cada87e395484a36d9497ca43aadafa6e0d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..caede33a485c69655d3a61af2f2bf72a4c2473fd --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e5c001f3af05083708095ee4d076b182fd30525f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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_ascend910b_gen_ops_config. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7cb791b2c6643915e8b360f76709779cb3260664 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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-ascend310p-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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && mkdir -m 700 -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_impl_build.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && rm -rf /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/.impl_timestamp + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && touch /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0dabd8217f51de05d3c48e464f9ed87a459cca1a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e4c9fac661464ec05ea1a443edb0dc2b0b41806f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b895e90a30e456d3811a0bb2e4d043284245aacd --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..781c7de277467a8195d562b5d08164806763e9bb --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7631ff250deadb247466dd025f3ccb38cbdfaeb3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/binary.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ae76984f5565d466b92a810925e025e54471e63 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e688fdae426435b7338ad5ae7e9a8b33847b35f2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f22f6ab4259e686344dd2262cc15fc223bd41f47 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b368f067f4c28205ef5a41f3d81567e91a14350d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..74257cf6ebf8321bd1cdf1fd3b9dff6f31a88317 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9f8bf5f55283f2af94a1d6c3d002e1abf9fb06be --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..391e044314f82c750bb472ea75da0830fe80882c --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..e42d498a89857163707bdf7455d3193d8ed5bfe2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 12 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3763eecd0eca1d8953dc83ee46b8332c8de1b510 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0873ef7dbd668d16556df9538a9fa0bf4a335d09 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b1c31a685ba07abf8d9ee8e5c14347e18147775b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..48b406611124e445506c38d8a534c940c16a3dcf --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..7e0358250d669f4e34f1dc4a0fb4d44932f34e28 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 13 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3448117c7f8493e115f5fddfe772cf7a86b3c69e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ops_info_gen_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p +ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make +.PHONY : ops_info_gen_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build: ops_info_gen_ascend310p +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f287b559bc0c027efc13763de2e2365c2d70d15 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend310p" + "tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d19bb709bb14351506df228db182aa100cbbb8f6 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c42f277a097a418418ede14a7bec2dc336c18cc9 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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_ascend310p. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..db9f2e439e11ef2781ec53779fc020fa01a2ea5b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 14 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..62faf089893d268d9b08c3b7ec5185679a5bd26d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ops_info_gen_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910 +ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make +.PHONY : ops_info_gen_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build: ops_info_gen_ascend910 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ddda5e8fddad294c116e69843a8829f4e7611789 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910" + "tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f0018fab5ff3d8a40c1b63606bbdb60145ae6134 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f38b3613acab3544a1ca93d23556ddb0900d2d90 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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_ascend910. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..6bdbd1465365992dad3be11acb9be72443f38ce5 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 15 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..a86526c31f30d08369d13181333a43a7281aca8f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out + +# Utility rule file for ops_info_gen_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b +ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make +.PHONY : ops_info_gen_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build: ops_info_gen_ascend910b +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a4652c5b2ad65cb30b012f83f4c93bb1aca0dde --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910b" + "tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..de46960c131f3e7df591cd8804f02fdb8ad3d1b3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..92989fc6e53d3136aec2bcc4e72270f683fa176a --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend910b. diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..0b890e87759b3c0771a961d0361c64e8e5d7fd17 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 16 + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/progress.marks b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..1e8b314962144c26d5e0e50fd29d2ca327864913 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/CMakeFiles/progress.marks @@ -0,0 +1 @@ +6 diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/Makefile b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..dd95d9b1fc2322bcbb248be1843d8139ea14abc6 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/Makefile @@ -0,0 +1,556 @@ +# 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 = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_bin_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: + cd /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" +.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 /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json similarity index 70% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index aa8d5eea812caf73ff30b94bad54607ebce04d69..d019fa23c50b66c89b389283212228bdc7fcd4ff 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -1,15 +1,15 @@ { - "binFileName": "AddCustom_402e355eb717124771cfc7dbebfe946c", + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "binFileSuffix": ".o", "blockDim": -1, "coreType": "VectorCore", "core_type": "AIV", - "kernelName": "AddCustom_402e355eb717124771cfc7dbebfe946c", + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "magic": "RT_DEV_BINARY_MAGIC_ELF", "memoryStamping": [], - "opParaSize": 32, + "opParaSize": 8, "parameters": [], - "sha256": "a37f60cb8c50f48be6005a333e8e081082690feebe765cce711e908257286529", + "sha256": "a3e8bc85efda6e28444708c2660e95bdead059807ac65585a9bb8655bb481d56", "workspace": { "num": 1, "size": [ @@ -21,7 +21,7 @@ }, "kernelList": [ { - "kernelName": "AddCustom_402e355eb717124771cfc7dbebfe946c_0" + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" } ], "optionalInputMode": "gen_placeholder", @@ -31,15 +31,15 @@ "int64Mode": false, "simplifiedKeyMode": 0, "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", "inputs": [ { "name": "x", "index": 0, - "dtype": "int32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -49,7 +49,7 @@ { "name": "y", "index": 1, - "dtype": "int32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -61,7 +61,7 @@ { "name": "z", "index": 0, - "dtype": "int32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..328204d5edab57c2ebb4134c5d1fa931197994cc Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/Is_double_buffer/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 b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/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 rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..8a258fcfcf80f1665c8e7f4e595fb35acee49fcc --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c9f21096d68766ffd61b4ff429634062876ea3c Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp similarity index 63% rename from Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp index a25b2461d4613ad9636dc8e6b80f434410383f35..6a148f90d901d620e4c0be82632993971765e179 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp @@ -15,31 +15,30 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); - - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe.InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - AscendC::DataCopyParams copyParams; - copyParams.blockCount = 16; - copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float - copyParams.srcStride = 0; // 表示两次搬运src之间的间隔,单位为DataBlock - copyParams.dstStride = 0; - - AscendC::DataCopy(xLocal, xGm, copyParams); - + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); inQueueX.FreeTensor(xLocal); - - } + private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; - + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; AscendC::GlobalTensor xGm; }; diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..55ca087d0bf6ddf59961a0398fd24dac06348a44 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 8, + "parameters": [], + "sha256": "39cce6693e65253a021a9fbf98e4ecd02845b19652815637d2795b411690f97d", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..9a7e8d3309128f47c11f9fc42f0d1cf7626a2c27 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..d024a80e239305486fae98e9bb4dd1bb67698894 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py similarity index 100% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5056150b320cec2cf1cefc929c5e846db50b471f Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp similarity index 63% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp index 946e873868c9f443f2a3bbc6eaa2735a34f0cfd9..6a148f90d901d620e4c0be82632993971765e179 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp @@ -15,27 +15,30 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); - - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe.InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - - for (int32_t i = 0; i < 16; i++) { - AscendC::DataCopy(xLocal, xGm[i*2048], 2048); - } + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); inQueueX.FreeTensor(xLocal); - - } + private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; - + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; AscendC::GlobalTensor xGm; }; diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..91c5b33687b393afcae834635a6202f05a880b02 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 8, + "parameters": [], + "sha256": "f9de3677d8dca0c6ff359d18fe5140230cde447d0ecdbe9ca745daa539a1125a", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..dfeac69101b2809b93681033ed0d23f2c47ce29b Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..8e7d2851e7c62afd6e7c5146bc14c76ccec6c753 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57679ebd221d6f20eb3c7082ca4e8026245d537e Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..6a148f90d901d620e4c0be82632993971765e179 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp @@ -0,0 +1,61 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe.InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json similarity index 71% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index bf27024ce4a2dd5e2860a881a43803747027a7a9..765248d43b4581572450a9f4daf9ad372501c79c 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -1,16 +1,16 @@ { - "binFileName": "AddCustom_402e355eb717124771cfc7dbebfe946c", + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "binFileSuffix": ".o", "blockDim": -1, "coreType": "VectorCore", "core_type": "AIV", "intercoreSync": 0, - "kernelName": "AddCustom_402e355eb717124771cfc7dbebfe946c", + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "magic": "RT_DEV_BINARY_MAGIC_ELF_AIVEC", "memoryStamping": [], - "opParaSize": 32, + "opParaSize": 8, "parameters": [], - "sha256": "d5eff7675d488902e38a90b5adc4e6c1cbddfaaa9d90c2771d3e39cbd7b4afd3", + "sha256": "b616b79a42bc3ebb64c3fe267842061da598091eb9c6b7a5fd421248d04d4b15", "workspace": { "num": 1, "size": [ @@ -22,7 +22,7 @@ }, "kernelList": [ { - "kernelName": "AddCustom_402e355eb717124771cfc7dbebfe946c_0" + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" } ], "optionalInputMode": "gen_placeholder", @@ -32,15 +32,15 @@ "int64Mode": false, "simplifiedKeyMode": 0, "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", "inputs": [ { "name": "x", "index": 0, - "dtype": "int32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -50,7 +50,7 @@ { "name": "y", "index": 1, - "dtype": "int32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -62,7 +62,7 @@ { "name": "z", "index": 0, - "dtype": "int32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o similarity index 30% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 02d516253e86af9418f8401e765603bc9b10a3b2..4c6227ba198b86a9469791e329368a402ebad4cb 100644 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..a89ba2a72e393f9ebd6ec25efc4d82f8ecbfb48d --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f4f63acc11af74abc8c52a10bff6472492cb648 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..6a148f90d901d620e4c0be82632993971765e179 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp @@ -0,0 +1,61 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe.InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/cmake_install.cmake b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3b5a8b56e6e21c40d1bc7e13f6edcc2322d4a6d3 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/cmake_install.cmake @@ -0,0 +1,120 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/ascend310p" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom") +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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.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/config/ascend310b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom") +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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-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/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom") +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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.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/config/ascend910b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-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/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom") +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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/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 "/Test_performance/Operator-performance/Increase_Bedore_pipe/No_increase/op_kernel/add_custom.cpp") +endif() + diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/.impl_timestamp b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/.impl_timestamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_DataCopy_case/No_Increase/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 b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/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 rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json b/Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json similarity index 100% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json rename to Increase_Bedore_pipe/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json diff --git a/Increase_Bedore_pipe/No_increase/build_out/scripts/install.sh b/Increase_Bedore_pipe/No_increase/build_out/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/scripts/upgrade.sh b/Increase_Bedore_pipe/No_increase/build_out/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/build_out/version.info b/Increase_Bedore_pipe/No_increase/build_out/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/build_out/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/Increase_Bedore_pipe/No_increase/cmake/config.cmake b/Increase_Bedore_pipe/No_increase/cmake/config.cmake new file mode 100644 index 0000000000000000000000000000000000000000..886119daadd85495676c07dfb0b629e3deab8ccf --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/func.cmake b/Increase_Bedore_pipe/No_increase/cmake/func.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ad187e7d6c0a7c801d0d791d3fab38b2e9d4e71f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/func.cmake @@ -0,0 +1,228 @@ + +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_ops_replay_targets) + cmake_parse_arguments(OPREPLAY "" "OPS_INFO;COMPUTE_UNIT;IMPL_DIR;OUT_DIR;INSTALL_DIR" "OPS_BATCH;OPS_ITERATE" ${ARGN}) + # ccec compile options + set(ccec_base_opts -c -O2 --cce-aicore-only -mllvm -cce-aicore-function-stack-size=16000 + -mllvm -cce-aicore-record-overflow=false -std=c++17) + set(ccec_extopts_ascend310p --cce-aicore-arch=dav-m200 -mllvm -cce-aicore-fp-ceiling=2) + set(ccec_extopts_ascend910 --cce-aicore-arch=dav-c100) + set(ccec_extopts_ascend910b --cce-aicore-arch=dav-c220-cube) + file(MAKE_DIRECTORY ${OPREPLAY_OUT_DIR}) + execute_process(COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_replay_build.py + ${OPREPLAY_OPS_INFO} + "${OPREPLAY_OPS_BATCH}" "${OPREPLAY_OPS_ITERATE}" + ${OPREPLAY_IMPL_DIR} + ${OPREPLAY_OUT_DIR} + ${OPREPLAY_COMPUTE_UNIT} + ) + file(GLOB replay_kernel_entries ${OPREPLAY_OUT_DIR}/*.cce) + if (NOT "${replay_kernel_entries}x" STREQUAL "x") + foreach(replay_kernel_file ${replay_kernel_entries}) + get_filename_component(replay_kernel_file_name "${replay_kernel_file}" NAME) + string(REPLACE "_entry.cce" "" op_kerne_name ${replay_kernel_file_name}) + file(GLOB replay_lib_src ${OPREPLAY_OUT_DIR}/${op_kerne_name}*.cpp) + set(OP_TILING_DATA_H_PATH ${OPREPLAY_OUT_DIR}/${op_kerne_name}_tiling_data.h) + add_library(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} SHARED ${replay_lib_src}) + if(EXISTS ${OP_TILING_DATA_H_PATH}) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -include ${OP_TILING_DATA_H_PATH} + ) + endif() + target_compile_definitions(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + ${op_kerne_name}=${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + ) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -D__ASCENDC_REPLAY__ + ) + target_link_libraries(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE intf_pub + tikreplaylib::${OPREPLAY_COMPUTE_UNIT} + register + ) + add_custom_command(OUTPUT ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + COMMAND ccec ${ccec_base_opts} ${ccec_extopts_${OPREPLAY_COMPUTE_UNIT}} ${replay_kernel_file} + -o ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DEPENDS ${replay_kernel_file} + ) + add_custom_target(replay_kernel_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} ALL + DEPENDS ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + ) + install(TARGETS replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + install(FILES ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + endforeach() + 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} + 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 + ) +endfunction() diff --git a/Increase_Bedore_pipe/No_increase/cmake/intf.cmake b/Increase_Bedore_pipe/No_increase/cmake/intf.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2f362c396622d66132f80f54492a8cc3204882fb --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/makeself.cmake b/Increase_Bedore_pipe/No_increase/cmake/makeself.cmake new file mode 100644 index 0000000000000000000000000000000000000000..48c565bfb4f2edc6534a81abaa8565c4cf2dfc30 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/__init__.py b/Increase_Bedore_pipe/No_increase/cmake/util/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c4ddc893a9275672e046b1311c6ee2d1578f405e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/__pycache__/const_var.cpython-39.pyc b/Increase_Bedore_pipe/No_increase/cmake/util/__pycache__/const_var.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2904a2a05c487d500bd1b9f441819133686750b Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/No_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/Increase_Bedore_pipe/No_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1952c0b2a11660316e5ffd77bfcb38ff5072b1c4 Binary files /dev/null and b/Increase_Bedore_pipe/No_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_bin_param_build.py b/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_bin_param_build.py new file mode 100644 index 0000000000000000000000000000000000000000..decf34544880c68fd89e809b15d415844b9882e6 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_bin_param_build.py @@ -0,0 +1,129 @@ +#!/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] + 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] + 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() + atype = atype.replace('list', 'list_') + 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 = 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/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_impl_build.py b/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_impl_build.py new file mode 100644 index 0000000000000000000000000000000000000000..7fe177da1e5e8c0931189a1810f83fc3f42d9204 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_impl_build.py @@ -0,0 +1,446 @@ +#!/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 stat +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 + +''' + +IMPL_API = ''' +@tbe_register.register_operator("{}") +@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"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "{}" + ascendc_src_file = "{}" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) +''' + +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 {}") + 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 = [{}]) + 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', 'listInt': '[]', + 'listFloat': '[]', 'listBool': '[]', 'listListInt': '[[]]', 'str': ''} + + +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 + + +class AdpBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + self.argsname = [] + 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() + att_type = att_type.replace('LIST', 'LIST_') + 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) + + 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(' __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(' __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(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, kern_name, self.op_type, ', '.join(self.input_name),\ + ', '.join(self.output_name), 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/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_ops_config.py b/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_ops_config.py new file mode 100644 index 0000000000000000000000000000000000000000..7a97180beda87facffebb18a9784264f6e0e8964 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_ops_config.py @@ -0,0 +1,114 @@ +#!/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, 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') + 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} + 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') + 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, 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/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_replay_build.py b/Increase_Bedore_pipe/No_increase/cmake/util/ascendc_replay_build.py new file mode 100644 index 0000000000000000000000000000000000000000..1cac7d911b84df4f3ef3a83ce9cac65ce2e89e0b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/batch_replay_impl.temp b/Increase_Bedore_pipe/No_increase/cmake/util/batch_replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..0e88346642009514af64265b4da24c9946e3ebbf --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/code_channel_infer.py b/Increase_Bedore_pipe/No_increase/cmake/util/code_channel_infer.py new file mode 100644 index 0000000000000000000000000000000000000000..137c9f39fa8609cd0cf672388c1066e85aff792f --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/code_channel_infer.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. +""" +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 ccec 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 + if params.compile_options is None: + compile_options = [] + else: + compile_options = params.compile_options + ccec = shutil.which("ccec") + if ccec is not None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + compile_options.append("-I" + tikcpp_path) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + compile_options += ["-include", params.tiling_header] + arch = "dav-c220-cube" + sub_core_type = "AIC" + optional_core = "AiCore" + compile_cmd = [shutil.which("ccec"), '-c', '-O3'] + compile_cmd += compile_options + temp_file_name_tag = "_" + str(os.getpid()) + "_temp.o" + dst_file = os.path.join(kernel_meta_dir, kernel_name + temp_file_name_tag) + compile_cmd += [params.src_file, "--cce-aicore-arch={}".format(arch), + "--cce-aicore-only", "-o", dst_file, + "-mllvm", "-cce-aicore-function-stack-size=16000", + "-mllvm", "-cce-aicore-record-overflow=true", + "-mllvm", "-cce-aicore-addr-transform"] + compile_cmd += ["-std=c++17"] + print('get_code_channel: ', ' '.join(compile_cmd)) + proc = subprocess.Popen( + compile_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel coretype compile error: ', out.decode()) + msg = "compile %s error :%s\n" % (params.src_file, out.decode()) + raise Exception(f"get_code_channel coretype error, msg is{msg}") + objdump_cmd = ['objdump', '-s', '-j', '.text', '{}'.format(dst_file)] + + proc = subprocess.Popen( + objdump_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel objdump error: ', out.decode()) + msg = "get_code_channel objdump %s error :%s\n" % (src_file, out.decode()) + raise Exception(f"get_code_channel objdump error, msg is{msg}") + os.remove(dst_file) + lines = out.decode('utf-8').split('\n') + for line in lines: + insts = line.strip().split() + if len(insts) < 5: + continue + for inst in insts[1:]: + if len(inst) != 8: + continue + if inst[6] == 'f': + return CODE_MIX + return CODE_VEC diff --git a/Increase_Bedore_pipe/No_increase/cmake/util/const_var.py b/Increase_Bedore_pipe/No_increase/cmake/util/const_var.py new file mode 100644 index 0000000000000000000000000000000000000000..8b32c3b915d0aaaf1f366cf95cf1a337e8959c89 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/gen_impl_and_mrege_json.sh b/Increase_Bedore_pipe/No_increase/cmake/util/gen_impl_and_mrege_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..55e12e5edff6d1d39207db0c439a15fcb8656951 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/gen_impl_and_mrege_json.sh @@ -0,0 +1,57 @@ +#!/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 ai_core operators implements +# tbe_impl_files_num=$(ls $project_path/tbe/impl/* 2> /dev/null | wc -l) +# if [[ "$tbe_impl_files_num" -gt 0 ]];then +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/ai_core/tbe/customize_impl +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/vector_core/tbe/customize_impl +# 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 + +# merge aicpu.ini and aicore.ini to generate npu_supported_ops.json +# mkdir -p ${build_path}/framework/op_info_cfg +# mkdir -p ${build_path}/framework/op_info_cfg/aicpu_kernel +# mkdir -p ${build_path}/framework/op_info_cfg/ai_core + +# if [[ -d "${project_path}/tbe/op_info_cfg/ai_core" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/tbe/op_info_cfg/ai_core ${build_path}/framework/op_info_cfg/ai_core +# fi + +# if [[ -d "${project_path}/cpukernel/op_info_cfg/aicpu_kernel" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/cpukernel/op_info_cfg/aicpu_kernel ${build_path}/framework/op_info_cfg/aicpu_kernel +# fi + +# aicpu_filter_file=${build_path}/framework/op_info_cfg/aicpu_kernel/npu_supported_ops.json +# aicore_filter_file=${build_path}/framework/op_info_cfg/ai_core/npu_supported_ops.json +# if [[ -f "${aicpu_filter_file}" ]] && [[ ! -f "${aicore_filter_file}" ]]; then +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi +# if [[ -f "${aicore_filter_file}" ]] && [[ ! -f "${aicpu_filter_file}" ]]; then +# cp $aicore_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + +# if [[ -f "${aicore_filter_file}" ]] && [[ -f "${aicpu_filter_file}" ]]; then +# chmod u+w ${aicpu_filter_file} +# python3 ${project_path}/cmake/util/insert_op_info.py ${aicore_filter_file} ${aicpu_filter_file} +# chmod u-w ${aicpu_filter_file} +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + diff --git a/Increase_Bedore_pipe/No_increase/cmake/util/gen_ops_filter.sh b/Increase_Bedore_pipe/No_increase/cmake/util/gen_ops_filter.sh new file mode 100644 index 0000000000000000000000000000000000000000..d4c27d17feb8617dfee0f6fd3262c36583033339 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/gen_version_info.sh b/Increase_Bedore_pipe/No_increase/cmake/util/gen_version_info.sh new file mode 100644 index 0000000000000000000000000000000000000000..a06cfc78d29482807d086b880375533cd0a3679e --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/insert_op_info.py b/Increase_Bedore_pipe/No_increase/cmake/util/insert_op_info.py new file mode 100644 index 0000000000000000000000000000000000000000..28ba08757c9301391a8f4005ae8fb0b290e43950 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/insert_simplified_keys.py b/Increase_Bedore_pipe/No_increase/cmake/util/insert_simplified_keys.py new file mode 100644 index 0000000000000000000000000000000000000000..ace727b903b1de37e6feece649cd20f242d94798 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/insert_simplified_keys.py @@ -0,0 +1,248 @@ +#!/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 glob +import json +import argparse +import const_var + + +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, + 'string': 13, + 'dual': 14, + 'dual': 15, + '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') + bin_suffix = contents.get('binFileSuffix') + # '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/Increase_Bedore_pipe/No_increase/cmake/util/kernel_entry.py b/Increase_Bedore_pipe/No_increase/cmake/util/kernel_entry.py new file mode 100644 index 0000000000000000000000000000000000000000..2b77c970d4e6c1f0aaca07572cd8c7221ac00e22 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/kernel_impl.temp b/Increase_Bedore_pipe/No_increase/cmake/util/kernel_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..5079a1043a25cd6b73449e708ceae40807cb03a1 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/COPYING b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/COPYING new file mode 100644 index 0000000000000000000000000000000000000000..d159169d1050894d3ea3b98e1c965c4058208fe1 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/README.md b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b41f0168201e8596e6cb8dc8754d606581d18dcf --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/VERSION b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/VERSION new file mode 100644 index 0000000000000000000000000000000000000000..59aa62c1fa4c234af19118ff8d8572c1d50437fd --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/VERSION @@ -0,0 +1 @@ +2.4.5 diff --git a/Increase_Bedore_pipe/No_increase/cmake/util/makeself/make-release.sh b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/make-release.sh new file mode 100644 index 0000000000000000000000000000000000000000..b5692d49071716e68c821688b9ded040bd3a11c4 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself-header.sh b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself-header.sh new file mode 100644 index 0000000000000000000000000000000000000000..9409031483e2bc377d344d64b34b13877a0afd7b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.1 b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.1 new file mode 100644 index 0000000000000000000000000000000000000000..81bf6e4ff4cfeb226c0a0992d8e6d2b94dd4f172 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.lsm b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.lsm new file mode 100644 index 0000000000000000000000000000000000000000..3c4cea8c18982e288f0d51eba9b4d97f0f708f32 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.sh b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/makeself.sh new file mode 100644 index 0000000000000000000000000000000000000000..c8ea565971c5ac03c775a665596a593287881708 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/makeself/run-tests.sh b/Increase_Bedore_pipe/No_increase/cmake/util/makeself/run-tests.sh new file mode 100644 index 0000000000000000000000000000000000000000..31ee1651156c64caddfdadd683d4dc2d0be3ddc4 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/merge_aicpu_info_json.sh b/Increase_Bedore_pipe/No_increase/cmake/util/merge_aicpu_info_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..a977bd51d2e98a1511db4296070a8dda6b90a262 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/opdesc_parser.py b/Increase_Bedore_pipe/No_increase/cmake/util/opdesc_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..c38e79edc89a80b528581afafdbc119db68ea590 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/opdesc_parser.py @@ -0,0 +1,260 @@ +#!/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", + "ascend910b3": "ascend910b", + "ascend910b4": "ascend910b", + "ascend310p1": "ascend310p", + "ascend310p3": "ascend310p", + "ascend310p3vir01": "ascend310p", + "ascend310p3vir02": "ascend310p", + "ascend310p3vir04": "ascend310p", + "ascend310p3vir08": "ascend310p", + "ascend310b1": "ascend310b", + "bs9sx1aa": "bs9sx1a" +} + + +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_type = [] + self.input_dtype = [] + self.input_fmt = [] + self.output_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_name.append(self._parse_str(conf)) + 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_name.append(self._parse_str(conf)) + 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) + + 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._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/Increase_Bedore_pipe/No_increase/cmake/util/parse_ini_to_json.py b/Increase_Bedore_pipe/No_increase/cmake/util/parse_ini_to_json.py new file mode 100644 index 0000000000000000000000000000000000000000..721465fee306bfca8895e2991ba06d1547c9eb2b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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"] +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: + # Only the owner and group have rights + os.chmod(json_file_real_path, stat.S_IWGRP + 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/Increase_Bedore_pipe/No_increase/cmake/util/preset_parse.py b/Increase_Bedore_pipe/No_increase/cmake/util/preset_parse.py new file mode 100644 index 0000000000000000000000000000000000000000..8f1124b1db30f552915958bc14066b8783f6ef74 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/replay_codegen.py b/Increase_Bedore_pipe/No_increase/cmake/util/replay_codegen.py new file mode 100644 index 0000000000000000000000000000000000000000..1baa364ef8b3a7dee9ea1f9ce53e7c06641a2d02 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/replay_impl.temp b/Increase_Bedore_pipe/No_increase/cmake/util/replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..1d30dd8658e0a72200b3d5222e11d29170e21f57 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/cmake/util/tiling_data_def_build.py b/Increase_Bedore_pipe/No_increase/cmake/util/tiling_data_def_build.py new file mode 100644 index 0000000000000000000000000000000000000000..a96304261c9369c9b2e24c5f2485615c0835f277 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/cmake/util/tiling_data_def_build.py @@ -0,0 +1,84 @@ +#!/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 += ' memcpy(const_data, tiling, sizeof({}));\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/Increase_Bedore_pipe/No_increase/framework/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/framework/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6be9b492610f4d45b25bb7725648df9aac39a12 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/framework/tf_plugin/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/framework/tf_plugin/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6aba5c207d3b85ad16fdea69dd813dd6cc371b1 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc b/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc new file mode 100644 index 0000000000000000000000000000000000000000..2cd837ce58d9aba9d65d15d57c5fe74adac868c4 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/framework/tf_plugin/tensorflow_add_custom_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("AddCustom") + .FrameworkType(TENSORFLOW) // type: CAFFE, TENSORFLOW + .OriginOpType("Add") // name in tf module + .ParseParamsByOperatorFn(AutoMappingByOpFn); +} // namespace domi diff --git a/Increase_Bedore_pipe/No_increase/op_host/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/op_host/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..40dd51cfac524b0a9607b7d8b2813edd2210c509 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp b/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..491d1846cf7ccc452da94f22197542b26a22472b --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/op_host/add_custom.cpp @@ -0,0 +1,75 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2023-2024. 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 "add_custom_tiling.h" +#include "register/op_def_registry.h" + +namespace optiling { +const uint32_t BLOCK_DIM = 8; +const uint32_t TILE_NUM = 8; +static ge::graphStatus TilingFunc(gert::TilingContext *context) +{ + TilingData tiling; + uint32_t totalLength = context->GetInputShape(0)->GetOriginShape().GetShapeSize(); + context->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 optiling + +namespace ge { +static 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 ge + +namespace ops { +class AddCustom : public OpDef { +public: + explicit AddCustom(const char *name) : OpDef(name) + { + this->Input("x") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Input("y") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Output("z") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + + this->SetInferShape(ge::InferShape).SetInferDataType(ge::InferDataType); + this->AICore() + .SetTiling(optiling::TilingFunc) + .AddConfig("ascend910") + .AddConfig("ascend310p") + .AddConfig("ascend310b") + .AddConfig("ascend910b"); + } +}; +OP_ADD(AddCustom); +} // namespace ops diff --git a/Increase_Bedore_pipe/No_increase/op_host/add_custom_tiling.h b/Increase_Bedore_pipe/No_increase/op_host/add_custom_tiling.h new file mode 100644 index 0000000000000000000000000000000000000000..323f3076f0bc4a06fc661c67b0df66081403dea8 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/op_host/add_custom_tiling.h @@ -0,0 +1,22 @@ +/** + * @file add_custom_tiling.h + * + * Copyright (C) 2023-2024. 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 ADD_CUSTOM_TILING_H +#define ADD_CUSTOM_TILING_H +#include "register/tilingdata_base.h" + +namespace optiling { +BEGIN_TILING_DATA_DEF(TilingData) +TILING_DATA_FIELD_DEF(uint32_t, totalLength); +TILING_DATA_FIELD_DEF(uint32_t, tileNum); +END_TILING_DATA_DEF; + +REGISTER_TILING_DATA_CLASS(AddCustom, TilingData) +} // namespace optiling +#endif // ADD_CUSTOM_TILING_H diff --git a/Increase_Bedore_pipe/No_increase/op_kernel/CMakeLists.txt b/Increase_Bedore_pipe/No_increase/op_kernel/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/op_kernel/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Bedore_pipe/No_increase/op_kernel/add_custom.cpp b/Increase_Bedore_pipe/No_increase/op_kernel/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..6a148f90d901d620e4c0be82632993971765e179 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/op_kernel/add_custom.cpp @@ -0,0 +1,61 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue + +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe.InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum); + op.Process(); +} + +#ifndef ASCENDC_CPU_DEBUG +// call of kernel function +void add_custom_do(uint32_t blockDim, void *l2ctrl, void *stream, uint8_t *x, uint8_t *y, uint8_t *z, + uint8_t *workspace, uint8_t *tiling) +{ + add_custom<<>>(x, y, z, workspace, tiling); +} +#endif \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/output/AddCustom_case_20240821114242.json b/Increase_Bedore_pipe/No_increase/output/AddCustom_case_20240821114242.json new file mode 100644 index 0000000000000000000000000000000000000000..4b5f7932922660fa7eab026bdabdc3b6fa67a782 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/output/AddCustom_case_20240821114242.json @@ -0,0 +1,58 @@ +[ + { + "case_name": "Test_AddCustom_001", + "op": "AddCustom", + "input_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "x" + }, + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "y" + } + ], + "output_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "name": "z" + } + ] + } +] \ No newline at end of file diff --git a/Increase_Bedore_pipe/No_increase/scripts/install.sh b/Increase_Bedore_pipe/No_increase/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/No_increase/scripts/upgrade.sh b/Increase_Bedore_pipe/No_increase/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Bedore_pipe/No_increase/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/Increase_Bedore_pipe/README.md b/Increase_Bedore_pipe/README.md new file mode 100644 index 0000000000000000000000000000000000000000..03039d4c2c470a9690c47fabd4959180b352b4e1 --- /dev/null +++ b/Increase_Bedore_pipe/README.md @@ -0,0 +1,110 @@ +## 概述 +本样例基于AddCustom算子工程,介绍了TPipe 在对象内创建和初始化对算子性能的差异。 + +本样例只考虑搬运,未包含计算。 + +## 目录结构介绍 +``` +├── Increase_the_number_of_aicore //使用框架调用的方式调用Add算子 +│ ├── AclNNInvocation // 通过aclnn调用的方式调用AddCustom算子 +│ ├── No_Increase // AddCustom算子工程 未改良版 TPipe 在对象内创建和初始化 +│ +│ └── Is_increase // AddCustom算子工程 改良版 避免 TPipe 在对象内创建和初始化 +``` +## 算子工程介绍 +其中,算子工程目录AddCustom包含算子实现的模板文件、编译脚本等,如下所示: +``` +├── AddCustom //Add自定义算子工程 +│ ├── 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\Operator-performance\Increase_Bedore_pipe + ``` + + - 修改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) + +### 6. 在310B4环境上对TPipe是否在对象内创建和初始化对算子性能的差异进行算子性能数据收集。 +| File Name | Op Type|aic_time(us)|aic_scalar_time(us)| +|-------------------|------|------|------| +| No_Increase | vector|10041667|1.376634| +| Is_Increase | vector|9729167|1.125817| + + diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeCache.txt b/Increase_DataCopy_case/AclNNInvocation/build/CMakeCache.txt index 6746e6f654507b09a85118292aadc08fa2dc96a9..dd86c0ac5bc84adb88ab87c298e77cc9eed9df6d 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeCache.txt +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeCache.txt @@ -1,5 +1,5 @@ # This is the CMakeCache file. -# For build in directory: /_profile/AclNNInvocation/build +# For build in directory: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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. @@ -210,13 +210,13 @@ CMAKE_STRIP:FILEPATH=/usr/bin/strip CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE //Value Computed by CMake -acl_execute_add_BINARY_DIR:STATIC=/_profile/AclNNInvocation/build +acl_execute_add_BINARY_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build //Value Computed by CMake acl_execute_add_IS_TOP_LEVEL:STATIC=ON //Value Computed by CMake -acl_execute_add_SOURCE_DIR:STATIC=/_profile/AclNNInvocation/src +acl_execute_add_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src ######################## @@ -228,7 +228,7 @@ 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=/_profile/AclNNInvocation/build +CMAKE_CACHEFILE_DIR:INTERNAL=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 @@ -303,7 +303,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL= //Source directory with the top level CMakeLists.txt file for this // project -CMAKE_HOME_DIRECTORY:INTERNAL=/_profile/AclNNInvocation/src +CMAKE_HOME_DIRECTORY:INTERNAL=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src //Install .so files without execute permission. CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 //ADVANCED property for variable: CMAKE_LINKER diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake index 25699c5f7ac1662e1ef612cea95752962bfe1b5d..f1584fe5bc9e049ea62b36a6abd27da5e992248a 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/_profile/AclNNInvocation/src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/_profile/AclNNInvocation/build") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeOutput.log b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeOutput.log index bb00451ef961386d88f69d003d7afbf10cd9ee0a..e8d2dda43256048f971b30ed48f2f7dd20d5ee7d 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeOutput.log +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeOutput.log @@ -10,7 +10,7 @@ The output was: Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" -The C compiler identification is GNU, found in "/_profile/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out" +The C compiler identification is GNU, found in "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out" Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler: /usr/bin/c++ @@ -23,15 +23,15 @@ The output was: Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" -The CXX compiler identification is GNU, found in "/_profile/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out" +The CXX compiler identification is GNU, found in "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out" Detecting C compiler ABI info compiled with the following output: -Change Dir: /_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_4befe/fast && /usr/bin/gmake -f CMakeFiles/cmTC_4befe.dir/build.make CMakeFiles/cmTC_4befe.dir/build -gmake[1]: Entering directory '/_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o -/usr/bin/cc -v -o CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_5306a/fast && /usr/bin/gmake -f CMakeFiles/cmTC_5306a.dir/build.make CMakeFiles/cmTC_5306a.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_5306a.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 @@ -39,8 +39,8 @@ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~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_4befe.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_4befe.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_4befe.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/ccySS7fp.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_5306a.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_5306a.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/ccKSxRIz.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 @@ -60,15 +60,15 @@ GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_4befe.dir/' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o /tmp/ccySS7fp.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_5306a.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o /tmp/ccKSxRIz.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_4befe.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.' -Linking C executable cmTC_4befe -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4befe.dir/link.txt --verbose=1 -/usr/bin/cc -v CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o -o cmTC_4befe +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_5306a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5306a.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o -o cmTC_5306a Using built-in specs. COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper @@ -79,10 +79,10 @@ 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_4befe' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_4befe.' - /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/ccBSvWtX.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_4befe /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_4befe.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_4befe' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_4befe.' -gmake[1]: Leaving directory '/_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5306a' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_5306a.' + /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/ccjO2BUz.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_5306a /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_5306a.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_5306a' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_5306a.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' @@ -103,12 +103,12 @@ Parsed C implicit include dir info from above output: rv=done Parsed C implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_4befe/fast && /usr/bin/gmake -f CMakeFiles/cmTC_4befe.dir/build.make CMakeFiles/cmTC_4befe.dir/build] - ignore line: [gmake[1]: Entering directory '/_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_5306a/fast && /usr/bin/gmake -f CMakeFiles/cmTC_5306a.dir/build.make CMakeFiles/cmTC_5306a.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_5306a.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] @@ -116,8 +116,8 @@ Parsed C implicit link information from above output: 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_4befe.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_4befe.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_4befe.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/ccySS7fp.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_5306a.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_5306a.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/ccKSxRIz.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: [] @@ -137,15 +137,15 @@ Parsed C implicit link information from above output: 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_4befe.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_4befe.dir/'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o /tmp/ccySS7fp.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_5306a.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o /tmp/ccKSxRIz.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_4befe.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_4befe] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4befe.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_4befe.dir/CMakeCCompilerABI.c.o -o cmTC_4befe ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_5306a] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5306a.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o -o cmTC_5306a ] 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] @@ -156,13 +156,13 @@ Parsed C implicit link information from above output: 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_4befe' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_4befe.'] - 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/ccBSvWtX.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_4befe /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_4befe.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] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5306a' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_5306a.'] + 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/ccjO2BUz.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_5306a /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_5306a.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/ccBSvWtX.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccjO2BUz.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -182,7 +182,7 @@ Parsed C implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_4befe] ==> ignore + arg [cmTC_5306a] ==> 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] @@ -194,7 +194,7 @@ Parsed C implicit link information from above output: 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_4befe.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_5306a.dir/CMakeCCompilerABI.c.o] ==> ignore arg [-lgcc] ==> lib [gcc] arg [--push-state] ==> ignore arg [--as-needed] ==> ignore @@ -226,12 +226,12 @@ Parsed C implicit link information from above output: Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_83d7d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_83d7d.dir/build.make CMakeFiles/cmTC_83d7d.dir/build -gmake[1]: Entering directory '/_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/c++ -v -o CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_09e49/fast && /usr/bin/gmake -f CMakeFiles/cmTC_09e49.dir/build.make CMakeFiles/cmTC_09e49.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_09e49.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 @@ -239,8 +239,8 @@ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~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_83d7d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_83d7d.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_83d7d.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/ccUqoZTr.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_09e49.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_09e49.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/ccZiY2mX.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 @@ -264,15 +264,15 @@ GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 3e6e780af1232722b47e0979fda82402 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_83d7d.dir/' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccUqoZTr.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_09e49.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccZiY2mX.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_83d7d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.' -Linking CXX executable cmTC_83d7d -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_83d7d.dir/link.txt --verbose=1 -/usr/bin/c++ -v CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_83d7d +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_09e49 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_09e49.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_09e49 Using built-in specs. COLLECT_GCC=/usr/bin/c++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper @@ -283,10 +283,10 @@ 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_83d7d' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_83d7d.' - /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/ccR5GAuH.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_83d7d /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_83d7d.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_83d7d' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_83d7d.' -gmake[1]: Leaving directory '/_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_09e49' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_09e49.' + /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/ccYBVWhH.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_09e49 /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_09e49.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_09e49' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_09e49.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' @@ -313,12 +313,12 @@ Parsed CXX implicit include dir info from above output: rv=done Parsed CXX implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_83d7d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_83d7d.dir/build.make CMakeFiles/cmTC_83d7d.dir/build] - ignore line: [gmake[1]: Entering directory '/_profile/AclNNInvocation/build/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_09e49/fast && /usr/bin/gmake -f CMakeFiles/cmTC_09e49.dir/build.make CMakeFiles/cmTC_09e49.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_09e49.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] @@ -326,8 +326,8 @@ Parsed CXX implicit link information from above output: 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_83d7d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_83d7d.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_83d7d.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/ccUqoZTr.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_09e49.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_09e49.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/ccZiY2mX.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: [] @@ -351,15 +351,15 @@ Parsed CXX implicit link information from above output: 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_83d7d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_83d7d.dir/'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccUqoZTr.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_09e49.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccZiY2mX.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_83d7d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_83d7d] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_83d7d.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_83d7d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_83d7d ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_09e49] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_09e49.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_09e49 ] 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] @@ -370,13 +370,13 @@ Parsed CXX implicit link information from above output: 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_83d7d' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_83d7d.'] - 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/ccR5GAuH.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_83d7d /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_83d7d.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] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_09e49' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_09e49.'] + 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/ccYBVWhH.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_09e49 /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_09e49.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/ccR5GAuH.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccYBVWhH.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -396,7 +396,7 @@ Parsed CXX implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_83d7d] ==> ignore + arg [cmTC_09e49] ==> 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] @@ -408,7 +408,7 @@ Parsed CXX implicit link information from above output: 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_83d7d.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_09e49.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [-lgcc_s] ==> lib [gcc_s] diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile.cmake b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile.cmake index ecfd1a0dd97d64ffc0f06f9496797b4c661b5f73..1b3b3081f46fb3e2f243725c6e36caf14a86a4e8 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile.cmake +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile.cmake @@ -10,7 +10,7 @@ set(CMAKE_MAKEFILE_DEPENDS "CMakeFiles/3.22.1/CMakeCCompiler.cmake" "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" "CMakeFiles/3.22.1/CMakeSystem.cmake" - "/_profile/AclNNInvocation/src/CMakeLists.txt" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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" diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile2 b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile2 index cbeeddbba3fc803686e7cc8b98d318f58b4a021a..145a58e9628a329b3b45508c6a760bf512893cdd 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile2 +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/Makefile2 @@ -54,10 +54,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_profile/AclNNInvocation/src +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_profile/AclNNInvocation/build +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build #============================================================================= # Directory level rules for the build root directory @@ -81,14 +81,14 @@ clean: CMakeFiles/execute_add_op.dir/clean CMakeFiles/execute_add_op.dir/all: $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/depend $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_profile/AclNNInvocation/build/CMakeFiles --progress-num=1,2,3,4,5 "Built target execute_add_op" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=1,2,3,4,5 "Built target execute_add_op" .PHONY : CMakeFiles/execute_add_op.dir/all # Build rule for subdir invocation for target. CMakeFiles/execute_add_op.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_profile/AclNNInvocation/build/CMakeFiles 5 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles 5 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/execute_add_op.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_profile/AclNNInvocation/build/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles 0 .PHONY : CMakeFiles/execute_add_op.dir/rule # Convenience name for target. diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt index 1c088f735c0d259d23f8c29a167aa04512a60d6b..175ba478d79e7bb8b7ba5d9c3548f3cf18adada8 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt @@ -1,7 +1,7 @@ -/_profile/AclNNInvocation/build/CMakeFiles/execute_add_op.dir -/_profile/AclNNInvocation/build/CMakeFiles/edit_cache.dir -/_profile/AclNNInvocation/build/CMakeFiles/rebuild_cache.dir -/_profile/AclNNInvocation/build/CMakeFiles/list_install_components.dir -/_profile/AclNNInvocation/build/CMakeFiles/install.dir -/_profile/AclNNInvocation/build/CMakeFiles/install/local.dir -/_profile/AclNNInvocation/build/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install/strip.dir diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake index f0de23a8b72b3b012cbe022e31be8d29e9dc7286..882d6903e41a1bbdbdf7cd45f9798b9d4a5c2a49 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake @@ -8,10 +8,10 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/_profile/AclNNInvocation/src/common.cpp" "CMakeFiles/execute_add_op.dir/common.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/common.cpp.o.d" - "/_profile/AclNNInvocation/src/main.cpp" "CMakeFiles/execute_add_op.dir/main.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/main.cpp.o.d" - "/_profile/AclNNInvocation/src/op_runner.cpp" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d" - "/_profile/AclNNInvocation/src/operator_desc.cpp" "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp" "CMakeFiles/execute_add_op.dir/common.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/common.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp" "CMakeFiles/execute_add_op.dir/main.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/main.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp" "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d" ) # Targets to which this target links. diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make index 57ba7c08c34afc32a538bdb40edd5b84e380c2a0..1e4d13a0a26018eaf81f743c5514b92c0ae886ed 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_profile/AclNNInvocation/src +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_profile/AclNNInvocation/build +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build # Include any dependencies generated for this target. include CMakeFiles/execute_add_op.dir/depend.make @@ -70,60 +70,60 @@ include CMakeFiles/execute_add_op.dir/progress.make include CMakeFiles/execute_add_op.dir/flags.make CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: CMakeFiles/execute_add_op.dir/flags.make -CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: /_profile/AclNNInvocation/src/operator_desc.cpp +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_profile/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -MF CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -c /_profile/AclNNInvocation/src/operator_desc.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -MF CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp CMakeFiles/execute_add_op.dir/operator_desc.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/operator_desc.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_profile/AclNNInvocation/src/operator_desc.cpp > CMakeFiles/execute_add_op.dir/operator_desc.cpp.i + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp > CMakeFiles/execute_add_op.dir/operator_desc.cpp.i CMakeFiles/execute_add_op.dir/operator_desc.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/operator_desc.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_profile/AclNNInvocation/src/operator_desc.cpp -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.s + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.s CMakeFiles/execute_add_op.dir/op_runner.cpp.o: CMakeFiles/execute_add_op.dir/flags.make -CMakeFiles/execute_add_op.dir/op_runner.cpp.o: /_profile/AclNNInvocation/src/op_runner.cpp +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp CMakeFiles/execute_add_op.dir/op_runner.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_profile/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/execute_add_op.dir/op_runner.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/op_runner.cpp.o -MF CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d -o CMakeFiles/execute_add_op.dir/op_runner.cpp.o -c /_profile/AclNNInvocation/src/op_runner.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/execute_add_op.dir/op_runner.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/op_runner.cpp.o -MF CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d -o CMakeFiles/execute_add_op.dir/op_runner.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp CMakeFiles/execute_add_op.dir/op_runner.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/op_runner.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_profile/AclNNInvocation/src/op_runner.cpp > CMakeFiles/execute_add_op.dir/op_runner.cpp.i + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp > CMakeFiles/execute_add_op.dir/op_runner.cpp.i CMakeFiles/execute_add_op.dir/op_runner.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/op_runner.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_profile/AclNNInvocation/src/op_runner.cpp -o CMakeFiles/execute_add_op.dir/op_runner.cpp.s + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp -o CMakeFiles/execute_add_op.dir/op_runner.cpp.s CMakeFiles/execute_add_op.dir/main.cpp.o: CMakeFiles/execute_add_op.dir/flags.make -CMakeFiles/execute_add_op.dir/main.cpp.o: /_profile/AclNNInvocation/src/main.cpp +CMakeFiles/execute_add_op.dir/main.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp CMakeFiles/execute_add_op.dir/main.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_profile/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/execute_add_op.dir/main.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/main.cpp.o -MF CMakeFiles/execute_add_op.dir/main.cpp.o.d -o CMakeFiles/execute_add_op.dir/main.cpp.o -c /_profile/AclNNInvocation/src/main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/execute_add_op.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/main.cpp.o -MF CMakeFiles/execute_add_op.dir/main.cpp.o.d -o CMakeFiles/execute_add_op.dir/main.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp CMakeFiles/execute_add_op.dir/main.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/main.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_profile/AclNNInvocation/src/main.cpp > CMakeFiles/execute_add_op.dir/main.cpp.i + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp > CMakeFiles/execute_add_op.dir/main.cpp.i CMakeFiles/execute_add_op.dir/main.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/main.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_profile/AclNNInvocation/src/main.cpp -o CMakeFiles/execute_add_op.dir/main.cpp.s + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp -o CMakeFiles/execute_add_op.dir/main.cpp.s CMakeFiles/execute_add_op.dir/common.cpp.o: CMakeFiles/execute_add_op.dir/flags.make -CMakeFiles/execute_add_op.dir/common.cpp.o: /_profile/AclNNInvocation/src/common.cpp +CMakeFiles/execute_add_op.dir/common.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp CMakeFiles/execute_add_op.dir/common.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_profile/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/execute_add_op.dir/common.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/common.cpp.o -MF CMakeFiles/execute_add_op.dir/common.cpp.o.d -o CMakeFiles/execute_add_op.dir/common.cpp.o -c /_profile/AclNNInvocation/src/common.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/execute_add_op.dir/common.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/common.cpp.o -MF CMakeFiles/execute_add_op.dir/common.cpp.o.d -o CMakeFiles/execute_add_op.dir/common.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp CMakeFiles/execute_add_op.dir/common.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/common.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_profile/AclNNInvocation/src/common.cpp > CMakeFiles/execute_add_op.dir/common.cpp.i + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp > CMakeFiles/execute_add_op.dir/common.cpp.i CMakeFiles/execute_add_op.dir/common.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/common.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_profile/AclNNInvocation/src/common.cpp -o CMakeFiles/execute_add_op.dir/common.cpp.s + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp -o CMakeFiles/execute_add_op.dir/common.cpp.s # Object files for target execute_add_op execute_add_op_OBJECTS = \ @@ -135,17 +135,17 @@ execute_add_op_OBJECTS = \ # External object files for target execute_add_op execute_add_op_EXTERNAL_OBJECTS = -/_profile/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -/_profile/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/op_runner.cpp.o -/_profile/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/main.cpp.o -/_profile/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/common.cpp.o -/_profile/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/build.make -/_profile/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/_profile/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX executable /_profile/AclNNInvocation/output/execute_add_op" +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/operator_desc.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/op_runner.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/main.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/common.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/build.make +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX executable /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op" $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/execute_add_op.dir/link.txt --verbose=$(VERBOSE) # Rule to build all files generated by this target. -CMakeFiles/execute_add_op.dir/build: /_profile/AclNNInvocation/output/execute_add_op +CMakeFiles/execute_add_op.dir/build: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op .PHONY : CMakeFiles/execute_add_op.dir/build CMakeFiles/execute_add_op.dir/clean: @@ -153,6 +153,6 @@ CMakeFiles/execute_add_op.dir/clean: .PHONY : CMakeFiles/execute_add_op.dir/clean CMakeFiles/execute_add_op.dir/depend: - cd /_profile/AclNNInvocation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_profile/AclNNInvocation/src /_profile/AclNNInvocation/src /_profile/AclNNInvocation/build /_profile/AclNNInvocation/build /_profile/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake --color=$(COLOR) .PHONY : CMakeFiles/execute_add_op.dir/depend diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake index 602a05df6db802e5e0e9d22d4d5aa3e1c53ef987..3dcafd353178deee52ec8ef03fee586be5e98df8 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake @@ -1,6 +1,6 @@ file(REMOVE_RECURSE - "/_profile/AclNNInvocation/output/execute_add_op" - "/_profile/AclNNInvocation/output/execute_add_op.pdb" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op.pdb" "CMakeFiles/execute_add_op.dir/common.cpp.o" "CMakeFiles/execute_add_op.dir/common.cpp.o.d" "CMakeFiles/execute_add_op.dir/main.cpp.o" diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d index c27d4b48b6a3863a5c8f4ce394ba46a9a6fa0d17..6650d421a8bb9b52fbd4f109f793b55641a139c1 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d @@ -1,6 +1,8 @@ CMakeFiles/execute_add_op.dir/common.cpp.o: \ - /_profile/AclNNInvocation/src/common.cpp /usr/include/stdc-predef.h \ - /_profile/AclNNInvocation/src/../inc/common.h /usr/include/c++/11/cstdio \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 \ diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make index 8ccb6d9f0b071cb2527cc118480ddb3980c603cf..2151d9f3e2fef2761d89196ff82d33c37f0b9fc2 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make @@ -4,7 +4,7 @@ # 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/_profile/AclNNInvocation/src/../inc -I/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include +CXX_INCLUDES = -I/usr/local/Ascend/ascend-toolkit/latest/runtime/include -I/usr/local/Ascend/ascend-toolkit/latest/atc/include -I/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc -I/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include CXX_FLAGS = -std=c++11 diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt index 55d00e13dc7b7fce1a518785057d35f6ace19059..6463248d8c6423ed72e989217bb0c829c0efdfcc 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt @@ -1 +1 @@ -/usr/bin/c++ CMakeFiles/execute_add_op.dir/operator_desc.cpp.o CMakeFiles/execute_add_op.dir/op_runner.cpp.o CMakeFiles/execute_add_op.dir/main.cpp.o CMakeFiles/execute_add_op.dir/common.cpp.o -o /_profile/AclNNInvocation/output/execute_add_op -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -L/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64:/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib: -lascendcl -lcust_opapi -lacl_op_compiler -lnnopbase -lstdc++ +/usr/bin/c++ CMakeFiles/execute_add_op.dir/operator_desc.cpp.o CMakeFiles/execute_add_op.dir/op_runner.cpp.o CMakeFiles/execute_add_op.dir/main.cpp.o CMakeFiles/execute_add_op.dir/common.cpp.o -o /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -L/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64:/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib: -lascendcl -lcust_opapi -lacl_op_compiler -lnnopbase -lstdc++ diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o index 90e0ff21ad7e759d822e2226bb03a89b2d42b0df..47894777ca214f8f769f984333e10291321c2f2c 100644 Binary files a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o and b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o differ diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d index f87faad4bd30a52b67fa299a617608796c2e2ea8..bd94014da9ae57c11c57e5d272517821f129ef95 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d @@ -1,7 +1,7 @@ CMakeFiles/execute_add_op.dir/main.cpp.o: \ - /_profile/AclNNInvocation/src/main.cpp /usr/include/stdc-predef.h \ - /usr/include/aarch64-linux-gnu/sys/stat.h /usr/include/features.h \ - /usr/include/features-time64.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp \ + /usr/include/stdc-predef.h /usr/include/aarch64-linux-gnu/sys/stat.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 \ @@ -174,7 +174,7 @@ CMakeFiles/execute_add_op.dir/main.cpp.o: \ /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 \ - /_profile/AclNNInvocation/src/../inc/common.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ /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 \ @@ -190,8 +190,8 @@ CMakeFiles/execute_add_op.dir/main.cpp.o: \ /usr/include/c++/11/bits/stl_vector.h \ /usr/include/c++/11/bits/stl_bvector.h \ /usr/include/c++/11/bits/vector.tcc \ - /_profile/AclNNInvocation/src/../inc/op_runner.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 \ - /_profile/AclNNInvocation/src/../inc/common.h \ - /_profile/AclNNInvocation/src/../inc/operator_desc.h + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o index 5ccacf64e827545e41d773ca00bb2c1eb7d4956d..ddb0570d57abf3c0b3b2346fc3a18fee902b7dab 100644 Binary files a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o and b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o differ diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d index 2e7718702c8908772608818b256acdceb956ba06..793432f87b215b001b25f4703855fa3d35402a3c 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d @@ -1,6 +1,7 @@ CMakeFiles/execute_add_op.dir/op_runner.cpp.o: \ - /_profile/AclNNInvocation/src/op_runner.cpp /usr/include/stdc-predef.h \ - /_profile/AclNNInvocation/src/../inc/op_runner.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/op_runner.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/lib/gcc/aarch64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ @@ -60,8 +61,9 @@ CMakeFiles/execute_add_op.dir/op_runner.cpp.o: \ /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 \ - /_profile/AclNNInvocation/src/../inc/common.h /usr/include/c++/11/cstdio \ - /usr/include/stdio.h /usr/lib/gcc/aarch64-linux-gnu/11/include/stdarg.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 \ @@ -170,11 +172,11 @@ CMakeFiles/execute_add_op.dir/op_runner.cpp.o: \ /usr/include/c++/11/bits/stl_vector.h \ /usr/include/c++/11/bits/stl_bvector.h \ /usr/include/c++/11/bits/vector.tcc \ - /_profile/AclNNInvocation/src/../inc/operator_desc.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h \ /usr/include/c++/11/cassert /usr/include/assert.h \ /usr/include/c++/11/limits \ /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 \ /usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include/aclnn_add_custom.h \ - /_profile/AclNNInvocation/src/../inc/common.h + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h diff --git a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d index fd968372e52e82d7ff1f7be0ab55bcc67db16714..cfc45b1e79ea257603967de121510a736c6da373 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d +++ b/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d @@ -1,7 +1,7 @@ CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: \ - /_profile/AclNNInvocation/src/operator_desc.cpp \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp \ /usr/include/stdc-predef.h \ - /_profile/AclNNInvocation/src/../inc/operator_desc.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h \ /usr/include/c++/11/string \ /usr/include/aarch64-linux-gnu/c++/11/bits/c++config.h \ /usr/include/aarch64-linux-gnu/c++/11/bits/os_defines.h \ @@ -140,7 +140,7 @@ CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: \ /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 \ - /_profile/AclNNInvocation/src/../inc/common.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ /usr/include/c++/11/iomanip /usr/include/c++/11/bits/ios_base.h \ /usr/include/c++/11/bits/locale_classes.h \ /usr/include/c++/11/bits/locale_classes.tcc \ diff --git a/Increase_DataCopy_case/AclNNInvocation/build/Makefile b/Increase_DataCopy_case/AclNNInvocation/build/Makefile index e7cb05bf4b5f0855dec6c81bc31c91930a292e05..cf7873376d2687c96517f951d5a7eeeae8fbeaf8 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/Makefile +++ b/Increase_DataCopy_case/AclNNInvocation/build/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_profile/AclNNInvocation/src +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_profile/AclNNInvocation/build +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build #============================================================================= # Targets provided globally by CMake. @@ -132,9 +132,9 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_profile/AclNNInvocation/build/CMakeFiles /_profile/AclNNInvocation/build//CMakeFiles/progress.marks + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build//CMakeFiles/progress.marks $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /_profile/AclNNInvocation/build/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles 0 .PHONY : all # The main clean target diff --git a/Increase_DataCopy_case/AclNNInvocation/build/cmake_install.cmake b/Increase_DataCopy_case/AclNNInvocation/build/cmake_install.cmake index c9c449f1d4b33b673828756a88eb363b93d1f2f0..027ce2052105405948b6a0a33e19456dd31d0626 100644 --- a/Increase_DataCopy_case/AclNNInvocation/build/cmake_install.cmake +++ b/Increase_DataCopy_case/AclNNInvocation/build/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /_profile/AclNNInvocation/src +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) @@ -49,7 +49,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" RPATH "") endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/../output" TYPE EXECUTABLE FILES "/_profile/AclNNInvocation/output/execute_add_op") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/../output" TYPE EXECUTABLE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op") file(RPATH_CHANGE @@ -70,5 +70,5 @@ endif() string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/_profile/AclNNInvocation/build/${CMAKE_INSTALL_MANIFEST}" +file(WRITE "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/${CMAKE_INSTALL_MANIFEST}" "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Increase_DataCopy_case/AclNNInvocation/input/input_x.bin b/Increase_DataCopy_case/AclNNInvocation/input/input_x.bin index c215dab0aafd8c49f8418de903ee6073699c6f11..3ac49e781c8d7df0276a2411bb48dbff22ebe3c3 100644 Binary files a/Increase_DataCopy_case/AclNNInvocation/input/input_x.bin and b/Increase_DataCopy_case/AclNNInvocation/input/input_x.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/input/input_y.bin b/Increase_DataCopy_case/AclNNInvocation/input/input_y.bin index f89fdb0badcf9167c8986d1c754f96edfc0057c0..60fb15c8459d8bfb2979769725be1317ee7e7af6 100644 Binary files a/Increase_DataCopy_case/AclNNInvocation/input/input_y.bin and b/Increase_DataCopy_case/AclNNInvocation/input/input_y.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/ArithmeticUtilization.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/ArithmeticUtilization.csv new file mode 100644 index 0000000000000000000000000000000000000000..ace3e4f0c5dd90939a7f598d3c69ef8569e3692d --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/ArithmeticUtilization.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_ratio,aic_cube_fp16_ratio,aic_cube_int8_ratio,aic_cube_fops,aic_cube_total_instr_number,aic_cube_fp_instr_number,aic_cube_int_instr_number,aiv_time(us),aiv_total_cycles,aiv_vec_ratio,aiv_vec_fp32_ratio,aiv_vec_fp16_ratio,aiv_vec_int32_ratio,aiv_vec_int16_ratio,aiv_vec_misc_ratio,aiv_vec_fops, +0,cube0,3.495098,4278,0.000000,0.000000,0.000000,0,0,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/L2Cache.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/L2Cache.csv similarity index 82% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/L2Cache.csv rename to Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/L2Cache.csv index 823d12ab5d887e7e5843bfea707f4392c90a0a47..1d55ab870e320fac2ff41b09e3dcd63e35cfbf1c 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/L2Cache.csv +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/L2Cache.csv @@ -1,2 +1,2 @@ block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_write_cache_hit,aic_write_cache_miss_allocate,aic_r0_read_cache_hit,aic_r0_read_cache_miss_allocate,aic_r1_read_cache_hit,aic_r1_read_cache_miss_allocate,aic_write_hit_rate(%),aic_read_hit_rate(%),aic_total_hit_rate(%),aiv_time(us),aiv_total_cycles,aiv_write_cache_hit,aiv_write_cache_miss_allocate,aiv_r0_read_cache_hit,aiv_r0_read_cache_miss_allocate,aiv_r1_read_cache_hit,aiv_r1_read_cache_miss_allocate,aiv_write_hit_rate(%),aiv_read_hit_rate(%),aiv_total_hit_rate(%), -0,cube0,2.973856,3640,12,0,15,256,15,257,100.000000,5.524862,7.567567,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, +0,cube0,3.495098,4278,73,64,12,256,13,257,53.284672,4.646840,14.518518,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/Memory.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/Memory.csv similarity index 78% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/Memory.csv rename to Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/Memory.csv index e98376af01a8dd1fb8837b5b0851db8c9419bd2e..5905168fd3c4c07ee9175181d5a83a5a5f337e3a 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/Memory.csv +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/Memory.csv @@ -1,2 +1,2 @@ block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_l1_read_bw(GB/s),aic_l1_write_bw(GB/s),aic_main_mem_read_bw(GB/s),aic_main_mem_write_bw(GB/s),aic_mte1_instructions,aic_mte1_ratio,aic_mte2_instructions,aic_mte2_ratio,aic_mte3_instructions,aic_mte3_ratio,aiv_time(us),aiv_total_cycles,aiv_ub_to_gm_bw(GB/s),aiv_gm_to_ub_bw(GB/s),aiv_main_mem_read_bw(GB/s),aiv_main_mem_write_bw(GB/s),aiv_mte2_instructions,aiv_mte2_ratio,aiv_mte3_instructions,aiv_mte3_ratio,read_main_memory_datas(KB),write_main_memory_datas(KB),GM_to_L1_datas(KB),GM_to_L1_bw_usage_rate(%),L1_to_GM_datas(KB)(estimate),L1_to_GM_bw_usage_rate(%)(estimate),L0C_to_L1_datas(KB),L0C_to_L1_bw_usage_rate(%),L0C_to_GM_datas(KB),L0C_to_GM_bw_usage_rate(%),GM_to_UB_datas(KB),GM_to_UB_bw_usage_rate(%),UB_to_GM_datas(KB),UB_to_GM_bw_usage_rate(%), -0,cube0,2.973856,3640,0.000000,0.000000,21.806654,0.481029,2,0.001099,4,0.619780,1,0.000549,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,68.000000,1.500000,0.000000,N/A,6.000000,N/A,0.000000,N/A,0.000000,N/A,N/A,N/A,N/A,N/A, +0,cube0,3.495098,4278,0.000000,0.000000,18.418085,17.770042,2,0.000935,4,0.719963,2,0.661524,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,67.500000,65.125000,0.000000,N/A,68.500000,N/A,0.000000,N/A,0.000000,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/MemoryL0.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/MemoryL0.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b7974ea9f17bda1c89ac731ddc7babf7d04b10f --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/MemoryL0.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_l0a_read_bw(GB/s),aic_l0a_write_bw(GB/s),aic_l0b_read_bw(GB/s),aic_l0b_write_bw(GB/s),aic_l0c_read_bw_cube(GB/s),aic_l0c_write_bw_cube(GB/s),aiv_time(us),aiv_total_cycles, +0,cube0,3.495098,4278,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/MemoryUB.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/MemoryUB.csv new file mode 100644 index 0000000000000000000000000000000000000000..6962e51bbed5bbf2aa4d719c2c7d1251f4338f97 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/MemoryUB.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aiv_time(us),aiv_total_cycles,aiv_ub_read_bw_vector(GB/s),aiv_ub_write_bw_vector(GB/s),aiv_ub_read_bw_scalar(GB/s),aiv_ub_write_bw_scalar(GB/s), +0,cube0,3.495098,4278,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/OpBasicInfo.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/OpBasicInfo.csv similarity index 48% rename from Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/OpBasicInfo.csv rename to Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/OpBasicInfo.csv index 11fe83a4959cd915081028460be38fad078ca044..353ce2e0afa8de99e68664fd5afbe1fc554f2530 100644 --- a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/OpBasicInfo.csv +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/OpBasicInfo.csv @@ -1,2 +1,2 @@ Op Name,Op Type,Task Duration(us),Block Dim,Mix Block Dim, -AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0,cube,8.687500,1,N/A, +AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0,cube,9.666667,1,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/PipeUtilization.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/PipeUtilization.csv new file mode 100644 index 0000000000000000000000000000000000000000..df886b8def78cf42295aea861dc4d05e0f314b99 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/PipeUtilization.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_time(us),aic_cube_ratio,aic_scalar_time(us),aic_scalar_ratio,aic_mte1_time(us),aic_mte1_ratio,aic_mte2_time(us),aic_mte2_ratio,aic_mte3_time(us),aic_mte3_ratio,aic_fixpipe_time(us),aic_fixpipe_ratio,aic_icache_miss_rate,aiv_time(us),aiv_total_cycles,aiv_vec_time(us),aiv_vec_ratio,aiv_scalar_time(us),aiv_scalar_ratio,aiv_mte2_time(us),aiv_mte2_ratio,aiv_mte3_time(us),aiv_mte3_ratio,aiv_icache_miss_rate, +0,cube0,3.495098,4278,0.000000,0.000000,1.107026,0.316737,0.003268,0.000935,2.516340,0.719963,2.312092,0.661524,0.000817,0.000234,0.191919,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/ResourceConflictRatio.csv b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/ResourceConflictRatio.csv new file mode 100644 index 0000000000000000000000000000000000000000..7f13dab73c504a5f2b201d198a7b159b7e012e3c --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/ResourceConflictRatio.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_wait_ratio,aic_mte1_wait_ratio,aic_mte2_wait_ratio,aic_mte3_wait_ratio,aiv_time(us),aiv_total_cycles,aiv_vec_total_cflt_ratio,aiv_vec_bankgroup_cflt_ratio,aiv_vec_bank_cflt_ratio,aiv_vec_resc_cflt_ratio,aiv_vec_mte_cflt_ratio,aiv_vec_wait_ratio,aiv_mte1_wait_ratio,aiv_mte2_wait_ratio,aiv_mte3_wait_ratio, +0,cube0,3.495098,4278,0.000000,0.000000,0.000000,0.000000,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf1.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf1.bin new file mode 100644 index 0000000000000000000000000000000000000000..c85c4549af48727b2e764d36f06add4b9d8a78df Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf1.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf2.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf2.bin new file mode 100644 index 0000000000000000000000000000000000000000..e0db27fd0e87a35c4bfce96140009cb7648e2020 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf2.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf3.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf3.bin new file mode 100644 index 0000000000000000000000000000000000000000..43691836fe8ab12cc5261138ff23a071ee93b641 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf3.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf4.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf4.bin new file mode 100644 index 0000000000000000000000000000000000000000..6024f55f9dc8f2720fb05d801a0ff28dc5020783 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf4.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf5.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf5.bin new file mode 100644 index 0000000000000000000000000000000000000000..4270ce3b73c9635b479cb7efee436b6aaa4c9c97 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf5.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf6.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf6.bin new file mode 100644 index 0000000000000000000000000000000000000000..8aa5601cd47e1fbb25fd37f19b30a47c87ed3b94 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf6.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf7.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf7.bin new file mode 100644 index 0000000000000000000000000000000000000000..2cfa72cffc49f6682ee2f16b2d92cb1d35a92dd0 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/DeviceProf7.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/duration.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/duration.bin new file mode 100644 index 0000000000000000000000000000000000000000..f0a991862e95eed638f54da5da5936ce99e9168e Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/duration.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/op_basic_info.txt b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/op_basic_info.txt new file mode 100644 index 0000000000000000000000000000000000000000..2eeb43762ec8c2668a7a648acbc4345113ae6885 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/dump/op_basic_info.txt @@ -0,0 +1,3 @@ +Op Name=AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0 +Block Dim=1 +Run Soc Version=Ascend310B4 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/visualize_data.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/visualize_data.bin new file mode 100644 index 0000000000000000000000000000000000000000..0a2ea62360f9fbe5673faf320aa76640d84006a0 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240526112018_BUFDXPBXSWWUBGFG/visualize_data.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf1.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf1.bin deleted file mode 100644 index 00c917401d169160abfbd19dc84fd9a3d1643daf..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf1.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf2.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf2.bin deleted file mode 100644 index 413b94477900893057932da0eebda72af5708c00..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf2.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf3.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf3.bin deleted file mode 100644 index 86934c749c81b855a4712e31b51f8f02cbe803df..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf3.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf4.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf4.bin deleted file mode 100644 index 7739d2c1820654941fd0ac21358adb7837d97378..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf4.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf5.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf5.bin deleted file mode 100644 index 616ac6d1b85dd91791e65cdb622606e1ebc7728b..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf5.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf6.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf6.bin deleted file mode 100644 index 6908b4c3fdc68b08c4de0fdba5c1198a9feee20d..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf6.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf7.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf7.bin deleted file mode 100644 index d56d6f4e46bc152adc6b90728a494402aabe999c..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/DeviceProf7.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/duration.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/duration.bin deleted file mode 100644 index 1d027cb5c6bf8250f0aefde2e7edb94856da18f3..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/dump/duration.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/visualize_data.bin b/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/visualize_data.bin deleted file mode 100644 index 9b553263416bb197d08221e396b3dfff2d9ce025..0000000000000000000000000000000000000000 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/OPPROF_20240827171423_EXIUBCRAVAHHZJVC/visualize_data.bin and /dev/null differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/all_file.complete b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/all_file.complete new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ffts_profile.data.0.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ffts_profile.data.0.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..c9e873268cdad20787bca4c052c25eab996a48dd Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ffts_profile.data.0.slice_0 differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ffts_profile.data.0.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ffts_profile.data.0.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..8dd89950a5e8afadae42f527ba4f6e24efca3649 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ffts_profile.data.0.slice_0.done @@ -0,0 +1,3 @@ +filesize:128 +starttime:0 +endtime :0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/stars_soc.data.0.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/stars_soc.data.0.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..2ee6127b5e2694a250b8186ffece3d349566fec3 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/stars_soc.data.0.slice_0 differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/stars_soc.data.0.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/stars_soc.data.0.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..1857277171b9fc4054751d226ad874a0266606a2 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/stars_soc.data.0.slice_0.done @@ -0,0 +1,3 @@ +filesize:384 +starttime:0 +endtime :0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..6d0915a8bdc8b24f41de28e54e8046645d8e1236 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0 differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0.complete b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0.complete new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..b22caf630c2837fed86eca488b3596a4a1e701cb --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/data/ts_track.data.0.slice_0.done @@ -0,0 +1,3 @@ +filesize:40 +starttime:0 +endtime :0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/dev_start.log.0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/dev_start.log.0 new file mode 100644 index 0000000000000000000000000000000000000000..140c3d6d23f82e361bfa6cd0ef61ba840f67e40e --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/dev_start.log.0 @@ -0,0 +1,2 @@ +clock_monotonic_raw: 158631869249217 +cntvct: 7614599056711 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/dev_start.log.0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/dev_start.log.0.done new file mode 100644 index 0000000000000000000000000000000000000000..c4d4e6b30b2dfc18d87c3189dcaffd8f3ebb1d56 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/dev_start.log.0.done @@ -0,0 +1 @@ +filesize:59 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/end_info.0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/end_info.0 new file mode 100644 index 0000000000000000000000000000000000000000..81936bccf6cc5f8c3d0303cbcbc67e860e42244f --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/end_info.0 @@ -0,0 +1 @@ +{"collectionDateEnd":"2024-05-26 11:20:51.869786","collectionTimeEnd":"1716693651869786","clockMonotonicRaw":"158632398610592"} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/end_info.0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/end_info.0.done new file mode 100644 index 0000000000000000000000000000000000000000..c361543fc891c90bb56ba47cc117e1857d6f43b3 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/end_info.0.done @@ -0,0 +1 @@ +filesize:127 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/host_start.log.0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/host_start.log.0 new file mode 100644 index 0000000000000000000000000000000000000000..5216fcac5f790fc44fc93788dfd27fc7a986fad7 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/host_start.log.0 @@ -0,0 +1,4 @@ +[Device0] +clock_monotonic_raw: 158631869247634 +cntvct: 7614599056555 +cntvct_diff: 44 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/host_start.log.0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/host_start.log.0.done new file mode 100644 index 0000000000000000000000000000000000000000..f43754094c2a52afbf0c8ef7475562465a77dae3 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/host_start.log.0.done @@ -0,0 +1 @@ +filesize:85 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/incompatible_features.json b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/incompatible_features.json new file mode 100644 index 0000000000000000000000000000000000000000..fc2e1caf2fea7277cd65dd319ca5c9fe692cd867 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/incompatible_features.json @@ -0,0 +1 @@ +{"ATTR":[{"affectedComponent":"all","affectedComponentVersion":"all","compatibility":"0","featureVersion":"1","infoLog":"It not support feature: ATTR!"}]} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/incompatible_features.json.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/incompatible_features.json.done new file mode 100644 index 0000000000000000000000000000000000000000..c8dd6318865de30181f524c6d00124b5a773f38c --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/incompatible_features.json.done @@ -0,0 +1 @@ +filesize:154 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/info.json.0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/info.json.0 new file mode 100644 index 0000000000000000000000000000000000000000..7ccd1e20104a5ae77a38ae9e903b45297486e684 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/info.json.0 @@ -0,0 +1 @@ +{"jobInfo":"NA","version":"1.0","mac":"02-42-E9-EA-9F-D5","OS":"Linux-5.10.0+-#1 SMP Mon Feb 26 15:29:07 CST 2024","cpuCores":1,"hostname":"orangepiaipro","hwtype":"aarch64","devices":"0","platform":"","CPU":[{"Id":0,"Name":"","Frequency":"48.000000","Logical_CPU_Count":1,"Type":""}],"DeviceInfo":[{"id":0,"env_type":3,"ctrl_cpu_id":"ARMv8_Cortex_A55","ctrl_cpu_core_num":3,"ctrl_cpu_endian_little":1,"ts_cpu_core_num":1,"ai_cpu_core_num":1,"ai_core_num":1,"ai_cpu_core_id":3,"ai_core_id":0,"aicpu_occupy_bitmap":8,"ctrl_cpu":"0,1,2","ai_cpu":"3","aiv_num":1,"hwts_frequency":"48.000000","aic_frequency":"1224","aiv_frequency":"1224"}],"platform_version":"7","pid":"1342881","memoryTotal":15984272,"cpuNums":4,"sysClockFreq":100,"upTime":"158634.08 614562.37","netCardNums":0,"netCard":[{"netCardName":"eth0","speed":1000}],"rank_id":-1,"cycleToTime":[{"realCpuFreq":0.048000090928292431,"calibration":"5310583452"}],"pid_name":"execute_add_op","drvVersion":467731,"hostUid":"16774336220287662547"} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/info.json.0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/info.json.0.done new file mode 100644 index 0000000000000000000000000000000000000000..d1120bfe9f8610860517c5f6e032831a7a923b34 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/info.json.0.done @@ -0,0 +1 @@ +filesize:999 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sample.json b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sample.json new file mode 100644 index 0000000000000000000000000000000000000000..8dd99ff66d6846e597535e443446c8d65eccce0e --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sample.json @@ -0,0 +1 @@ +{"aiCtrlCpuProfiling":"off","ai_core_metrics":"PipelineExecuteUtilization","ai_core_profiling":"on","ai_core_profiling_events":"0x12c,0x49,0x4a,0x9,0x302,0xc,0xd,0x303","ai_core_profiling_mode":"task-based","ai_ctrl_cpu_profiling_events":"","aicore_sampling_interval":10,"aiv_metrics":"PipelineExecuteUtilization","aiv_profiling":"on","aiv_profiling_events":"0x12c,0x49,0x4a,0x9,0x302,0xc,0xd,0x303","aiv_profiling_mode":"task-based","aiv_sampling_interval":10,"app":"execute_add_op","app_dir":"/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/.","app_env":"","app_parameters":"","cmdPath":"/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/./execute_add_op","cpu_profiling":"off","cpu_sampling_interval":20,"dataTypeConfig":13835058058033629255,"ddr_interval":20,"ddr_master_id":0,"ddr_profiling":"","ddr_profiling_events":"","delayTime":"","devices":"0","durationTime":"","dvpp_profiling":"off","dvpp_sampling_interval":20,"hardware_mem":"off","hardware_mem_sampling_interval":20,"hbmInterval":20,"hbmProfiling":"","hbm_profiling_events":"","hccsInterval":20,"hccsProfiling":"off","host_all_pid_cpu_profiling":"off","host_all_pid_mem_profiling":"off","host_cpu_profiling_sampling_interval":20,"host_disk_freq":50,"host_disk_profiling":"off","host_mem_profiling_sampling_interval":20,"host_network_profiling":"off","host_one_pid_cpu_profiling":"off","host_one_pid_mem_profiling":"off","host_osrt_profiling":"off","host_profiling":0,"host_sys":"","host_sys_cpu_profiling":"off","host_sys_mem_profiling":"off","host_sys_pid":1342881,"host_sys_usage":"","hwts_log":"","hwts_log1":"","instr_profiling":"off","instr_profiling_freq":1000,"interconnection_profiling":"off","interconnection_sampling_interval":20,"io_profiling":"off","io_sampling_interval":10,"isSubscribe":false,"is_cancel":0,"jobInfo":"","job_id":"0","l2CacheTaskProfiling":"","l2CacheTaskProfilingEvents":"","llc_interval":20,"llc_profiling":"read","llc_profiling_events":"read","low_power":"","modelLoad":"","msprof":"off","msprofBinPid":1342879,"msprof_llc_profiling":"","msproftx":"off","nicInterval":10,"nicProfiling":"off","npuAppMemProfiling":"on","npuModuleMemProfiling":"on","pcieInterval":20,"pcieProfiling":"","pid_profiling":"off","pid_sampling_interval":100,"profLevel":"l1","profiling_mode":"def_mode","profiling_options":"","profiling_period":-1,"qosEvents":"","qosProfiling":"","result_dir":"/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/","roceInterval":10,"roceProfiling":"off","stars_acsq_task":"on","storageLimit":"29011MB","stream_enabled":"on","sys_profiling":"off","sys_sampling_interval":100,"tsCpuProfiling":"off","ts_cpu_profiling_events":"","ts_fw_training":"","ts_keypoint":"on","ts_memcpy":"on","ts_timeline":""} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sample.json.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sample.json.done new file mode 100644 index 0000000000000000000000000000000000000000..66b2877e25dc5ff2bd393ccf89fd579e675daa6a --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sample.json.done @@ -0,0 +1 @@ +filesize:2869 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/ai_core_op_summary.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/ai_core_op_summary.db new file mode 100644 index 0000000000000000000000000000000000000000..09387ccc49e37b121b503d324fb8d0f79248c1b4 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/ai_core_op_summary.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/ascend_task.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/ascend_task.db new file mode 100644 index 0000000000000000000000000000000000000000..b4577007c47cfc01a9214a86c9a29baa3ea1cf07 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/ascend_task.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/biu_perf.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/biu_perf.db new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/freq.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/freq.db new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/metric_summary.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/metric_summary.db new file mode 100644 index 0000000000000000000000000000000000000000..e242bf9710b92294ecccb9037a47fdabeb5571d0 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/metric_summary.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/op_counter.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/op_counter.db new file mode 100644 index 0000000000000000000000000000000000000000..001d716348775567ef591fc1b7107e7cad100c26 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/op_counter.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/soc_log.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/soc_log.db new file mode 100644 index 0000000000000000000000000000000000000000..b3f85d3d4d1a2e76217d9dc17696a72d691ec287 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/soc_log.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/step_trace.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/step_trace.db new file mode 100644 index 0000000000000000000000000000000000000000..dd2a2bcf88fb4328ec0639d7ed2b52972bdf943c Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/sqlite/step_trace.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/start_info.0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/start_info.0 new file mode 100644 index 0000000000000000000000000000000000000000..79ef8899864a46aa4239ef7cddfab8458ff2930f --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/start_info.0 @@ -0,0 +1 @@ +{"collectionDateBegin":"2024-05-26 11:20:51.339118","collectionTimeBegin":"1716693651339118","clockMonotonicRaw":"158631867952322"} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/start_info.0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/start_info.0.done new file mode 100644 index 0000000000000000000000000000000000000000..799d63ab4f0e7fb5f3ea3699e5fe575f632ac4d2 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/device_0/start_info.0.done @@ -0,0 +1 @@ +filesize:131 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.additional.tensor_info.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.additional.tensor_info.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..4dfb77e38097d797ce6d0471e5d0dfe4d3892fcf Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.additional.tensor_info.slice_0 differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.additional.tensor_info.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.additional.tensor_info.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..d750e41b54ba3976a8ae9cc2d7e82182c0f1139a --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.additional.tensor_info.slice_0.done @@ -0,0 +1,3 @@ +filesize:256 +starttime:0 +endtime :0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.api_event.data.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.api_event.data.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..b159c0e20dd35d9cbe235c8f19f585192e3cf657 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.api_event.data.slice_0 differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.api_event.data.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.api_event.data.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..7eff40e08069d61af14b7e7825a56d3c2193ee42 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.api_event.data.slice_0.done @@ -0,0 +1,3 @@ +filesize:1560 +starttime:0 +endtime :0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.node_basic_info.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.node_basic_info.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..3c6f2e0ab0ab73fa0fb94a7276f50d4e5b316221 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.node_basic_info.slice_0 differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.node_basic_info.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.node_basic_info.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..60fa284f74f04af669a141cd37317db17f99a250 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.node_basic_info.slice_0.done @@ -0,0 +1,3 @@ +filesize:64 +starttime:0 +endtime :0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.task_track.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.task_track.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..394617f4e5ee07b1a967051e449e98afc064b5c4 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.task_track.slice_0 differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.task_track.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.task_track.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..c571226e9ea112951a39b8196664912b7c0d6416 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/aging.compact.task_track.slice_0.done @@ -0,0 +1,3 @@ +filesize:448 +starttime:0 +endtime :0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/all_file.complete b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/all_file.complete new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.hash_dic.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.hash_dic.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..bccee241b1f969d7cde34ef5346b196c9612dc93 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.hash_dic.slice_0 @@ -0,0 +1,3 @@ +16774336220287662547:7c8899ff91d0-c0742bfe3c41 +10041135701943261950:AddCustom +7871540179082268542:AddCustomAicpu diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.hash_dic.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.hash_dic.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..689078ce9bef67b443e1724600b276dd22a6285f --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.hash_dic.slice_0.done @@ -0,0 +1,3 @@ +filesize:113 +starttime:158632409476884 +endtime :158632409476884 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.type_info_dic.slice_0 b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.type_info_dic.slice_0 new file mode 100644 index 0000000000000000000000000000000000000000..80043b5e2c3479299981cb3ceede4701a3ba87b4 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.type_info_dic.slice_0 @@ -0,0 +1,426 @@ +5000_0:KERNEL_AICORE +5000_1:KERNEL_AICPU +5000_2:EVENT_RECORD +5000_3:EVENT_WAIT +5000_4:KERNEL_FUSION +5000_5:MEMCPY_ASYNC +5000_6:MAINTENANCE +5000_7:CREATE_STREAM +5000_8:reserve +5000_9:REMOTE_EVENT_WAIT +5000_10:PC_TRACE +5000_11:CREATE_L2_ADDR +5000_12:MODEL_MAINTAINCE +5000_13:MODEL_EXECUTE +5000_14:NOTIFY_WAIT +5000_15:NOTIFY_RECORD +5000_16:RDMA_SEND +5000_18:STREAM_SWITCH +5000_19:STREAM_ACTIVE +5000_20:LABEL_SET +5000_21:LABEL_SWITCH +5000_22:LABEL_GOTO +5000_23:PROFILER_TRACE +5000_24:EVENT_RESET +5000_25:RDMA_DB_SEND +5000_26:PROFILER_TRACE_EX +5000_50:STARS_COMMON +5000_51:FFTS +5000_52:FFTS_PLUS +5000_53:CMO +5000_54:BARRIER +5000_55:WriteValueTask +5000_56:MULTIPLE_TASK +5000_64:PROFILING_ENABLE +5000_65:PROFILING_DISABLE +5000_66:KERNEL_AIVEC +5000_67:MODEL_END_GRAPH +5000_68:MODEL_TO_AICPU +5000_69:ACTIVE_AICPU_STREAM +5000_70:DATADUMP_LOADINFO +5000_71:STREAM_SWITCH_N +5000_72:HOSTFUNC_CALLBACK +5000_73:ONLINE_PROF_ENABLE +5000_74:ONLINE_PROF_DISABLE +5000_75:STREAM_LABEL_SWITCH_BY_INDEX +5000_77:STREAM_LABEL_GOTO +5000_78:DEBUG_REGISTER +5000_79:DEBUG_UNREGISTER +5000_80:FUSIONDUMP_ADDR_SET +5000_81:MODEL_EXIT_GRAPH +5000_82:MDC_PROF +5000_83:DEVICE_RINGBUFFER_CONTROL +5000_84:DEBUG_REGISTER_FOR_STREAM +5000_85:DEBUG_UNREGISTER_FOR_STREAM +5000_86:TASK_TIMEOUT_SET +5000_87:GET_DEVICE_MSG +5000_88:NPU_GET_FLOAT_STATUS +5000_89:NPU_CLEAR_FLOAT_STATUS +5000_90:reserve +5000_91:OVERFLOW_SWTICH_SET +5000_92:REDUCE_ASYNC_V2 +5000_93:STREAM_TAG_SET +5000_94:SET_STREAM_MODE +5000_95:IPC_INT_NOTICE +5000_96:reserve +5000_29:ALLOC_DSA_ADDR +5000_98:FLIP_TASK +5000_101:MODEL_TASK_UPDATE +5000_102:AICPU_LOADINFO +5000_801:memcpy_info +5000_802:task_track +5000_1000:DevBinaryRegister +5000_1062:RegisterAllKernel +5000_1001:DevBinaryUnRegister +5000_1002:FunctionRegister +5000_1037:GetFunctionByName +5000_1086:QueryFunctionRegistered +5000_1004:KernelFusionStart +5000_1005:KernelFusionEnd +5000_1087:KernelLaunch_Huge +5000_1088:KernelLaunch_Big +5000_1003:KernelLaunch +5000_1089:KernelLaunchFlowCtrl +5000_1090:KernelLaunchWithHandle_Huge +5000_1091:KernelLaunchWithHandle_Big +5000_1063:KernelLaunchWithHandle +5000_1092:KernelLaunchWithHandleFlowCtrl +5000_1093:KernelLaunchEx +5000_1072:CpuKernelLaunch +5000_1094:CpuKernelLaunchEx +5000_1095:CpuKernelLaunchExWithArgs +5000_1096:DatadumpInfoLoad +5000_1006:StreamCreate +5000_1007:StreamDestroy +5000_1008:StreamWaitEvent +5000_1009:StreamSynchronize +5000_1082:SetStreamMode +5000_1085:GetStreamMode +5000_1010:EventCreate +5000_1097:EventCreateForNotify +5000_1055:GetEventID +5000_1011:EventDestroy +5000_1012:EventRecord +5000_1098:EventRecordForNotify +5000_1013:EventSynchronize +5000_1014:DevMalloc +5000_1015:DevFree +5000_1061:DevMallocCached +5000_1099:DevDvppMalloc +5000_1100:DevDvppFree +5000_1101:MemAdvise +5000_1016:HostMalloc +5000_1017:HostFree +5000_1018:ManagedMemAlloc +5000_1019:ManagedMemFree +5000_1020:MemCopySync +5000_1102:MemcpyAsync_Huge +5000_1103:MemcpyAsync +5000_1104:MemcpyAsyncFlowCtrl +5000_1074:ReduceAsync +5000_1105:ReduceAsyncV2 +5000_1076:MemCopy2DSync +5000_1077:MemCopy2DAsync +5000_1080:MemcpyHostTask +5000_1022:SetDevice +5000_1023:DeviceReset +5000_1024:DeviceSynchronize +5000_1025:ContextCreate +5000_1026:ContextDestroy +5000_1106:ContextGetCurrent +5000_1027:ContextSetCurrent +5000_1028:ContextSynchronize +5000_1035:ModelCreate +5000_1081:ModelSetExtId +5000_1041:ModelDestroy +5000_1036:ModelBindStream +5000_1040:ModelUnbindStream +5000_1039:ModelExecute +5000_1042:RDMASend +5000_1056:RdmaDbSend +5000_1043:NotifyCreate +5000_1044:NotifyDestroy +5000_1045:NotifyRecord +5000_1046:NotifyWait +5000_1047:IpcOpenNotify +5000_1078:ModelSetSchGroupId +5000_1050:SubscribeReport +5000_1051:CallbackLaunch +5000_1052:ProcessReport +5000_1053:UnSubscribeReport +5000_1054:GetRunMode +5000_1057:LabelSwitchByIndex +5000_1059:LabelGotoEx +5000_1060:LabelListCpy +5000_1066:CdqCreate +5000_1067:CdqDestroy +5000_1068:CdqAllocBatch +5000_1069:CdqEnQueue +5000_1070:CdqEnQueuePtrMode +5000_1107:StarsTaskLaunch +5000_1108:FftsTaskLaunch +5000_1109:FftsPlusTaskLaunch +5000_1110:LabelDestroy +5000_1111:CmoTaskLaunch +5000_1112:BarrierTaskLaunch +5000_1084:IpcIntNotice +5000_1113:StreamSyncTaskFinish +5000_1114:GetNotifyAddress +5000_1115:BuffGetInfo +5000_1116:BinaryLoad +5000_1117:BinaryGetFunction +5000_1118:BinaryUnLoad +5000_1119:LaunchKernel +5000_1120:CtxSetSysParamOpt +5000_1121:CtxGetSysParamOpt +5000_1122:CtxGetOverflowAddr +5000_1123:GetDeviceSatStatus +5000_1124:CleanDeviceSatStatus +5000_1125:CpuKernelLaunchExWithArgs_Big +5000_1126:CpuKernelLaunchExWithArgs_Huge +5000_1127:LaunchKernel_Huge +5000_1128:LaunchKernel_Big +5000_1129:GetDevArgsAddr +5000_1130:BinaryGetFunctionByName +5000_1131:BinaryLoadWithoutTilingKey +5000_1132:CmoAddrTaskLaunch +5000_1133:EventCreateEx +5000_1134:AicpuInfoLoad +5000_1135:ModelTaskUpdate +5000_1136:StreamClear +5000_1137:NotifyReset +5000_1138:GetServerIDBySDID +5500_65537:master +5500_65538:slave +10000_0:node_basic_info +10000_1:tensor_info +10000_2:fusion_op_info +10000_4:context_id_info +10000_5:launch +10000_6:task_memory_info +10000_9:node_attr_info +10000_10:hccl_op_info +10000_11:static_op_mem +10000_196609:dvppCheckAclTensor +10000_196610:dvppConvertAclTensorToDvppParam +10000_196611:dvppCheckDvppParam +10000_196612:dvppCalcWorkSpaceSize +10000_196613:dvppGenerateSqe +10000_196614:dvppLaunchStars +10000_8:AicpuHostCompute +10000_65540:CompatibleTiling +10000_65539:Tiling +10000_65541:StreamSync +10000_65538:CompatibleInferShape +10000_65542:step_info +10000_65537:InferShape +15000_0:graph_id_map +15000_7:logic_stream_info +15000_8:model_exeom +15000_4:OutputCopy +15000_3:InputCopy +15000_2:ModelLoad +15000_1:ModelExecute +20000_655366:GEInitialize +20000_655364:BuildGraph +20000_655363:AddGraph +20000_655367:GEFinalize +20000_655365:RunGraphAsync +20000_655362:RemoveGraph +20000_655361:isGraphNeedRebuild +20000_262145:acldvppCreateChannel +20000_262146:acldvppDestroyChannel +20000_262147:acldvppJpegDecodeAsync +20000_262148:acldvppJpegEncodeAsync +20000_262149:acldvppJpegGetImageInfo +20000_262150:acldvppJpegGetImageInfoV2 +20000_262151:acldvppJpegPredictEncSize +20000_262152:acldvppJpegPredictDecSize +20000_262153:acldvppPngDecodeAsync +20000_262154:acldvppPngGetImageInfo +20000_262155:acldvppPngPredictDecSize +20000_262156:aclvdecCreateChannel +20000_262157:aclvdecDestroyChannel +20000_262158:aclvdecSendFrame +20000_262159:aclvdecSendSkippedFrame +20000_262160:aclvencCreateChannel +20000_262161:aclvencDestroyChannel +20000_262162:aclvencSendFrame +20000_262163:acldvppVpcResizeAsync +20000_262164:acldvppVpcCropAsync +20000_262165:acldvppVpcCropAndPasteAsync +20000_262166:acldvppVpcConvertColorAsync +20000_262167:acldvppVpcPyrDownAsync +20000_262168:acldvppVpcBatchCropAsync +20000_262169:acldvppVpcBatchCropAndPasteAsync +20000_262170:acldvppVpcEqualizeHistAsync +20000_262171:acldvppVpcMakeBorderAsync +20000_262172:acldvppVpcCalcHistAsync +20000_262173:acldvppVpcCropResizeAsync +20000_262174:acldvppVpcBatchCropResizeAsync +20000_262175:acldvppVpcCropResizePasteAsync +20000_262176:acldvppVpcBatchCropResizePasteAsync +20000_262177:acldvppVpcBatchCropResizeMakeBorderAsync +20000_262178:acltdtEnqueue +20000_262179:acltdtDequeue +20000_262180:acltdtEnqueueData +20000_262181:acltdtDequeueData +20000_262182:acldvppMalloc +20000_262183:acldvppFree +20000_262184:acldvppCreatePicDesc +20000_262185:acldvppDestroyPicDesc +20000_262186:acldvppCreateRoiConfig +20000_262187:acldvppDestroyRoiConfig +20000_262188:acldvppCreateJpegeConfig +20000_262189:acldvppDestroyJpegeConfig +20000_262190:acldvppCreateResizeConfig +20000_262191:acldvppDestroyResizeConfig +20000_262192:acldvppCreateChannelDesc +20000_262193:acldvppDestroyChannelDesc +20000_262194:aclvdecCreateChannelDesc +20000_262195:aclvdecDestroyChannelDesc +20000_262196:acldvppCreateStreamDesc +20000_262197:acldvppDestroyStreamDesc +20000_262198:aclvdecCreateFrameConfig +20000_262199:aclvdecDestroyFrameConfig +20000_262200:aclvencCreateChannelDesc +20000_262201:aclvencDestroyChannelDesc +20000_262202:aclvencCreateFrameConfig +20000_262203:aclvencDestroyFrameConfig +20000_262204:acldvppDestroyBatchPicDesc +20000_65537:aclopLoad +20000_65538:aclopExecute +20000_65539:aclopCreateHandle +20000_65540:aclopDestroyHandle +20000_65541:aclopExecWithHandle +20000_65542:aclopExecuteV2 +20000_65543:aclTransTensorDescFormat +20000_65544:aclopCreateKernel +20000_65545:aclopUpdateParams +20000_65546:aclopInferShape +20000_65547:aclopCompile +20000_65548:aclopCompileAndExecute +20000_65549:aclopCompileAndExecuteV2 +20000_65550:aclGenGraphAndDumpForOp +20000_65551:aclblasGemmEx +20000_65552:aclblasCreateHandleForGemmEx +20000_65553:aclblasCreateHandleForHgemm +20000_65554:aclblasHgemm +20000_65555:aclblasS8gemm +20000_65556:aclblasCreateHandleForS8gemm +20000_65557:aclblasGemvEx +20000_65558:aclblasCreateHandleForGemvEx +20000_65559:aclblasHgemv +20000_65560:aclblasCreateHandleForHgemv +20000_65561:aclblasCreateHandleForS8gemv +20000_65562:aclblasS8gemv +20000_65563:aclopCast +20000_65564:aclopCreateHandleForCast +20000_65565:opCompile +20000_65566:opCompileAndDump +20000_65567:aclopDestroyAttr +20000_65568:aclCreateTensorDesc +20000_65569:aclDestroyTensorDesc +20000_65570:aclCreateDataBuffer +20000_65571:aclopCreateAttr +20000_131073:aclmdlExecute +20000_131074:aclmdlLoadFromMemWithQ +20000_131075:aclmdlLoadFromMemWithMem +20000_131076:aclmdlGetDesc +20000_131077:aclmdlLoadFromFile +20000_131078:aclmdlLoadFromFileWithMem +20000_131079:aclmdlLoad +20000_131080:aclmdlLoadFromMem +20000_131081:aclmdlSetInputAIPP +20000_131082:aclmdlSetAIPPByInputIndex +20000_131083:aclmdlExecuteAsync +20000_131084:aclmdlQuerySize +20000_131085:aclmdlQuerySizeFromMem +20000_131086:aclmdlSetDynamicBatchSize +20000_131087:aclmdlSetDynamicHWSize +20000_131088:aclmdlSetInputDynamicDims +20000_131089:aclmdlLoadWithConfig +20000_131090:aclmdlLoadFromFileWithQ +20000_131091:aclmdlUnload +20000_196609:aclrtLaunchCallback +20000_196610:aclrtProcessReport +20000_196611:aclrtCreateContext +20000_196612:aclrtDestroyContext +20000_196613:aclrtSetCurrentContext +20000_196614:aclrtGetCurrentContext +20000_196615:aclrtSetDevice +20000_196616:aclrtSetDeviceWithoutTsdVXX +20000_196617:aclrtResetDevice +20000_196618:aclrtResetDeviceWithoutTsdVXX +20000_196619:aclrtSynchronizeDevice +20000_196620:aclrtSetTsDevice +20000_196621:aclrtCreateEvent +20000_196622:aclrtCreateEventWithFlag +20000_196623:aclrtCreateEventExWithFlag +20000_196624:aclrtDestroyEvent +20000_196625:aclrtRecordEvent +20000_196626:aclrtResetEvent +20000_196627:aclrtQueryEvent +20000_196628:aclrtQueryEventStatus +20000_196629:aclrtQueryEventWaitStatus +20000_196630:aclrtSynchronizeEvent +20000_196631:aclrtSetOpWaitTimeout +20000_196632:aclrtSetOpExecuteTimeOut +20000_196633:aclrtSetGroup +20000_196634:aclrtGetGroupCount +20000_196635:aclrtGetAllGroupInfo +20000_196636:aclrtGetGroupInfoDetail +20000_196637:aclMallocMemInner +20000_196638:aclrtMallocCached +20000_196639:aclrtMemFlush +20000_196640:aclrtMemInvalidate +20000_196641:aclrtFree +20000_196642:aclrtMallocHost +20000_196643:aclrtFreeHost +20000_196644:aclrtMemcpy +20000_196645:aclrtMemset +20000_196646:aclrtMemcpyAsync +20000_196647:aclrtMemsetAsync +20000_196648:aclrtDeviceCanAccessPeer +20000_196649:aclrtDeviceEnablePeerAccess +20000_196650:aclrtDeviceDisablePeerAccess +20000_196651:aclrtGetMemInfo +20000_196652:aclrtMemcpy2d +20000_196653:aclrtMemcpy2dAsync +20000_196654:aclrtCreateStream +20000_196655:aclrtCreateStreamWithConfig +20000_196656:aclrtDestroyStream +20000_196657:aclrtDestroyStreamForce +20000_196658:aclrtSynchronizeStream +20000_196659:aclrtSynchronizeStreamWithTimeout +20000_196660:aclrtStreamQuery +20000_196661:aclrtStreamWaitEvent +20000_196662:aclrtAllocatorCreateDesc +20000_196663:aclrtAllocatorDestroyDesc +20000_196664:aclrtCtxGetSysParamOpt +20000_196665:aclrtCtxSetSysParamOpt +20000_196666:aclrtGetOverflowStatus +20000_196667:aclrtResetOverflowStatus +20000_196668:aclrtGetDeviceCount +20000_196669:aclrtGetDevice +20000_196670:aclrtMalloc +20000_196671:aclrtSetStreamFailureMode +20000_196672:aclrtQueryDeviceStatus +20000_196673:aclrtReserveMemAddress +20000_196674:aclrtReleaseMemAddress +20000_196675:aclrtMallocPhysical +20000_196676:aclrtFreePhysical +20000_196677:aclrtMapMem +20000_196678:aclrtUnmapMem +20000_196679:aclrtLaunchKernel +20000_196680:AclrtMemExportToShareableHandle +20000_196681:AclrtMemImportFromShareableHandle +20000_196682:AclrtMemSetPidToShareableHandle +20000_196683:AclrtMemGetAllocationGranularity +20000_196684:AclrtDeviceGetBareTgid +20000_196685:AclrtGetMemUceInfo +20000_196686:AclrtDeviceTaskAbort +20000_196687:AclrtMemUceRepair +20000_393216:aclnnAddCustomTiling +20000_393217:aclnnAddCustomGetWorkspaceSize +20000_393218:aclnnAddCustom diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.type_info_dic.slice_0.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.type_info_dic.slice_0.done new file mode 100644 index 0000000000000000000000000000000000000000..24a92d1342e2a7cf1633a0e32929bb27efe0ea03 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data/unaging.additional.type_info_dic.slice_0.done @@ -0,0 +1,3 @@ +filesize:12425 +starttime:158632409056613 +endtime :158632409451238 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/end_info b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/end_info new file mode 100644 index 0000000000000000000000000000000000000000..f6195d3bbcc79613ed9421d5a13eed3536e5b853 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/end_info @@ -0,0 +1 @@ +{"collectionDateEnd":"2024-05-26 11:20:51.924240","collectionTimeEnd":"1716693651924240","clockMonotonicRaw":"158632453069384"} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/end_info.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/end_info.done new file mode 100644 index 0000000000000000000000000000000000000000..c361543fc891c90bb56ba47cc117e1857d6f43b3 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/end_info.done @@ -0,0 +1 @@ +filesize:127 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/host_start.log b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/host_start.log new file mode 100644 index 0000000000000000000000000000000000000000..ec5902e62e69b17fd87b335ea57722d6014cbba7 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/host_start.log @@ -0,0 +1,4 @@ +[Host] +clock_monotonic_raw: 158631754415384 +cntvct: 7614593544592 +cntvct_diff: 0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/host_start.log.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/host_start.log.done new file mode 100644 index 0000000000000000000000000000000000000000..396c5af1d7b3de9c97ef5ebf0646a9c3313d8981 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/host_start.log.done @@ -0,0 +1 @@ +filesize:81 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/incompatible_features.json b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/incompatible_features.json new file mode 100644 index 0000000000000000000000000000000000000000..fc2e1caf2fea7277cd65dd319ca5c9fe692cd867 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/incompatible_features.json @@ -0,0 +1 @@ +{"ATTR":[{"affectedComponent":"all","affectedComponentVersion":"all","compatibility":"0","featureVersion":"1","infoLog":"It not support feature: ATTR!"}]} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/incompatible_features.json.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/incompatible_features.json.done new file mode 100644 index 0000000000000000000000000000000000000000..c8dd6318865de30181f524c6d00124b5a773f38c --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/incompatible_features.json.done @@ -0,0 +1 @@ +filesize:154 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/info.json b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/info.json new file mode 100644 index 0000000000000000000000000000000000000000..d7e2b763e8fff57da70760ebda81efb1922f4066 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/info.json @@ -0,0 +1 @@ +{"jobInfo":"NA","version":"1.0","mac":"02-42-E9-EA-9F-D5","OS":"Linux-5.10.0+-#1 SMP Mon Feb 26 15:29:07 CST 2024","cpuCores":1,"hostname":"orangepiaipro","hwtype":"aarch64","devices":"","platform":"","CPU":[{"Id":0,"Name":"","Frequency":"48.000000","Logical_CPU_Count":1,"Type":""}],"DeviceInfo":[],"platform_version":"7","pid":"1342881","memoryTotal":15984272,"cpuNums":4,"sysClockFreq":100,"upTime":"158633.96 614562.02","netCardNums":0,"netCard":[{"netCardName":"eth0","speed":1000}],"rank_id":-1,"cycleToTime":[{"realCpuFreq":0.048000111609624432,"calibration":"5242233052"}],"pid_name":"execute_add_op","drvVersion":467731,"hostUid":"16774336220287662547"} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/info.json.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/info.json.done new file mode 100644 index 0000000000000000000000000000000000000000..b5e0552f5fab4d2db20f17c64f471f803b78686d --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/info.json.done @@ -0,0 +1 @@ +filesize:662 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sample.json b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sample.json new file mode 100644 index 0000000000000000000000000000000000000000..5ea01a0b10f7460d344bb125b7a16dd9635dc149 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sample.json @@ -0,0 +1 @@ +{"aiCtrlCpuProfiling":"off","ai_core_metrics":"PipelineExecuteUtilization","ai_core_profiling":"on","ai_core_profiling_events":"0x12c,0x49,0x4a,0x9,0x302,0xc,0xd,0x303","ai_core_profiling_mode":"task-based","ai_ctrl_cpu_profiling_events":"","aicore_sampling_interval":10,"aiv_metrics":"PipelineExecuteUtilization","aiv_profiling":"on","aiv_profiling_events":"0x12c,0x49,0x4a,0x9,0x302,0xc,0xd,0x303","aiv_profiling_mode":"task-based","aiv_sampling_interval":10,"app":"execute_add_op","app_dir":"/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/.","app_env":"","app_parameters":"","cmdPath":"/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/./execute_add_op","cpu_profiling":"off","cpu_sampling_interval":20,"dataTypeConfig":13835058058033629255,"ddr_interval":20,"ddr_master_id":0,"ddr_profiling":"","ddr_profiling_events":"","delayTime":"","devices":"64","durationTime":"","dvpp_profiling":"off","dvpp_sampling_interval":20,"hardware_mem":"off","hardware_mem_sampling_interval":20,"hbmInterval":20,"hbmProfiling":"","hbm_profiling_events":"","hccsInterval":20,"hccsProfiling":"off","host_all_pid_cpu_profiling":"off","host_all_pid_mem_profiling":"off","host_cpu_profiling_sampling_interval":20,"host_disk_freq":50,"host_disk_profiling":"off","host_mem_profiling_sampling_interval":20,"host_network_profiling":"off","host_one_pid_cpu_profiling":"off","host_one_pid_mem_profiling":"off","host_osrt_profiling":"off","host_profiling":1,"host_sys":"","host_sys_cpu_profiling":"off","host_sys_mem_profiling":"off","host_sys_pid":1342881,"host_sys_usage":"","hwts_log":"","hwts_log1":"","instr_profiling":"off","instr_profiling_freq":1000,"interconnection_profiling":"off","interconnection_sampling_interval":20,"io_profiling":"off","io_sampling_interval":10,"isSubscribe":false,"is_cancel":0,"jobInfo":"","job_id":"64","l2CacheTaskProfiling":"","l2CacheTaskProfilingEvents":"","llc_interval":20,"llc_profiling":"read","llc_profiling_events":"read","low_power":"","modelLoad":"","msprof":"off","msprofBinPid":1342879,"msprof_llc_profiling":"","msproftx":"off","nicInterval":10,"nicProfiling":"off","npuAppMemProfiling":"on","npuModuleMemProfiling":"on","pcieInterval":20,"pcieProfiling":"","pid_profiling":"off","pid_sampling_interval":100,"profLevel":"l1","profiling_mode":"def_mode","profiling_options":"","profiling_period":-1,"qosEvents":"","qosProfiling":"","result_dir":"/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/","roceInterval":10,"roceProfiling":"off","stars_acsq_task":"on","storageLimit":"29011MB","stream_enabled":"on","sys_profiling":"off","sys_sampling_interval":100,"tsCpuProfiling":"off","ts_cpu_profiling_events":"","ts_fw_training":"","ts_keypoint":"on","ts_memcpy":"on","ts_timeline":""} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sample.json.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sample.json.done new file mode 100644 index 0000000000000000000000000000000000000000..8647b3190c7f5a96166826c5167636f5561f3f74 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sample.json.done @@ -0,0 +1 @@ +filesize:2867 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/api_event.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/api_event.db new file mode 100644 index 0000000000000000000000000000000000000000..1e176f72f3010dc0ae4aeecde000ef3c5d09da6e Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/api_event.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/ge_hash.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/ge_hash.db new file mode 100644 index 0000000000000000000000000000000000000000..710db7867cea8282d70930d3abad9829708f2d1c Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/ge_hash.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/ge_info.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/ge_info.db new file mode 100644 index 0000000000000000000000000000000000000000..556c6459f9b87ab41698d81789d62dedc6611ded Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/ge_info.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/rts_track.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/rts_track.db new file mode 100644 index 0000000000000000000000000000000000000000..174df914eac39dd26cd9c4e982fe33acfc3fc595 Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/rts_track.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/runtime.db b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/runtime.db new file mode 100644 index 0000000000000000000000000000000000000000..7da89baa868a2174e5dfecc870c36a54683c134e Binary files /dev/null and b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/sqlite/runtime.db differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/start_info b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/start_info new file mode 100644 index 0000000000000000000000000000000000000000..e51ffc18ec59e1982967e349d43b6d84a6872ec7 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/start_info @@ -0,0 +1 @@ +{"collectionDateBegin":"2024-05-26 11:20:51.222553","collectionTimeBegin":"1716693651222553","clockMonotonicRaw":"158631751385988"} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/start_info.done b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/start_info.done new file mode 100644 index 0000000000000000000000000000000000000000..799d63ab4f0e7fb5f3ea3699e5fe575f632ac4d2 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/start_info.done @@ -0,0 +1 @@ +filesize:131 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/collection_device_0.log b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/collection_device_0.log new file mode 100644 index 0000000000000000000000000000000000000000..495236e054a807d0f467113b9632a00d0b1a878d --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/collection_device_0.log @@ -0,0 +1,70 @@ +2024-05-26 11:20:55 [INFO] [collection_engine.py:84] - Database process finished. +2024-05-26 11:20:55 [INFO] [collection_engine.py:85] - Analysis finished. +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - L2CacheParser process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingRuntimeData process data finished, execute time is 0.008 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingDDRData process data finished, execute time is 0.006 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingPeripheralData process data finished, execute time is 0.014 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingNicData process data finished, execute time is 0.006 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingAICPUData process data finished, execute time is 0.010 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingCtrlCPUData process data finished, execute time is 0.012 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingTSData process data finished, execute time is 0.023 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingMemoryData process data finished, execute time is 0.020 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingHBMData process data finished, execute time is 0.022 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - NpuMemParser process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - NonMiniLLCParser process data finished, execute time is 0.028 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingCpuUsageData process data finished, execute time is 0.008 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingFftsAICoreSampleData process data finished, execute time is 0.027 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - BiuPerfParser process data finished, execute time is 0.018 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - SocProfilerParser process data finished, execute time is 0.017 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - NpuModuleMemParser process data finished, execute time is 0.018 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - AicpuAddInfoParser process data finished, execute time is 0.006 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - FreqParser process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [ts_track_parser.py:84] - start parsing rts data file: ts_track.data.0.slice_0 +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - TstrackParser process data finished, execute time is 0.061 s +2024-05-26 11:20:56 [WARNING] [base_model.py:63] - Table step_trace_data not found. +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - AicpuBinDataParser process data finished, execute time is 0.006 s +2024-05-26 11:20:56 [WARNING] [base_model.py:63] - Table step_trace_data not found. +2024-05-26 11:20:56 [WARNING] [base_model.py:63] - Table step_trace_data not found. +2024-05-26 11:20:56 [INFO] [profiling_scene.py:70] - Current scene of data is based on single_op +2024-05-26 11:20:56 [WARNING] [msprof_export.py:273] - Different flip numbers, 2 host flips and 1 device flips. +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - L2CacheCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:56 [WARNING] [biu_monitor_calculator.py:98] - Biu flow data or biu cycles data list is empty! +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - StarsIterRecCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:56 [WARNING] [biu_monitor_calculator.py:98] - Biu flow data or biu cycles data list is empty! +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - BiuPerfCalculator process data finished, execute time is 0.010 s +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - StarsLogCalCulator process data finished, execute time is 0.068 s +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - FftsPmuCalculator process data finished, execute time is 0.070 s +2024-05-26 11:20:56 [INFO] [ascend_task_calculator.py:76] - No table AscendTask found, to generate it +2024-05-26 11:20:56 [WARNING] [device_task_collector.py:133] - no soc_log.db.SubtaskTime found +2024-05-26 11:20:56 [WARNING] [device_task_collector.py:143] - no soc_log.db.NanoTask found +2024-05-26 11:20:56 [INFO] [ascend_task_generator.py:211] - Found 3 host device matched task, 4 top down task +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - AscendTaskCalculator process data finished, execute time is 0.047 s +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - HcclCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - ParseAiCoreOpSummaryCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - MergeOpCounterCalculator process data finished, execute time is 0.005 s +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - OpSummaryOpSceneCalculator process data finished, execute time is 0.177 s +2024-05-26 11:20:56 [INFO] [ms_multi_process.py:61] - OpCounterOpSceneCalculator process data finished, execute time is 0.176 s +2024-05-26 11:20:56 [WARNING] [base_model.py:63] - Table StepTrace not found. +2024-05-26 11:20:57 [WARNING] [base_model.py:63] - Table step_trace_data not found. +2024-05-26 11:20:57 [WARNING] [base_model.py:63] - Table step_trace_data not found. +2024-05-26 11:20:57 [INFO] [profiling_scene.py:70] - Current scene of data is based on single_op +2024-05-26 11:20:57 [WARNING] [msprof_export.py:273] - Different flip numbers, 2 host flips and 1 device flips. +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - L2CacheCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - StarsIterRecCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:57 [WARNING] [biu_monitor_calculator.py:98] - Biu flow data or biu cycles data list is empty! +2024-05-26 11:20:57 [WARNING] [biu_monitor_calculator.py:98] - Biu flow data or biu cycles data list is empty! +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - BiuPerfCalculator process data finished, execute time is 0.013 s +2024-05-26 11:20:57 [INFO] [stars_log_parser.py:70] - The Table AcsqTask already exists in the soc_log.db, and won't be calculate again. +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - StarsLogCalCulator process data finished, execute time is 0.008 s +2024-05-26 11:20:57 [INFO] [ffts_pmu_calculator.py:168] - The Table MetricSummary already exists in the metric_summary.db, and won't be calculate again. +2024-05-26 11:20:57 [WARNING] [ffts_pmu_calculator.py:181] - No ai core pmu data found, data list is empty! +2024-05-26 11:20:57 [WARNING] [ffts_pmu_model.py:53] - ffts pmu data is empty, no data found. +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - FftsPmuCalculator process data finished, execute time is 0.014 s +2024-05-26 11:20:57 [INFO] [ascend_task_calculator.py:73] - Found table AscendTask in operator scene, no need to generate again +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - AscendTaskCalculator process data finished, execute time is 0.007 s +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - HcclCalculator process data finished, execute time is 0.005 s +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - ParseAiCoreOpSummaryCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:57 [INFO] [op_summary_op_scene_calculator.py:67] - The db ai_core_op_summary.db already exists, and won't create again. +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - OpSummaryOpSceneCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - MergeOpCounterCalculator process data finished, execute time is 0.006 s +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - OpCounterOpSceneCalculator process data finished, execute time is 0.006 s diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/collection_host.log b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/collection_host.log new file mode 100644 index 0000000000000000000000000000000000000000..7199136f56da11af168bdc5d766db91d7571d804 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/collection_host.log @@ -0,0 +1,18 @@ +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - CpuUsageAnalysis process data finished, execute time is 0.006 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - MemUsageAnalysis process data finished, execute time is 0.006 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - DiskUsageAnalysis process data finished, execute time is 0.006 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - NetworkUsageAnalysis process data finished, execute time is 0.006 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - HostSyscallAnalysis process data finished, execute time is 0.007 s +2024-05-26 11:20:55 [INFO] [collection_engine.py:84] - Database process finished. +2024-05-26 11:20:55 [INFO] [collection_engine.py:85] - Analysis finished. +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingMemoryData process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - GeLogicStreamParser process data finished, execute time is 0.008 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - ParsingCpuUsageData process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - NpuOpMemParser process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - MsprofTxParser process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [cann_calculator.py:70] - start to analysis cann software callstack +2024-05-26 11:20:55 [INFO] [cann_calculator.py:73] - Data will be parsed by msprof_analysis.so! +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - CANNCalculator process data finished, execute time is 0.034 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - StaticOpMemParser process data finished, execute time is 0.005 s +2024-05-26 11:20:55 [INFO] [ms_multi_process.py:61] - NpuOpMemCalculator process data finished, execute time is 0.005 s +2024-05-26 11:20:57 [INFO] [ms_multi_process.py:61] - NpuOpMemCalculator process data finished, execute time is 0.005 s diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/msprof_analysis_1342968.log b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/msprof_analysis_1342968.log new file mode 100644 index 0000000000000000000000000000000000000000..0af6089f15a2d363872fabe260250a97217b9353 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_log/msprof_analysis_1342968.log @@ -0,0 +1,96 @@ +2024-05-26 11:20:55 [INFO] [1342968] [1342968] [kernel_parser_worker.cpp:41] Start run KernelParserWorker +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [kernel_parser_worker.cpp:52] Start parse hash data +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [kernel_parser_worker.cpp:72] Hash data load from path: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [kernel_parser_worker.cpp:75] success get hash data +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [kernel_parser_worker.cpp:82] success get hashDbDumper +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [db_runner.cpp:47] Start create GeHashInfo +2024-05-26 11:20:55 [INFO] [1342968] [1342971] [kernel_parser_worker.cpp:56] Start parse type info data +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [db_runner.cpp:56] create GeHashInfo success +2024-05-26 11:20:55 [INFO] [1342968] [1342971] [kernel_parser_worker.cpp:93] Typeinfo data load from path: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/host/data +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [db_runner.h:58] Start insert data to GeHashInfo +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [db_runner.h:65] insert data to GeHashInfo success +2024-05-26 11:20:55 [INFO] [1342968] [1342970] [base_dumper.h:53] Dump GeHashInfo data success +2024-05-26 11:20:55 [INFO] [1342968] [1342971] [db_runner.cpp:47] Start create TypeHashInfo +2024-05-26 11:20:55 [INFO] [1342968] [1342971] [db_runner.cpp:56] create TypeHashInfo success +2024-05-26 11:20:55 [INFO] [1342968] [1342971] [db_runner.h:58] Start insert data to TypeHashInfo +2024-05-26 11:20:55 [INFO] [1342968] [1342971] [db_runner.h:65] insert data to TypeHashInfo success +2024-05-26 11:20:55 [INFO] [1342968] [1342971] [base_dumper.h:53] Dump TypeHashInfo data success +2024-05-26 11:20:55 [INFO] [1342968] [1342968] [time_logger.h:28] HostTraceWorker start +2024-05-26 11:20:55 [INFO] [1342968] [1342968] [time_logger.h:28] Group all events start +2024-05-26 11:20:55 [INFO] [1342968] [1342972] [time_logger.h:28] Group Kernel start +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:28] Group GraphIdMap start +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:35] Group GraphIdMap end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:28] Group FusionOpInfo start +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:35] Group FusionOpInfo end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342972] [time_logger.h:35] Group Kernel end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342977] [time_logger.h:28] Group NodeBasicInfo start +2024-05-26 11:20:55 [INFO] [1342968] [1342977] [time_logger.h:35] Group NodeBasicInfo end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342977] [time_logger.h:28] Group NodeAttrInfo start +2024-05-26 11:20:55 [INFO] [1342968] [1342977] [time_logger.h:35] Group NodeAttrInfo end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342977] [time_logger.h:28] Group TensorInfo start +2024-05-26 11:20:55 [INFO] [1342968] [1342977] [time_logger.h:35] Group TensorInfo end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:28] Group ContextId start +2024-05-26 11:20:55 [INFO] [1342968] [1342972] [time_logger.h:28] Group HcclInfo start +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:35] Group ContextId end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342972] [time_logger.h:35] Group HcclInfo end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342978] [time_logger.h:28] Group HcclOpInfo start +2024-05-26 11:20:55 [INFO] [1342968] [1342978] [time_logger.h:35] Group HcclOpInfo end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:28] Group TaskTrack start +2024-05-26 11:20:55 [INFO] [1342968] [1342973] [time_logger.h:35] Group TaskTrack end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342968] [event_grouper.cpp:117] After group events, Kernel: 1, GraphId: 0, FusionOp: 0, NodeBasic: 1, NodeAttr: 0, Tensor: 1, ContextId: 0, HcclInfo: 0, TaskTrack: 4, HcclOpInfo: 0, thread: 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1342968] [time_logger.h:35] Group all events end, cost time = 2 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342983] [time_logger.h:28] Dump api data start start +2024-05-26 11:20:55 [INFO] [1342968] [1342980] [time_logger.h:28] Dump flip tasks data start start +2024-05-26 11:20:55 [INFO] [1342968] [1342983] [db_runner.cpp:47] Start create ApiData +2024-05-26 11:20:55 [INFO] [1342968] [1342980] [db_runner.cpp:47] Start create HostTaskFlip +2024-05-26 11:20:55 [INFO] [1342968] [1342982] [time_logger.h:28] Dump model name data start start +2024-05-26 11:20:55 [WARN] [1342968] [1342982] [base_dumper.h:39] Input data is empty, pass dump +2024-05-26 11:20:55 [INFO] [1342968] [1342982] [time_logger.h:35] Dump model name data start end, cost time = 0 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342982] [time_logger.h:28] Multi thread build tree start +2024-05-26 11:20:55 [INFO] [1342968] [1342980] [db_runner.cpp:56] create HostTaskFlip success +2024-05-26 11:20:55 [INFO] [1342968] [1342980] [db_runner.h:58] Start insert data to HostTaskFlip +2024-05-26 11:20:55 [INFO] [1342968] [1342983] [db_runner.cpp:56] create ApiData success +2024-05-26 11:20:55 [INFO] [1342968] [1342980] [db_runner.h:65] insert data to HostTaskFlip success +2024-05-26 11:20:55 [WARN] [1342968] [1342983] [api_event_db_dumper.cpp:68] struct_type: ACL_RTS, item_id: 0, id: aclrtSetDevice begin time is 0, it will be filtered out +2024-05-26 11:20:55 [INFO] [1342968] [1342980] [base_dumper.h:53] Dump HostTaskFlip data success +2024-05-26 11:20:55 [INFO] [1342968] [1342980] [time_logger.h:35] Dump flip tasks data start end, cost time = 1 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342983] [db_runner.h:58] Start insert data to ApiData +2024-05-26 11:20:55 [INFO] [1342968] [1342996] [host_trace_worker.cpp:104] Start multi thread build tree, threadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1342996] [event_queue.cpp:70] EventQueue for thread 1342881 is empty +2024-05-26 11:20:55 [INFO] [1342968] [1342996] [event_queue.cpp:70] EventQueue for thread 1342881 is empty +2024-05-26 11:20:55 [WARN] [1342968] [1343000] [tree_builder.cpp:170] No Events, event type: 8, threadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1343000] [tree_builder.cpp:208] Add LevelEvents done, threadId = 1342881, event type: 2, matchCnt = 1, mismatchCnt = 0 +2024-05-26 11:20:55 [WARN] [1342968] [1343000] [tree_builder.cpp:170] No Events, event type: 3, threadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1343000] [tree_builder.cpp:208] Add LevelEvents done, threadId = 1342881, event type: 4, matchCnt = 1, mismatchCnt = 0 +2024-05-26 11:20:55 [WARN] [1342968] [1343000] [tree_builder.cpp:170] No Events, event type: 6, threadId = 1342881 +2024-05-26 11:20:55 [WARN] [1342968] [1343000] [tree_builder.cpp:170] No Events, event type: 10, threadId = 1342881 +2024-05-26 11:20:55 [WARN] [1342968] [1343000] [tree_builder.cpp:170] No Events, event type: 6, threadId = 1342881 +2024-05-26 11:20:55 [WARN] [1342968] [1343000] [tree_builder.cpp:170] No Events, event type: 5, threadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1342983] [db_runner.h:65] insert data to ApiData success +2024-05-26 11:20:55 [INFO] [1342968] [1342983] [base_dumper.h:53] Dump ApiData data success +2024-05-26 11:20:55 [INFO] [1342968] [1342983] [time_logger.h:35] Dump api data start end, cost time = 2 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342996] [tree_builder.cpp:71] Build Tree End, ThreadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1342996] [host_trace_worker.cpp:114] Multi thread build tree done, threadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1342982] [time_logger.h:35] Multi thread build tree end, cost time = 3 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342982] [time_logger.h:28] Multi thread analyze tree and dump data start +2024-05-26 11:20:55 [INFO] [1342968] [1343012] [host_trace_worker.cpp:130] Start analyze tree and dump data, threadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1343012] [time_logger.h:28] Dump CANN data start +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [cann_trace_db_dumper.cpp:155] Empty hccl OPs +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [cann_trace_db_dumper.cpp:357] Empty hccl tasks +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [time_logger.h:28] Dump host tasks start +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.cpp:47] Start create HostTask +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.cpp:56] create HostTask success +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.h:58] Start insert data to HostTask +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.h:65] insert data to HostTask success +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [time_logger.h:35] Dump host tasks end, cost time = 1 ms +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [time_logger.h:28] DumpOpDesc Start start +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.cpp:47] Start create TaskInfo +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.cpp:56] create TaskInfo success +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.h:58] Start insert data to TaskInfo +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [db_runner.h:65] insert data to TaskInfo success +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [time_logger.h:35] DumpOpDesc Start end, cost time = 1 ms +2024-05-26 11:20:55 [INFO] [1342968] [1343014] [cann_trace_db_dumper.cpp:409] Empty geFusionOps +2024-05-26 11:20:55 [INFO] [1342968] [1343012] [time_logger.h:35] Dump CANN data end, cost time = 3 ms +2024-05-26 11:20:55 [INFO] [1342968] [1343012] [host_trace_worker.cpp:138] Dump cann trace data done, threadId = 1342881 +2024-05-26 11:20:55 [INFO] [1342968] [1342982] [time_logger.h:35] Multi thread analyze tree and dump data end, cost time = 4 ms +2024-05-26 11:20:55 [INFO] [1342968] [1342968] [time_logger.h:35] HostTraceWorker end, cost time = 10 ms diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/README.txt b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8fa0fd8b509202a1e276579264fc80ca944e053 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/README.txt @@ -0,0 +1,36 @@ +Timeline file description: +1.prof_rule.json:Here is no description about this file: prof_rule, please check in 'Profiling Instructions'! +2.msprof.json:Timeline report. + 1 CPU Layer: Data at the application layer, including the time consumption information of upper-layer application operators. The data needs to be collected only in msproftx or PyTorch scenarios. + 2 CANN Layer: Data at the CANN layer, including the time consumption data of components (such as AscendCL and Runtime) and nodes (operators). + 3 Ascend Hardware Layer: Bottom-layer NPU data, including the time consumption data and iteration trace data of each task stream under Ascend Hardware, HCCL and Overlap Analysis communication data, and other system data. + 4 Overlap Analysis Layer: In cluster or multi-device scenarios, computation and communication are sometimes parallel. You can check the pipeline overlapping time (time when computation and communication are parallel) to determine the computation and communication efficiencies. + Communication Layer: Communication time. + Communication(Not Overlaopped) Layer: Communication time that is not overlapped. + Computing: Computation time. + Free: Interval. + +Summary file description: +1.task_time.csv:Task Scheduler summary. + Waiting: Total wait time of a task (μs). + Running: Total run time of a task (μs). An abnormally large value indicates that the operator implementation needs to be improved. + Pending: Total pending time of a task (μs). +2.api_statistic.csv:Time spent by AscendCL API, is used to collect statistics on the time spent by API execution at the CANN layer. + Level: Level of an API, including AscendCL, Runtime, Node, Model, and HCCL. +3.op_statistic.csv:AI Core and AI CPU operator calling times and time consumption. +The parameters of the msprof command line tool are used as examples. The parameters of other collection modes are the same.Analyze the total calling time and total number of calls of each type of operators, check whether there are any operators with long total execution time, and analyze whether there is any optimization space for these operators. +4.op_summary.csv:AI Core, AI CPU, AI Vector and Hccl communication operator data,is used to collect statistics on operator details and time consumptions. + Op Name: Operator name. + OP Type: Operator type. + Task Type: Task type. + Task Start Time: Task start time (μs). + Task Duration: Task duration, including the scheduling time and the start time to the latest end time of the first core. The unit is μs. + Task Wait Time: Interval between tasks (μs).(= this task's start_time - last task's start_time - last task's duration_time) + Block Dim: Number of running task blocks, which corresponds to the number of cores during task running. + Mix Block Dim: Number of running task blocks in Mix scenarios, which corresponds to the number of cores during task running. + Context ID: Context ID. + aiv_time: Average task execution duration on AIV.The value is calculated based on total_cycles and mix block dim. + aicore_time: Average task execution duration on AI Core.The value is calculated based on total_cycles and block dim. The unit is μs. The data is inaccurate in the manual frequency modulation, dynamic frequency modulation (the power consumption exceeds the default value), and Atlas 300V/Atlas 300I Pro scenarios. You are not advised referring to it. + total_cycles: Number of cycles taken to execute all task instructions. + Register value: Value of the custom register whose data is to be collected. + diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/api_statistic_20240526112057.csv b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/api_statistic_20240526112057.csv new file mode 100644 index 0000000000000000000000000000000000000000..f7ddf301d1893022c898073cb21956f161ab48d7 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/api_statistic_20240526112057.csv @@ -0,0 +1,16 @@ +Device_id,Level,API Name,Time(us),Count,Avg(us),Min(us),Max(us),Variance +0,acl,aclCreateDataBuffer,0.833,3,0.278,0.208,0.375,0.005 +0,acl,aclCreateTensorDesc,2.729,3,0.91,0.333,1.75,0.37 +0,acl,aclDestroyTensorDesc,4.146,3,1.382,0.479,2.688,0.894 +0,acl,aclMallocMemInner,58.229,6,9.705,3.75,34.625,124.72 +0,acl,aclnnAddCustom,526.104,1,526.104,526.104,526.104,0.0 +0,acl,aclnnAddCustomGetWorkspaceSize,135058.917,1,135058.917,135058.917,135058.917,0.0 +0,acl,aclnnAddCustomTiling,44.708,1,44.708,44.708,44.708,0.0 +0,acl,aclrtCreateStream,399.812,1,399.812,399.812,399.812,0.0 +0,acl,aclrtDestroyStream,416.229,1,416.229,416.229,416.229,0.0 +0,acl,aclrtFree,73.5,6,12.25,6.375,39.312,146.821 +0,acl,aclrtMalloc,62.646,6,10.441,4.396,35.5,126.178 +0,acl,aclrtMemcpy,258.396,3,86.132,75.896,92.771,53.931 +0,acl,aclrtResetDevice,178461.771,1,178461.771,178461.771,178461.771,0.0 +0,acl,aclrtSynchronizeStreamWithTimeout,30.458,1,30.458,30.458,30.458,0.0 +0,node,launch,497.458,1,497.458,497.458,497.458,0.0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/msprof_20240526112056.json b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/msprof_20240526112056.json new file mode 100644 index 0000000000000000000000000000000000000000..e805a19fd3b5069fe8470c8ce1bb414605cad547 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/msprof_20240526112056.json @@ -0,0 +1 @@ +[{"name": "process_name", "pid": 1375110400, "tid": 0, "args": {"name": "Ascend Hardware"}, "ph": "M"}, {"name": "thread_name", "pid": 1375110400, "tid": 1, "args": {"name": "Stream 1"}, "ph": "M"}, {"name": "thread_sort_index", "pid": 1375110400, "tid": 1, "args": {"sort_index": 1}, "ph": "M"}, {"name": "thread_name", "pid": 1375110400, "tid": 0, "args": {"name": "Stream 0"}, "ph": "M"}, {"name": "thread_sort_index", "pid": 1375110400, "tid": 0, "args": {"sort_index": 0}, "ph": "M"}, {"name": "process_labels", "pid": 1375110400, "tid": 0, "args": {"labels": "NPU"}, "ph": "M"}, {"name": "process_sort_index", "pid": 1375110400, "tid": 0, "args": {"sort_index": 8}, "ph": "M"}, {"name": "process_name", "pid": 1375110208, "tid": 0, "args": {"name": "CANN"}, "ph": "M"}, {"name": "thread_name", "pid": 1375110208, "tid": 1342881, "args": {"name": "Thread 1342881"}, "ph": "M"}, {"name": "thread_sort_index", "pid": 1375110208, "tid": 1342881, "args": {"sort_index": 1342881}, "ph": "M"}, {"name": "process_labels", "pid": 1375110208, "tid": 0, "args": {"labels": "CPU"}, "ph": "M"}, {"name": "process_sort_index", "pid": 1375110208, "tid": 0, "args": {"sort_index": 2}, "ph": "M"}, {"name": "process_name", "pid": 1375110528, "tid": 0, "args": {"name": "Overlap Analysis"}, "ph": "M"}, {"name": "thread_name", "pid": 1375110528, "tid": 0, "args": {"name": "Computing"}, "ph": "M"}, {"name": "thread_name", "pid": 1375110528, "tid": 1, "args": {"name": "Communication"}, "ph": "M"}, {"name": "thread_name", "pid": 1375110528, "tid": 2, "args": {"name": "Communication(Not Overlapped)"}, "ph": "M"}, {"name": "thread_name", "pid": 1375110528, "tid": 3, "args": {"name": "Free"}, "ph": "M"}, {"name": "process_labels", "pid": 1375110528, "tid": 0, "args": {"labels": "NPU"}, "ph": "M"}, {"name": "process_sort_index", "pid": 1375110528, "tid": 0, "args": {"sort_index": 12}, "ph": "M"}, {"name": "process_name", "pid": 1375110432, "tid": 0, "args": {"name": "AI Core Freq"}, "ph": "M"}, {"name": "process_labels", "pid": 1375110432, "tid": 0, "args": {"labels": "NPU"}, "ph": "M"}, {"name": "process_sort_index", "pid": 1375110432, "tid": 0, "args": {"sort_index": 9}, "ph": "M"}, {"name": "AI Core Freq", "ts": "1716693651340414.634", "pid": 1375110432, "tid": 0, "args": {"MHz": 1224.0}, "ph": "C"}, {"name": "PROFILING_ENABLE", "pid": 1375110400, "tid": 0, "ts": "1716693651541229.196", "dur": 0.02084375, "args": {"Model Id": 4294967295, "Task Type": "PLACE_HOLDER_SQE", "Physic Stream Id": 0, "Task Id": 2, "Batch Id": 0, "Subtask Id": 4294967295, "connection_id": -1}, "ph": "X"}, {"name": "AscendCL@aclCreateTensorDesc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561197.134", "dur": 1.75, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclCreateTensorDesc", "item_id": "0", "connection_id": 2}, "ph": "X"}, {"name": "AscendCL@aclCreateTensorDesc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561203.801", "dur": 0.33333333333333337, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclCreateTensorDesc", "item_id": "0", "connection_id": 3}, "ph": "X"}, {"name": "AscendCL@aclCreateTensorDesc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561205.446", "dur": 0.6458333333333334, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclCreateTensorDesc", "item_id": "0", "connection_id": 4}, "ph": "X"}, {"name": "AscendCL@aclrtMalloc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561213.176", "dur": 35.5, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMalloc", "item_id": "0", "connection_id": 5}, "ph": "X"}, {"name": "AscendCL@aclMallocMemInner", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561213.592", "dur": 34.625, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclMallocMemInner", "item_id": "0", "connection_id": 6}, "ph": "X"}, {"name": "AscendCL@aclCreateDataBuffer", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561253.176", "dur": 0.375, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclCreateDataBuffer", "item_id": "0", "connection_id": 7}, "ph": "X"}, {"name": "AscendCL@aclrtMalloc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561256.801", "dur": 6.104166666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMalloc", "item_id": "0", "connection_id": 8}, "ph": "X"}, {"name": "AscendCL@aclMallocMemInner", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561257.051", "dur": 5.479166666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclMallocMemInner", "item_id": "0", "connection_id": 9}, "ph": "X"}, {"name": "AscendCL@aclrtMalloc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561301.822", "dur": 6.6875, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMalloc", "item_id": "0", "connection_id": 10}, "ph": "X"}, {"name": "AscendCL@aclMallocMemInner", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561302.092", "dur": 5.8125, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclMallocMemInner", "item_id": "0", "connection_id": 11}, "ph": "X"}, {"name": "AscendCL@aclCreateDataBuffer", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561309.676", "dur": 0.25, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclCreateDataBuffer", "item_id": "0", "connection_id": 12}, "ph": "X"}, {"name": "AscendCL@aclrtMalloc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561310.988", "dur": 4.395833333333334, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMalloc", "item_id": "0", "connection_id": 13}, "ph": "X"}, {"name": "AscendCL@aclMallocMemInner", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561311.134", "dur": 3.75, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclMallocMemInner", "item_id": "0", "connection_id": 14}, "ph": "X"}, {"name": "AscendCL@aclrtMalloc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561321.426", "dur": 5.0625, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMalloc", "item_id": "0", "connection_id": 15}, "ph": "X"}, {"name": "AscendCL@aclMallocMemInner", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561321.655", "dur": 4.229166666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclMallocMemInner", "item_id": "0", "connection_id": 16}, "ph": "X"}, {"name": "AscendCL@aclCreateDataBuffer", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561327.467", "dur": 0.20833333333333334, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclCreateDataBuffer", "item_id": "0", "connection_id": 17}, "ph": "X"}, {"name": "AscendCL@aclrtMalloc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561328.676", "dur": 4.895833333333333, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMalloc", "item_id": "0", "connection_id": 18}, "ph": "X"}, {"name": "AscendCL@aclMallocMemInner", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561328.822", "dur": 4.333333333333333, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclMallocMemInner", "item_id": "0", "connection_id": 19}, "ph": "X"}, {"name": "AscendCL@aclrtMemcpy", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561703.759", "dur": 89.72916666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMemcpy", "item_id": "0", "connection_id": 20}, "ph": "X"}, {"name": "AscendCL@aclrtMemcpy", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561803.030", "dur": 75.89583333333333, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMemcpy", "item_id": "0", "connection_id": 21}, "ph": "X"}, {"name": "AscendCL@aclrtCreateStream", "pid": 1375110208, "tid": 1342881, "ts": "1716693651561885.280", "dur": 399.8125, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtCreateStream", "item_id": "0", "connection_id": 22}, "ph": "X"}, {"name": "AscendCL@aclnnAddCustomGetWorkspaceSize", "pid": 1375110208, "tid": 1342881, "ts": "1716693651562296.363", "dur": 135058.91666666666, "args": {"Thread Id": 1342881, "Mode": "ACL_ASCENDC", "level": "acl", "id": "aclnnAddCustomGetWorkspaceSize", "item_id": "0", "connection_id": 23}, "ph": "X"}, {"name": "AscendCL@aclnnAddCustomTiling", "pid": 1375110208, "tid": 1342881, "ts": "1716693651697304.259", "dur": 44.708333333333336, "args": {"Thread Id": 1342881, "Mode": "ACL_ASCENDC", "level": "acl", "id": "aclnnAddCustomTiling", "item_id": "0", "connection_id": 24}, "ph": "X"}, {"name": "AscendCL@aclnnAddCustom", "pid": 1375110208, "tid": 1342881, "ts": "1716693651697380.196", "dur": 526.1041666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_ASCENDC", "level": "acl", "id": "aclnnAddCustom", "item_id": "0", "connection_id": 25}, "ph": "X"}, {"name": "Node@launch", "pid": 1375110208, "tid": 1342881, "ts": "1716693651697388.717", "dur": 497.45833333333337, "args": {"Thread Id": 1342881, "Mode": "launch", "level": "node", "id": "0", "item_id": "AddCustom", "connection_id": 26}, "ph": "X"}, {"name": "HostToDevice18446744078004518911", "ph": "s", "cat": "HostToDevice", "id": "18446744078004518911", "pid": 1375110208, "tid": 1342881, "ts": "1716693651697861.384"}, {"name": "AddCustom", "pid": 1375110400, "tid": 1, "ts": "1716693651697890.759", "dur": 15.08334375, "args": {"Model Id": 4294967295, "Task Type": "AI_CORE", "Physic Stream Id": 1, "Task Id": 0, "Batch Id": 0, "Subtask Id": 4294967295, "connection_id": 26}, "ph": "X"}, {"name": "HostToDevice18446744078004518911", "ph": "f", "id": "18446744078004518911", "ts": "1716693651697890.759", "cat": "HostToDevice", "pid": 1375110400, "tid": 1, "bp": "e"}, {"name": "Computing", "pid": 1375110528, "tid": 0, "ts": "1716693651697890.759", "dur": 15.083, "ph": "X"}, {"name": "AscendCL@aclrtSynchronizeStreamWithTimeout", "pid": 1375110208, "tid": 1342881, "ts": "1716693651697921.009", "dur": 30.458333333333332, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtSynchronizeStreamWithTimeout", "item_id": "0", "connection_id": 27}, "ph": "X"}, {"name": "AscendCL@aclrtMemcpy", "pid": 1375110208, "tid": 1342881, "ts": "1716693651697959.717", "dur": 92.77083333333334, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtMemcpy", "item_id": "0", "connection_id": 28}, "ph": "X"}, {"name": "AscendCL@aclrtDestroyStream", "pid": 1375110208, "tid": 1342881, "ts": "1716693651698059.905", "dur": 416.2291666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtDestroyStream", "item_id": "0", "connection_id": 29}, "ph": "X"}, {"name": "AscendCL@aclrtFree", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699386.134", "dur": 39.3125, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtFree", "item_id": "0", "connection_id": 30}, "ph": "X"}, {"name": "AscendCL@aclrtFree", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699426.988", "dur": 8.083333333333332, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtFree", "item_id": "0", "connection_id": 31}, "ph": "X"}, {"name": "AscendCL@aclrtFree", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699437.113", "dur": 6.8125, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtFree", "item_id": "0", "connection_id": 32}, "ph": "X"}, {"name": "AscendCL@aclrtFree", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699444.384", "dur": 6.541666666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtFree", "item_id": "0", "connection_id": 33}, "ph": "X"}, {"name": "AscendCL@aclrtFree", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699453.384", "dur": 6.375, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtFree", "item_id": "0", "connection_id": 34}, "ph": "X"}, {"name": "AscendCL@aclrtFree", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699460.217", "dur": 6.375, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtFree", "item_id": "0", "connection_id": 35}, "ph": "X"}, {"name": "AscendCL@aclDestroyTensorDesc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699474.134", "dur": 2.6875, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclDestroyTensorDesc", "item_id": "0", "connection_id": 36}, "ph": "X"}, {"name": "AscendCL@aclDestroyTensorDesc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699477.405", "dur": 0.9791666666666666, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclDestroyTensorDesc", "item_id": "0", "connection_id": 37}, "ph": "X"}, {"name": "AscendCL@aclDestroyTensorDesc", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699478.946", "dur": 0.4791666666666667, "args": {"Thread Id": 1342881, "Mode": "ACL_OP", "level": "acl", "id": "aclDestroyTensorDesc", "item_id": "0", "connection_id": 38}, "ph": "X"}, {"name": "AscendCL@aclrtResetDevice", "pid": 1375110208, "tid": 1342881, "ts": "1716693651699482.176", "dur": 178461.77083333334, "args": {"Thread Id": 1342881, "Mode": "ACL_RTS", "level": "acl", "id": "aclrtResetDevice", "item_id": "0", "connection_id": 39}, "ph": "X"}, {"name": "PROFILING_DISABLE", "pid": 1375110400, "tid": 0, "ts": "1716693651699659.155", "dur": 0.0208125, "args": {"Model Id": 4294967295, "Task Type": "PLACE_HOLDER_SQE", "Physic Stream Id": 0, "Task Id": 3, "Batch Id": 0, "Subtask Id": 4294967295, "connection_id": -1}, "ph": "X"}, {"name": "AI Core Freq", "ts": "1716693651924240", "pid": 1375110432, "tid": 0, "args": {"MHz": 1224.0}, "ph": "C"}] \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/op_statistic_20240526112057.csv b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/op_statistic_20240526112057.csv new file mode 100644 index 0000000000000000000000000000000000000000..448967a2fe27e3fd561fcc9b3054bd6c8e45e012 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/op_statistic_20240526112057.csv @@ -0,0 +1,2 @@ +Device_id,OP Type,Core Type,Count,Total Time(us),Min Time(us),Avg Time(us),Max Time(us),Ratio(%) +0,AddCustom,AI_VECTOR_CORE,1,15.083,15.083,15.083,15.083,100.0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/op_summary_20240526112057.csv b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/op_summary_20240526112057.csv new file mode 100644 index 0000000000000000000000000000000000000000..beaaab83a37a7c7533a01917ffde7bb7ecade49b --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/op_summary_20240526112057.csv @@ -0,0 +1,2 @@ +Device_id,Model ID,Task ID,Stream ID,Op Name,OP Type,OP State,Task Type,Task Start Time(us),Task Duration(us),Task Wait Time(us),Block Dim,Mix Block Dim,HF32 Eligible,Input Shapes,Input Data Types,Input Formats,Output Shapes,Output Data Types,Output Formats,Context ID,aicore_time(us),total_cycles,vec_exe_time(us),vec_exe_ratio,mac_exe_time(us),mac_exe_ratio,scalar_exe_time(us),scalar_exe_ratio,mte1_exe_time(us),mte1_exe_ratio,mte2_exe_time(us),mte2_exe_ratio,mte3_exe_time(us),mte3_exe_ratio,fixpipe_exe_time(us),fixpipe_exe_ratio,memory_bound +0,4294967295,0,1,AddCustom,AddCustom,dynamic,AI_VECTOR_CORE,1716693651697890.759 ,15.083,0,1,0,NO,"""32,4096;32,4096""",FLOAT16;FLOAT16,FORMAT_ND;FORMAT_ND,"""32,4096""",FLOAT16,FORMAT_ND,N/A,5.59,6840,0.0,0.0,0.0,0.0,1.937,0.346,0.003,0.001,3.284,0.587,3.061,0.548,0.001,0.0,0 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/prof_rule_0_20240526112057.json b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/prof_rule_0_20240526112057.json new file mode 100644 index 0000000000000000000000000000000000000000..4dc4a5a445629973fe7b2b64f6db37614ae6dc17 --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/prof_rule_0_20240526112057.json @@ -0,0 +1 @@ +{"status": 0, "data": {"Op Summary": [{"Rule Type": "Computation", "Rule Description": "Prompt users of some improperly high or low vector/cube/scalar usages of operators on AI Cores.", "result": []}, {"Rule Type": "Memory", "Rule Description": "Display improper memory usages of operators.", "result": []}, {"Rule Type": "Operator Schedule", "Rule Description": "Display inefficient scheduling of operators.", "result": []}, {"Rule Type": "Operator Processing", "Rule Description": "Provide various processing suggestions based on operator processing policy, including multi-core processing, tiling policy, and reduced use of AI CPU operators.", "result": []}, {"Rule Type": "Operator Metrics", "Rule Description": "Collect statistics on operator performance efficiency and prompt users of high resource consumption.", "result": []}], "Op Parallel": [{"Rule Type": "Operator Parallelism", "Rule Description": "Identify the serial wait bottleneck between the AI CPU and AI Core.", "result": []}], "Model Summary": [{"Rule Type": "Model Bottleneck Analysis", "Rule Description": "Identify model bottleneck distribution indicated by cube, vector, scalar and mte utilization.", "result": []}]}} \ No newline at end of file diff --git a/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/task_time_20240526112057.csv b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/task_time_20240526112057.csv new file mode 100644 index 0000000000000000000000000000000000000000..ed5decc11a28be899a59438147c8210dc170ba7c --- /dev/null +++ b/Increase_DataCopy_case/AclNNInvocation/output/PROF_000001_20240526112051220_ODBQQCERHMJNJOAC/mindstudio_profiler_output/task_time_20240526112057.csv @@ -0,0 +1,4 @@ +Device_id,kernel_name,kernel_type,stream_id,task_id,task_time(us),task_start(us),task_stop(us) +0,N/A,PROFILING_ENABLE,0,2,0.02,1716693651541229.196 ,1716693651541229.216 +0,AddCustom,KERNEL_AICORE,1,0,15.083,1716693651697890.759 ,1716693651697905.842 +0,N/A,PROFILING_DISABLE,0,3,0.02,1716693651699659.154 ,1716693651699659.174 diff --git a/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op b/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op index 309b7445c85f9924e13418a423295c4e57b24fac..fbec1b52688ada08ae43f0d5a2cf286da042659e 100644 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op and b/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/golden.bin b/Increase_DataCopy_case/AclNNInvocation/output/golden.bin index d478b682538385800e44bfe85190085eb15c5853..c9189e28e4fdf8cee37dcaf1ada8634017d5002d 100644 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/golden.bin and b/Increase_DataCopy_case/AclNNInvocation/output/golden.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/output/output_z.bin b/Increase_DataCopy_case/AclNNInvocation/output/output_z.bin index c97c12f9b0a24bfc19c74a2b265a97c924137775..6d23118f0d0084657a974875123ddc1b9a0738dd 100644 Binary files a/Increase_DataCopy_case/AclNNInvocation/output/output_z.bin and b/Increase_DataCopy_case/AclNNInvocation/output/output_z.bin differ diff --git a/Increase_DataCopy_case/AclNNInvocation/scripts/gen_data.py b/Increase_DataCopy_case/AclNNInvocation/scripts/gen_data.py index ef0b90dac36754f226ab8da94f86724d64189546..8478b91d944bc1f3436978674eaca29fd3e0a489 100644 --- a/Increase_DataCopy_case/AclNNInvocation/scripts/gen_data.py +++ b/Increase_DataCopy_case/AclNNInvocation/scripts/gen_data.py @@ -12,8 +12,8 @@ import numpy as np def gen_golden_data_simple(): - input_x = np.random.uniform(1, 100, [16, 2048]).astype(np.float16) - input_y = np.random.uniform(1, 100, [16, 2048]).astype(np.float16) + input_x = np.random.uniform(1, 100, [32, 4096]).astype(np.float16) + input_y = np.random.uniform(1, 100, [32, 4096]).astype(np.float16) golden = (input_x + input_y).astype(np.float16) input_x.tofile("./input/input_x.bin") diff --git a/Increase_DataCopy_case/AclNNInvocation/src/main.cpp b/Increase_DataCopy_case/AclNNInvocation/src/main.cpp index da9810317ce8d564dbefc22c697215a4f4f59b66..5a78ad1a0fbbeeceeb564213194d4a69b179e77f 100644 --- a/Increase_DataCopy_case/AclNNInvocation/src/main.cpp +++ b/Increase_DataCopy_case/AclNNInvocation/src/main.cpp @@ -24,7 +24,7 @@ int deviceId = 0; OperatorDesc CreateOpDesc() { // define operator - std::vector shape{16, 2048}; + std::vector shape{32, 4096}; aclDataType dataType = ACL_FLOAT16; aclFormat format = ACL_FORMAT_ND; OperatorDesc opDesc; diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeCache.txt b/Increase_DataCopy_case/Is_increase/build_out/CMakeCache.txt index fdfd886de4937f71d45ad980971461849a294855..eb2f48ca32fdbcc285999391b8d05fea23d04497 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeCache.txt +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeCache.txt @@ -1,5 +1,5 @@ # This is the CMakeCache file. -# For build in directory: /_Increase/Increase_MTE_AddCustom/build_out +# For build in directory: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -112,7 +112,7 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= //No help, variable specified on the command line. -CMAKE_INSTALL_PREFIX:PATH=/_Increase/Increase_MTE_AddCustom/build_out +CMAKE_INSTALL_PREFIX:PATH=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out //Path to a program. CMAKE_LINKER:FILEPATH=/usr/bin/ld @@ -251,13 +251,13 @@ ENABLE_SOURCE_PACKAGE:BOOL=True ENABLE_TEST:BOOL=True //Value Computed by CMake -opp_BINARY_DIR:STATIC=/_Increase/Increase_MTE_AddCustom/build_out +opp_BINARY_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out //Value Computed by CMake opp_IS_TOP_LEVEL:STATIC=ON //Value Computed by CMake -opp_SOURCE_DIR:STATIC=/_Increase/Increase_MTE_AddCustom +opp_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase //No help, variable specified on the command line. vendor_name:STRING=customize @@ -272,7 +272,7 @@ 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=/_Increase/Increase_MTE_AddCustom/build_out +CMAKE_CACHEFILE_DIR:INTERNAL=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -347,7 +347,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL= //Source directory with the top level CMakeLists.txt file for this // project -CMAKE_HOME_DIRECTORY:INTERNAL=/_Increase/Increase_MTE_AddCustom +CMAKE_HOME_DIRECTORY:INTERNAL=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase //Install .so files without execute permission. CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 //ADVANCED property for variable: CMAKE_LINKER diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake index 4ec0508caf9316c76e4a485c010e4c9afbfd03c6..a824f65ae0a5cc7b77dac23d3340f58147cc06de 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/_Increase/Increase_MTE_AddCustom") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/_Increase/Increase_MTE_AddCustom/build_out") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeOutput.log b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeOutput.log index 2e1b52fdaa1d88f4211c08b5622e02be80147bc0..1960fdef9ec037a700c8e2bb40960d84eede5147 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeOutput.log +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeOutput.log @@ -10,7 +10,7 @@ The output was: Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" -The C compiler identification is GNU, found in "/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out" +The C compiler identification is GNU, found in "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out" Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler: /usr/bin/c++ @@ -23,15 +23,15 @@ The output was: Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" -The CXX compiler identification is GNU, found in "/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" +The CXX compiler identification is GNU, found in "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" Detecting C compiler ABI info compiled with the following output: -Change Dir: /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_02e88/fast && /usr/bin/gmake -f CMakeFiles/cmTC_02e88.dir/build.make CMakeFiles/cmTC_02e88.dir/build -gmake[1]: Entering directory '/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o -/usr/bin/cc -v -o CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_b971d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_b971d.dir/build.make CMakeFiles/cmTC_b971d.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_b971d.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 @@ -39,8 +39,8 @@ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~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_02e88.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_02e88.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_02e88.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/ccg12D4P.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b971d.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_b971d.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/ccY0D3Sd.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 @@ -60,15 +60,15 @@ GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_02e88.dir/' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o /tmp/ccg12D4P.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b971d.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o /tmp/ccY0D3Sd.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_02e88.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.' -Linking C executable cmTC_02e88 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_02e88.dir/link.txt --verbose=1 -/usr/bin/cc -v CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o -o cmTC_02e88 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_b971d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b971d.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o -o cmTC_b971d Using built-in specs. COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper @@ -79,10 +79,10 @@ 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_02e88' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_02e88.' - /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/ccIUHRkY.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_02e88 /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_02e88.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_02e88' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_02e88.' -gmake[1]: Leaving directory '/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b971d' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_b971d.' + /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/ccAQTo2H.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_b971d /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_b971d.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_b971d' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_b971d.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp' @@ -103,12 +103,12 @@ Parsed C implicit include dir info from above output: rv=done Parsed C implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_02e88/fast && /usr/bin/gmake -f CMakeFiles/cmTC_02e88.dir/build.make CMakeFiles/cmTC_02e88.dir/build] - ignore line: [gmake[1]: Entering directory '/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_b971d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_b971d.dir/build.make CMakeFiles/cmTC_b971d.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_b971d.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] @@ -116,8 +116,8 @@ Parsed C implicit link information from above output: 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_02e88.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_02e88.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_02e88.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/ccg12D4P.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b971d.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_b971d.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/ccY0D3Sd.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: [] @@ -137,15 +137,15 @@ Parsed C implicit link information from above output: 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_02e88.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_02e88.dir/'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o /tmp/ccg12D4P.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b971d.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o /tmp/ccY0D3Sd.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_02e88.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_02e88] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_02e88.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_02e88.dir/CMakeCCompilerABI.c.o -o cmTC_02e88 ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_b971d] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b971d.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o -o cmTC_b971d ] 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] @@ -156,13 +156,13 @@ Parsed C implicit link information from above output: 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_02e88' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_02e88.'] - 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/ccIUHRkY.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_02e88 /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_02e88.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] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b971d' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_b971d.'] + 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/ccAQTo2H.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_b971d /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_b971d.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/ccIUHRkY.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccAQTo2H.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -182,7 +182,7 @@ Parsed C implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_02e88] ==> ignore + arg [cmTC_b971d] ==> 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] @@ -194,7 +194,7 @@ Parsed C implicit link information from above output: 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_02e88.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_b971d.dir/CMakeCCompilerABI.c.o] ==> ignore arg [-lgcc] ==> lib [gcc] arg [--push-state] ==> ignore arg [--as-needed] ==> ignore @@ -226,12 +226,12 @@ Parsed C implicit link information from above output: Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_26a7e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_26a7e.dir/build.make CMakeFiles/cmTC_26a7e.dir/build -gmake[1]: Entering directory '/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/c++ -v -o CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_535bf/fast && /usr/bin/gmake -f CMakeFiles/cmTC_535bf.dir/build.make CMakeFiles/cmTC_535bf.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_535bf.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 @@ -239,8 +239,8 @@ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~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_26a7e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_26a7e.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_26a7e.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/cct0Toy0.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_535bf.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_535bf.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/ccqUYPKx.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 @@ -264,15 +264,15 @@ GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 3e6e780af1232722b47e0979fda82402 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_26a7e.dir/' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o /tmp/cct0Toy0.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_535bf.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccqUYPKx.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_26a7e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.' -Linking CXX executable cmTC_26a7e -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26a7e.dir/link.txt --verbose=1 -/usr/bin/c++ -v CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_26a7e +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_535bf +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_535bf.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_535bf Using built-in specs. COLLECT_GCC=/usr/bin/c++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper @@ -283,10 +283,10 @@ 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_26a7e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_26a7e.' - /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/ccrvBMO2.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_26a7e /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_26a7e.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_26a7e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_26a7e.' -gmake[1]: Leaving directory '/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_535bf' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_535bf.' + /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/cc7Y9iWi.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_535bf /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_535bf.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_535bf' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_535bf.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp' @@ -313,12 +313,12 @@ Parsed CXX implicit include dir info from above output: rv=done Parsed CXX implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_26a7e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_26a7e.dir/build.make CMakeFiles/cmTC_26a7e.dir/build] - ignore line: [gmake[1]: Entering directory '/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_535bf/fast && /usr/bin/gmake -f CMakeFiles/cmTC_535bf.dir/build.make CMakeFiles/cmTC_535bf.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_535bf.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] @@ -326,8 +326,8 @@ Parsed CXX implicit link information from above output: 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_26a7e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_26a7e.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_26a7e.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/cct0Toy0.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_535bf.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_535bf.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/ccqUYPKx.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: [] @@ -351,15 +351,15 @@ Parsed CXX implicit link information from above output: 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_26a7e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_26a7e.dir/'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o /tmp/cct0Toy0.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_535bf.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccqUYPKx.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_26a7e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_26a7e] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26a7e.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_26a7e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_26a7e ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_535bf] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_535bf.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_535bf ] 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] @@ -370,13 +370,13 @@ Parsed CXX implicit link information from above output: 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_26a7e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_26a7e.'] - 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/ccrvBMO2.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_26a7e /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_26a7e.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] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_535bf' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_535bf.'] + 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/cc7Y9iWi.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_535bf /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_535bf.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/ccrvBMO2.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc7Y9iWi.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -396,7 +396,7 @@ Parsed CXX implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_26a7e] ==> ignore + arg [cmTC_535bf] ==> 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] @@ -408,7 +408,7 @@ Parsed CXX implicit link information from above output: 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_26a7e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_535bf.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [-lgcc_s] ==> lib [gcc_s] diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt index 499ee1cef2333f0ca501b9bf16be70edbd4d6e5c..8ff8f148261ef334f738224f2ab36368b93ad17f 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -1,33 +1,33 @@ # Hashes of file build rules. -59721b008f2edaa0793dac1c5078875d CMakeFiles/gen_version_info -bb0a8b1518dc446a7399a05b9848bb0a CMakeFiles/modify_vendor -4482c69af915badc7d9e39a2974102c9 op_host/CMakeFiles/optiling_compat -a0baee547ae74a78689f1e98393a71b7 op_kernel/CMakeFiles/ascendc_bin_ascend310b -55f3ad47424a849e7be2613c167275ff op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 -ca0d06d2f57e22559c70bfe50bd6c9f0 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy -8158ed661ce9f64372ee2ab7164aa279 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config -37fc20b70273a2a934c50834ae87835b op_kernel/CMakeFiles/ascendc_bin_ascend310p -57aae8d2c145dbba8a363673f4fa80cc op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 -eea99da07f7d264bca65f5c4955a87aa op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy -f92c32a96b3f3d099aa04a3ce5756bbf op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config -623df73bb24f72c89eee67a820298fce op_kernel/CMakeFiles/ascendc_bin_ascend910 -354694fea06cea888a1608e85d404e75 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 -836844cb539e4d68b60858a10b281980 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy -8c7569949940711925d14dbe661a9fe0 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config -30250dfd75c96ced3aa6800055661a24 op_kernel/CMakeFiles/ascendc_bin_ascend910b -eede8d5fcef908252ffb42ba5a9b5286 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 -a800dab470c2b83d5a2a4e2b243bc80d op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy -84399551a662b9fda2214caf885fa5c2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config -8aad5518a3e9a668e9444f6b7c41201d op_kernel/CMakeFiles/ascendc_impl_gen -8aad5518a3e9a668e9444f6b7c41201d op_kernel/CMakeFiles/npu_supported_ops -8aad5518a3e9a668e9444f6b7c41201d op_kernel/CMakeFiles/ops_info_gen_ascend310b -8aad5518a3e9a668e9444f6b7c41201d op_kernel/CMakeFiles/ops_info_gen_ascend310p -8aad5518a3e9a668e9444f6b7c41201d op_kernel/CMakeFiles/ops_info_gen_ascend910 -8aad5518a3e9a668e9444f6b7c41201d op_kernel/CMakeFiles/ops_info_gen_ascend910b -eb5f3fef7ae5c356ebf7590e460a4b74 op_kernel/tbe/.impl_timestamp -a5d3f5152d3c3820fc3f63e3d53ab828 op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json -505e3e8ffc86d465be36924b10c6da59 op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json -b0e38b7e73528d40d0d7700a7be3bff2 op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json -6f718244ac057622c3bdd100802c29d3 op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json -ae1cbea417aeeeabd820b5fe0a8587f7 op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json -d6f31ba4d010e85e0e195f0556fd8c24 scripts/install.sh +e425f1fe98d98a4494676915e4cc697e CMakeFiles/gen_version_info +e00fc3dd8156a9dc874a7f6845cc0b44 CMakeFiles/modify_vendor +108532384e610c40ea600a24f6daec92 op_host/CMakeFiles/optiling_compat +23b5ce4b8d86779c2140dd5477c7c0df op_kernel/CMakeFiles/ascendc_bin_ascend310b +59866befe6700846f9108aa7b38dd831 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +61d90ab4b6de095cb13b709a718c4b68 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +a01f129ea0b6fe168dc904847cd0a4eb op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +b7dcce1d3f8468e38839eb5e19d74ac1 op_kernel/CMakeFiles/ascendc_bin_ascend310p +c734ac122bdf0cc1cc96748b909e1156 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +8bbe5444493568324bdbffb75e5d9a5f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +117a572bbfe2e62b6856a8446f01c923 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +f9ff9bec4a65d2faf506df36fad9a703 op_kernel/CMakeFiles/ascendc_bin_ascend910 +1000562eba705d6c5e14b48b87f9af84 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +015b062a1cc422845847cc237eec20df op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +5c08470cbe3109346e03f3cf80562710 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +a08c098e66ee8f0689f6537c0fac2377 op_kernel/CMakeFiles/ascendc_bin_ascend910b +e38eb7e0cf9f951cf43e56e6308ab35f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +f25095b753436533c2ba6549029ae3ed op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +9dd918969ff8dcf4fa1390e4cb0c4c13 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +3cd20c05ae7fe8d006308a11e8edd26d op_kernel/CMakeFiles/ascendc_impl_gen +3cd20c05ae7fe8d006308a11e8edd26d op_kernel/CMakeFiles/npu_supported_ops +3cd20c05ae7fe8d006308a11e8edd26d op_kernel/CMakeFiles/ops_info_gen_ascend310b +3cd20c05ae7fe8d006308a11e8edd26d op_kernel/CMakeFiles/ops_info_gen_ascend310p +3cd20c05ae7fe8d006308a11e8edd26d op_kernel/CMakeFiles/ops_info_gen_ascend910 +3cd20c05ae7fe8d006308a11e8edd26d op_kernel/CMakeFiles/ops_info_gen_ascend910b +aaeb6ad20c39d843a6f4d998f1ea8545 op_kernel/tbe/.impl_timestamp +2cba9e38c0db0ef341539f69ecbdb821 op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +488f09b6c04fe18997e3154a7a4bad6e op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +2ad7fcb7956cb627b6fd91614772785b op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +04fcd6c751b4b2381731deefb18b4ae9 op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +03eb1c9d27127c04e03e24a27fcc22df op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +b857acaa49630b5ff005af637369498c scripts/install.sh diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/Makefile2 b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/Makefile2 index 3f47f5e3c5eb9cabeaaffd477182a1d673e86d5b..0f85c7065c269174b482a6f6ea9e08f9eae9cf85 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/Makefile2 +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/Makefile2 @@ -54,10 +54,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out #============================================================================= # Directory level rules for the build root directory @@ -184,14 +184,14 @@ op_kernel/clean: op_kernel/CMakeFiles/npu_supported_ops.dir/clean 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=11 "Built target modify_vendor" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : CMakeFiles/modify_vendor.dir/rule # Convenience name for target. @@ -210,14 +210,14 @@ CMakeFiles/modify_vendor.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target gen_version_info" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : CMakeFiles/gen_version_info.dir/rule # Convenience name for target. @@ -236,14 +236,14 @@ CMakeFiles/gen_version_info.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=9,10 "Built target cust_tf_parsers" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule # Convenience name for target. @@ -262,14 +262,14 @@ framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=2,3,4 "Built target cust_op_proto" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 3 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 3 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/cust_op_proto.dir/rule # Convenience name for target. @@ -288,14 +288,14 @@ op_host/CMakeFiles/cust_op_proto.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=7,8 "Built target cust_optiling" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/cust_optiling.dir/rule # Convenience name for target. @@ -314,14 +314,14 @@ op_host/CMakeFiles/cust_optiling.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=5,6 "Built target cust_opapi" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/cust_opapi.dir/rule # Convenience name for target. @@ -340,14 +340,14 @@ op_host/CMakeFiles/cust_opapi.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target optiling_compat" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/optiling_compat.dir/rule # Convenience name for target. @@ -366,14 +366,14 @@ op_host/CMakeFiles/optiling_compat.dir/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule # Convenience name for target. @@ -392,14 +392,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=1 "Built target ascendc_impl_gen" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule # Convenience name for target. @@ -421,14 +421,14 @@ op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_ op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target binary" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/binary.dir/rule # Convenience name for target. @@ -447,14 +447,14 @@ op_kernel/CMakeFiles/binary.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule # Convenience name for target. @@ -473,14 +473,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule # Convenience name for target. @@ -499,14 +499,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule # Convenience name for target. @@ -526,14 +526,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMak op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule # Convenience name for target. @@ -552,14 +552,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=13 "Built target ops_info_gen_ascend310b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule # Convenience name for target. @@ -578,14 +578,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule # Convenience name for target. @@ -604,14 +604,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule # Convenience name for target. @@ -630,14 +630,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule # Convenience name for target. @@ -657,14 +657,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMak op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule # Convenience name for target. @@ -683,14 +683,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule # Convenience name for target. @@ -709,14 +709,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule # Convenience name for target. @@ -735,14 +735,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule # Convenience name for target. @@ -761,14 +761,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule # Convenience name for target. @@ -788,14 +788,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMake op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule # Convenience name for target. @@ -814,14 +814,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule # Convenience name for target. @@ -840,14 +840,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule # Convenience name for target. @@ -866,14 +866,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule # Convenience name for target. @@ -892,14 +892,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule # Convenience name for target. @@ -919,14 +919,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMak op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule # Convenience name for target. @@ -945,14 +945,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=12 "Built target npu_supported_ops" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/rule # Convenience name for target. diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/TargetDirectories.txt b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/TargetDirectories.txt index 55f731b42c78f99ae6e1147cc4de233b1f8339db..c17f2303c3773faaac64f53ee005c593dadc6d89 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/TargetDirectories.txt +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/TargetDirectories.txt @@ -1,70 +1,70 @@ -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/modify_vendor.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/gen_version_info.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/package.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/package_source.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/edit_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/rebuild_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/list_install_components.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/install.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/install/local.dir -/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/install/strip.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/package.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/package_source.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/edit_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/rebuild_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/list_install_components.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/install.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/install/local.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/CMakeFiles/install/strip.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/package.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/package_source.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/install.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/install/local.dir -/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/cust_op_proto.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/cust_optiling.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/cust_opapi.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/optiling_compat.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/package.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/package_source.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/edit_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/rebuild_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/list_install_components.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/install.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/install/local.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/install/strip.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/binary.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/package.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/package_source.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/edit_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/rebuild_cache.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/list_install_components.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/install.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/install/local.dir -/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/gen_version_info.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make index fe9abdd40bcdab7e3e4e72debf308f74587f33e3..31e7749f4dbc3d498c74d3745b6bbfe40aa71b2e 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for gen_version_info. @@ -67,7 +67,7 @@ include CMakeFiles/gen_version_info.dir/compiler_depend.make include CMakeFiles/gen_version_info.dir/progress.make CMakeFiles/gen_version_info: - bash /_Increase/Increase_MTE_AddCustom/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /_Increase/Increase_MTE_AddCustom/build_out + bash /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out gen_version_info: CMakeFiles/gen_version_info gen_version_info: CMakeFiles/gen_version_info.dir/build.make @@ -82,6 +82,6 @@ CMakeFiles/gen_version_info.dir/clean: .PHONY : CMakeFiles/gen_version_info.dir/clean CMakeFiles/gen_version_info.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) .PHONY : CMakeFiles/gen_version_info.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake index 624e161e2b43d4660b7f31aa8328b56c31ce6f58..d84f7079054b4f642a6822a08e2d8822674355cb 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake @@ -12,7 +12,7 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES # Pairs of files generated by the same build rule. set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/_Increase/Increase_MTE_AddCustom/build_out/scripts/upgrade.sh" "/_Increase/Increase_MTE_AddCustom/build_out/scripts/install.sh" + "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/scripts/upgrade.sh" "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/scripts/install.sh" ) diff --git a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make index 41f866aa7b059eb36d520c8ad67cd0c272dea958..211d2452720ae89a7e4319d2ee65e3147c9fb539 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for modify_vendor. @@ -70,10 +70,10 @@ 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" - mkdir -p /_Increase/Increase_MTE_AddCustom/build_out/scripts - cp -r /_Increase/Increase_MTE_AddCustom/scripts/* /_Increase/Increase_MTE_AddCustom/build_out/scripts/ - sed -i s/vendor_name=customize/vendor_name=customize/g /_Increase/Increase_MTE_AddCustom/build_out/scripts/* + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/scripts + cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/scripts/* /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/scripts/* scripts/upgrade.sh: scripts/install.sh @$(CMAKE_COMMAND) -E touch_nocreate scripts/upgrade.sh @@ -93,6 +93,6 @@ CMakeFiles/modify_vendor.dir/clean: .PHONY : CMakeFiles/modify_vendor.dir/clean CMakeFiles/modify_vendor.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) .PHONY : CMakeFiles/modify_vendor.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/CPackConfig.cmake b/Increase_DataCopy_case/Is_increase/build_out/CPackConfig.cmake index 36187ae9f1d7a3af9a769dc7097c071f44d5827f..e4e2d811271b6abf27b7d57a962994ce5c874083 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CPackConfig.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/CPackConfig.cmake @@ -10,18 +10,18 @@ # usually begin with CPACK__xxxx. -set(CPACK_BUILD_SOURCE_DIRS "/_Increase/Increase_MTE_AddCustom;/_Increase/Increase_MTE_AddCustom/build_out") +set(CPACK_BUILD_SOURCE_DIRS "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase;/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 "/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 "/_Increase/Increase_MTE_AddCustom/cmake/makeself.cmake") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/makeself.cmake") set(CPACK_GENERATOR "External") -set(CPACK_INSTALL_CMAKE_PROJECTS "/_Increase/Increase_MTE_AddCustom/build_out;opp;ALL;/") -set(CPACK_INSTALL_PREFIX "/_Increase/Increase_MTE_AddCustom/build_out") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") set(CPACK_MODULE_PATH "") set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") set(CPACK_NSIS_INSTALLER_ICON_CODE "") @@ -29,12 +29,12 @@ 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 "/_Increase/Increase_MTE_AddCustom/build_out/CPackConfig.cmake") +set(CPACK_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 "/_Increase/Increase_MTE_AddCustom/build_out") +set(CPACK_PACKAGE_DIRECTORY "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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") @@ -50,7 +50,7 @@ set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.22/Templates/CPack.GenericDes 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 "/_Increase/Increase_MTE_AddCustom/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake") set(CPACK_SOURCE_RPM "OFF") set(CPACK_SOURCE_TBZ2 "ON") set(CPACK_SOURCE_TGZ "ON") @@ -63,7 +63,7 @@ set(CPACK_TOPLEVEL_TAG "Linux") set(CPACK_WIX_SIZEOF_VOID_P "8") if(NOT CPACK_PROPERTIES_FILE) - set(CPACK_PROPERTIES_FILE "/_Increase/Increase_MTE_AddCustom/build_out/CPackProperties.cmake") + set(CPACK_PROPERTIES_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CPackProperties.cmake") endif() if(EXISTS ${CPACK_PROPERTIES_FILE}) diff --git a/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake b/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake index 9b7a25fcf601ca26b03ab07f9704062acd1a680b..0488bdf5627b3f8a4d2b9d23bbff5cf81ac9783d 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake @@ -10,20 +10,20 @@ # usually begin with CPACK__xxxx. -set(CPACK_BUILD_SOURCE_DIRS "/_Increase/Increase_MTE_AddCustom;/_Increase/Increase_MTE_AddCustom/build_out") +set(CPACK_BUILD_SOURCE_DIRS "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase;/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 "/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 "/_Increase/Increase_MTE_AddCustom/cmake/makeself.cmake") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/makeself.cmake") set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") -set(CPACK_INSTALLED_DIRECTORIES "/_Increase/Increase_MTE_AddCustom;/") +set(CPACK_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase;/") set(CPACK_INSTALL_CMAKE_PROJECTS "") -set(CPACK_INSTALL_PREFIX "/_Increase/Increase_MTE_AddCustom/build_out") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") set(CPACK_MODULE_PATH "") set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") set(CPACK_NSIS_INSTALLER_ICON_CODE "") @@ -31,12 +31,12 @@ 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 "/_Increase/Increase_MTE_AddCustom/build_out/CPackConfig.cmake") +set(CPACK_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 "/_Increase/Increase_MTE_AddCustom/build_out") +set(CPACK_PACKAGE_DIRECTORY "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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") @@ -54,8 +54,8 @@ 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 "/_Increase/Increase_MTE_AddCustom;/") -set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/_Increase/Increase_MTE_AddCustom/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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") @@ -71,7 +71,7 @@ set(CPACK_TOPLEVEL_TAG "Linux-Source") set(CPACK_WIX_SIZEOF_VOID_P "8") if(NOT CPACK_PROPERTIES_FILE) - set(CPACK_PROPERTIES_FILE "/_Increase/Increase_MTE_AddCustom/build_out/CPackProperties.cmake") + set(CPACK_PROPERTIES_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CPackProperties.cmake") endif() if(EXISTS ${CPACK_PROPERTIES_FILE}) diff --git a/Increase_DataCopy_case/Is_increase/build_out/Makefile b/Increase_DataCopy_case/Is_increase/build_out/Makefile index 223fe392b6c82c25d7385d5f6bd4c927e436ac5a..ee7b40065e88e1e8fe4368f404e7df60fcfb22b1 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/Makefile +++ b/Increase_DataCopy_case/Is_increase/build_out/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/Increase_MTE_AddCustom/build_out/CPackSourceConfig.cmake + /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,9 +152,9 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles /_Increase/Increase_MTE_AddCustom/build_out//CMakeFiles/progress.marks + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out//CMakeFiles/progress.marks $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json index d8a0201df992d0541ef731897848f61a20315deb..b8deb2c06ad031acb8e1912b007c8e3d14c0654a 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json +++ b/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json @@ -14,7 +14,7 @@ { "component" : "ALL", "components" : [], - "directory" : "/_Increase/Increase_MTE_AddCustom/build_out", + "directory" : "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out", "installationTypes" : [], "projectName" : "opp", "subDirectory" : "/" diff --git a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run index b17b1b81a3a7a547bd7ac44e20f3f21e8c372605..16f35fcca105289afe8261e2845af1c6f4265b37 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run +++ b/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run @@ -6,9 +6,9 @@ ORIG_UMASK=`umask` -CRCsum="1560216079" +CRCsum="654194099" MD5="00000000000000000000000000000000" -SHA="9bef89e896205eb15167f1bd51e730732afbee32487589408bcd4070696aa1d8" +SHA="49dfeb5312b7f5815aeb12f34fe23c6671f1dccb3b3dace84ccc26ffdedb59f2" SIGNATURE="" TMPROOT=${TMPDIR:="$HOME"} if ! test -d "$TMPROOT"; then @@ -31,9 +31,9 @@ scriptargs="" cleanup_script="" licensetxt="" helpheader='' -targetdir="makeself-953896-20240827165210" -filesizes="103509" -totalsize="103509" +targetdir="makeself-913533-20240525182535" +filesizes="104700" +totalsize="104700" keep="n" nooverwrite="n" quiet="n" @@ -375,11 +375,11 @@ do if test x"n" != x""; then echo Encryption: n fi - echo Date of packaging: Tue Aug 27 16:52:10 CST 2024 + echo Date of packaging: Sat May 25 18:25:35 CST 2024 echo Built with Makeself version 2.4.5 - echo Build command was: "/_Increase/Increase_MTE_AddCustom/cmake/util/makeself/makeself.sh \\ + echo Build command was: "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/makeself/makeself.sh \\ \"--header\" \\ - \"/_Increase/Increase_MTE_AddCustom/cmake/util/makeself/makeself-header.sh\" \\ + \"/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/makeself/makeself-header.sh\" \\ \"--help-header\" \\ \"./help.info\" \\ \"--gzip\" \\ @@ -669,288 +669,300 @@ if test x"$keep" = xn; then rm -rf "$tmpdir" fi eval $finish; exit $res -f< pŕZaBk-hAec Ipg;H;zf֒p ťX{稄"X*G -9]ꊄRgLL\Wq! -FtlG2(r~^zGN q|>  Tf.MLʕmm 3mUÊP`mYnNÝ԰aU'ۭYVLwh`\=5TɱSyKS.GU,z tc1*ٚ_\*NuTwz_NYj1fˆޡD<yvIeTGjH*C‚.(ncEYxæt-ga[_Zɥl#N#Z{dtz6HVJuötG&8*o.[Nxdd+Y;v7$K YtWY:Svtnmi9#t+Mz7N_Nݜ\\[iSZA˼`-;0y`;-(Î/8 tIJC#CaB -R7\÷HdiȌ0*Yi3:MWhCHp+(FkwZg櫕Hx@EϘ:"jTھeg}NgPtBVMCԴp,3lcyMǀ-86L>7Cb 6ϛF⨭fec,:{E܅)s{aӺ۱%S׳Ե(Mq)ݒmҴ@Elݟ&e[ 9NZz+&+wHj%BNuHH ^jgH_ņaa0%K !"-SK CKwcX&,|BUJtL5]\AK^X2V]By7_u{V TF,j:t͵ ʓzU=t]KiB4,KBH.BC,,U^>Yudľ0+̪_Y)lQ_6Ԛ)X⋩] {g)0^1)t$gmE`V9&ǩ0HIi`p+f -fUta~lW1M\gQ sh^Vd(,Q˛)P4S -J*o ,@ks2lI~?F_W+fy>w\-sYw;fFڞg1X{X.bX~P&1VtV[U^@*kQ(P1$q\[BXU]ZkTFaIi aNKֱTtswһDt0V}T?t=~h`7BÆxWOl {6-n[ u8wĥm>^lWLWR5jKϪ<>j} -;2~ȓ`:(ZڀcVw(&1YwE$;Y9nXw [[1g lu(R,[t<ܢ".*᝜d -O?܏1I$@8o!Nj^I- S1 ؜r:U+~ps4Pت$jmUX}mJ+`G N6|ʣ\?){[Q8qLFPC1U$k(/ )5*oicbMb7j>Y)ac#yk fCqG #x ijCloxEm+WuUO5D">%#eN^djr*|Rp=>O~Q,(?K!@/2 R9Კ~,n9r+R]rsEzQB !}E?wSZ~[.gKo~9Q0BsVI2\PK_A; WIuHuOIu{"yaCu=kQtA^&Kh0TE-XUlZ>j8n]ݓL}X]EWaeyODl7W,p'i3 - nkZQܜm)yusw([1v'S*`#`Sr;ђjgyD -)tmjB~̬\7֪ړaɴYuh|aӠ&к6F ss 4ZW"<4vOl.3Q²{3J]mK-8 z#%SC \M镌OrM7`+Vi~ofzqCN 1g2iqu؝).;E!eR |D]fK.Lr%&ALl;!NV+D}==J[2Mz{Ir;&3Kenk?C)=5B居§I<zܼډ9C#3JtyC*s4^r%'Tf~D/n.$1.I~DZu+ɮPB&c@d_ۤLF;p\q`v^1DXa H|' u=OgDh;%| ˠlKz.H/y6k xC<4Zotx{玆;#_ r!Z'f7gf6(u-mcgtu z:0/D[ywO ԽY`(s@OqKQ^_xb}igJD YCm.nf2d:)yh櫭trN&$vags=9j%#MYa9ɑdvt& -tmV߮ -z^EFw ߮>~#YYUIR);*J.k1Pi>EWqCOڶ:tߨj@rYI;IY9Uj ؉0煼Bk!/(%:Xxt!/(E [B^cQrP#D#.(OC.E[a0n8(JYm9|"n㯑|8s$Ay?<<@ABˉNIP8or/ߐ9$sta{= [/' ob,glb-CX {_Bw%.E~M}G"?7 4!/ ]CXa? Kehyp9er|pŒ┊'zVNˎa&L36 ~Hn3_V.n8}?|D;z >{c{?/@?i^0|)T-o?KffoP^U/MeNb/sk3cCGuoA,UK0khxSQn2"-1F̬>Bz6nڤtn[]}pu?dːldu8!ӒL.IS$ v4CpF3xi$ugX2QR4G4i;ni2*+t&-C{ISOjo߾}q0-F3}ҀsDIE.J hZ ٌenK,j Q,0h --Ǎ Oi6KBm qY33.=i -%;An3<h#\/@.KpNG#{k~?OwVJ>/yQ=Q)⿪rWD[뾴od{n,ahjF_a!џ?>y9ā?v8yㇾQMK7U3U}x1/z[z5/|?yӟyӫJy EEUoT/BqDp?CS1[;,&Q13+|ݵ=lj3_ h2vZIáRHOxnjQ/ SI*|YtJ d.d kiB9"HQ-t c7\G[Ayd`(y/*(;3GXzXE|Ʌa|GuqD|wջp]SE<*%#hZ$y/ůEObTpW]É -]ÚB# -}HлAR[}BoZNA? -U:~A-RAWpGYd*B_+# -BogrA_ MV dqlM :F {MUUU{{w[$vItYoqr7&2NNƷ89l- t2NNn7''dɓF1'h*qr$[x8''qrr-''Dlj9텟bζ1X~8x ?3)<Ϥc` _ 'V3hy'xS7_ wjsM oS̹/ -@qt=\7uo5 cwoce`zoS`|%:㭙4-u5#씯d'Ğ'dʞɱ C-'W[O`~AxYv\Sa$w= -Ã-ps/ -|OÁ(Ŀ?wdS{F;"N -:s }x'0oq; 8n.A6x7;u{f>~@~ hooo;Vglto8ōT=Say1|aŃeF|&Dzˊ*>AzX̴ħ(rW¼I**l K"vWXܕ+yc#>+>G>r+?r ;\] OJ<*s ii?p(˾xs<s+9?~S3˿|cϟGe(U,k7>C?c7]sxCy/\.ˢK ^&oјv` w;W$X=ϭ|~Eiћǖ~R -ζj~Urd#ل9ϱ]œ=ɎFd?xQ<(dN~Jb&{_Uy&H>O~plޓO_ C?*M] -JINűC*5=9=Z~±H@>ZOgb]95r*ǖF/qlwJ<7O_9KıU"YA'Sql*KZ?Qzc#jS˿u _ű.ҿ/ְVsKs }~!DU;'=ZGE6fڈw*@ͭ͛_[k8s,NaTGFB6g !S&tf9a AH3){^a^TXiH7CLL-n - Q췥:S*aanw$ȑcaU yLtmVפ #P3ܩЇ?ɤ&ܗʕXlZ8 IB{s1 *4zhj<=%!!u)OPVij k<2j}4K?0SZjMML[˗&5X5#>[2JߟΥ,K{ L;/Fst[tutmsx i\ĮvpN{5EzvضirJ -d4bȰaoϙ\O)1 ^eH2چДZ7o$s -ق k-"^ k *dޚʹaYA7)q66HaT g3-28q liiuiQ7j6Բ:rnJ`xϞ[O.y уɂm=ӶW_Ʌ3N[O~Wp J╱ULìqީ5a_pŋ/ -<Go?s~(dUY/c-Wo 0$A+,oC#_(flO)' B6`7dnsB2,ƶX4>N+'J>J74b0\/<ѽp!qhsgXRO’8]Nvy 0򒺫Yfqpa?K)[Q"Ģp&V!Zhl7GFXv?I˗b`8]WG3"ƦToF7ך9 -s9pNm۶-tS]ntWV@}&ͭ5z8?"5ӂ7mQ0'V':B~orPL= rC[kCM}@@<18!sB ZF<d.Q˹28.2צv  Iwpm!ĺ[Xὸ3a05@F^hJ #K#~db4b34`KHO a+9#LN)7oϗViTg*kK'ۨJ:<lj8‹zΘr[+:s?`ܠ+H\臫lbx|Uzj1>)ci)p6KE4qDlxp$eCA-kQ!Q?Ao42,=}DGVPPic(%zfoSÊY-]R˭q\pҵqFCZt}rBݔ'FRPCR 9D..7 Ώ{{0}("N((l΢ -:&J6+EUe7/o0;cBz5T4L,ce-SǭH]v;+ho"9YſZ + y-oխL1 -?(2i{ȄiZ^''U>Wl Yfi-$9ך=uW˃z !"I>fv^RVqFrXÃQ]_rEPzM8nyF44f)FF~_G+G(7i=-س2O~Ȧ'GZlb!m3sGpe,cl<4$92 kSII>>ur9A74@By;;30uʍ='%]O&t䓚Jx>o&]L;g[rL>$̮3>e"?%H)%;kǪ(Nq_ٹK+:ҵgouM3 -t*ckOƇM"FhrռjDr_Y rbfQwI.nDKo:_{ktv#~{[Ohsѵ gnސ%F1sh>nIeҙl6JdX26\.ݕz2f"gRx2Kݐ$zbXSw+VhړK% -%ҟBDJomqhqUƄ):aVF^ғ vݏذ\c} -I.vŗ1Ѝ(, | ;` -*٘ݔ&x̩'hwL%斛-7^29:yBw⹮x.ζd[f,f|Mh&O-3ړI-fO2ݓNn,zNOI7{syzHT&bѓȀycbļ[ސ2Ex(B+#Ӓw;$LQC P-]Rj(U> ŗׄfOen'fL>TY<\qݸ^.+6tn>3}/Idܼ]"8\W%/gV,Ro𽲸" 3Pnzc%#n_Ð0/E`뗫>|hYj'K# ?lkTӧ!R2?XS&=*/P=[lA1 ^xxvi]u*3tXSty-U Αє19ZHyu?Jh&Z )`#^𘀧a\. êz♐TՓτ썵Hu;r#5kˠxu$Wz熘 I腑W_I$,]zU}+ddO ?Y7x|YSe]x]ZUs#!6\{ꦑPZ8jv,8  cA^AP3jn:¹QUϱ4Cyd8/.hlZ_+jAtq:wjrnẦ?3mPV МcZP5E3lwD-uޮGj=-44,ފ 9ymiF=MZt"YNZ^a^ sxy\Aol׃Bρ8o$ e -Q/ E0t/DyWc)l "S uhV qoDemާ1#ZpBj -4`يTlX<ia3 -%ahK=?,kWzP+<]Ou) - -}$,}{H.m|U;E^k׾OăT.Q<3DkG̙^/S)VB?_r69:}#UzƂHSYX) 8%xK-*+%qS\ =*>,ɺJG>'# WJ>ݱI|c-}9eopFɃנAtNÎDثs%6^ `>_eDI_Kq7{4|yc/~д7߼ʈ&Ъ%fjYhj3jF v/Ճ{B{-$͑I~_ .?.y4nw4'κ2~O3Ee\W. 1ќwm]/躿ckw*1[(nx}KbGԧs:S>F R P(On7fʴAtx霑WoOPf<9/az_`oXnV;Lݮc -˷sl "Yۭ?. -]l.˥f6ޒn3=x.ڝJFcƒ|w2̥IH[Rq0 ZqPu\0[&O㠔N;=_h e*t?uh"=$0P6v`?~#~[*q VIݶ);Km׵ƶe>y3 l -Ɵ*-+ 54ۏC*+ wFgh|ES"_1%a4>$_!Z7}3=oΨ5i -:ȶ(OwpU25Z3B`3iVujO0ӊ>P,, -<<Ŀx#taGb{~G#$ɽN{[g:jr$$IcD\GHa99BKw@髐>K8E.kH'?Ca9H }6Voα @DX+H뛈Gz EyBa)rmlZzDґ$.0򠼜2Utsax[2d1LW_:<Exti?.TL%/>=X?E-|,ړK,D+M%\f%ˤz2XO2erh.o}bMjO5S^~B:7y5TJ4ZT飤dW~'Xӽnϩ:o\͡aaȑ\خd,v'*VALR<,㧍둱8gxw㳚+(qf 5ZWFn2LJ2V@=HmAƧ>wmxx#u6<=08Y.Clk?A5>WC5,5")ļ8Ï2cUք ^e:氷Ώ0Ә-k0cs' 0?Ƽnbރ{1ACb>$S? (9yO1Z/Ï3ZE=UznVuCidN{n7 Khu8~V rZG"B`Xt=Plj^|~ lКX 꾎4h滰'wdc74P8?ozÖ&bV| 0'*^7/ -bF뼷]R&!Xf8[5x;I rǥe8V9C#|>zXq|&Dx|X>7C/8(83j#}ɤM}F^* Hn7Hk׶j~쭙8}?p3ZS8}?S⌂+s㌰S"h -PѾ7դ3 -"87zn,VUj*?'.;xw㌈_xK3[[|[k|wH.gԏc8 MqFA167ΈqF7u)((u㌈QggԏrRQЛgD8~⌂XNqFBn8~++w㌨?gD3z2Έ2Έ2Έ2Έ2Έp3"\.qF8#jS.㌈G}\ѹ[gn*Ok+(#d>'7;_f*MkzSEo/@-w#mit ( -7|0Fx߉z'v*[@I2#`}؞͸z쥐:Rh;=#)})C\m.ɬКטb'XꊽUᾠArhLfG -sk -"Z Y`XOs\E"R -/^<\"n-CUzSa?U!}CS[< l_\x:|7sOq>h}WXM u9= 96[ 󇪞ԮUmծԳN:_=ǝ6scS{n{nW{nq߬6v|@s{wq.\Gqqqqqw -\w/0ou#nD0K3}L`.RW}$Sq"n(q92IxRZoWgJ\mXZ__~7rKڂpR=.咔*wx;,ԼpvaRkB =fW67^a;$kq?17񏵞g9KO#~cmݍim`yp!mƉ-eq!#?%?DH[keB8n?t;K0g3V\cXc¸W)oB״:~ժf_9ۿlkf̆+e23k ~2#Jbz257--0ӗ$akl_3~KwZCTӀfV|WI ._Rӿs8>>߸/m +zLʊ>pSn|))՘cKIgg?cÔ-3*cs73ndo;i㿽Y^RnK 3i6OF¹?>ܩaJfӖq9hk7ם1?KJ]*O?U4cVfv}wm=@8Ԃh+Hq)t;'|؏`"Kݱ Ck@ (+5:|bأR%uLk$}GViqTUHB.v}4Z< ŠNnT5f-. ?ORϩq{U {F~M?6ٺ>εFN5_6VYi6l6rG[MT(<6,I-=;xyNbo~[*Q&9*^4xF|>LbĆx-_hU-*㿙rОY}[3%+)/)IL^)q=Wzш:0)B@OĐַ{IWI] V)h_(](! 6,bK'䤔)رAj3:]JbXq9*D$N+wŒ!71spn6נ- -c6My[ -,I740H`՗Dc rm j ]Z/p[Q<fΊd3e=SzwL_"y-cU}Sj}Hϒ/'՝r<*aO4GʴȩNC>O4.{f9u5T  4a%*&gnzQߍ;BVZ.RL'|'`l#DCv$;iOvHr<}THM-R2.PEqϞi4h,M[4,'N^Kh~H;[bф)*:B(ӒTpBx2SoJPvu7 . $pKrWzQ𗬔|PxvԴe,5UEˣq8:.ihdC qLAP}E(tP ,l\w#ýipz1Ho%av' gc<%ÀEqe4 -UF+9 --jba/s[ڪ!<>JB_qH, ̸v?"?H69aɂrH>&& Jmo& ˚Ap; >"0>B J$x|=Ew5Vl<;N$8]G xF>K@wx|2Yku]>{>5nq} - ~>>N3+>UEZzH> ~ '8!m/" |$N%B 0ͻ N;@b$x'\{']Dǝ'6 uN"x%k _\#Lpͭ#b7:w| c"x/o"ro&8ů'k74Oo#x- #@#. 0n7|?@U?Hp9Co"8& |5 k47k^Hp<]sE_Gp'o"x^E ^Kp\FJu:9r׫ۏ8<ؑ^۶!{0gR}ȫ5@6nz;^F-cZ݃ }''=R~!OGP?~B? $'P?A uyOOQ?_F'/Q? =tпG~~B'{{PN 'O?~B/'稟C> ]+t:92BO} g=DKC9R/Gڍ ] z '2ԿHQ?o@GnB^ tA;86ON~Bw~BGP?㨟=w~B߃ }_~B? 'OQ?D'3:~zEOQ?UKϴ<oK!Gb_}fSϞ{wנc)`mݐ}V3SޅDǬAaU{f}q5[2_sR MA0DeH/{=Oy]Q xgnu){sfT=^0a6z b:@zQE[~|h(WF:BG%PZEO7`y}!Uo=߉s {%l1;s{ߪ*SE9υ:Ob^ |ʉԝ3t//NQ q3Iy_Rgr<3t" Ngp8w#)x?9&sfyUKivƧY%D1S]04{,zs}(ox6Ꮟb0K Ϯb -uDy{$y7f)Ays5>U^Y^sK1[jן Q^YH8bίCg?7GigY^_Q\e/?se,ogR(U<hfyUy<^~*̝IP^^ps<9YkSzZR;_uS/ߊT~m=ReX_{2T~ į"0tmgɯ87RZȯֽRNʯu_2?W*?o_k_2c'Sۣ5S/߇/׺]/_{*?Ϛ&T~~פ=ʯU~I%g'R[J%=ʑ^`11]pd?}=B5e=eLTy[XR|*wu$ﻩB'd~KR 'xܥݑ{F~# 7+_,k/'T~-gY#d~SyY;oE2kSY[oc2 ZYK7:7zD/EB:?7*~DJ/9M˲#xRZlk6ݘ\G-6Lv*@UB~Hגc}<1|#N{:\k '{ k9{pVB\;p]G.u~?'pu_ +u).ϲG?'ۇ`_aO݆9c8Ϛs_" nn%LLfN@~'??0c|n?7Nemo@˟[dW ~]G~|; `{βC!x}2"<5b>{eձYL Yw1#βޝ*CY=](b'wVgY-Fٿgl>_ϲ?Fn au>CoCf{[gY -R>۴iou,J@S!/AA.k})Og]+oı EGŃ7ߝ9tQqvZÙvϮ`Fj &V ì,ʹG/Ed]>H"g\]d}5W⾶\"C/ -c> Wċo,V ҭ4B܁l ?k X 3:,̶ZEBXǠףh, Lq]3;z/ mhyzc֝{tnUOذhpZ}MPm.V[UFj o"6g#}MW[#i`vv%Bof;^Kԙ 󠞬7zz'+L<4ZrMU]/"*g=X|kRd_W3_`N%?2~88.8.\ao /x~2d{I=p0xE݇1EvO*=O_ZdǠ;7E ßїSd=}VgE![jg_`[YW2}V[}蓂 00=e>{/w^xP J;"ϸ?cr1rv|CЗ|46}6rqv3@Ks\+|c,~tiw{x ŝAYM.<ܟA~q3vix(ftPW hp=w{w'ߖkJ -߯k?q' s#|NB4(/t+_;,J(}{ᷓWUkNd!eLQvΊ>k^ y͍~S' :'.(K|C#EG9#'j'EbY^xŋuRS\scLj6+/Fֲ uˌtScf \ߝԿ}]oz';?semxq;\.~1zǽ -F2}dDoM)nΟ<թ~NJȾ=CɽgH2fm=ڡ}>vyNCޱ#gkˢA/MYF|fL -ٮ\ȯu$Hl%;:6 -/ƃnLGq|̎.@ڱ+<h[ߤiiӬӬc[o]}Y,#_b" tc6&q o5r4tZ[ג_{2yw@~$~qt7)~Lںʓm)-1=痩zb}G:UtC]+V?[lי]F>fGUv'_(N7Da{&XojV%)nEԲݖj8\YŽrW;ӭ҆RRXRIm>V_2tF>V_{'u_r?3_u_2ݩ}-_2gR~Xd~Jg}Y/_S*~d~T~`d~#jAZ9gFR#N׸5n(yܨG+|^59cGd2̷.ށV;ɽ ^#?H6z^zͩgY&?w}*Y'Re^zߕG]/0d~kdK7$7_2BRd~DU/~,k8L˲RN{/7ۺxߘ~?RiCٖjKe[,W$}6W ry_K*R{G ~[RyssO':_(J~r< <,mam:9נGz.{g=rg5IptMr\/쳯᳿뗊vS nۏ#>y,48ۦ!_zhGEّmt}^~}y -ۗ,_o_o_oo_oi-}OD-sEoqGg=""-R0|/5OP?=re>yfC/ nss}pUjasQK -G`rLȋռVveL`8gGY4&>n\/Pfdc(K>u2<Ӕ{yo7bؑf ؁&piw ߆/a{o V;چ܃X#\bUh6Hwp CBdqjfgvQl/括_,Vr,DzZcr-|cAd9Y>~C֥lׇh?w %ZЕV#y&/;~&)toBZg_#pcOA^}pk(i./npgw*?zp:7ݔu5_֝:LWuOeYw'[Z߶|HN'g'797x?HFK8g_K]k]N$^{F|I9|^kR.p7/XAEw5/,>q͸j㳇Rj-7|TZO?El%ԉj\3Hoy}S2!>8P&ܯGq# E)>!ͭEү4}G(eYւ.v~=ݥ\I nٲ?2I&i,k:]>ڪرfy[(b ?6ekVe~ٯ\_ -E5a+4')uxxHk/2b7)s4*Ur'-񻀗T#\iUcEk>H+jS|4Jc$>dbĿ o՗ -&^> >C+%~=KR5'6x`į~v\W(q}*_>K}\[^jKK+nk<((| Cw{Q߯J75^@7AiMW'['~XOA- -Ɨ$~o pKk%WI θ<=$:'isࢗ7(.R[OaIa{q9'".'Q:wk|qoo"]vK=`UFvIGҮ>S5=q9GX:2y [F~KO7w`t+|FEJE>^A|S(_j -}G=%񫀟m)|\#?q1H?Oܧ 1oQx!F~L'Pxp[>!Y C(gӀ!q?6wCAI#_2\y#?W#'Omw:'=H?X/OM{į~;|~ /Γ#7qqį~#r> -xC{/~Vw)}4?@_x!/ PÀ - -nkIewC.+ 5^@w?xRF~2i:'  -|.KxŸ~Hg*+|ܧ?·I\?*~ ~q^ŏ?ʣ_xaK!>)(MT{J#?q,WŹw/#?qsb'ޢya'3Kzd$P'z*ν8#?o>*:/>F~:.*#?_ |h*.x _ |[e -?x/x ܣqWUz!PqtcKzƃĽ*ޡeC -w[ }*>9[o%.T<}kG<ѸU<>~F~Io5+UO{U|xwF~x/|S<zțjM5M9[__i -o]#xwSO/5r+=ȟqUk[}s}w7 |_+A#gfی^&#?M5U Ʃjff^l'c _1oSx F~I8uS{n ?qSooQ :N x6__s \ǩÁ^yOM[>78/4JBũx].+8&xSE~=໌Ľ*F~Y/r/mF~:|f#媸Y1+){U' /H`6 <гg{x6ݝmX@y{Y&#9OM9!dڥK'ΎI+ܤ:oNH .C[[mhGJ>Z;8q|pvW@#]LƱR_NCr\o>! ,d6}qE;/=Vn~-:<.yJ?ɳ҇;<Eq>-e|oBYϨϫZM qO 48-ZgK.Qܸnky#ve5edB>CȲlڼY.ģ@=b?ߗt?J`.G[ֿ$Uv9ȝn,q9jRmcY\ɝ2q-m4Vz>@GmFW+/7w"zIɷGޏݍ'/|7C>$!Tn'ּu'yw3M.,u\/ʺt $MWzgh4ThKE^7HGܣ}Zp}'r{Q' ߂XyKo>}G釤O=^!}| A#!/+yĚ݀OC|Ht#?/ H^ 9m?M%񼨥Nہ3⹶C(:Қch.ow~pyvRQB>kkinۧi$ݑkNa 1&?r$efZb!"ϒqϚ 7&uEF}UqMidQl)Gc|a -ۃ~]>~C}hZ@y"1ų"zҋ -pπYĉi݇CwiHl[tމ:b>gq [#w<g.ұ)g*1-~gYZΟȩɊR>EFƵ)2(Jk^hZF[KyCЍ|wgtճNSlNsȷ!w/ -g}\HH>)hm}߁1R;<ƺ<16yhj?tVr"ϊnLxPg@Y3}Ә_>Դ|n(?UHyV<4 c_iMK1EGGO<(so-VY;5+z#txwzgCKI4LMG[mc*ޖ.&voG^ ]ߓ9Q0.{mi⎐n+[ڂ)&]!^7ySCoxf, - :km -uW=H!צ:He9VycWcq`Mm].|ޢq'6/rw6+w(i͙Yq}|+}}ZLv!i=NQ7<3o]M9~ĆK̩G/nzhw-|wkOMi{-̕+' uݼCX|G5"o1ݰES+>kO۽څs;[Q_:ED^r،s}w8N0dI>k ڰ 7M>}rG?=:@k;؊ Z(߳1>oƈbOd ,g voW %"(<">׸- o…?7<Ul7 _Y~Ur%*w3fɊX3>]#{P ƆSlC] Ym /yY[K~ݒߑ#@>o; --$M8yYlX -Lz7󶂷9dc0|5y:F?;Ӟg/mgs,mk9{wM͊Nc[q:y/k1v~N3DX3爇`G;,ɉvN~5ȃ>$a}'B-/9-~F.ƃ.t,6:8mDKkaX3FAxӋ-BwHe̳q̻?707m,eaƯ 0b?lغ6Aw5҉mHݏ> -\ܕ?1H=S6_5fF+e+/<~t$S؇w2͊w?*6i u67_tƤCzOQ%ȇq|JO0c["6t'_rЉs|vtH+m}q|_cS0a7 {ak.UsA݇XCFݥ>l\D y9^v>ޗV;t=C7ۃ>HIoOFĹj=^!R Qˏcpuv:]\X Ŷe$&[mSbnWǾ\50T^dEo}8G+aۋs?Q.ƙ|O7ꙩ0dQp/c; 7 c^:[Kb\syD^-x۹>VI_08"եюǖ6unow2?-1^^F/fBnugB?p=Au\{lcB.д1k7i!1j[xwd7l5 oHE+˂?EW@'c²֑u-y# -sv7z.Ώsqe-zoqɽ//lo#c VE^T} %7m -=;d-5QG;ߖs 1w!/ǂ_#oJ& ́ط=jNetL g7/2V`^o5*/zu4>Z-5Zx m'9FΧ Oqye,k03|l4 N;v<:X+tY-DYKK.˗9c+?/SՇ2Dq.ӕ)a|Gvˠ~Ms`cUkC{cj'T#øN0GlN62g{ʕ}+X7Vuo۶Sy\rLE=BcK˞D=#ċr"bm1W޷e1>H8`tJRVijRjm528 W6tjߐgh^L%ڎ>^Q[+n*lWz}-cʗ v5Mxͺe0Ne7 /g^\|Ռ6/8vꭌHgoCdc Wx쥧DDPq)^5߷k%õe#kUw!=  Neگm -ۅko&cl%ȧ+Ur'3` 6Q0PX#[J ^aV >Ŭ}[אoao:m  _+6ԌVOܬق+E+Ϭmyv#^cOȵdIHcs--5(,7ir̥K8whENƳ0-ck n 2'P*1_[q;roдEVQEV$#48nɶOqsu,_VQ:ؚ+}8 !MnO׎r~ O:'} H]w9!?_6M=ֈ7\O6I [ѷa#`'xvqJ7Q-;NF؏r%WEcLG63*mCci=g2pkW(;>̾ǘsSص>MmH?-}c=1ok~^o>Bt~N u~g?ʌܧgϡt/`鰽sa,j;Niz4|Qm4o'2V\+cϵ3pVNk;b~ ESh; |9n}ӬϷ`錌PBK;|ާhWlrweuS:6㧎S}})#K~kYlqtvX΂]}Q83h~z8a1umqm!G_Gp_OF?\]WeeT75%f~BWq23H:ۦT=|CQ-昪cu>1uK۸>^f6mqegE2.5,*v <3iAܛ]={&-c*avs˱f:J3-ǙMwn|Ygq\ؼY*?}Ծ飊&FOsc cmmA.C:[X k'쫆A| h}M ns_(YK4w9:hQQn1uXνc.kKaa8VrO 7zYb>{XS#Ҝq?53}&MB"瞦/l"3a-SCn\?DGUm6{yqw|+!α!cV[ >tú7CxvF58{S^g)]dwB?uibAoD_#O^agmtYWBqͬ+ok\?qaOwFU(Sr /ǧ)?<)i(7g覻cϧ^TurMi#N - 6LHGrx{uo5F1l5:]˧̳ -|տ{pլs7g~tc``֗ -6ihwKcH߾4-R˶_$纬j{^>]^}ntԩڍ)c|6ֱN~6g&Ɗjo AQqPmܻ}|ݕϱk?'&ΕpLo)rȶ=8簍C9|a7w?E9[XflL,2PJ~=ylG#;{GylKU{,XUzy/ZQ%ٻCr?99ReR.MW˓>\<_ϓ&'ڬbY'>GwDb;>;I?/Mor9bɉb~2'|>՟ױg]?TgFS Mt?a-0,;S;T{vѸGX.#œN.KDuJZۧmƮ'~v7̮'h@`y/g_.D:RuƟ~qG~!{(3C{_L;> ݜ$7Lg>(-j>0@3@}8 Qk2\v<_!cՠƝn^̽MC:+5["߂~ykmsx׺E`< 1?bc#elGY OQϲB| 6 8|C|.w_F~]50t1}oC#q: _`^2ip_et oE|h:7'PP(t7T}ZJX_Ffp~8EiʘJ7]>˲Rz Lxy^Ω{K֌>8#(6{T[a]]0;'iJ%`-֎ωD[c_|Uz"jVwTboPV 9ӯw/|NXj/ȿOԿLOh7;{H[R4:z"V5 _@™[^?}>;ztFf~x3Kv}6>ˮ_[[_IoZT>|]_' Rn5>P޽B}y>!Nj<~~Gkt'Cjf }|i * G6¶Bnh3Ɯa؟7kveg//qJ뱉+zc ǎ5'kS>K%9} e߉WwN> TA #U;Z_;gy6A;YGfFƘ]w-]ر!#Ђ،h'(-:{;F5n /rjO hig?kzN?&Fli|ut,_~_=Ds]f?ȹ$dW1,}^ni` 3dx1z=J_軨sғi)])(l*d^aގU}~ܷ-!쓜grn4 ;U^oL{lynb/`#9Rs mP&rt?Ј6 }#hJrz -yzT_3[Ij1x$À何mL}}u^}]_]hɾ6hwp^2ļdIn/a51K.;e~O~55Eڷg?y8A+l?EC>ߍ9goT>O%>P>Zo BYֿoq=*=.pƧ";a|f:\Ve]S .~ίfOR�±f/asU">9mq8 1hh."^ ZGg", -8y4&fO#P.߃Dzʐ+]מkyakam~gK)V/3>}콱Kq -e4\'RWh_,q?XC轗~qq|O[{c>W(AQ_FW|^}u9vlTz=Lf^%X|Τ4j?u9&;ȱFGi1=W3U`l-(LWK_ccx?34 /0c̖? Yg}_<}8cA~}o/ߵ(dea2s &\K5/OB'!GggܙTQ\υl˔=3 -rz~IhB -$f5^eΙǕ1yyWas vls^Z<{Nh7HG៷#"g[j9UMp|} DʍEd "9µtA[^Rd#bzȊ@>ct}y(o/mA_P{\=GnΤE{0=e=3Cs<S>c[Uu[>!υD#F!=+DLq{b/ ^FCk3'=3G@^s~K5sq|E|w=:өo39b3ǘj$s9ws CvVu,5}r\Ŭ+I~f+w; }פ V`G{j/C=S/TKS}@%ﶂn=%Ee1C>Ѓq-NX[Ϥ@+~X;W$>t$|7wt*Ld|åw}y?\g6wwN;MYYeIzXuzX0F{34Dok1g;(n{ HubjM+Yat}O|u|*8o;Oؼ;UI_xp/$]P//G{w= wGi!hkOEM㳛^qol'M 7׳zq yOgo\g5IxK,ȳM(رN^\ ¾ָ}ɣJRrnQO<8b-$L}A!}:KyH+~yV>G#;ݓ&HWsm2~%.^ ~p }2b~TxY2BBhbR9 E\Vc\=Ew^KEHikJ{auFY Uuuf}}u=mo>?R|DsjHyG;-]r쓩`vX:I euEw; -iW5c/pLʉ~Tlϧslalk=Ʈ /9=zl=syo"t>Av,˜@uކ~ini\V?ܛS pYg_᝔cF;+||kDS>-QX7|>beA9<$͜Y̤o9o}?Kz:'3܆wPhl[ cxxN!1SEdGqnu\G[u-}^ocǎ }SmE<:]0nEnڟ~OOsa2:\^,{@pj{S}いQa"^ @hu2^W97vnD;*/t C8.aFx!sq~#i<:jT?kGv<FZzL;L\ wDt'/o9ϢCbAtƱ;^tg\y[j]jbgQ8oӧL[$,CE c}3| n®m@ZaOm滭M݆vo83\ܛ/;yEK-OmN+}zkOI+inil_-׺cѥۭ1-nط[f]]e ܸrZz/:Mh?`l;g%q\{#b-GWA<!6=X&c|NgKKr~g\y|_puNHƚ}T}T"p-d*/j) -Nc oH?[\Z^=5?>nN&/z6Y8|-ʻ'" q]{3cǚ0'{o]<{|o6m ;Dsj2W*J+~cG {b +m7nUHf5e:;lS瀉Ѷ?N_[ߥķ-u:}s)|G}k%m `J~5w@dwg*[pX,[4\_pzq]} ۓ+_Z?z 2Qa`<^rs|e7.qKbow!vYG6K0ʱ#߃wra+s-s/4hk9ۛwpA'x_vЕ3nAuo2R[|cs2>/x+仭琕C]ĘO?dz9w.| ׭=E u'1:?:~ M_\?:r Khĺ)<5/=8: vt,=w%;{x՛E$/3w;j<uiC]{xyKOSFiYjᢸQgc;9Ӿ>휻D߆WӋQ}8; &Gbn~/wcuag&=5>5w2oCZ@m)x10D"W+h@/ܚѿC3-O|DWCfB:HsPovQ-Y/}N+ -lǣ g(a^rGk7ߏZ;Si27cy9 8;7tA}kp}va+srZr-y5-[˹'5BJ=Tlr}U}'-y5h^^_J^nkڐ(〿o+}Z>+5-fKɔ1%RB $Xm8׃d0:u1&>16h݇KE5`<}}觉}}}gblKO{<`Sf5u o,{yNiӞh1hE\W7]^BW(wW>oe*S|mK~^i _eZQcq}qzN|sٌnYwCw7DbĜ Ǒ 0._0NpeXWr/:7 ME> z3H܈ԯL-r?=ĺH ~kߕ#(a]oA.M%]?c.I'IS\Zѱngn}ӭ)|}, jrr8uZ%f9}W'ozq-l{Co_D~h7_.yv+ci$v˘S>#?wYKYzOH]Zz')--'-g#sKIm?NHerM./tߑē{LH_v;1X h6or~㥗.ξxV/̍WScu_ɳ9-qNȽZNpd?-~-|z0m9ƨ~8XXqgSw PDB7u+ڛzVifڻK|gϧF/lkͰBGȷ;AfQA QO{f=ht9Jj}kZ7ڲ1k9.0;ӣMa-Ǒ6Dg_ݞմG{oDqEz6Llײe<7ռ&&*xvɑ3d>LՅv{2a;W˼yz+E??莴8Ȅ  -9JcŸ9pO~oK\X.5ur-lQ: -w\9֟mtnҽ}'kOc%W->-v[%==:}; -O>oQdtړ;_!{둖q~xmd}#OW$6l`smlm ? q߶ %]٢y 3dt~5oiE6`u׆Am*vf>1VT{ч6i 0 !9BĪMl*S_zN Lng% -g3Wޟ\cho'-E{3\ -y1fϦԓ%ۻmۗZ6ߎ6>Mqm8 x~XLEqכq [qm/׆oA쿵m8t]gڻvc̀aGeѼ75yѦߌ|_||gJO>_8;ߓq5S~u -y<'%)WopU^o6=*ًqݎ6!(o5}-ҞQ~qi~?45͉g._4;daǫwV nzFA?5Cej=(cWt. iKamBOZw'=ϣ365y H.*-gEb.-)hA = 3f v>kMKeaO# iˏa6=|!FyEVq!㡳>fޭoީ/oÿ;5X[^1oƸ/KyeSR}yp޼:oyME[[7㪫TUx5*jusJk+טּK*誫Jo(E֪y5u:.Xu}żYuo+Ս$;}eUŔq/J**͚ *xvek7VS [kTLXPY^qɌP0S)7u+ -Q[5-]<2WT+UV,W&TYV_W1 -J)-ӫg΄.+JVϨB+VI5(S^=ofn./Bh*JD6]1]bPPTż`~+jf^zTy5kXBVGX*j*g@ ,*jdQU %zͯ6PAMEm5UYR^ ZU芗."GϫPrZ^ (6&X9OkwZTQkQYM*_U?rDw?'^W)}U$^ E7dS.YP,+&;J)फu^S]gC)G=E*W[b2r@8g,/`%ZxꖆUl5uRY+O̰=ۥb R%J5y)˯50ϜYQ]C_EŋtNjRQ9kvݪ]}Nަ/+/^h(D֜FKgT2ހ -.ZSzC_^;ƛJJL8izI%xI?"9+/GyAϝQUZ7a]+kWkU9of.q_?B"?Ji8Qur ^KS+U1 PT ;uqw(G33*gBE4R])G_RΞ9R;D[u%qW'_HJG{8CyAG}CʌnZf}^&) vJ:9D֖ϮQ/}BvR_)u+U2|/b4)EAط/hڹY+&#b-UԣQ^WU<qbe(16Q:tFٮU\?;r"챈U=T,8;跥O$ /@%"Ѫx9ЁjkMWe;hv& uI@<^rJ?3*# -@җ2x//u)?aT {E6ו2MޟoͬdP]~y  j+~ʸYK-R p2tŤI~\94t:/ꌘ7 W@?Jvv/Kķ~y3`Ϳ)]qaV1!bfR_MJjXQĵZ71ކ?sĿU)*uNz -uu2t$~N+jn6a0J/653+T5_%PɊr2o;sg׹U^NR} έkp3uڊ:/;7a^w|/T+Q{2\4e]KL$˛ Вwam䔓[5+Ps9" 34ȇ[\<ڂT6[*YokRJF9Yyp~p5WU%z᭞ȯ˯3MIW38_JO]LŨ2U^^f' /C{iL׃Ma:TSQ[~-dIN:T*Oò*T|u)i%WWϛj8`?OaJzd(Ô++f:ʗ2Ɂ6R =kzYNẂvbmZr SD+KLǹ71ijFF -oG9T^`qU+=*E9*}FUTbgx]5*ճUIה0T-aPNF!G ۬P2 aZ9kxEp ήY7ĞSjL;+lccW^RKjcUf -_b:xx#)n)@Q]<É_qU%pZm1ߔj*m<ĔePB=G2SSs+kr5&nR=afV.R$Jt|=y5=BP9=Pv.Fsqߢ4rX󅹜(AǹɅ(@.8tVa/^.H cf M[QUaBa:1fq;#YÏ -=t@ѵrHILv1;\$LhKyZ }|.+ UUeݗ7u~Z84s=4"֭"E7kDr02O?ME8r>Y.Uk,K!BaH[IJT$;=$`\7UCFGrDŽ8c#>n~MeuMeb8A_UD_Ee.qҔ]ln>e~ I%.]DRKATb+}qnkNgb4tnfMEEWd:IX@tӾ]<[2^^U'FѺ-YwtN&ʯ[z r/ϓΨz.t;oj48>)SIyjjg`GT–#ѫ]NcYfj|KKKy$E2]%TWפwevJW uLL9<9ΥԻ!ߨiUIYgr*Hc1:"nθ3_U8H/4>뒮v_ -T)[||hf978_{$~q:-[tmKәn|隷`@ru 8Sݗ{7"W*#FV&G2]b:dȒ՜';>])4#ysz ̾;:#Q*?si%ĘN2]oy$sJ*y_+NtRIbxQrdP/Z9SJR˗ 7sK&;3"ϙR.|Jt_=_L0i9Ox !; |]i]:ZŒW):mY_r}CО:t ?'MyT왾B7(c\=!{xp}׭^cv:kG'3m;n 9È{A!08Rn}]إkˆq 0 -_E?0>0 nebl c u(Ӑ 8q0`r@_yv\aT:F;8`pЋxN%a&I ^/$>ègmmᏚw!}R߅G e/#cbvcpdN: qvaw -vk3`7a<߂v{]: z|V&S^|O)?-pP]2m'a!*uǀtVO޺9Cd0 hGɻ{hNB@ <'( pSׁDpm׶ -cGsVT~a-VssU+Kyu苠aۚip Έ!ff}F0=DBo-GOA~[ž?W \)ȭu6ňL^ An]>Hn,1ђc]$|{zܞaW߫%ycu}Xsf]\3R*ܝۃ[qkCz A ڮBڈڠŲqw9hWэ5K@8֣X9)<qu|T a&Q5cig}_߮SV˛~>'DOIA~rPj>U=ޥ+}QQ[ -kHTD[z 8z<ՄrE5XXZhz u_Wd7R03񸪻<|->E:>mP?+@`ȁhEl}|_bowOn[ۇ.1ΞYBƴ:z>5@X.1p̋RzTAPí~X2ӯ|jdQKm<Ӑ9d֣DHC('lqgdҙ#Q Eџq 41|D9z=/Ej3`wd?T2D^)jDSʻb/,)HDK@5; ?)Rj,(,)zfk0ϦOƥX9Q -qgqז"p_^ rvP(y'>ޯf K>|2~}c &oU?CeN)tP (~%ѧ${ޤK(qEewݼTlaKʱhቖ--Q2smh{q -\7!+9 IG{A77NG9k -tU-ȃ0 !@}-1]>xF`}SXvyB:!`J9 -VvfQD*Kw zA:8IKzBϪ7M='8mּL5K+ߒ 1@lzRMh"+ /]OyRvm -(gW@Ч|))3UOsC!dT%sYl6#15˴iCi]S(WN^ކFf4p4,\6nrOINOiQ>v4޼C4󶠉Q$l]07r~|B>C%$Ds ''SɲACLy|q6 ' -/؆Ep=&=[8ڟ^نA{m8ڿ<#6:;ENسkMainWv7(Ȋ30D=sR9iEܱư뉏IҬѡk $Sw"쳅la alf4ݒnlwdjfc̹6 ɻث -}ύs_}uPAy0IV%(%y2jC h1OKD/La7 I"E"}s2kAT%9172 >b}1(Z-o|=_lfQXgnݔI|Fg!%6,ҕj Mj7Q<.#k–qz^O?^ mT$@dXb6Q;lx*H:\ܛxJ:P.dKE{:<թ>zVuawfӾcn./.eȪڋ ;(:l1bd\Jv'%23&Ў<ؘT ȯW=tnx'e4vWZYN;>gtB[wȡ-H5 Y+E];pG25,zj} -;MBN(/~7T"F__KAsTfj2 s3n$ۿmƈr"mN 6+Mut̕p`M%-!SV7@:wƊN~xwKiQ'}Z`Uiφ|ﵩO..>~jiQ<4-\7bhȝS-qb>{)h]oF :̯djzO~E -ᣅ]mn":F<7H-b+Bqo\VD@@(R/4 JM*,k\T-653:== -/=!\!n1C+ .*xi4uw:>L7 #`#So7cO1m -!qFMh^McZ9e Tڦbp?2"{ɲ҆hylO|wbWGi4I3dmq<]82$uD!"g!ko~Dgu+۬?J55MɫSґ]^r>^/F:Ke`.aHi ꉕ4ċ[ͧ c ނ>}x]0}3+r"xO~/uxv{v|DMAKoD7W0GǢbKzN,<>7ׁ-cMhceR?FtS>Nz,bXͦyqd :^b}2_['= !aceK׋>r,-ݴ+CR~Yy'K}6oY3>+>t,93l;[,Mwϙ;?R, -{J9("Ry]e8|3<^Xst?o尶 @&5<ٮIZEXvOt't=Q+?\! (t -ߋq'j6-;"w֞E3ɛzX)HsNVQ#GG4"̬qMizR<?Y{=`~9t,{b$!E }}YC}EǏ=#;@_uYw@{1E{K%iMWU.Ț?pg -]ÆQM 7 eR_t"Y{%vԺ.8]`.+da%Š_4IJCx٫X}bV_8U1cmqU̻[)4+v';?}NChf`!0߮0o񐍵5Ɨm,.;Ux(nKCvRyPy2*YFo5qwYZ6QKa',x]-w(elz++S\x]F?,VǕHҿהiklSiMb*hTYc|SZj>K}NGXzu>ǞEn𲵇m/[rFj90|&k+aGxRG*lE`֏I/6㣭l~r} ?'d[OvX4*GH2#8J1:yʣW=l7<ںP)TiڐuH)']冃O84ʎRVWbvEVlh|KcLkWLJ`#rʇ6N#׊-6x1wuuxo:UDZ0C RLY=A)zGT؂<1+r~{8YUYB@/G)᫽'Ui[vLnꨣVhl:?,aq -I9ѣՌ&IfҗcJBSVIQil rWv`P2ߍSEڤ5Q'G\Zo؈Of$|íPt>\׺l7 ;؊9Aռ_+?n”޺60Vg&K& &aNYüߒ|շe;h²K^U -mÏ2S6U&:T*>mmf*5wßl7HfδA]e{LfiMo| .:kXo~Ab~!I7*L0tQ2Xk5;}]]MB|7.UdL,r<]7ۓd02n4mˮk' ?j!c.k~ժz?tU4z _?8:_k-Y?iY[`l\V+ycזW?ؖcOZ[Z-+!CTM80)#ڂ! ?a\2)ȖLqC0VqϹ?]3Nۣw}w}rW,4oZY*wy^].g̕JP;szSXx}ƵP᫝[zDJ*{/ޝb.\\@^/.bH 0: HaS90BDhP#J^A\ {S"ړI/e7ZbE^VWl~4ժTjHJ0QU^o*EU^;⪼/UG%م~"U^?*Si-?9tTXՏF\WJxOL_!u5~TX"6|1Q 5QS05cq5̐+W1y8]FK.YN.!E?[QN֒'Z&ʩDFt0kCSSFI&溪}?*K\R?SdU^odyzW*%w'%D{sʫq.IVU;zYN( ڡʐ=f-⢼^*_"˗gs$τzoE@v\h*eU76FeXGo"YGL<,5pkT;K˺$`#nJ)S{yu=#/ܒ۞L%VR+>˰`@%/ B.Ύmx:ɟ P>΃.~ 9_Age?Ʋ/'fǿa6ަ^Eݩ Od8Xv|qٜ߁<yy6qasAqvXv38M6mwM}n?> 1m'm  il̞=nچe?_sWԳȦ?YdcyZz,i'{YvYv#6RM=߲;6&y6ǻ>nsmmsks\SA.OY8l&llU6|ӆk69zmnSb;6ݣ6.~G~bLL\{+yJ# sL|x }b^_,bc%t|\=!t3OX$>tN -_"uzP 3" NXςrJd|*$MgpD*(7f3׮1:";kj{c˞cBz+36tt!d?bHE.ذtYO$4IIp -o6]}D b(<Յ HV- ~k28>m-Up _>}}ф -E(Ե$"ݑPT7WF:kર[;f@n5P 4>-AΞlUFlnޚGpg&CFGA/jeӨVR'|`V!3໑ur \:ǧ -+)u[rl(|k{Lq0/va+$FkQt4Wzߺ؝X4d_F1v}ILUk~RFc%hpD2:H-:/e"gQdaT#vbFDX 2+sIFBZs oPl"Pڌ9][()[Lc*CM˨Ӝ `'<ݓ*Kv 5Ƨl8Z<E?P{㩄1aέ.{rY/RZ+lñ] CkJfU5{D0hYjZɆj`H$ -1g7bқPf醔R;$7AҼYk)X୆;:oHVo3ӘnhZS^yaL -+]-# ==5KLW3ԩwΌw.W#﬒[ /MD>E3ލ |?nqwF$݅VMj^X)yZqWuf#>1N*ԝ'~cǮZGwL4Y: jylMH5sDs,ah%#ÈׇS|k?D`'6e?4T a1r>-S:F5{uzAf*\ dllBC 7֕?Lu-CLA-,kf&?mՍ+j Sʽ+Ŀ׃ESEUU.?~^a?OlrZG KrdqU/ mlɝOW_kE3W6 #Rww0C/?=)s==#u Bty8$.R6P9\p%C\-}2EzR) 8(5<hNԩ~HJǤ𒟈Aǟz ?%69v8~ -2~yxP-tN^~_[ C ;$~Fę ?#[Ã9RojgAN4|dHS+_旺m2׵:nGx%EW긊vC%8WrQ8m e㲝.((!8]S6J+ ~Qt.#a/#C?Ip5s9E&!zv{;JF)p\N} >Jp\AJ\D9Lpl' ^DSWk/Q\ .lr'8UBpzekJk -W(q\D"8]['8m WkHQWkMQ\1Ei#\¥j 'Jt $\o'<$x)w*|>j|%B$""x\N^' ~-OE3HpvWP &x CpiIpu/ eMpOV~,% &x5_O%o#"R '|+IMpvcL}', >J~~k~#x' $)o"Hp&G[OV)Cp|I7|o&t"-|~+g'Z{FถPN[gf u:U)sOcοndt\6QLn[9_poQرAL<}%m|;gd1%ÕafcL78.62<#`;=zWos\w8؇>w}_BRw `?nw /5׀8/seJby/vvfƖRew){U::A:1K=sp.3K6܍-3|V9fXca>,UvaF|VoMf~ XeʷMf6+'oWx>^Et_ow7c|| ߍ:a"_|:_|j||CI?+_70Y|n?+:t~?+E:t/x|E:?׼ǯ7M5<~N}tV?\܎oyo\3[x|ftR?+uf:7+HN?e'V7gYFcL?+߃:ݧ gb||cob|}:<|V:P9,|!YdBRe'nڊWʷF-2GVc3ȷW4Ytљ<~Vt>6gL2wʹ 2y2y|g?GgQlYC*6Yyf-09!(=dn[7x%H' rHD:MHːC:|"CZt! H!t iH@z1&S.Cz)HD4ˑA: Hg#}i5-Ht;k@Zt7қv tR}~7 C!w D~<ԫՅ<9fm `T7`&Vr sNJhaY6G7M(\b|X'cʦblosgNحn=evavӤw/>\&fal<`~MGw)~{ jȢ6>Bv<.W0w{Kʳ|] E[\fk_|zF?,+Pv:aehӆ _a[x,V||0|>0An%xr,w])W N%O=>$4XNҧ|\?Xu0Ǒ+?l×- {0g !r,$v=;R$K ߾!!J~Wv/ꄙ˺sٶ_|X7D~8sуQ0?^7 m!|m\@&`~!xagu;9&&e6"#{npˍ wl=C!R}=}W*,QQ _"Mz2ˌG 22G&224<2؇& -*Go%ӕ{+ wb o>}X<%OօgfLs?~0X.6ptݢs?6̩AiÛLV%TX1'G|"\d}(yؗMH.*/^!rBvA0P7MʎE[)FٶLTa z vq y,cczYv= x!6 d6 sv]l=\mE -o6L,3e滋:jZ3렟7~u~f^Yyh€9W>_ <$` !s,#_7CsVǴšasJmf ҶFҘfQQ.9 0 _aCg/?r9bqh GɒIW;jI>WȀ5ybӹ7?O|7*#eβiLM??~~T?}a_X[Ŀtk?r~_]־Dǿu"%/4;kC_yϺr֘Wwɓ\rtKŭTdF쪞1.ƯέpsݒqkqUe#XۀtǪsUV+R -ODZmDZqg,|^lFDzgıgYsctq,|F!>*8ncU2c;_ p\CDZrcY;J8n;e8Ǻ?6VꄧR|y1vyNS~QR2nr2UEzC%BzOMNz4H.齐Mo#XI23n<:J'[^]6^-K-sz%lz9=2G/B'G<@dѫuKx]NӻIϛ#w^e68s令WMI/#7^]6v3r勤הMR'p|gӻI/+I=4'=o)f;I/'#J~v9Mo%W˦w^[/^^\Mȗ?Q˦r3W2EJ~:Doy}/Cku3z˯)e-/T˦^GzNz)KNzr9hzS"'*eӫp *e(T˦7I$oU˦뤇 J~O.8Vc]/߳_gXE*ugv}S˔<龭e"/R̦^x<_3_CD%lzO;y 8%lzv Hg6X1;n;'=o_,n%lzpҋ_6Nz"~/ލNz"R 4NzXCz^I(I/u@ӻII/u@/'=o 9 ~AY6\"9:MGخ>x'`=u'8I/^*>p'=Py9 vþ2Lz7LXw*Nه}޵mrEH.Cz& >B:ҕH;.BH;.CzI#7O#qAZQH#݂t mKv t Jػzg"ݎRHg!1AZeE?| Iy_VxSffg9f7M+F;u3@2U1Pv6 sL]6G*]gZwɡXm1\?,L=1m2t\&̮GٛXSq c>.$ƱmcuXSqO_),x)g q:v3$ro8=Ju}]eıX8V|9m&/Xq8~y0wF_"=;ut kZ7?ؠbϒB+ފaOŰv=< C,wa%^P1*U#Ίa-gŰv^+t̮Iӊa/R1 ã *қcX׭ A0.L7Vb Nݵ[wLM*юa-Y2ۮ16+cu9xOYwa%[1t {Gל徧bX;:u UxF ê&6vw]iŰbXfBn 0#U,wa ^Ű1)^ѝIa~eg?&LvYIR673>ӘcXgKX:u:M3bXcS1QbX^U[ǰF0+*%t k9cX,OŰL:1>,30c$r#|g{v B8%6 -?UB}=İ2u 02NVQ[uim̺AR ̎_\0A˴<, oSUj yװ *mj^y5אtj61P߼yBb~s{y?KcLm߼y5ڴk~s&ca0bnw$I[E;u^VNM1Ʈ`;`hBR1wlSz #lNO|%]ujC{X`wNcJ``]-,K9܉%åY¬ _cL/vųزOUa*lr| -jTW6~AwzW1>PalsXqg2L dO8SalUL"`R؊ =if\(.#eq%>g\~~nŕ5%A(W` O72JAvX҃ŃfNpC[ǩxFlJb[^iB}|nSMܒ֮cR :SYSgizפYx\mΠY1w]ΘϫUgv岜1lW}l,gg5nr1Rx,gqEUc[> nWwS. |_<Ml'=o_٠Mo^\34NzJ~v9MIOuJ~8ɟ*eNz~Z%lz]{_~W/GrW*eks _W˦^m^˦WϘϗsM)'y_6Nzb,S˦'@YMNz񁲯_6{AҥM=jRϲC8M=*zwIXEJb{(G{E׎<]8+`&骳4ݫHO]"ג:KOӻI/1D"=uw@>Fz,=Mo^@6)yl3Mo=Qriz^'=oG/^^P\/^?'xM-)eA/\$MT9(V˦I(x֜^X~Y.mtWMoreWgp.gy*UgvW8iK6e^T:OwOz;a!=c9izwCo4LM/ 6hsg@z2Fo3^WE{. z&ҹFB:na1+ͰOc.OΏovѠUS8<#/bٌ.m EG_Y0Oo1o~E!#YKYg(u.% ~?>dUW/vKd,J-/bRm'l-S:GDj-1pIA+ϳ`['PAunUND u$9ck؍eZ|Dݠ{呥e8e/B g<1쓅ױOGT`G63̽,3߮7Hu0?X/@P/!O/4Xԁ}Qr˷Y技+Eo"CPc#2P^ja As0/cc|:WLdyf ytҗG5}|GwRqz;b[nSl].>Qܱ~ ^Dkd~~ - -\ %755-|jw¿-Ugw\ˈMvh\`9rMso?UfˁxX㣁OՏUx_ă<HOJxPK[K! -/^ak|l>/LU'|Oh<x7) -wlwq -?o!x\qqOtFi>x+=kU3x7v _K;^[Uyǁn"3l5 |?Y -glV#W+)ԃ є|ʿ~,%]o(%^G -)h'H~kSayy)/S!_h -߷Tt[/m{mlW_'y/'nh?w2 l[|'G`xX#ĽBXC>5>}Ľ|[~q" 7_,Z תv_1#ծ?~]9l7Wm?pa~U^[o!ok _ m o sXZaO? U^O? \ -km O6柸Wh|)?qo^ xB;U^w_b)Ey+]|^q|wW\c?$ϷT﮸Skl>{﮸;`E7﮸2!q6<_6 ү]qlO<+m鿮 _w_SW\?q?xG?_x1mG迮~2XvPcx 7?z} %n{YxS?p?~nC;Xx-qC7k WkE,by}ąG|?ƟWq.xD1mUڿ|JE_?q5mlWo''ia L,=l00L/]ļg3f:/ֿɒv{9es3dqGPu.9j٥˺C|hWf]!y;]Ī[I2Y -޻Pޙfd9U1u#:ž5eKջyc\91[(ۚA?GRx^8 ,kۥFP e +Ϫ~?ēX cnlC9[M6s|?'Nji},YN{9q8%C{oA>mtVGIwqs#e4V:{L7MgG{]_~[z\.a!&hNdsYPX1 5dg@д)YN:0A{E{1EۚvEh>2)^}'Ezgah>D,+sD (cI:U ? F<ϟ@G+c[UdMDtS9z|Ve5Ўzvd>Y}->oToOBC( -^>MvKᥱ_Zx75CZ'ڿzvZzܨG=qtǮQɣ Fݮ!-ȣ?_q_5Jd ;"p[IgІ7XXE):=k]SH4m^4?g@ZnOz$g"M_d|/FdMλ"6 -+ ]wN mx(J=ύ&'I ~KU݁Q~;ow$$Ê/yw2۲ONa-d<揼z()yۖŧH[7:#ol+;}y >iʝVra/1E=G%ZtG(?{v_EeoJϗg֟*q+=5-:=jlb"nW$ -؇wWߘ[z"c>i:cEy FZӬq)ךN׊o)V>r);(ל'ו7F%͞K}DOL%\˖ -zԝ/ /6#dM^‚;٠}ܲNlDJԣ,Qu ȸ7^-5n¿%ܤdXz%"Fd;v[ !Bqr mPԸŧʃm~lG=W.r>17G^l%ɰ0BvboړRHu>Φ"uKuAf;/mǀvkԸlzDΖsJ&$^%w𼗨ry^gQn4Pw^]kC#Dkr'd 3 f!zS=Ͳlp>}x7*x׾e:pζ×)-?c&|͉,F}qU/x ʤ3Qq>kH҄!$z:u|}W|j>a~ocdak!huz y\6,yGuxȝ[SlL2c?V^oc xꟻI#S>F0^sž>_ƚijʀ<бQvՏk%- b]r@^MCj;ܮVX4-Z*-[>qmD˱kGFrlmgs{MR)>Ÿo5XFĂx}Vޛ>[@N7˿A -o^~c^Pd$8PTu;h<}D]L̹)YX+˂b*︳(CϡU[yc{p#piz1N2T[K퀿ҲkK0~!=v+%[v O[,^)G3%&ót刯#|W:yq?ו%;K?z8bՐB.*`oOؽf[ )ID-AM(݊bDPgXۘ*T{lOUP~Ec>_y*};ynb̲a<[k?K~j٭ 3L;A70+B+N7{')ߢ(rwlwqxklSIk0OM%AҎq=9܇] _G{ON{}, ]<YպŤi9-pcr@[;G*Vu6;s:&dr-lh>K`'޼{_: >U]2`h,C* KwJ-AX{q7Bd3'[J2%.)=)+Z].}:ϯ6"T\!aJm>7zg96_?<)`LtXߖgoȫs/Tk#V*-GԚlhlK< ) e+㰕5X<+<\xu8A`^ݵs_7W@=~*Ħ`xuʭu.I?e9[ M{:uJS >|wyw,Xҡbk|Þi}Mw!lE oPws_ԉxr!=ƓO1F=VQǓkˎ7volz/{c;|ُwi;Z;IKo.m'zo" <zMHc5}̩2Iss:|i6V{D`+5jw*",eFG|x{XoWm^ς3Xk}˅jۗ;GBrp+ډo d1@@*UOKgX ryWLڌq~C^>xZ[dU^}_MP+q.~zC9c,@ٖS+9e[U(ù`忆?<뢞8@8%s_` ʹKsc;Wܿ*[ NV93,>< -Yb:>3Ж.0{AklBظ/Kdc3Y7B,~ Y݋/[k?*lyxu;Nz~M1${\-xEЏlalwra+o e,;Pv{K<"z[e !C'eAA}#hi6(e$0q|x.>lys¾-B\||Wfwqw}O.W^re5hB7V`gL<0&4C+s|zqSxI<u j39x>({jDyi{qo<ubo<90˥m[Q@+q49MH?1Z>Q"er|^wknF!k5/^e¼+C)9[?c~hg-B髝@?-~OMSxq=-Gg>=k=}n)=|<=-|= }^p" |Hq݋w /qଡ଼eX-=˻eX[[Le ]yΗ{=:7-Dce}KwR Ym:|VJY}I旿ݝz~}6+cl~Y7Q9x=؇_"[Q_vi'{h)rr`vv%'.ao.x;'Ǹ]m(m{|e]MmW\VK؃Wq5}bMU:vh,E`M%jɼJ}hɔ pq,_x57+'z_鮷k!uWХW2&8kg~ښA<_OAJ]G^/RggM]l3Ի|Y:z(L{t}bU|suЫ?Ȼ%~w:B5R1W+!0>Ø !GrXV7uDKx[.uy˵C'|p{h<wsvYzA'd< ><pYúnyP8`9@}KFs;%1C@BպJ}dVov:|-I>>Se,'"ee>.jnE~jݩZwge;]r䒖iy:ҋh:وY5pV7&|עӲיläiZFUF͈ jνPPS*G> ؔC.հn˔~"L7sG!|s;C?ly; u~WF =jzaI` (w'`ƵqiY+܈g~Z?I~Q'bL<ϻ`FRDWZ'⽏ I'rn|S#Hף.l:Bbh춁^jlJ/Y/{UĹ7?cZXj Sكh۝ؠz S2]oROQSNC7zc)X9쓖?O8ozN,_z9iN>ܞ=Ḳj&6O~]J/̒Fjy76Y~!>~4(8<'9vϼ-S3{e2]b=q>? ӳGlov*z<~bŏ9CSgI2#We3k.Ϗ:!;?^w"3ӆ)Mo!<_3?'3S\笌yV.8&M.i=aU.~mJ9;?=0eZqH>﵁";B)LȚwnS5vyCiˇkzz!ۚ'm5%ra6V+bJRmfJ7Jt_q^RIm$u9P钏ߵqޑ{ kZnx:}-7D^4n֋LNϾYDTt+k.muxz=kO՜=џF.5SI |x|wl{_|0g-Y|st {n3L@L$OLU<9;虺Nolh\bmo=zXO`q6cX~ ׹]#&>KKcX'//}:Z¼jO,7곭[ߗHن3l-2%w[t}6x~xo9! -.7r*mZPKaA3nk-??nikmU>}5n~iB{9e/-ݿOւ9 - -p09Ι0%].߿+[,kceۅs-Q|րo]9o -׺%S΋fo>j|9r/Ⱦ|bOԾ˶Z+g2xo)YCu-/x֥o)6إ=omƿχ>>z} [7gg?ϐKb؀@v]~ATxYԋK*R&bf#1./G vvو1`1=Uf'[ɚAz1t Va`vl%H{vY?+dc[VZeWY)A:eV:.'3s~u1}[{m7-ޙ;'mLKWfދq{z;Ʊv`ώaM{w. ==]ߴ~_߱~+p{j - 0% ,tۨ;ȓVJ~d% B{Ke-yr<gk=gk5<,:*N,1+OV03խh +];M@~0\ߥ!}GlcFO xv|e% ]`nsmR*gu[e\w ^{^M._ Y*Zˎy wv2`n;Ӟ;_S1 >WB߆P^{1ڏɉ>1Lͪ״2dRǪD9gy8,3Lcg{QHS6ekz/j㙹 7ΜOKxGm/̸{rB9OD{ڬ||~$o&"]Pe9{ׅgwmg|L;8Pz~n-c3|\|pz"|;siwI_`OoسTr&(Z|eY9hN`.߫)}'ۻvy޻{ I}f&mV܃=7s/;V]:[bCh墄^FyYq+{R? (- ,<1/mVj >Í 3z;ǹf!j]iS,]|+_x[O'<k<b=\Ϟ}e#)އ|q^%l==68Oal䒃IuhGiX/mHf!RW2.jڥպ>t~|,]]"FܚoBo`.F5b+7u(ZX璘\,:f.ꭲ(9WQ^$eDdǻPfp.u}ly6Zó 9N?s^KooNul*{',lgB?Oމ}C`ztG"~R3sIe3bUXn6Iʕ^}.N&!Yr?A9[r,9\lˁ,Aa9,kqF6p^WWbowt&3Pan30= $^țS٭B^G=zGǢ'zy~}qdɂ~q7Nuܱ{r0|?.͌m 0` Fn, ๹ϭȝ` uoϹe- wZ]Ϳ=>g}k5su{JZlvxmœ^:ʼpqN?<4*&s+GXgWGמ= KT#֩N8IP7<5A&u 7tŚI ޙJ8opɳ'gw=_VyBФLjoAfyWݣu5Ė'J'3N&ZwsZ=%ߚ|^A6-P1g{t"[sSF[ݮQ;>]5;vkvNC^mC|nh td1tq!aX:>'=b>pN<`T&ȵXi ܧAh7?3O2}0}F|ȓq5xNaO#c>>j}q'*ڞ0RO2IGTRn~7J~Qw^A+T=؃SV'Y2Yme3ay,2x 作1%{ܘ9\cplq֋Dm|[^v1ȃ[]{||=RecU1g:yϠO&+SZkOn|fk+';k}D9Đ瘇F2m7;Ή kU_igL J7ukZ㭜_]3zJއ j`DbٜahS|~nTw {WF -k/8DiU\Yk1GjUb]@uM+9568V͜Lkﶫv6ӟ_i >6GSl˿3xsiwybޔ: :p'amWjUύ؆9:Vc/+cJ^>>p֨+_-%چO]19O')Ń}dA^eȹ~ Č/Ɵ{cn8=<᧰G\WʼAq!Og:M&܄k/ﰐ6|{yJ%ry zl  ' x1}+zO.Ѫ.|fi%6="y?V=w]$..}{Ana[TXS3z^WmuqP8u~E} %C\}2i9-~X3}^ݹ./UT{嚺vzm_'5e3[ϔ 1k~W;t:Q6Dwsa|{%Ͱ'1;^ g&tDgShf ڮx'em]ն2{Y+^mnU^JU}r~1ߓ^I_Ǡjüw6=XJ9b̽i׍z|ߧbK屟!lxI~ik̏KʽƣD:(e-0x|ur~ueVFguNzs3#=tlts/X1{c a"Zlڣ#s+Îel{sӌ M3jYoGεV7Q -y$cg~X9p9{ FNÜ's˼Gf:9hI4^6qZeySGg3^ľNxM?˖7%_\'aaG{5~Ը ;[KhwdYV==Ff|⚚6JVި6YF#޳,ms-1S.y{oCXx:c><ό ~R^.FuյhN35>=w۲|O^@5t~GrooE._}/ڦY_5¾>9@oO{aA'q^W8w{;MGp\;wt v{(sY mX|@oQ#MlQ {k@n& -5?|n8p!%m -FmZ?ϕL}.=UUNr7JښZp[lx@?$=E~V*\.Ig9M۸WUGs1g&r_&dPYP?M4٠wBO=Їa߼OsrD.].ž#ۊ׏@s^Sxvk߃=waӮn/pžڸC齽<؆ϩFrs[^n=Crn됌7|.|N~9K~ߒσ*n=$fpGw~#773OY=(mFZ4 '>k3';h ˺^oz__kyC.7|sM!yVW__:oĚ<[ٳx^4loĶCm@>gh6Vw;շ_] =wIXruE>ܕ?]/y yĹyZ;~4{ڷ<xn6 hzÊ<Ƚ-o"u)0sNtrx]xX]:g\y䠴K޻5siW9/S< 韫sljDWE]RO ebRy]|!]ϰ|^ߡ]9z>cubOn|wR 4~{vgF_rNODB,롾a.~cvqn}v ܴ׌M8rt3޵{?(lW/ѧF{q/n #'^>!j}=&ky}>a=6?#pa[ S~Lzƹ -[%nlMrY^M>Z c3s!ye4ڳy\gCO;:>91?Τ=3m(-d%=fC>o<{͈"Ui~i_B=B78Jvk][܎_B9פ7=z~{z~AN |"u=xS)!'G}yp yՋȫ\hB^'Nw -|<\S/^{OA !Aqts|mMb-D>?xw(|y5"Gʟqa;@FBcw_gcD׎3>O Qݿ9`6}o hÌ򳌵Գ疘+uu]w̉J]+2w 1/jhרWxr:>d3`;wlz26G׿˵*I,g6Z^rvE=UOꙺXm+WGk>OCԇN_M$Wy)Uwy b> J:Ff2gywz^[y/ u}yn/An%w0sf ~9Ϯo-}/K&3P K]rq'lG{1_ ?t؈}gF>Y};3fS칾_/xs2tJf~s|#bV|+ }O<8)+ }jwv{ {]{仦_xG>xA;`_Io(7΄EJ/뎢f^ySߢc: xmAU_Q `E,t}w~'>zU}9긾 ˹ʤGw?{3[x?H?sҪM7SRwT?~?=ri_e>%mdѴ.]?fC|w&Z9톌˺W@$Mq=݉dY`2wz=N6"@?ZOlii,"?Ѡ?IOFB=RlT(q߬PX_jk*E}d@%֛J$]~ޤ(@"d7%d16 E3,DEێ`!N_WD)J=W*Eu4FvEEMK$!FbM$z4%E#ɁŤSBPM*aIkRpA1ZŰ|6h.T.75aT6Ơ*K4נj+EA,+=A^L-8ZkbE`K^, *a?kҋVm.bA/lriKbN%cbECq= ~i7(  )+1ܿjzO"y [yVQ PBѩ+%GvaӸR6EyUi?NՇ"Pr?| 8x-(TIU[rK&ӂeyR#LkrasJY]>RdJ$G^(n+Og!5b<d -EwP< -bTBIԋ7"eeB q$^x1ߚT]W&/F ܋a{ݩ6|Uޤ=)աd/dvo>Fh_פh@yVK!; Ml~9oqUK|eʲ*i1)`# k@dZ^CX8FůP.mשX-B=lQ* Hc3E㍁HPFk8̚YP$ً3hl*_U MGWbvâK,O>noBr~Ògzxh_C$Y?m7kJ!EIBߔY_ͣ$(cV.8Xmgn4XP?\ -yIZh zvf%*j̬/דjN*+J -kʐz5Y~pʍex48:}Mj5lN֝zMsÍ@ F:,tC՛~a|PB<ky(9tsxW. e=m#'H4\V!2b^qv9rq.dE$9D6>V ABZ ꓺUuG0 V]qE~ P"[;:Hq w%a@:eYJ=#-T$ŰZ-/ %C"rKד~yY2Quc^[΄sV[bfͬa-dI[Nͼj[%'|-MEV^_9?OycZ]25{Yz7$:%m_$±0E1낌TҖE䫠^\o:>?u>P'EqVA X]D#I d׺W7Ÿ`PeX B -7%i-ŲT:qL4I67LXiҕ2':ԛ0$dyw7$+0D ˒P* Q&Qۂ w!΁{"/0z?ظfux"jiY4Gu" Dx䡑[|….9/2TRF ײ\ET8lC`ru;Wu?Q2QyfVFk<ɐSu2E^##)1L> -f/ z@xܒEenDfKFbըfD-( $MӲ6*4 g ʓQPu)҆8 sU0 tlYP& GL{jke "!mMN܅d`ڕ[$!m?źM\,; qɞڨ.#-17c}Kd3~G)Wr?mqbCgfsb1hneBj=0u+'해9=(SPCF|Xs ]‹Cx($G5e9\l:ibיRJ PEY.V$t3 ӔyGOV=yiʌ]E .@͘˦5F$ U/t"O -bHf13$̛jURKEf <)C9TvH" 8_ -S~n}HAPm端BQ'q畧(g,u} Z&9Om zrwg| bc{tَ6ߜh)DH/'Z^8Y՘pxO<ڈ}'Ah`g08$H7ȜyT<Ɩ]pB4@\ZJ<%ĥƒ$K^V`4줬VBL"f?YwM%HdU} Nh)k:0ƳXj&KRien j,6LNr<.jc*d):nޢ5H -kA2hm)=%Ae"ܬQ斖beܪyE_ά֮Bx=ӋDVsAdYȎU|tD@LE zB1a_ymY%}ji7MLVABo -%ugˑ[K/LzEg dN8D&DPI9hCd\⼒(F)h31KΠ<8t s嵈WP7թ;-`+\x& D`l&V@ٔ -)7|(]*rq-A:Mj&Ajdbc@ad4AS8ñRu=XrVunF`bRaqojl8*87K pKuϢK\fbI oDOm%! e@ :g 8RM{0ߚi2hx&Ac=zÀ;TGzaz ʛG -x `,hS7<F:'\fF')C,/0b\6y@0|SsË ],6 -S-`Rø2&Swxȱww BF|ƏSSYFm#0o !G 8GjӀ|  ceVR }V|0xp=`/`į7@p.6  -x ԕ<`Gz>W6Ap#`XD?ぷ -0:ߏzfs%\l8| PsAØ0 j8 ῁.G ( tW\?6՚n]6m6tl?}% 0a+2oAO]7`nC#aQ@>d9zaC Hk7 h 8ƧӀ=o1=yM/!G ~p9 q?ʡюrz א_C?òW'q}#Ukɠʔ? ˯9Ic@k*hrҋ_ͅ[9;AqIW/RV1? hs]S^˻ٹQikRno.제=R> -PKaonw:'8kR}5rH)=XQ`!y[\=ԊI2}U)G)}Ys 5%Dm۝'|E'7焈 4ՔϱsIs['M<~˸c6jed]5Ш*E~Kx͹󫻾k:}dg|.trtx7pl(knر7wfE}ls19Xez m/db9l\HO->k5r>|= z.T`"Vxa. x]|xAU.72Ri՚]Eh /D͵GV]HC΋ $Hf*{UjCt80-nFx㡬~m:p9~ He-9]ݠ<4?OX7ܦ8| ~tQ9yO"@"6 )pi<9qs*ka(Iyq4?ngaaYfƒ͑)lex^Zxۑشl$sMǐ瑗}o?Pzȹ?A#fn|t:M6obk0g2{?ܠ>.=xrap͓!hrB-o'r?iF-Xbּ!a}zsnF ښG E?n퇹zS!nmdeGy[nվ U+/jla}_H{.6\6ts~[VgDj& q4J1m"?邁SO^z)tv<0^%cW Ka^.J)m^ qa[Qi{3vĜw~7{OT˦c'沪 -cF{=[lTIvum؆fv&q{` ٸLw=q&|hANJ,%IЮ?1dHVKa#G!9v3#$Atu=ΩSNsn? }.Jx;_2`ΨmšXLQ^g\!^mYtT'7?~1x|~~Gxag95H}^˱x5F<~Ⱦz0%0F 5뻞Ly s}MӉ15w\ ,?~s4v͊'@E[?4_YAphw'I\$gyR? y6a2hgq0R ?(e:)ބGXh0 zHAwyCWJ{ |>>_W)~~`*Ƙp.be\pRkU6\׺Łz dEmx2_}9?Zr桗7l+xqW5Ĵ8F2 N4S -qlW{AapK[L\v\G:}a; xF7\tc#~I?X4pa1@mK&g'jFGS{]4.{8 .%J܁~}tb -\/7'^ܴdh㻣E~s/`P.in8\2R]#yhя}1P]?qpSpIhQo~},$ ti!+Rޫ9-dg u ]?w-boK0֥ۀ$(t&St ~sӸ/Kנ_;ZcE| /N&KoÔB&65}bP+>;92QwGr^c'x|:e3}R>'\ޡyQ|?5Z?WI&Sxݢ?ܗȏ=~c)E26ޛ摩\ 68|_k. 3xUKLáC(ĂG?A|Ǐ<=#'JO=ʧ&{(_2:$}i[,xn,Lgpq2Y~Or}rPwL?8Zxᢑ T3b]o(Z+|cB*."#Uha`u7-hOV\m4/@ԟc1t5hq4g:B2.98]!BP%~YTB'mdBm䖅C MHkǭtFfYRY9d[9~s}=YlxC Y­ͤK (s9d I"c۔W:c% -*P,Xc 1Eagޫ!So -z 8m\C*_CUKY! 렾ބQ)wsȜU[/ȓ3rx.d -zV@nXE+*PUۀˌ()ˡUJ(np.  -_Zww[+rLVq^Ɲ DQ{ . :(\lG'K."ȺRDd&Dmv*r\rIRRFBW\ rBS+}f%q2plRp-B2M2#iX.n5?SHf~ Tg -QU -톴uJ@;iB$ZQ9_BVMƒBȈ.ii5~3Lڂ\)6 Jq#ڋPuZ \2!\H𹬾X%ޱYr{ vo|*Vz:Bx(4oJ"NXBl>?ɧ :[*V]SD}Z`RH -zkK=4KmhMp'xڄ? Qg o vF9 тˏ8h}K&Q%2~,?92~L 2qń2$翃vgB0N$cL#D3>=d* f4RY 1oelNo`Z9Lom_#FO8L`Ix+KƭxCqٿL2]f~w _ -U/Đ3O {/\8bėz[߿GLcу_#~ʯ9W3($~/&fzDx3UIR4D 5ki8> :ј+N񎌯 n,0nwMTYU!JC4,[yVs՛e -|['ĴbTwvޚJ+pz#]ѶN|Mī3ֽLwUL{*ݕja;rRrjֺzcQ^q-֭po#M')"c4U'UV}jQ|iL:}:wjl쭬a#'ōlf/Uvf+oaˑ Zm-TصSB"=z)-P3a;;g;yݪNR]q6mS+M5Բk;pU.3]2|wzCV#xKkaM‘XxW3 {! -s)3ڻ.;33(G9Sm_9Bmf /BܦA$)@O,*$Oe=1PTo2 -k?\]xKy07ʵc ΰ68όJ6@ݒtvgc ֎mj֓ckÞĚfj'5Pvq2MvxD aJL`jB#9Bbx-q<s2 g؍tvNG;F/fS*Ν x7&@E3A/T :]@LFMH]v'afUQѳ#z:k5grfwz0o=>Qp%>w۟e*æUñ"_E*0dFUb`5'ދ #9n\6 ٝ:ebkXrl~ W$5aSnHDKm*2=4 -:'5p6+o`/`X %+K`.'+]æG&x8M@J9aN@ 9ٶH*!Q1N4[ꅿB I-.ýQQk/-s9iv3E^n3#k.kG8s`w(Rstk**vmhK nf\]A.up: U0g{f?@ׯ_w=r2eI'GH-%sedږ.,_Nҙ֖VBaE (Am0Ŷ,7\'ÝԐaT'۩YVLk`ܨ=#5TɱSyKSNGU,z c1*ٚ}_\*vuDwz_NYj1aڞx<yvIeTGjH(C‚aî(n}IYxu딾5͋t-ga[_Zɥl=N-Zdtz6HVJuCntG&8*o,ZLwydd+Y۷7" Ypʅׯ\8Svtnn[i9t3Mz;N^Mݜ\\iSvZBʼ`-߿+-(C/8 tزC#CaB +R3\a÷HdiȌ0*ΔYi˵3:MWhCHap+(Fsg*{ }}Hx@EϘ:"jTھeg|NgPtBVICԴp,3lcyMǀ-86L>7Cb 6ϛF∭fEc,:˻E܅)s{v [%S׳Ե(Mq)ݒmҴ@Elݟ&e[ NZz+&+wHj%BNulOH ^jՔgH_ņ`a0 !"-SK CKwcX&,|nP7nj7:Nײdq)-u|AB핛-R LW5ײ)OUv-E +Ѱfs+, +!i +-V{hj\f!pRu/8LfĶ֜H"_NM8%5[k'3Ynۖ;#a6ULP@DG)G11{atpTG#Ifp +*C KlV/ *FR,M+FaX|ỶʖwR+zZ/}HۊPUZ2%|b # +kgؼ(Er-Ln'Ϥ'Vœlf'a"eoOi0dct*{/Xw8Neixf bxF po;goo[v߿v{#{>w?߹2 y +8gj|8c+S`bR&*+ynOj3jJ.0l-K'(D>y/$ 0f8wbN$Uĝ'D,H"̪{=Wt#$T 8&> 3 nIǡ¿Y=b]#o#k$Gf#x~x;~@ci& +`IV3(9l7/*2M͔j(e)wHOYEu%7cR ʵ9o6$_I٫b=H",jr<Œ$PGw1cΤwVaV^A~Ln S񮞠vm[`ejP^oKwu[L}hٮ84V+<2Uy׽-(3}e"Eve'PYu*05PKGm PLb>Hvr.9!&(bJ&Q`y`.zb@5lD=GMaRA< 1JѵJZ.Wı-]Ūf!x;Otܛ/UE3bZ3w1Wρ1l̬d;) &w ̏' Yrl܆h9 ^R#ؐk/ +gHǣ{tL[A΄ϐ=3Ut^$\;~ςӟeԧ?e'x)#rZ^A*g4s=\6/U7p~)n9\^je (X|GHkn]?Լm߷7*DYd0BGs~I2\PK_A; WIu6;HuOIu{!yiCu=jQtA^&Oh0`)N'2RL(DY;xm}p\;o >56T󐟈|NT=6!YX+;PgHA/hq@ܖ9U9. Q6NuTFHm+#%fR>ZߖYi{o8R];)Òi]-xQ%Lem憢hpygɵWExhP\mb-#:Aed[Z0×ZpP T +KkWRu#FnV +<ӏ^ޮ@bg80cꐱ3+,S\wzCh:jW\2DG4MM2لwBPU[-k+WnzdtoٵV$[Iﺵ]VZ23h5F! !Bw٘I<zܼ<30ߘYfw"_$}L= 3R3R,c ~gQ0ӟbsX\~x+_  N~" E=nPa 8S8 ŞD%J $1~DGZ@;q ` ohd{}]aD{$='ϒE.wL[=OnJ}Or^|HyQo]?J]hW'vQ2!wGDCǀ9Ss'heW|G.<|. C]og%GgіkO} )/K/} ?K}  ۗ#u~bZ# ]S""omnJt[ߊLE qF&yc/N:o7CLr20Ch&D/<p'4CpIg<ǁ0LyiOtۀ=H{y 2q_W :o`"~fzWn?s^ dAd &iN}{@혊_H2!:kZS'v7GG@8D][=&?LO_~w' +pAxt1<u~1mzwJc$D|9{ooz nԐ'˲5#o?L:uu\!Wz띂I {;|(~[g>_y=!c09:DbEHHv`d6(!c]1 S|uBEgwLE#I88OuD =X#8.v?v76gGdT x^yz{f)17N' `܄P:cՆ)}{lDM9.`TCU[r1㑝Mݜj҂:8dh1 tfyVj״CjUD.^u L}00NLOw5 3= q47=C(CK(۠< +*(Ey(PE9)rc?i\s.h4G>c5F ;mAB@Ѯ;ֿ^\=F.@A&a;8MGn[Y}}?7B.A)L_e#_=g Fz^zѳ _-A<;w5=9^7G15=Gsξ?x^sT]s>s=c BYt?[p؅[@;Gc o}i8 4pNiX@Aq(@ +s=٧YY'hE3*qO&Φq{.8Rwk@cqSq8#C>q&/-Ω8g\lOa}(O9^ +>x#ǏrcOq\>{8`wU +|X@owJhPtK4I%ӉLC3_miIs2!I'縶$<*l˩N$3^`kvMQ*2_żKu@v1ʪJzNQQrYRMS1M/]z:նqCF= T ˪HrqH߈ͺppuV=N\?9/Eb]w ,6y'D.b9҅;qF@xV lM yEB%>cs 4?rqK"n'%8.(ey "ORAF8Z΁EhhsQw"ao$L^Q.'ʽ. <~7|q!D9_!AyrH$1 {h_Ov(>9.7,τ$> -CX {_Bw%.E~M}G2ta OYQ^4!?ϥ ]CXa? +ehyp5er|pŒ┊'zVNˎa&L3V4v?? +ی$N/VTN +ݱݟC4/eZS7MEf%q33PgÒH2XW[^_YB55_WVR7g8OGU&ނY`Uq726#:5dlI*[` Y}vv[^?>8꺯> fmLzmdJZ $V+0ϫ[iվ;dg\HvZR+#e% :'uҸiӤS4'LgрŇs罻wJB6LjVs9{ 3<@70-Z3}Ҁ}DiEg4 +9- huLx%恩q(a4tcO4FXZ;v؍ZE[訄0|쬙i|n#7י`tnSf2__ד]ȌmC׃+3wZ(d1k,v.Z 6a.&l3&rmHRMmm()(epk*ȫBPb1T;x.\|U!YvHNj,sj^33&R - ,<N m@̏&-c/i+4*(C vO̕Z ץ2ad07Cfr5 N*]]L,6!wm27ǣĔ)^3EexҢhƞpSp5qw zBN'C +}VMW)ZA?Y/S +=/*<뼗LQk:B?%ЛY\c2M?86z'cwaн&҃KUUs}g[$nM89&併W689doqr+O2NNŜN$''2NN89ٯk189$Ndi/ܗs Ì!1?#LKX< 1Exxk8#뉺w"=53Uw;0M6͜[;Sߩe}߭yx׭aؤ8X;g@|呿UkfeۄlB)_}}'jdɱcuA-'W2R=*Yv\c%w- +-ps/ +C|wuQ97~"svF?wXϝt.&FN|ta$,g],wf\4?^ovͼliP[{+}߸wz˭!m7+tΝ]; #ዩu3mfF~>9v7:=_Kqz(ι7~{3~=nIB_)g}-fN= y|3Q +c.ͯcY3 8b~ig޺a\ɗ8WwLhwqx?qaY}>f_ m[=c~/[N ugo@O_c ~9#},ů +,c?^0- +;Ў޽7.qL9u[0$?dfKnW7Sy_*~seofov5wmx2~s +vӊɔyvгPO;AayS<>c>ōTݜS!i1|!كeF|&TzK*^AzH̔ħHWHl K"vѯ˱+Wԯ =p=\[^OfkܵKx/i6U~bgQ/}52U-nygVY}˿rcG%(ULkxcA Gu?V9^;;徽\r1-^z_`n0}ܶcP߹r%Qdw?gGn]~7|eYmH)P[g[uUWu.Gv9Ñݍlœ׮FdOpQ8(fN2 +';'F~/nȏ6Pُ6Sُ6Mُ6Ptdc.d_dQ잋w&FLM!ӷlK*kQO6uV(&H 3/-uv| +K-:k?WѮDvm }XZ2٧ɑ]] p>K.*Ӎc +:_*et=#/ J86_J)9,ǩ86.~⣫c񐮸_@|$O3]i|V˯{|H׏cSDZR4Sql*U,O7]FM?ZBЕ([O{b^95~l|N\(姶ǖFWN___-og|86Z-_"gOű8Ni@G/FUNNMB8׉.~] %/V_7z}!DGks(~Qdh歍x a+ҴYnp?ǢhFȈ9d 3dR2cJg~jAK` BKYLK's{z:'ycJ8Ln OtL͛ Nlz mJgX< rXw>,>*0R U1Ýz0I&Upo2[dQ;J1<>L]ch"U5)|He+zۻKPRuBwt_?,:`uGGuO&i쿤.:ςJ? +VytTte?z=V8~.:ςJ? +VytTt>S(#k5©|4ۚ[󿚛6߼zuqJ:Et!3>akHҲbrFj"gfas8ca+՘ (5DԘ#Fs0 n@1- C0Bl-ck2kЊ.fCGc5S{+H + hL6 hއoiLxDcN,h@txXk]PW<wŵpV(䌬nEqLc*_ح-uFCk٪56j0m-W`׌djB|(~*,!d8ͤ٠ֆ>:˙Q\n߁gH;%6d#S 'XDd1}27˜B!=9 iu I Xq[ +Z)b}x4kDbΆo޴'dZl%>ᠦ.~?8gG/| g^OwX{6?r̬S_?$6W*CSCK? g^xu{Ӑ G Tf̲hxiR +fʰZ]lio7SIq0X۴)FTqafJ JUh +BؒBe9$QbRxyBz YT jJbR[0 dBfo6xuJ A3gmsD!ʰrF` I6' !e]sDkiEnL[AЛ7ٰ /t{8ºhBO<]JtyX򔺃3ƒX'~&.JpVAtHt'GFhv?Z,8g<8WG3X w~p%ew <%OKKW9RA;Ғvl۶-NIStOi%\W^7Jlq~E`k]}"o +--toMsR ef.&mcr [̔nT3jMz +m?.Hq#,C-;=R׉$fjC3tV !m0^%Rq98w\8֓c<̖$EYX(9%PW4'XF at q ~ObPT5٩%Ю +$D cVpi$B<dQK4x8Ύ2צ6 < wpjk&ĄWX⽸3e,09@FKL #K%~db4b3a7hKHwa+&==#]LO1'g˕VqT nf+J#"8'ⰰî5Ҋ ~N77vx^NÕҊ\n@6Q*_IY=\΂al9k<:<8򒇱(]Z iu7*CEw/O&ёV̸Zf(%zzOUC{:azvj_\0tzH2!WNOrtO! 7̄.FAi9'6x9F|A$3Ź``cuv\e0r3(3}BîS:l6+n_w`|GWtt+*`E +]1 ZSG0V _P#= vmp8?kIKc'@W`t2B2cZ?(3i0`@=eB{v*k-6,SDkMkwz,%Bz(Rnug;q/n))`E~# 1F*yLm( ź&Yh#) +F%=X1q7q Yס 9:EX`EKA` iA^!v&"5r۠uthM@\xWSMJ8K9OY.(mޅ\"NҗR$^T&ݥ t!w 08Dݓ]RxX<>bHB {(]; H5";!?m> ۝@@la^`",s[*a.Τq-JZluF +V>]LV8DX7O"( ƞ~"mxD&58Rb'T6Yxl0m|?:[7"1I 9 1?h,Z,e7H2wW +,Hc+Ɍ$#GYX8.H_ 5E[r^o)0KGDf|`W9\;XqO_l{>@$,*^mEG#T ^gMfr0rfR,!狯' Ćc xjA lv&\sCf`'DSOˣr޾8dpS +HUe L0V.VG~WTT0VX+p{qrBf<  eM[B,Մ|;A4-AK >Bh5[A&y#.WĎ}Vim [hJ$LϓXA¼%U.6%)ZLܔ$B oX:1˼N 4`.>E ϨZ1lْŅsUwCuaNV̯S + i\/jY#ebo%3퉆h6\2ېϧV{鎾gqx6 +'PEz% +t,3X.ʢ(Sѱ;Y{w>|3rd +ϻƺQ}}JޖYOZ-]vc뒕6^zMӕ89]jw-rn򤡣LoeTtL,Ik\=E3T&HgL{{='d"ڑNd=ҩlC}G6ʥ]`~y쮭ZYh~qD>* +5OE=J̵EWD՚e>v2lZIokf>ڽ ձM +IV]܊ +QfYBE`ɩ3:MX'q\[d]ֽȺFdB1I4y,R|O4^{\E_w۹|/dJZ%{T:%3(=Ֆxʇg_?7~J,=Ԝ#xO|Q3 Z6B7L 9!Xz +/xPf{Ps_ug i L]Ծ }\;25`يUgCͰ -4 tNZg /ӜkFe 6G2uб+5hÜUG +s)0ʼˈ lx&p#~xXcÈ'~ȫҎebu!4f읇"vnEAv/~fV3| ۃ큇eWeY/<ǕG~B`V,ބGu]M)Gt3z~r?l~ kuZ0o(LWxPWx^|!tuΰ-w,-gGz+vϒ +4g նôSm=QVmLuêA }UDZAę$ș˜-A 2v`!f_Uw 3m֨ TBڳD1t9w;flBtrX,b01ι4Ƃ3;~XT(,%> +M\1auT6`T?Upչѯ^XX2쾂;A + Z_d]Zv0 笟qء7YTF] ~Űige;f/g1t:;UPT|ASs۫O0WcB[SEQUi_0:}_+b*5*+ilWl-vAX;kp6 .Ӫ΁6Z Xkbͅ UQ=zU?vν-宭@9BRաrf`jk]jQ+=/ ֿoy&W 8Y +=i]Q?~(ҵ@zqϿXq;7S~X)#Zm(W_@ ֭iW#[ +282g&{bB Z-`LC +n>U7]0s@g>75C='{M51~AS33`8'RN1?,rK6AX8o߇ /^O#՚Vn~ArAމ M[6[66ax{-3NWFr9߉SS{G_Dz7tͱu巿=ȕ͇du ucXψGG+m2=i}JKH kNfVDiL=\S[jegi#Iӽ!6`Nk5C]m2U'2ё1zj7ׯ “7_]:Zb&6)`&*\x 1-WQ͌_nd{q}n,2:18-6ӭ +l;(d|uTiOuC^ǐ_xGgvra\i!hot2} +~:Fk^=7tT[=z@5m N7D^R% u_9|,Z0z^]:OkW  6\4!fa_TywZչى +&ƨGvU!SzA[ˣ +}>ȿ!]4vN}b6:lQ7珼rh7޿0VX}*1J#}HMH`=\ltP 1Ȩk+o~#">õ 30lBad[CR>#%`<ه4d/Ӆ3^kj/ElObr?bid+#&r8^~B܈JtA:$#N!r?rasE\K;dJcJ~k#(gFGty4fI]FG)aR8e;eY8?~)+g&/N8S?ts\{랁)Su:tPdz \.ӑjHq^!VH3l2Iю>@t>Y ٲ?e311˓3'RS%IXDǛǒT6@rӼ'-TÏH}wivUkD  +H`硳64,Ԏףc+}q>U]հ5vo/yx!˴y TsW2($ag!3pa4'="kmxǸbJ3Zl =f4 kbh6\AN2 +¯VS^5#ss @{M 1Xl +0`C 1܅n c؃aЇaW0 c80A``Qr^,Æ )s93YO{0u'5 6a0Cw:w/M[EֽvB>tLy3pֳ +Ȧr۞M#J#X;> +<+ܤ>^hU(|MYuSaY?~qh'a]í# W^g{,#L[E'_C6Ie/݃JgAi:@%>4wAq{m7ԍ+UCKZmt4,} +#9JhqX ׁ|{H8:T4/- & DQ;W-g +ר(?^XcDzu*m9+l\|!6{;# wzi/R3> 0=_&9/*nWOĉ- @PL4@"?Ql,?JdIlQ +&Lv7e'[ڒdC6KCMiYmCZ ̴fghst'i]w91<+ Q}3ObYlz>?3M>s3j/<*x3g>s&un}˯s19AE}sT+uJB(uFeq#WBPQhT59B:s4 +:G%¹tЯt09B\!tW:G+#WI#+#+#+#+#LS_!9BDhjӝT!G+J(Jh29ZِMÖ+Ϥ%\S"Dr-dZIDr1{V^_'~*׺˥KBk_kåpY?T7~?z9Mߙ9MlU$nSɝStO$1  +yZ[֎hG{?ڣͽmh fok=5-^=7mѦbU<y*B3o_PTT<7nV?=Y_g] 沥}݇~Kn|ڰ׋6djowcU<}x4Lͫ0cz|s>(;v\^0{w:6:v`zn_]sL_X0u ~r 36l~wR~RFrݐ}A̮w{+t%G;[8Zmt(\fzzʳ(A;Y|}tod["xύ!];{Qm> m4ށuW?~^ϕw̃XZg.g?>^ ݮڹzx0\AͻWWFjqFk܇f)m=np}\!^ +q_ x0l*}/l_ ^t>~&2{#~-ɷc~a}im]Ml_Pt>.W5׹;p9bk}w0_߽SŅ,|>+ڟ5!u_Io'DFW8V(/,[.[{([ʹ([oG}E{kFهMť^[pߠ+jCw0_*0{;>&GWb7.6hlC#3f,c4񭨅eݙMflvenzc]80xRFNP{Yԩ¾tNz9@O^ꔽ5z qZ^=ړc|^22Mڛ+eazEnǍ-R~pYQfy^wJg۝6u,Ъ)~ֶs|q(oE %@SaZ +P(=OvB;* '9; '!fv0"e{`[R{]ߟH_iֳTgfJήk1g9sB|VQhnf#p֬[f{8DVE"B7ranN㈳(/=lLŀ l2LfBG,y9sKίXk?ZGަ;Gd?k +AG'pTM?E?_ML8=.m.zBÎ>pK^KO+'7sOg2W9h'nTMhb_7Z&_S 2?qS7N+q|WIUF*?SW^_7u \q|?{h&d1S '0钗<:7Ds2Rh6gfL.o̞a?6ǃۿN?́s]'VrD<9p#<OfbּYqJlT:{crv8LO] Tg\wƅIҎFP +^]zU>hd1kťpUvNs}YZJBuUN"9^V8EZNv}r{/~ٯ}q`s/a:&m϶gKiZcyͧaXvO#::/ݻ?o6 _;'?춹o%w~g3Gڣyo"fVKKZu]' ]Pgb3q~k=>z+3}Peg=U ډd_韬ǿ\nuh.̰/oqH'8Ӿq[Apw3{|ȡ?|C#fu{vCy?ӡ_ ;mr!~tw跆C:־ޛfOC:KáW;83s+⯙=:Oy,PNġ?,qx^3 z;_}zPn}tu:7uC:֡?tHgL3l_+P*jخ'fYll |oM5"΃~3Cs$Rms*nޞ55q?&?;M q?[pX{%D?+/N ;. U9,ˣ<"c{eǜ~;*A/۳iqb c`(4-/g^as Wt%RIsu7a0#65hO0%›g~׮#6L#;͘}F.:bD.)b-8l.J!sh(kYȚa7Q~FYxULFn0cF><#m6V5ҹP4Oe=4H(ty6W-DC`INxjhrK,3G0YlMt' +bX ?⺿?aB;Z+#Fk?Jپ8rHuDhe`$x4i2[}Kj)JåUқ"&~BDp?^>y"ܕJQ,TVPb$!օT b5{&W Z&Xwny0;ē}еC;FFq臛أc91ߦ1fr 7hL*#n5rӄ.˘xLNLWtx+ts:!5h6,L }KdPGcqEl%9|*͡b(Yh_#1MD1סX*b8"MԢ~,&^evR +dZ5LhHz]+aho|,*qҊ\,5 hdSJR2 >ɉ3La< Ka8Rpj AXl~/2l ǐڒ)9!і*,_ՔkW ,R"%[pс ٞjlXS=a,d‚:ёeH&2{m7rsCCΗ˹̞%<- f!oMWnp؊1x; %wC7Hd1^tyhQhҮ._EoY͍z;ep](dMd?~n}æ4y_%JzxfՄKWKKu?+ʟ|+UxuIx5(I-YHw+{~?=#En-a?{܋P(_~4|*?|-7}^\-?'kH|!O[~ĂwJEOK|߾E^-x^?e-wZv)e[{-zZί+(^Wα%`wIo}J.o$}5_yT_'gu*yսDKYrYC>&1tjX^+aGI:Tw %$>"0y!6Sv|'|[&I|?DE?L^% +#x|-aF k@OυEpw%8#9@pPnKp*G1ps-b7 Nn'e$&8a_A5q* ^O_M<|!vO: 8!N7||7?I*B%͇Na;JF#z'q,~{  ǝCpXOpz}<'x NNw<3[C[" o%x!B Em_Ldz{਻/%Nw|CM ~ >Fp"swa& #8q"8& _MpQwI93ܕk ?[gUu3s3  jUT$% +.y%**ƊBW}ViN[j*-#R{|OyO&1$ϝ9紮>gs=wky~>MjԾDjFjORRRR{LjMjSjAϮٞ:k0tv{MKĶJ%}Kk/S_ҧ)Q|I{[0$1-I^&rI +Iע!鉨{$=O (/K +//_ҳ)-?#P|IϥKzŗb/)K=dm_(~S^A%K_R|IKA/(̼~Kz=ŗ_ҏS|I?I%ŗ3_[(~Kڦ~K5/({wp|,x5LP _I}Y KQada0n` p?,Hrݗvk$fu^e}F= mAJ閨zݍn|>&~ƨe/_] w;fwZ;}@zwԍ|OӅЀw7ul_esÛoCK8<[їaa?\maN*.L2>}=_ↂ3vUϵpNo#YQO_}>&ɟD΢*s;!?^s&܀~μL~ +OrFqnnmbg(v݋gp * =^,|$xSÎW4wY@yQu9*Я59u^z6!^T/d3ڡ~*] h>oRywUyKu^.t^/9y:/恷UyċF "*¯ET^X%ȟ2^ȟ+yVx>0>?9׀"*oOoDTa("*tu"*c%>yiLSyuå"cޛ:wD\?KVOFB(SyuY~?K(oRT^g)*':GUyw(xF Ov !^Tݠң!Mky~x*o΋SySt^z lSyy~%uYUx:/Q~H祋~?y"*o[}>"*+'c?yl,Sy8FOyq0[o@pȟd1\$~~qi\v'E˪:/]sg**`/9*@{x5}g197K^6v2jS֡mEEm3hѮA{!ڵh/Fہ6v)h@ۂv3&Om#gGжݎv%ڝhݍ6c@{7ڃhF1kО@#,D}uu}F]|K*kޟ-]ޏ*{N3-򘬁eA w=Gptd]Eˎ27s0eLg#Qϧm1eг},>-a]gh{3"28񣍁l&w4dA a{}>`.r~DZL4Vɏ>6OD!ƿcS_)KO~&=/D?k&MS\۳ϧ1,y(x__TQ1>>wCf DZp6bW3~Œi]n/= k,8&y |Hߍzvt;.zſ"u9FSN{֚<YlYbgmuX @Jp~jh~5eEL|tdLg> |t|bA|F|dNhӭp]~w_˗طm*= q?fO>/Ѣ}(}U&c1/[ԏ}3blRXpxxQkNO^ɮ &n5 + DzwEg7ƞp9gm*1vҋm,=,`z +׶FkV|߶rFf!jY +ƺE5\cu@5q ,W_mXfe"XX&gj՟ng?}/W{[|\i{HvD' ‡FbibPbqؖ*$-uWѿ5'Z{LHtwZq sYܻ^w')xqxrwi}r(Y o dl2F!Ă٦N+Dm)6Q~dvcgZ|rdP?ͩ` \ x];z'C v +?hA3Tct1AI|]Č!g+qc9khϓSnĝ.qdn:kܹ9^6;]7,q278 i+sG,ةl1sc%h,B9V;!Lm!C99-jv :N>SޜC ľdq`Cݎ1ByG-|X筜CKק_vs!pt/tfwYx|ue'Eg͇QmY}>\w^Xm {[<@[yysW X+}aߦuxx qvy5~1sJ]:Dkz.5_CҞ5Û; ݐ[KT7KgӢQ3; `Fi:f8\r9~MqI|||O/6YЩWM9t^ %^VxytL<@I ?s&L%^sxLxqڈ_㗙 t7}V4aω̈_㗘(nJ{ӈ߄\Y`_S?:;$PL_b۴NFi>` ͯR_^ܸN"2 ^Ƕw :祩uߠ]/gm[9@oFgNhYw|̈L zO/B/5ISzl/8fG^v3Ӻ0ϼ_f'g8e[ +jʋ8!\ e#qz\i>y>VWy/뼴#8;y≳<)ga4yQ%0|:#yNQs:,cgy޽:/Qgyޝ:/S%8;ny(/≳?O8s,yS2>?3Pb}mOYpNļ̀Xe +خ܃Zb]ެ(+c$גɽX}'\y_' d}r]w.w ^?&4̦+^RW;(D`.<;?.Og?|,'t!ZmӀЯ=03B>y^"x"y7z"ȅȇ ]xٞ}%{"D#OŞȰ5Eb/ۆom=0,f?;XfHeJ{`*ۀKtY#9(eV (}bf51>`s +\ h^6Ų~NZ_r.& \OPO_>9}'G h|1wzƸhgBy7;_48(\q_r3sqmf3_@ugkĈgS^߈kĖޅ'^޻֩x' b<1=/>LE=} p=G`])8"M& φEI>Q؂cE\Gԏ5!\wDx["mE' #TkuZ<=v lx@Gcݐ}i;/룔e;Tw~`-Ja]v<-)xX vCb@=Zai`/~5YppmOC;Bf65v_[bCHFD;ydɃټ>)3>XKۖ$1w5-~m(]^̗p-3Hv;2*мM ,di֎=-m +\<z[;"\{][{;r9 \c.u|i֖#Cx=8_ڬݑ\^ߊkب3ݑJ E;EFcSO_cSG2X;S㭲]/^ݫ$y$?XCaj=Szp/M}ܿY6')2L>WK_̯ہ_gx§*υ(?>7ަp7!Q~ϋ>xv/~nI|&l[>x~%>%P`%^6D`IkV⢧_(}>xc>do:JpK_1Io-ҧgS qNUqQNңU~ߤ +){uy6U˼eE>(Cźq2&.>դ&vAgH==&[~;4##)2M/7>7L:e +wb\_ <~pG6'.I2w+|&[>x~tn*< xDQ3$ۜ3SNi<_zA5!ަ4$~/ ʖnO<դ_ғ#6[L{K&=ķ_oI?q_+~_ᛁܤ_?P/_cOܫ灯4zKM(< Lo*B4_epmNth;Cܫ '4S ] n7w+$b5J\(8=OsտI'qA& & +-I'q窟ؤSWZ?0}IM:<6O?%kL('gw}QMe~?g/}z.L)-&Ľk>ɤ\4L½ L>WooSxMe~UO~I?qĬ_ԣ][5'ޢ~p&)bD]SmSn +lxLOM*< ?5P~~P6+s&j<_ǀҸW}<u~.w'~ٮI_;o2'έ7ٮ;_~A&]#F>`.ȈwH mxƹg~Dw%k~hl3<}ff'FgY%ڽBud7.mb}ύPEy^3<<.i'eA?y;2g2mv!ϘONͦ2z"w9|+~d?'R;AnA}rKZ۵lm-&{DZ ܛNwd-jK-ve}&L^-r>̛m ~qN''.Y];yN!:"]7=6wgB{X*e{V:W='/s{QB,Uwkwob/?_ڭ^qt]=B\OSdۿ;&MDd 1 }_F a=/i=_}]׭=Ғ"| ^}@E|槏;2hIi* NT<0j\_{Su<1M-H?4TVx'wa4?g>3/8O=^<#`kx /2¡9 ?G$>0 J7 sw8}.k;fC,Q nGz}??3]iO7'=5Sz BXe4^pƈץ"' "5?;:j yſT'#MӤEѳ2>rjq@ay{kv0!6 }EA!㳈:|PͲ{+EE-e?+sf2U>=B|%\[X_X<`mK:U;aǶH+]ؐ@Ii?coMnIݒ^wA rZ{_YD+}U 6ꯕ7-mG~AK<1"P|;uڮ +Xh 7Gbqu(A{:^g_&MOg@{L*뗆F_Eyg奸~u??79.ړlqES^XW³v|'kFx2$ؚh~gXg}62P>;h=NuHvd+=q(CɆyٗ"6:Ž~=`RO1zg=1(˦SF߬#/1=`*.Ql}Rqgv:x\-ˎn鳀fΕE|9y0#A{dRcu.|w(im_'_eY%WdQԒ,ӓog9vF8.vn-YF$=ڑ_栃q{ݿ xzWXoCL}eo׀-Gܷ8RspGjk~&Ej/wwf{׷7 +Pȿ([|7l>|'lӾ8ㇶ[ 1ooF=Q[d:Okd2}|K% W X6 RZ P'Q-qF kNo\q'|yhq}1*M~|3#a] q\O-'AGi'Du:8x~!֮Y9QyI:6"]yYuP_2HF_wv8,u^^yb}DL~ɵ(O ئg9A[j~tsDzR@%' "T_..@[µۮʛр~hZ +gQG@<>eH_PZKWoͪ}7?2~H?-юgOyھ0Fҷb:5g>"iW:sqxmr<&)ch;h3Ơ?7!Z(S[(>> mr& +s&w[%,&r .) ?H%#➡SEJ~_T 󲿟Q5MOv^֙hF5o]љO׷/}rxdX.gLz7ns͑>7YDpk$[rPg&t|p|A$O踚HDӑWV+ʝKS~3S8_?Z%ߔLH?i43F< +8p6fUG̟IE>M'/Q>߲KĴM5yqO#Ago?Hk~>Vf773ozEb+es) f-{̀ԍk` (M0vG Wot>5<}i/Ӈr(ϤMW}? ׏>Kc[f)A6}I}"Y\BTS\*롟A{QG.JaC%|#|b;f!!U17F0|/ }mr}|O}2xoySܦSVwx" 9|ې +l/L:A$o/j=^!ɒ}M}%l OIΗ|2Q.TŔ̹'~zX +y@7]srI?Ot{13^f@>29|cf5uUOVϷ?P+{MB,E kǻ_·"kI\+"H[P cF#`1[*0M,]żoF==>?B2/~~?rx#^bj}pp/v>]| 9_/Z0xߘ#I|#%e |ruSWًлt +^1gYgԵ. !W!ֈ{șah"V昦Ϝ{,E~_2CwKu~R,0(kisS(s&z{eY{yIw*;pyEڿf\h#:/q]\ex/ȘU:)|W꼦TJ?-w>:3\ +.\(KM`K>/{M0v[l5xg/2w"0K+ANj(̱u1~,TymW0ayfEkpUV'7> +zna~_>G^$t=ă:[\I"3a=i=tjAym +qU=uţEv"FcO SZP\CLCOW 뜪N]119ǽq gx;Gr/Z\l)tB <q >GW]kz}?x1c?x(b| 'uSn{M}s p<恿{ AnɋJvm)}UBK4DwPo5.܂q| e9eP7%#n;TLe5/m ]FNogYo*b|gr>bBMJ82c e'1RSɌ8E">tC3 +me)훟X>"V=Ύ[iotdžO$}FОm5ۘ 9diʬZ >P{CG?դ׫q0Ĉ-2-\NHsK\j_,纫\~Nj>Xas swg\*> +Y X=3?(I-VV`uppLꗡ'`wM;|..nFÃeO!-ox /gA/pSڄ{8/\ZБc +`b؊l);x!Fxo.AI[DƃWTa\A:G40~mY [JN?Vyd~nWꧽ{S; +dE7~ӏ߀:ɋF8M>Ȫ mȹuhk^):]LX/oR'7V~3X_]aRqчvsudƗtk]s/<ޣYUkص REĆt|Ǯ /o%2AuANw3Pvqd"\R">^{R|OPW7Z(oղg[BjF[O4|l=?z噵߷Y\rx+χ~tP6Ȝz[EO; +E {݋,/=_y-HB!G߇ =:Pl'|?/ +06У/ ]AO=S>G=۵3q,iD.)[O_ka~l#dMT| ߏN#@\x>[D֤9C刣p鑤КGz\+67Ǩ veֶ[S'9BkMCS/7u9zpW]p MU8ߏqm d\MMMhJۦ]_#C[V@[B8a"B,,'֕[wJg%um1}u۷~6rп 2Pu:L]1bN7mҎeJ;F!Xvܧ55|qwi_~4 +Fنm6qcxe&"=1^S_uKkc.xOzKߐj^ˣ [ٺC7Frg7K7Ulo}6I{1.xm\':msԾr]Mm(?v9DSnQ.q-8HS+r,X0cNey>uw P8snWnWt+-rJ>Cע_/QFϤ_^/eZZG뛔.5g/Z^y4GJ<>ڦD=|CY>휪}'h,} 8͜|ۙe\}/=|Q^~p̳"1zKe}zrՌ:xfy#ۭ>robxYyvpM0Sj7Arsug5} s\;7sq3Y,̑\;jlFTQm瘐 tRGhto7S|7Zv7ЂnX`^AJ#%"Hp{=@s-b]_~6$OsYp~ƵV+?{&t0пЎܑMCܑ:ɯ%65rugcC_9] xգ@ܿȊϦ ٔהi^,ОX#(M^VlFVct3,=~/rD绣SmhAI!z q\[L(:;O4{mHWyg];ߖ!bd3| 伳$nIf- ׹#!rf+g9 Q^yFȧf)k.S2CCO OϹ{o+MuG7OF3}@esNNtJ&=c2ҫLp?+|~]%o#mWVS(# HL.cRFn8ƬK׀zf~7BK9 z]ƈFg/Q~kSR#OY?e rE?Eza}uIoJ:_;34{gϘ:2$߾5cxWILA;vv>&o +OtO5I(?>YM8G|{hqt?}L#?~u}TaQWwZT:3;omaǗ ]WQubl޷q6^͵SAȿ)FpP;3%~-0$Yr˭U{ܫ8e4c샶|VՖu{~& חz)eGsŸ8.)lstWs.عM[Dl8Bv@hB{WH_}:ig hRl/qj1ϗw8:ڏCrϓ}s|'~Vxtu3h&ŧ+⛄믲=3$m,}GM/|6|AM0YƵwf/i?b60"xx*)˓&S F;g'ף\;@O|U?< ]C#qtSg:r'T՟F,ڇ}ߨEo~Z+ҧRtg[>l'#{zf#5CG_B{mPF/$ +u& '?5-KL6Ygo_U7o5w=+@Tbo);3[+&~i> ־Mh'[{3N['-_oUO~ ֳ +ovo{jkngoO^lN[-goYӝ(g[5?g?t,#/r\" ;:~{^S==j&ѽ+u>fl b>}v`d;o 7cJw~@vP7_ +_ޕcWe[hOkS>K9}/,e->O^¾篮"|\SY6^':SQvE.-"@}"߃žRB^ IqSo_3Г<ܣ93N)v9FoM[؇6=BIBq//*.$ucԎ N28k l\nn^ƄCD2{Lynb'b0H[#y#`m<8vZ7 c\QVOiR_*Z_[CO_{sV{+'~oK'r|enNtNoiN)A6T9:dQObޥoLoWuUA^-| 㒙cq$;=Pm%3qw ?Dy~dzưW5#Ft\98N|>1,1] crŤrg571o/~{NQO%X|^Y$}{cg/9pn>[$æy*;i}!~D߿/ֿDGQ;5>&?>ug1/l\ajξ[?S6B[.GMNR8l~/ np^ks_swƿ-WNAqϬpn1y}86: +=Ά#/~}'P8n 3ϰG_l:[`2=Ck#_dg4_s>AsD=ǝ >[q dܘKRB8d vYL̏;AH&Mg{k-ƴ_FBA%O Muf4^#|/ca 5x)ηޚ?) >q^_8LA߱r{靼Xp k<3f}0Q=ZM#]]n|_qk!׳!\ ,h:!mv巵gC1,"8:!9fOC.߃ǶO+Iu0;ۜ="'w+Zέr_g\̝F\ע^c=m!mSrdnť=;v=+>[(B_&4u}cD~=LfN1OaVk'/i=>,3Cj?}=!;Ť&T9#{PWÕQOgzo+aOvi࿊c%:yטx|j?=L*\~x>66MnyL5;NKKtT?Ά/1\[ӆX3};@KM tY1POos/)#wyo7dr.m[ENeZ|N6c/?"B/vz˩m1zfs|iz_}"k4zaBY:aF>G=]-E^%KԁVG/LuJ!rIکbv~;¯8q㑯ǣ#n<~y|60?M91FO/r3;soH|C +GJF~ Ol~a _:χG={g=4gȿ^3ŦΈ8f.wG}یy،1e'=|D |s窘cE7cy]郇Xk5eBb+IbO=i3+w7(9/ǯIa@xƇ/+ Ala,sMr'#|x!?:-" 4׍E{A,*&߃3}p"D}}b}sbEȖfb06ΐ޵MW\\ +]L[t13^-E^\)t8dGZJ~#ƪa#?E)fv{,T^ː?dԉ%uϔF?1w3Wwљݖ%'& ~oo<> ~ #bkJi3C6ѓ|g*_B|9ߧЬv]&72i5A>xz~F=.>z +> zWw.3t9b?Cd>wJ,Da0 +YmOi=b|Fs8z |b6>9Y{{ކ{N>&C2Trt}Sm:sݜ{u|K7eގ{cWx#Okx#|ܗ< TG=kSOBlDp#MlϓeFܔly|q e7G C(ޖݽp+e-t +S |6oA_ ܔ}d%SCi}[$1زJWUQj\oUo^lzxC񕶥r\o=QOhaȓ 0_0 #DvyYSݡ잼<|u?,_m㐬+}vt4"k}2=%ڇ ><qtRma]ko5=e4|疬v7Jwַܵ-5S߬sG9?{'U "}.t/mH|+glEЇGC!ٝz~(˲Bw%ۅ<~]z 4#&ifgj~OL_`}<1x\rN蠝4݃v/]@W %w>fo35#s +y?Gr'n=&׾s}eK[ϠkQzX,?ن큶/'XHo}q(kO"vo$GÅ"CtNM|u?Rϟ>ڇB؇5b4QIm.mN;o,-u=eّ,GN;"'2@m D?đsmaО*`k?=>5|}\d/~?_[2?/xhr8 3ļyAl3`Q"ߒIў z(`D{@p mEflc5븦;9c|_Qq.⚥hgkevKL5|.xՐ|@x.gB|M?&Y{܎ ; {N;Ay ׆1Xz Z|ٷHw>se27[*DM-GaanǕ6vczgOik(jQn)_-kb G|N6mW~|Wf~|)Rw2YNz݄=Ō"|!)W*Ax.n;b7_&3κa6Kn3 [s6꜐-6E3\UyU۞[X4Mym;AwO+ҦOM]oYc(zOQ7B鵁 qGSa4Qv7'sof-~{Dw|yS!q#6q]k-s{f~/Jom='|l: wU2KbN7ڷ ~3>}϶p(oVo?< +]^Qrۣе?y01~]gOT6oU.~?̈́b?ǡ}ɵ6̿w`,yjMb`왯a{H^)_qؗFA#W,A{(y0h]h5 ?m-G|sˎ#Ӟޑ}ʧX&(9a +]w~3@EGp>xlhѳX7{F;:t Jv4[lݔt1Nڃ|OH^q~Urҳ݉_WqKʈv{YHuoSSF)Yj뿌"ܨQge;9R?FiEqξ +_mO/E_7pfݓF×$H,=|LN."Nʄ]"sOp͝,ۘ8Z b̿D]#6L//{a +ʦ}{nѾkƾAڄWfJCa_ +qɽ]|?tohw'In4,1 cweHA~kp}7AyW~'H糚r-eu^XV{*?羒9ʷefu5\ .ٿ~w4h= }i,yߛ]ts䫐yM3QOA>bb|? gS|jʠ,>^r8=@y?M|Ё[p,a~W$o[X:62y.xED~@^sHv 1W$uP߅2|~4|Ͽo?e7 畞;=ק^7\6U)-&Vvm}cS4̓pspxA~-y<}uνmļ@>Xu流O|{mFJ^ ߣ eA"nrNm>g^A/DL +yYq<47o'< ً]3w"_r 5!3H򞃿!yo /kr9S|xi? G:9i`˚8ސA/ r^UF_6YSE{Wg7&~|FګDPOP<ƞޒ$^Ol:!jundz}~:!C6ZsêM6v!wI +ԂkoYU7nfwK|s|X3in.oOr^8~VE:+Aw<@^n a=nU ~n^H痖=3i^sڇg>5j}ڭF[f؀Td@v=h lq_U_VBx"?'졃?)m#4z |1'#nD CCT,1 ]~;:ud,kkm"c`X^ֲ,(ܑ]WY|i[dY/W=PSDF߈"5cqaK"Ca/FOR>=B/)诱׽zNW(% ",-"/]k\h}@{9^rBl̮7M_s>"q[ޅNGa[0'6`̃ϥmGohx`vy{ yg +580d)>>cwMڬD ޯ = Smdz,F9]nƓ^exU7~6;+;|UylJ/*ƙ[uͲ\zS-{}~^_#=2 O V͇|η::Ժ;<>c_>_U'1%ʬ. g8h'~$OOu wFot_!  +~f4 osOC;#fk3j#\m#C\L\ѷ'<ߴzn3߭oS_\WSZ>l㮯b뒄7{vUW[-Kk]ծٮY5*%t7heeUiqZ}WyS3&u]+Ul޶WfɼkQTQY1{z֧ص)++M/|nye>@ٓ*+J%ܟU>zޤ9*VTg櫩қenk/U0|*2!v}[U*J5 Yr= u37fE!jjY5f:gvYOY +UՖVI%ue~մiey񬪲Jbdnt2UULf9k"(M}s|4U>W"f}sʫ݄~T٥ ̱l!RE73W]q*|Z5Xz?X]4o |%ղ*\9`jNYKyflorUJ~tƋVynv e5R_Y^\e +j_l٨^i>e7UcgTE)SY7b6D+&q_xfz 9QP%kc%>gjy%ĄYs*L*!cn3P IGI**]StD竘f6th&͛-F얂UjvUT*e$?2 +^s\BM0fZ/򊱲f%uӦWkcR!x+ϨZR@{>ŷWԖΰ)iAQ*)BBUsKꦛրW>UVY1^N8≓ +L-:x+Fs +Y2vYe%3-ҪƵfNo_UX[,SnP&UU.Uk(jgC62eMU~EmLUY4X1AT0QgLRX|EQS ݊xXC٠Ԓ:YsbfZΠٵ:KIFS)tFyYYRi%%)Zr_7{Y/-ƀ)+AvAfwV̪ B^N)Y^WY,䱰ڼ)z172}㫤 +^dWJÜ?ӭ5JT*j|e߇ϸ:Wv &8 +W +TScj +Qژ/KLWP)+/yA0ٝȪ̊oN[e\;0KTkԠ39U[:2DxӬW ˄B`\5N7+ݬ7[V!]ӅQ cMz"fԸKvv/=UC +W7cR4=QJ5e+~QWBofUH,ro-7ݤ6ѧS)\D-4C\@rU5R^_] rĭ +|Ū"V{ڟ]&KuM:7򅋮&>qnOk6I-הNWO1ѿ-tTy 崬6;>f֜yK{%T.S=VQm +ϡ0[t8dV)W" +˧Yڗa3- z8Q ONIX۳!^2x5PN[d-s1SΛ]9@-OOTĤ,9T@ie,FYGenHeURzTݢ2H +Jt u%\54USK!a=5 Y''}gM+Sӹ' *%rp AWKw.j[`֔sFN z!.gclMB 4 wŪ(gZdtcP*G myeBuo6‰\5 pQ0Fo*isX>F+>\\QvϿYV_NFyTe`j&ͩQ+"&N]Bdu }D|X;J'͙<&'kˋ|53rܤ\BDv3غr0%*Q^7 }%4p]t : LLu|s++jWVkZ;!~%.S=%b0vL J\8/s+&0MP2OfYfܪZq6M"_b]H'_Gz+9M>U dZ3{\>y-ěR^Rw骽|sE> 8]:C1vG3tqFԌìai坳yN$HOYtʺWI%*ZgzU}Zvl *05˽3Cl4յ&{f᪓p݉&ꠉc +xbEji88Tl.:V'P^/I&7ƥ2"aMT1'}N,wb* $ft +3ck`uSvr4Ի&[W^'nAXT-bx>hjf*TγArzQY\jwњAK'g!kZ-NW4>3̜団K\}|h:֜/τɓMي uio꽷5bjLvoMM^'|Y|bᐙ-ystUO >ę(=FVCz匽g1>m57%(FW M/+j(nӥrVtq\b'^ku}hN{ޕg>|& ̌X:ןXs[t(\+X쬘F7>HYYY8nrt9 BfFK몫i Uwȳo_O:3nn3qݍtVBL;LkJy4FX(8 +.L KZe]\'S~M3$wzi;ՆR邷QNvwTzb':#W&X[ǬބJzfsA+RG ]**uuߓk8+,@m㺡N!wgWS80\qiS3FƊ!BE*ҍHGCH'#62s>1< +KzcA\UH#@D|ARÐ@Zt|aBzM!$E=H"uDHoBzxx\Gz (zo2ZoH;">0B~#}ua֢,|aØt#t|Tq<CZrHw#ݍt"{m?4 $ҍHE?FH0~tb Q tB~ +> "Voe1i H"\,қ nszWA~B*9 c8M<.yqX1t?׬=OigׁH?cEOɿ@~怏+߳Qh5@ׯ=H"}i gsq7ݛtgHb2me ʁo95g_:>({W%{m`j@]%ט nL=tz#}{n#'"0B.!]u\+Ol#K`o00OLqBc;%ۄX7ȦC@p)sޅ.Gޡ߆]-Xj[yvHTӽ +&Dz礝;xn0t><ϺL'yyAGGyPd:&$;.{0YߜҞ>pij}e){كuNUK<-YfSIOMzG2rTKq%Q׉m2xr +8@+PvߞvR̀o1BrCISO_Tߣ`svO +GҬgjBxQv/@єP~L]ѾyGǓ7ca ].o- vlO zz/Y=!kEʌUٿuo't1.wd[O]7 +(مBbkPٛ]tepI4K0|CelLo)7ggPK-ao+&?XLA|4`E${mARpRw nÂX +A6>i@7B"3ȗ_G` hA7dw,uBƤ`d$= `2 oQprOreGԮB[Ї9Kt26뒙#xq; X.v'`squOWgUgh_ ]~[+:@߰4hۄw۾CuQm! ^5)`7lw~mt!#ҡSoEOx ա<<6e''qy05>~a97cY e&`MU0Ư鈽s'h'7-MVՙI\*hiKU OXrWkHgS8LنKew&E$w`_u{Xoo#y~]ey,h^}RLIݥvRoXc|nʶd@N|;LYaOM]#~?jړV5C%(%y2u\CTT.)Q b@rC= +{ ݳiYj'o߹{E0 Q3d|+13Y{tίb6wq/g^G]*͕/j,G؅a__1*=&/KC`n=^: c'LtNc@穩W,I!+4<9  `,i% ҟ4*{O4ij1R6$5wٻo*ܾ֭cxjHkQOyCZT8B(+iJfdb*P';8bTP76?|ap9?|)w[]|e):3\p{뭴E0W(_vueSG}Xz=*))y$੅yV>j^R~G?<)q^6 C0m_6 k@\ LydEcS9zc tj3Y {x}V;g/CMww4V&vamB j}{'7 #⥂ PjgUνAs$͝Xen[m_f_g^ў_c no䳬I,԰EN]XWɃg!/ք&˕ \pQ&o//|.LVL*ȋ僝|f4^ܖ_zd7qD/wa-|ܽ4=|Ӹ=F%_<7H0{GśMEyeR LT)Brn|L=gR-A9^>~a4!rz<W2o}eiאZte;J (Ƶ9zY!}LXYiQvb7e׍l,nW}}yrkeΔ3 W؆ʴLٹó+ݦ1~m転ˏe>ϲ~vx2=1˛L%u|,?wY?OC_4Ϟiø8h_ʲʟy,ֲ >U貓;튿ls2uThYX;kYzeԲԣsW8Sӻ++ɒ3V겡X6zvڟE\kpoz=wriü]:n.!5ڮh|W W2` +=->7P2//8'w| +_!I_Ë"/eKXQSo.K^ -1jeخ#΢FoDKffcb4J13uR2ɾv<όmK5]1H`b1{5j$k}(ƌ"F8_h/ gh,XAc~ν S0p(賆1lTp}W<ƕz/WnCڊs_tu_37Ksua&yiHg-Vs2XT;LĬ q{7w{{ v_Lqs?G Caئ Ceפ>C99!؜&6?Ixc܃~vbS,v0rW2$-herV޵ewed^Q *uHDI\fCܠROp˨(a<(0}^!4?;s9p9C]/gr6!M+gS>ZNj2XNߣe:ϩ7Tj鯔B[Sv6gd +poֻـ d;I_6}Jc 6fcLpJ [L=,=~>F׏Cnf6Ⅿy?;~Y?^3g>ȔOi5lt I?mff9ߠOa?;ވD5MڸI hwpGY $˄}tC8`V:|=wMUъ32aL鈽@q尬I5Q[>εȧ ++Zn_oH~vx9~=W/TGYVߕݠvmD&ן>kǶ9cl \)[v +ZluF0vn~Z}ͯŪ?O> n~S=ѡq-׎W`J=WYV?Sfks|-􃗱eEfCZKAPh~`Rc_igm6}ކXQ\06c49M?QLuhLGm[&}]?Mr6G0]> -ST]T] 6vHVfucQjcRcvp줊֮qr'wX"ppƦ(gWN^c+#QU | +*`6VfjfHls52}lF({+#ڣ켾}͖}\K)w祛Jc-sHIwτ;"}/H] CRC̻RW)YߗK2VK+uI۳u~gP";p>k{=˷Vbt뎝kMN~e̙el9lԹ;1$O^c\E21K;g +7>j){`@-5eN|9a __bhtAD{{ |w05L" #NG4wL$N/Ofsd2 eRH }ia++1_6`*jHJ꙰AWrG@b*w71*/G%ų "E*;+_Sn-_~r|Sh?~ǏY#Wx\5ޚO=L,u5~+WJ8~2Q 5Q +\8ߙT)` V?.vg&=@r,7Yit:藂vfUfQMz|s3d9`aEW)~Ey"- vXk-yžZt,,ƻ,wZ<7r6,fb* xװg \cOK 8_YfS,4=e"_- -|B wK t~*teg="Nx +~9|F&TA1݃Ʉ7 fn17[ZhuJC-ʌ;Bs6|PήEPҽw0' h@`t^7=I.g fd|Fg4qA|L8K^åxp <~3?й- r'#xyFޡxZE$kHG /\oHmzmlr#wfP b[<}qElCk2Ep#F"w _dY4vÛ}[nηC-DD0;2k&oF$gFOd0+2:ÆEnzԕ qc +nע{Y_*O gCW[*3`c D3<>-p+ey4CCQ#:nnG͡8XhK~p5,L[E8}fp\ ]ASgg ^CYL1O΂9 ^\o@m}X%|L/Jb<\)/L">^-013]b!} #>4:^k!݊8{^&ULhLBZ ]enPqT\h\z!'^q=ͮ>ğ˔Qς䫊=q[D|?']*5wE9W]/XO=h gx*.%y:/yښ:/n:<)_q^:żNY^ӥ0y1/Ǽ[a^Oh/R 9q6E|sL^Ufv(tU&/P@y&/V@Sj.~:YүDyL^slEsOIŹ[D(t^ŊbYH1-TߚT1]yMCW+jWL5J?'4ycF~hD S&*!O=kb%4|yM^N_dtwL5zyL^X=|JBN[n";[M^~żk5ybyq7EO~:oK~:J'k0yxzN7NUx)8WlRQλx2OeU{>>uW~:tOo"XT9Sx1yωyL^y?E\ǣ +giz}180m2T(=uFJ:wyOX%z꼵&/]I}9S6&/?0/e&/#kywb^T-5y*zyqwɋTѫyM^J?w TSOM3yjzQW&Kpp<.,{ے}3Y7+dZ܄2OltE_ևe/ȧ/,ynzȒ= ò}#B>Lf)Mzn6:ayj>\7-ه%?wƘDߴ|`]Zݒ/wL*n[kۆ*~nxļVRoRv/.d!}VRfh`}>x%}< }_#is'VCa?dyuXe ׄ'쯆}a ` Ͳ$kڽqSh^ ;+L~ *}_Jg*0xcw tOo3{t߾E#13=a:`b"c!t(QUw^paĖ+<L6c7M`CdU&q;۽##wtq} PB|닗pWUsȝ\MbODB %,̘&31auaY>Z>;,c㵯}^X^Nj+ |^xmk;,zkYSnRX~G&Y^}a5׫ YyYXxMj4,o ^>pڰq֟|^ni.,a?o&z^g nwXwwe +~^!oA<\srru>&{ޝ{W]gM]/&ޝx<9߻|zr0?s=C|zr!_(<,e`~wmbz~o(mAaɥSb&Mc_t{8SUU򅫘]\d[Yٚ b ayaG?uV"%1"&ʼnknLת'-K#8]##ףOvj3r97 '|#eky8o}xĪ1sm.F a*=~s}קҶ_<~_{.u?3]=_צ|/xryةU+o!~ϫwX쯺0<;7.]顩q[MzUzk\\Ҝ;CU!cEXqʷbةWձηֱnvXXW|L/J.vXxW>& ;u\#>S:ӟmwY_R1\rƷ^@ۅ{ U⸎K/gv>Įc;u,G:عX^=p"VWs^D;l:o% v#NM`  6,v!ح#;a[d`?l)nrakawa`EA]C;khaþ +k R 2ؓkbg`Y ndM?<5GF~w=ֿ=WRxvպUamj}:[裏E~T6=:+V!ȺOD3LLaw]B{֟ tCuÚ{rj3 UJDc=Yam&a}4zۘv8=TLobkdshoLD"dFh{h |Not4Vk{x=.Rfb`j/`j<ҍ$a V75G=,7德Ή=ӓYgt=^F`Fׁj-juX'on^sO%j7Z2ws7z+>(Urj=eFg~>7:ܯbͼ/7:{yzxM=ռ_O鍎5}^_WqnwE_E?u视{WUӻza9`3FO9Ѿ.zp/T\Ž+Շ}LQA%]e%;>+\]q-8;ٻʊ;rtܷZe§u_|3wA7<ވiu^932ܳދnⷽ_0 +oviE~mבX,wϔ~>Ll`_}z}_);ЈrMcxJs_+UDc^oQ܃1Gro(r.HCZt ld^SS41inpOjiMnqQcopnȯe^H!wʹCv Ƭۭ k!;? 4|=RtYwS>foZU.kЉ(݊OuY=mtt4KnQT4Kg8n_O'jмPdڗVJdLнzidE˟tZtl(7rZz#"N'L'2%[ϓa}o^*`1ɵ9Do't\KO)_gk ~Sv֓\KO"L~r-=T~֯]jK78Tk ~tG)~YDwk_2|ݭRD*HwB/SL/gq:ӾX7K%۝/pCd~;SENI%7qRd~u"T~J'zZR~ʖKx*HO_2RyzYd~.*u׈\ğ]ZR"}S^|͞_ZSm+|oIZzߤT~V ɵ+S'?wy*?wk ~CS2R\L;;=I=:ϝϝeB/_N*?_Sd~SE;9S[+_ ۚ._q:OX?K7'ǚ,ǵwSs 9;M~bJȵT{&Znku˕krWY,werϦY'LcB~{էE~.$=Ў__+ +lM?(~`+aBgWmOM}CuOi\{6gfzzhW ?t x=voy?F]^፞={7"3';eZ`4>kyoԻs+HQg59t=(s73Vt hN5/Qe|ivkz +X¾Ba5/2tmMr̓{9JoطPc~ 5o\bþ &o뿁q (H.Qna-">D9^( ߄rl>xê"W26^|ÚM|+p[|Úrm+[ɵQ=rv֌qA晜cO~C֥5ߪ'GU? -nJ^w'|(j_o(Q`E^j_N,ہ=\ 3(O4N :Ms[+jc=8V:7u> U(^Ywz^}UI>ufڙRZ`%M:iuy&P~q$J_؈􁍣=ы"+4sI+^8Ot0iH_' #s<|^J9p=y_k7{>L9p]uBK=nP(}VtO35|TLOE*YSǠ*O?Eݮ1)Clx'4 L^}>b4x#+L3^L^~<@T(J#|6\? #deMvXla%ظ?+m2[GWDwQ?( |Ww_*q7 L\|`\(~Z\} + P[~$e?UwxWa4xIoxD>.`g7}:mRO~-pL\͐ޠ.|CqG|$~wؽq6'uUXwVgtj|o> )x.!0]WI5q9ϰ&<Ty.kWO_|xD9ݽ$~.QF +?0#+qϩw@~ + {FNɧij4rJz~Sϔx\gA;jwY?O<;Gx'[jxP{xVo!ˑNk|W4H{/ .$ +m)<F~IG/xPM7J_4Ky,[FN'ǁO\#6* +#?M/+^K[~1KK|{%^ ȟNz~-ik +0GN&F~_K~xDW/(B?4w~=$>X#?qq/>59إؙ%3e~7 gI/|;|Kӌ[\ +<s%A{{Γq?wX㵒|oK ^oO-H4K+<F~_(O<&[/oh'X/x#S> +u# +"ҫ<{/[~>.T] 6+|;<*^&QqxE\?𛀗9%/5"Qx?6o0;Yg O<ˀ_m'Qqpcu{!F~Iܳ4roU CLT{:jqx4pQN^nvO^:.Nq?q%ުwx񀊗wiEƥ*G4Hc$/ ުӸWҫ8z;kOƵ+/~x‡/20~]]y>Օ0(|}_WW~_+<F~AƯ+{7E=UqjW}qxDi35'Q1hSۀwxqSwh@<S?Ӕ \ǩR~IVkGG6=o!Vq] + ;WqoiPo2oUs_6xtF~Aw3rU|5F~_O;r#?qGOȧ/4x/м?$Լu};/"]E7w `0 .m6C4gxzz;Kޑ.&#]&AsmI|}.(ܯpm (rQ!mXsMaRυ{j +\X +?Ě݀OFox! +xck>D}KWA(_ߒx^4|=pP|3gApebhb1W(A_KXLI8`/\=E;4yt +ņZw~ Rgߝח;GI yZR.-g2Y-Oȩ +S>Ev /Rd4Q64(oMEFXlʷjRl,._^J|Slv^;|oI/ګyǤ88XKo%VĚKfO]囘>i#=q1pޔ//&?ňWZ?{{DhAW9N/%'FYىEb⿚<;^f^_FYlciq.Fv)ǚ=K{1h9XGcW'ǕZ1K]=]E1//r79V,+g(d,Ȝ?o7obO7"#Ѯ} ܰ7ˆ<)oXqY賯s![R9<5\@ձ1[=:PuX^/CU]U833s|O67;lB]4oo!_Q[|j!T44Zt.ۥsßⷜvmm`w}|jo^ƙ /M-\&,Aےi}[ϧ=F49Oy~w'#}7KQ=11`31 +x5 C?s +u\['yҮc+[\l7^̋GϓW,۾Z͕h:yI$V"Sևl'e?#y:O!՗SMzɵ4Q<CU m# >73L#:8ҏzIɔQtU2<zoe `i t>|v7ߡ gL؍|ZK{Ų3. }zd<~AS9>:@~Xw^0A=7c./Ռ6|xiibuM +N-#KDrJ {#: s&Xٯ2{j0+u^b +wqО":\Td8-b+A/yzFY{V=Y/w  4ZgXHI}PQ(] 1Op 1mso̳g6$=bpΞǚ7KoΣiPq~Ƹc|ӿ`CZsW]yE__gbn:R~s=QغQ)]+k*$Enx7bW'3 zk_Ƕ']/3EFƒ|'!OGO_gb3#72wq-| +R|tIO0AD!z/g<`'> )m.WHh~mp|>cjnbl66LrsIn3i,mKkl) nE*ط_~ymKl !$M¿gj5dH/kU}ŕ8ׅ~)HqgW@ +x~q@ȴk V̙:ݮN)3k_i̫p|g0>}wgT s@#p^1kC|Kٷ$o7QtkK~_ŚlX&k8ˍl,F%ki-zݱQ;"voeps\YalW]m>~.N.֒b"Z ^V)1c߮\5\bz6!+|9j\ "?װ^g(#MzĊ[7Ꙣ K׶zSSyNg/ZZ*Kb\?sy 6_=[Z%l }Q +{Eeh#wzV-~dOژ;yX5 Ƙ潇,[.hYZO-r -] {ၮ|Z`Ry̜2)[<]:ŰQiyH kH*˂s?EC'`²{֑u#F!9s6z.ӯcŜ#%~"el [n^'P&ܘ 8a{̇~!BR >6࿇m2V->9lMs\l-hM˱ۊ?s mSSf?^苌H=Rߙ5*/zk|e l>&\ }wNԅLo.Ş82E5bəJf>6 eh6<2X"DYo%Ikα͓xuԅu$>l2μxԯ)c&sLcj-cw>PkјI80#m}|n_qIwb9֍Pc݇]źEz.o7U:^}EOU|6z[."WF+0W8^q݁|N!G0^~q~#NqR})e lNIJGQ@Txn̕w-rXs@5s0:OoZZ7MSjBUPѾo%˥ %>b\ަ[T:8շ(swE~\/?P<vCfx.a]icB ($M܊m2,Y;زc?^MHo\%c#f'w~j~O yqi+?HX67C|w;v!<w`<&\7N5\^ǵaK颧YX}*mA_b_, aqm<w)܃3PD'BVsa62֭cd{4;ϰj"TUD:pwC1ޮi{b=Xe ҿIݔKj|m#:vw{h]PA%k +z[ބvCz?dk5]Xq<A%LG?POq$dz864bа6뉸f|pׯA,L>.pCs^`ƧʙKw3WJ_ ΐf~a2l}@>m~mcچ<h̍tu80/糵 X~CEЏ_w??2φ#cqYM)_ov=q.@C\?_ j=ؿRDzzIBލZwW}囎j#kq/+//(D]xΓ;S'mCֻ?\Y꽒oKK`qY'srA]vXu5Jl8jL؇'Fп/yO:EwSyܛq }}~_yL;8ч[&W>2߽?yOɁz߯NU{hqL#)GKO=caﭧ88_Tt+}W/[Ŋ}=s xRǵ&eȘ(mCmEabG 2y\vQÈsƖqQc?xR@9h+Iix13^pzO7~NumwĔHO1qs9\\vfp1Ϋ뷠_ոTSQ|7oM֐H3ߛ9=%G@E0dg=Ѡ;gl}Z5fŶjD,d͇vpT,s:C{Q晈w' @}'߹^{O L*[-?IS`fxP/zyǾZ>, QkquWw5 2qGcCk8 ,V~/:MjFĭ {cBS!9^@kѴݣoW Ic<uu xzpK=H{<S~Rvn2Wq|xI ~P.˷-BګI`/q&ӁS/7}9~=店vzYߠ:f?O;ƕSiYy:7h2>!E!³Oh٠Ȳ +1">-+,Ae7Bw[wFzmkF6H7<Ptma>\*B~o;ߖN^l3ޏ{vDS~q/a^KGgP,`Jy;-ljac[ʭ[տ6!hg-gHӿZRb?Cu{&d'/~~/S%Rl[T;luxe|˘xqNZ/ 1Ί<՚ٗsg֥6nxgas= X ]V=-ߏX~QI; dx<|uKfM`3~@[6a_v?L.c$׎"r~lg/uv@CGA>;WsQ\9bM;5er-8N uŎʤ>R%^I7:H}e;AO[!d@#iǷ%f^u;mU҆_~vveo6k-jTԑmQVmu#}Z-/6[H/rǻ](Aљ!Wݼ_ޜ8XΚ)ζ _2 VN乥o^_泘Agp,/j>w;|=}z6;6v uͨt>2a=ף[}ܗ {_9x8Ԉ{v_8M_ĚҾh_M>nBϳ``MD &|zO=7nS6,ҍ(㰊?6{&h# K ŞmۅX1q 9zGp䘣d+dzP-6Au*N+㔏Q}!NQQSE7:c?v'lo'}] %dHK\|Iϙq{$t{8ٍ8kJ =uYW'Owo&{3ǔWw,Q}yr綩yRj9P2pmt|j̑S<`~vo1k4NGNx6QcTS1/_ǣ|̜zΒ4oW>%gfcyG;ƻm8uۀlk #ٛ ߓ&qP'Z@fuVyyt,8憇-]s•.c|6¶L~9zm_}O0[ڎP}BgۦQy[=i1iJ!+d6㘎rA>g{R9|{3kgζC{!GC*E1"9_'pvk:K~k''04IHyA~ӌKyןe}?ױg֯Vڤ{m%kBoe jYg9ߙmʿ\:Hj[e"8Dh钻Dh}QZk_kЮW'a}] Oi_|S/B?E@=IԸQ$=;$޷?tNn6;C_r7'>Ӗ/ӴA>9Agzs3t1VY4qMNkԷ1(qblsoGo[iOQϡqc88q~+>&>KG8m#qUW#Hl-ǙF|h7'PPG|FƮ?(pǷajg}Kl3Gtւ8moYVIJYt6{QԽzLĆVkF} +}&VgoÈ?6xx9xG컏nI[?gTboE[gS'OoJf\o@]ӓSZDv&{G|(7ۯxK[,[=ު`=[O6ޚVzxk⭞U[Ǎ6d*5:;q'i/V[_L;ܿrDž?urnܔy>!Nj<~~W;޿Y5e:{Mo=0Nt>ߝim=?gsr3?oV6Ƿ//qJ+ozc 5kO}}]sN-_b}'_;yDb/t\S 6 Qjg!9afWsw"DEÌM3wc̎.v3Ԛ."1!)،h'/|z>bM6ѯaO>Nj*9tDŽzz<7ȳ<7 JYWȲqt(b~FK^{['mgg?I1']#K6wW}|4u +ԧJƈNXrKXDKn_]%Mq'<!熃Eؐphvg/)[؎9#0Gh4qF6}86Q﹌vR{+IK=TtKUA9 󒑛z>'WNkLyԣ]C~~dz15/h5/Ɯ${3z lA 㶉czOj۴_/k̋[ӛkom}}ĻKtYGj7^Dڷg?x(A_~9s)c|/7|*Cwzh~ߧ#߄gz{<~DΑ4> x_Ϧ@o>sH/(3LNO6]V1̶&M 1V#tJזּ<+5Rsm[x:u^P|8# DK|K9W$Կm;CHou~[‘/]~‚O6+n+Vת +]֑7;e\ʄMp-{Vr2q[f.Zw"YE;u蛘\d>r>^;a_b=Dy߫ M\Ԓrn<8/KD mpK;aRe?;k>B/g/xS +I9E1֛2R gYoP~0ZjSʾ9M&*oqϙTgAgc#G=xSEM;^I=|r gQ*='t\j"l069 ]0Ip_4q=[3қ|1Na"/!G?aD[9[xrB+]3#OFǓ8~|oGˆ9K3c;A![o?`Ӡ6§ߖcgs!ed޽kyn'l,\-\/gE\c9D=D9çrc0whRr1C d<(C>c߳˽y(Wvzfg/m{|w=xۣPG[R{1}s6m|1=U|rnl#z>G?x^[CGܘE!a'ƿBCayBgsjg}}ؼ-(`Qx޴Id7o-*&:zghdbybg A-!kcp"# ^"FDEm-f`o!bvx&տjDRE?}1]_iRвϕ/XKiuDG3AE]Ml6ß{ZQ8ϺijsND. d4^V}&ΝN^7} H߭;)&o=}~$ߙ'k}P|($@Pś9wH@2o:k?2k|޽ܣԾcwwП~WwRʳry῀?}9N~G)+񵴇$=ԝMW=aI=GѦM&\k073:(:=uz&cz'15rs}w/f>ssu8?su8GݿGҳ<8*_W<Ǒ ]>ahO61ߧ yZ/l=DpyM;۞(ύ䊦ԕ"zr ygo\OY]} FOFy8Et36,:z'\3o^[WP+:;Э1* (σ\X: ReX.q|KyoH<cB;ݣ$IWsou2$.^ >,eiYD1)搶&i-WYׂtb2ִ<kJC {FY_DWo'bUgYww]b{,'o+g5]g5v-cً_='O(gSEx1݇{y+%HwP"ޜPpâ={F98C z8B M}#h B,{Yi?sfzOPf{Z7tI [ۯAw|8]mfp&:foAQyĸNm?y ^&}іSn4壹OK[Yʶyd7ϝ{>ʹ[j&+\|. 1w[/{ÅEº`=|WSӑ#$|D}]1x?vOlE[W8 3lAK`<9 !ć/p,y3o ~>K84Ӕ_Si$g\GM=G~gHvRϔ)>}*.ߕrQ"Q;gZa^P1}qTtۈ2Ev{rz@C9M[L$,D1c}lxLόv]o,hƊyB[#q*X|'u2 v8,}=yl7던)篥B,o G99;<{dLy̓~pb}Tl9WwX~ųܿ>^LX}6_*y[K><@뀼gd?bM쏧isky2 ^ᷔs?_=i:h=~zu/ځLǻf~̵] 1k~Wyf5-qgcͱ7Þ/wT }~3 c>ᑈxqvG;7ړ/s?O%FޥNN[^Qy.7럿Vg o'^ԷVҊ60Nۦ-?8"{S3{Sނl4mV~&5VG_'Gux-(u-0#z1s_ [/Gl^|NgM36f]N%Nr]-߫f\ձ|2<8Gpgg~9=~$-__we|7i|g|B_1&ws羋그1!3Gݏ')_;Q>A;&lw1 ΢:8Lp >'n h} Gϲ%M)I~>q#鹋9p3;;wռyҊ<⳻ޘx~KOSFiYj˧bἸQgm廃9Ծ>{ױf~#x~_Wه;[Mߨ$eӯ3hfm)}S3\s-6{xIH SKK$bW~ߋib. :9s7C*=AO:l4wHN14҃ǪmVeB`>+\ [[:% J'f{or~k(\9o>u ϮxI= ϵ;Z<G9k[iChq/ @~+P]<UUUy]~)yͷnӴM;2P=/oO}Z>35-fKɔ1;^?ڟ H~44qɺc2[}`| gtؠyfv.NsDyC?M|5l`[.ތ +\xmñX3ϔ:Ϸw=ԶWڴ+\|.r_RL%<|N2jzslnՙҗRsI9U;衅.}bקGͷ_3_5즭b :jm雷97#.`.]0F8aYAǽm|(xBO|ֈ{+1ۀMקtI9^ob]_ +<_Gw!7&OK+Cց(%/!žGk{G\Ng7bBGGܽ3no>voDPX/5¹'|p1k:/:د); SZ>rv 61~_ma3kgվ-C,nC(f)OSfD$o⇤gmߕ/WB.M%]e.ߑ'IS\ZѶngn}㭿ݎ)v}, jevG9qHf>}W;ozq"l{o_D~` _y`KX;2E;'w;-[i- +ܓ3\ 9uŎZ&^0}Et4v15?~ ;mCq}dsAہj5Gn:޸A/lWM#՗{YΜ}NȽZNpd?C~6|o6N6`cT?#?,83H )]~yww9j{B=|8u3{%>C4/}63)=:~u8L}[Goc_b^l[-oQߌt M?W?=h`ub ڒ=/V#/I9n2[ Z~3Mk?kP]W!x"uY~<(_]rM뷺? 1~6;CFq}lcKїrO;[Kq@jO$]fӞS}K(bוCaVG۸(}-YsJ]s[LLT*p%]'5DžQX|N*˕0cc 's˼W9B0CОBpF~$Xɘ7`ODc(W߼UȵD1x/, /eQm[qhCߎY~+^i.w*,X=m@y +×D_ ^= i+>4wspw W65ϻ_^cmk Xzf@6u]]F,A9`+QAFl"j҂vm8j ;Gm bc;m1VtVчViZ1 ־H<Īo )rM>g'z%k=UrhrE\ +g}S[~; +0;7cmlJ\Y[A}ٮUhlT7DMa x2RЉ^f7!S8A66VA{3 Ø%wx1ۏ1mpw:]T إ {0W."sNA9g;?% D>7:o ړb=zϐ~^7~>]G;W 4I>kqYMdD{Ի{7Gy!}]tԦwAᾺ-}ϷwԺ;yP߽.7wt5VN?+,71poPNAq$Ϙv<k|.}SXS~= rm,D]¢ski]lC^.:ͼC߼;_<w_UZ6gȋ.LrхsSR92uz꥗VVZ]Q寜^V鮞WRU~G\B(K/-Ygͪ(-)SUVYWWTg]S6gzW⺦|NKm}u]>l|lIkL+t޼..`-㰱+H?d\2M%e5F-ÉVatR]<Ğonu%<ˏy%4eE&бWMdI0K/UCK/^s _< pd+Ǫ+掌ǻ5]41rl^{ݬIW\r^Cvؒ" s9_ Q6k^9DEN!XCWN16&pMZQwLt +2$~v*7a0_\ajf+VSʮˁ&~r7QuS|Ƭ7~VVVT}F3 +?TwuN7{|T-!Z6}2]B<ڗ7%oǾ +%+'jJXaD>DճEEcމW9S9jv&UT3ܯ.ӼΙꮘ:Zi(o wyUv>Ӡ|$pWg4m)򠄊e }̩;2J1qݎ{՜r@+3*Puc\A+vsjY7Ț|YB4⹕jh|PԠݡ\j洿y]7n,[? hSSϥe4}74;Ӵ boѤrB"*$x ҥxܧr9_m4LNJ$x&+zJYbN*IKdOu3$s>T'7!z*[iAɚk F~{{jtҘ7-hX*6 &i*cj,lu'>E9Z.Nj.%Kh9k䅊\W.:do^ޜ3WTƎJTQ뮹FEob̋UL[Q +Wc{IͬY=y&++` ka@~_JOusQe|?FB#gZp3Ƅq/{܄kǺMP AeUWa2,1IB-=kպJcj"t氬6;{n|ʥsp{E%'UU̙j8`?/KaJp8W*Ô+cʦʗ3->l8r' ejsѦe*0CqVpo@QfWңb?@(9ZZݟZ!{nUx$^]9Rt4,$jkJ/U-F![۬P2 aJ[>}xTΨ5 anZ-Ԙv"WNccWnSEjc\d7~y24pWBR\癩q|jE6'EVߪRWP lKD\'̞!Գ]7T-\۫Ԅ>juuti;]/$}OB&U*ep_Wp.[TcVqG q0%87QtӸ6{*0ͥIRe~ I%.]DRKAy2xIdf::TOfZfҪfP)@O;KՎn 4_\%]Ϸ)F} yfLin(fN]:*/l^;qU5o+Wq="lv:qWɝogl5bi!ݴʲdt[㱁}y*)dֱNr.CLڞ_d)tj04˽CP3GvjʊٸjuD}h Oe$sϩƃ7*fbUY> [hOpo'WRR֗TvI}u2+S_^ĔÓ%nnϺT¹It?ڶ#K/Z oe()u*ĒTrǸn5!Sj,RHrܗn^]6v+2C*n)8vqNO#kjpz$,3;jqK$űkmϸ3_UYq^i|6})trSHC7ڻ$i$픰/U'ۊǗ i𽵦5Lv\ċ'"W*-FV&G2]b:dȒ9O2EG|M RIS  TtHL72fަ֦e~9l +47fD MYf;\WЇt=|La1/Έ@bTFn +OJW3r:˧1O2045XBћf.;֍Va~LfU?-m&q|J1}jd%Ϧ&Ȝ+TT1L)p̢KZe]\'[~GʙZV;!_:vp[*6 d;yN.JoV]re9̱~+MhU]Own4w%hCJ^%@7qG͏  +=u6uKێ qcO^O!U#C~_!2Fb3CH~#} H.H둱N\߈33 +f!`" iƥ kE(Y,VO y/ŮDX,/@N;^cbH"]+pHӺXl OŞEz5(kbXl"OfL6#m zb~r},=;t?BHې~-??A:8z???ź$zD:Xt'HBXWo!3OnD9HG*fiҗF%H?Cz%R!B:`!<3#G+.ِ-H#H"W >H́|('tcG#,@95HoE-D> +7b yibA|Hg7"}Xm/ -u;Hw=鼇c:kFԇ~cd- RϲX5!ݏtXFSv$^ zkDHHDʇ,rb>4.cdwH u-M}w玫$݇4Q'l۾c^C>|mߩþ{88}Ձop/[ +dԭPPK1~i326NDaݟV4NKw)Zz,G:?] ߻G:/w^mテ:ةdpo +AMPɉA;&;wLF_. nۮ +Ec*i<>$ԔV*zc-8{v1ԳWy (]De?U2λ;vC0T׍< =IW39q!| _XɔR;;1 1V,uv1Į;n>ޗ Q[Vw咾}{$wҜGZR.k3x">AO~o̒g>|s E1)v#۫U42Y˄}]ƾ p>bYJw)pM5d`~Uv)ۢ ^8imd\}%]4YV@mgh8$G]%۝[߆'aF/3-vB?"NaAe!MqG%q1feyS>^lce1tZt_Swcc<|`8٤76\~n}lIlqCH٥p.ZE-RD[kUVȀ&YR ފv]ߞ<<ͶUF7g9s9g^曦 ~\ǂU4Z^=w~l.Е?^Xޞ@^ϟԙ${sF }/˩;SsϻF?ntۀ"ɏ ΂k?6 55`t=}F }=2O> +qUqL0DG}8n v {#8A?<)ݴ8IVd:Ckz& +n ᚥ_vpp EEbAWP iwA|~9|Pi]U> +>xSҮٮf^XHaKx|Gl-;jv9ln=XW"_Fk4} +cEtt/ú#Z 'yc"=oЖWxE׽wrjWG?G;?072%lKjWH2F$FPwD썽2сo<>_-r$ $y^4;`[LY)CYB;  y޷oqc/\$>g't!Gou4uU< B'8O-`/Ƿͺθ +%)fi̜mh?&#ְZ.Ae sR (ΊL +0V(MVrl?F,2 [`)`i%K:9 |XφVSFpYvOU\ 8( 5;IxVOӻ3n'5h?j0UtOZEƱưʂ51~[`K03vI +y|*,q՟eic&vBcOIyy[VpARC"sO/ ѯ~bS2dU%׿2܆UDy#ˊ(~3ZqsͰ̰v_oXÝΣwİA"^H2C?A^& ~.Tꖾ+7%ؠ8{P['.ˇ|1MAUmXcd[kzLa*38ɉ`{} vB-qTw'{Ҁ}^|gQkk뙫D@}PDqbĺ&9/,zH< Y ߧ~<n#CK"A^lN?Go)!}%} YY|%F~0Rg0e +θB)6`֋ذ{ǿBuj6=}F+lŸ.#!+'î31iSC1,t}x` )6%dґq`ܽl7?~=}mgQ2 ύ>Fv*{AoR˃fbcړ)MBgu:J}Rɏ҂?]1wNb{H= ݉_>k_?2<{ s%U)Ϣ^Ǚ~g;~マ&D<Fڏ{y μ=|A{'Gv-yqs}-x0lhr]Վ8<9D*{(" ңOEUK`0uqDU2"QؘJ I0/4!R ?`LL}݆o"tDqDw:J6>"8RG$/ySs6S?K +#S1\X pBk*$sm=vѺ>lx}Pti> R³yK/%S4/9Ko +ϭKVҎXOҥx^{z'bJk',CT_-z!rOP>v(+-:{kGfzmc|/Q5@'3xFYFCCP,JP(/Q|GEaψ_nu =2 xfm`vyM8bqlQXO46o9ؼCS\dؒMB7S:YN+|6aLűEt _42|nܶS`_K1~qv[;8`x<޾٣|@V}lO|FelǦԨb[-h}&C_c V˔_*uت^f!aۡ:86.C+FY$y |9=.v%~Q! [8{ d:j ֮f.Yj5){)/FV8>o< o80ijd+Aʩ7n]QCsnt͘G66" /5Yp5/_oBW[y{9[ފy7G4ce:tRuhSM)l!?L/pr*Lbz]X<n؟52a<0%%nxh +&So%[jClul#+^J&-HfvZn 6&ӹS*b蔆:z ,u|{|V'H~ʙ*N˪^!bQ~$Iư/Ar32GYRDۯp.+ /~A͊D]Vo\ePG*_Q^˪<u 5r݌IʟkWEe| ?|HE^33-fNNV~k{N(|?77˕UUӢïm5wee嘹ݮPAuxƺ3eY-5mrFŲjj+ĽMuzl7B\~$jj K gZd:p):n IILx=P},5F +3ې'|etY@grnS &JBAVS\)e?_Oed5(,m3l51MzDu(b`"5͘J1%q~-6`f_7z2_zIT拄:5-bOhieH-MeWM  Tf.MLʕmm 3mUÊP`mYnNÝ԰aU'ۭYVLwh`\=5TɱSyKS.GU,z tc1*ٚ_\*NuTwz_NYj1fˆޡD<yvIeTGjH*C‚.(ncEYxæt-ga[_Zɥl#N#Z{dtz6HVJuötG&8*o.[Nxdd+Y;v7$K YtWY:Svtnmi9#t+Mz7N_Nݜ\\[iSZA˼`-;0y`;-(Î/8 tIJC#CaB -R7\÷HdiȌ0*Yi3:MWhCHp+(FkwZg櫕Hx@EϘ:"jTھeg}NgPtBVMCԴp,3lcyMǀ-86L>7Cb 6ϛF⨭fec,:{E܅)s{aӺ۱%S׳Ե(Mq)ݒmҴ@Elݟ&e[ 9NZz+&+wHj%BNuHH ^jgH_ņaa0%K !"-SK CKwcX&,|BUJtL5]\AK^X2V]By7_u{V TF,j:t͵ ʓzU=t]KiB4,KBH.BC,,U^>Yudľ0+̪_Y)lQ_6Ԛ)X⋩] {g)0^1)t$gmE`V9&ǩ0HIi`p+f -fUta~lW1M\gQ sh^Vd(,Q˛)P4S -J*o ,@ks2lI~?F_W+fy>w\-sYw;fFڞg1X{X.bX~P&1VtV[U^@*kQ(P1$q\[BXU]ZkTFaIi aNKֱTtswһDt0V}T?t=~h`7BÆxWOl {6-n[ u8wĥm>^lWLWR5jKϪ<>j} -;2~ȓ`:(ZڀcVw(&1YwE$;Y9nXw [[1g lu(R,[t<ܢ".*᝜d -O?܏1I$@8o!Nj^I- S1 ؜r:U+~ps4Pت$jmUX}mJ+`G N6|ʣ\?){[Q8qLFPC1U$k(/ )5*oicbMb7j>Y)ac#yk fCqG #x ijCloxEm+WuUO5D">%#eN^djr*|Rp=>O~Q,(?K!@/2 R9Კ~,n9r+R]rsEzQB !}E?wSZ~[.gKo~9Q0BsVI2\PK_A; WIuHuOIu{"yaCu=kQtA^&Kh0TE-XUlZ>j8n]ݓL}X]EWaeyODl7W,p'i3 - nkZQܜm)yusw([1v'S*`#`Sr;ђjgyD -)tmjB~̬\7֪ړaɴYuh|aӠ&к6F ss 4ZW"<4vOl.3Q²{3J]mK-8 z#%SC \M镌OrM7`+Vi~ofzqCN 1g2iqu؝).;E!eR |D]fK.Lr%&ALl;!NV+D}==J[2Mz{Ir;&3Kenk?C)=5B居§I<zܼډ9C#3JtyC*s4^r%'Tf~D/n.$1.I~DZu+ɮPB&c@d_ۤLF;p\q`v^1DXa H|' u=OgDh;%| ˠlKz.H/y6k xC<4Zotx{玆;#_ r!Z'f7gf6(u-mcgtu z:0/D[ywO ԽY`(s@OqKQ^_xb}igJD YCm.nf2d:)yh櫭trN&$vags=9j%#MYa9ɑdvt& -tmV߮ -z^EFw ߮>~#YYUIR);*J.k1Pi>EWqCOڶ:tߨj@rYI;IY9Uj ؉0煼Bk!/(%:Xxt!/(E [B^cQrP#D#.(OC.E[a0n8(JYm9|"n㯑|8s$Ay?<<@ABˉNIP8or/ߐ9$sta{= [/' ob,glb-CX {_Bw%.E~M}G"?7 4!/ ]CXa? Kehyp9er|pŒ┊'zVNˎa&L36 ~Hn3_V.n8}?|D;z >{c{?/@?i^0|)T-o?KffoP^U/MeNb/sk3cCGuoA,UK0khxSQn2"-1F̬>Bz6nڤtn[]}pu?dːldu8!ӒL.IS$ v4CpF3xi$ugX2QR4G4i;ni2*+t&-C{ISOjo߾}q0-F3}ҀsDIE.J hZ ٌenK,j Q,0h --Ǎ Oi6KBm qY33.=i -%;An3<h#\/@.KpNG#{k~?OwVJ>/yQ=Q)⿪rWD[뾴od{n,ahjF_a!џ?>y9ā?v8yㇾQMK7U3U}x1/z[z5/|?yӟyӫJy EEUoT/BqDp?CS1[;,&Q13+|ݵ=lj3_ h2vZIáRHOxnjQ/ SI*|YtJ d.d kiB9"HQ-t c7\G[Ayd`(y/*(;3GXzXE|Ʌa|GuqD|wջp]SE<*%#hZ$y/ůEObTpW]É -]ÚB# -}HлAR[}BoZNA? -U:~A-RAWpGYd*B_+# -BogrA_ MV dqlM :F {MUUU{{w[$vItYoqr7&2NNƷ89l- t2NNn7''dɓF1'h*qr$[x8''qrr-''Dlj9텟bζ1X~8x ?3)<Ϥc` _ 'V3hy'xS7_ wjsM oS̹/ -@qt=\7uo5 cwoce`zoS`|%:㭙4-u5#씯d'Ğ'dʞɱ C-'W[O`~AxYv\Sa$w= -Ã-ps/ -|OÁ(Ŀ?wdS{F;"N -:s }x'0oq; 8n.A6x7;u{f>~@~ hooo;Vglto8ōT=Say1|aŃeF|&Dzˊ*>AzX̴ħ(rW¼I**l K"vWXܕ+yc#>+>G>r+?r ;\] OJ<*s ii?p(˾xs<s+9?~S3˿|cϟGe(U,k7>C?c7]sxCy/\.ˢK ^&oјv` w;W$X=ϭ|~Eiћǖ~R -ζj~Urd#ل9ϱ]œ=ɎFd?xQ<(dN~Jb&{_Uy&H>O~plޓO_ C?*M] -JINűC*5=9=Z~±H@>ZOgb]95r*ǖF/qlwJ<7O_9KıU"YA'Sql*KZ?Qzc#jS˿u _ű.ҿ/ְVsKs }~!DU;'=ZGE6fڈw*@ͭ͛_[k8s,NaTGFB6g !S&tf9a AH3){^a^TXiH7CLL-n - Q췥:S*aanw$ȑcaU yLtmVפ #P3ܩЇ?ɤ&ܗʕXlZ8 IB{s1 *4zhj<=%!!u)OPVij k<2j}4K?0SZjMML[˗&5X5#>[2JߟΥ,K{ L;/Fst[tutmsx i\ĮvpN{5EzvضirJ -d4bȰaoϙ\O)1 ^eH2چДZ7o$s -ق k-"^ k *dޚʹaYA7)q66HaT g3-28q liiuiQ7j6Բ:rnJ`xϞ[O.y уɂm=ӶW_Ʌ3N[O~Wp J╱ULìqީ5a_pŋ/ -<Go?s~(dUY/c-Wo 0$A+,oC#_(flO)' B6`7dnsB2,ƶX4>N+'J>J74b0\/<ѽp!qhsgXRO’8]Nvy 0򒺫Yfqpa?K)[Q"Ģp&V!Zhl7GFXv?I˗b`8]WG3"ƦToF7ך9 -s9pNm۶-tS]ntWV@}&ͭ5z8?"5ӂ7mQ0'V':B~orPL= rC[kCM}@@<18!sB ZF<d.Q˹28.2צv  Iwpm!ĺ[Xὸ3a05@F^hJ #K#~db4b34`KHO a+9#LN)7oϗViTg*kK'ۨJ:<lj8‹zΘr[+:s?`ܠ+H\臫lbx|Uzj1>)ci)p6KE4qDlxp$eCA-kQ!Q?Ao42,=}DGVPPic(%zfoSÊY-]R˭q\pҵqFCZt}rBݔ'FRPCR 9D..7 Ώ{{0}("N((l΢ -:&J6+EUe7/o0;cBz5T4L,ce-SǭH]v;+ho"9YſZ + y-oխL1 -?(2i{ȄiZ^''U>Wl Yfi-$9ך=uW˃z !"I>fv^RVqFrXÃQ]_rEPzM8nyF44f)FF~_G+G(7i=-س2O~Ȧ'GZlb!m3sGpe,cl<4$92 kSII>>ur9A74@By;;30uʍ='%]O&t䓚Jx>o&]L;g[rL>$̮3>e"?%H)%;kǪ(Nq_ٹK+:ҵgouM3 -t*ckOƇM"FhrռjDr_Y rbfQwI.nDKo:_{ktv#~{[Ohsѵ gnސ%F1sh>nIeҙl6JdX26\.ݕz2f"gRx2Kݐ$zbXSw+VhړK% -%ҟBDJomqhqUƄ):aVF^ғ vݏذ\c} -I.vŗ1Ѝ(, | ;` -*٘ݔ&x̩'hwL%斛-7^29:yBw⹮x.ζd[f,f|Mh&O-3ړI-fO2ݓNn,zNOI7{syzHT&bѓȀycbļ[ސ2Ex(B+#Ӓw;$LQC P-]Rj(U> ŗׄfOen'fL>TY<\qݸ^.+6tn>3}/Idܼ]"8\W%/gV,Ro𽲸" 3Pnzc%#n_Ð0/E`뗫>|hYj'K# ?lkTӧ!R2?XS&=*/P=[lA1 ^xxvi]u*3tXSty-U Αє19ZHyu?Jh&Z )`#^𘀧a\. êz♐TՓτ썵Hu;r#5kˠxu$Wz熘 I腑W_I$,]zU}+ddO ?Y7x|YSe]x]ZUs#!6\{ꦑPZ8jv,8  cA^AP3jn:¹QUϱ4Cyd8/.hlZ_+jAtq:wjrnẦ?3mPV МcZP5E3lwD-uޮGj=-44,ފ 9ymiF=MZt"YNZ^a^ sxy\Aol׃Bρ8o$ e -Q/ E0t/DyWc)l "S uhV qoDemާ1#ZpBj -4`يTlX<ia3 -%ahK=?,kWzP+<]Ou) - -}$,}{H.m|U;E^k׾OăT.Q<3DkG̙^/S)VB?_r69:}#UzƂHSYX) 8%xK-*+%qS\ =*>,ɺJG>'# WJ>ݱI|c-}9eopFɃנAtNÎDثs%6^ `>_eDI_Kq7{4|yc/~д7߼ʈ&Ъ%fjYhj3jF v/Ճ{B{-$͑I~_ .?.y4nw4'κ2~O3Ee\W. 1ќwm]/躿ckw*1[(nx}KbGԧs:S>F R P(On7fʴAtx霑WoOPf<9/az_`oXnV;Lݮc -˷sl "Yۭ?. -]l.˥f6ޒn3=x.ڝJFcƒ|w2̥IH[Rq0 ZqPu\0[&O㠔N;=_h e*t?uh"=$0P6v`?~#~[*q VIݶ);Km׵ƶe>y3 l -Ɵ*-+ 54ۏC*+ wFgh|ES"_1%a4>$_!Z7}3=oΨ5i -:ȶ(OwpU25Z3B`3iVujO0ӊ>P,, -<<Ŀx#taGb{~G#$ɽN{[g:jr$$IcD\GHa99BKw@髐>K8E.kH'?Ca9H }6Voα @DX+H뛈Gz EyBa)rmlZzDґ$.0򠼜2Utsax[2d1LW_:<Exti?.TL%/>=X?E-|,ړK,D+M%\f%ˤz2XO2erh.o}bMjO5S^~B:7y5TJ4ZT飤dW~'Xӽnϩ:o\͡aaȑ\خd,v'*VALR<,㧍둱8gxw㳚+(qf 5ZWFn2LJ2V@=HmAƧ>wmxx#u6<=08Y.Clk?A5>WC5,5")ļ8Ï2cUք ^e:氷Ώ0Ә-k0cs' 0?Ƽnbރ{1ACb>$S? (9yO1Z/Ï3ZE=UznVuCidN{n7 Khu8~V rZG"B`Xt=Plj^|~ lКX 꾎4h滰'wdc74P8?ozÖ&bV| 0'*^7/ -bF뼷]R&!Xf8[5x;I rǥe8V9C#|>zXq|&Dx|X>7C/8(83j#}ɤM}F^* Hn7Hk׶j~쭙8}?p3ZS8}?S⌂+s㌰S"h -PѾ7դ3 -"87zn,VUj*?'.;xw㌈_xK3[[|[k|wH.gԏc8 MqFA167ΈqF7u)((u㌈QggԏrRQЛgD8~⌂XNqFBn8~++w㌨?gD3z2Έ2Έ2Έ2Έ2Έp3"\.qF8#jS.㌈G}\ѹ[gn*Ok+(#d>'7;_f*MkzSEo/@-w#mit ( -7|0Fx߉z'v*[@I2#`}؞͸z쥐:Rh;=#)})C\m.ɬКטb'XꊽUᾠArhLfG -sk -"Z Y`XOs\E"R -/^<\"n-CUzSa?U!}CS[< l_\x:|7sOq>h}WXM u9= 96[ 󇪞ԮUmծԳN:_=ǝ6scS{n{nW{nq߬6v|@s{wq.\Gqqqqqw -\w/0ou#nD0K3}L`.RW}$Sq"n(q92IxRZoWgJ\mXZ__~7rKڂpR=.咔*wx;,ԼpvaRkB =fW67^a;$kq?17񏵞g9KO#~cmݍim`yp!mƉ-eq!#?%?DH[keB8n?t;K0g3V\cXc¸W)oB״:~ժf_9ۿlkf̆+e23k ~2#Jbz257--0ӗ$akl_3~KwZCTӀfV|WI ._Rӿs8>>߸/m +zLʊ>pSn|))՘cKIgg?cÔ-3*cs73ndo;i㿽Y^RnK 3i6OF¹?>ܩaJfӖq9hk7ם1?KJ]*O?U4cVfv}wm=@8Ԃh+Hq)t;'|؏`"Kݱ Ck@ (+5:|bأR%uLk$}GViqTUHB.v}4Z< ŠNnT5f-. ?ORϩq{U {F~M?6ٺ>εFN5_6VYi6l6rG[MT(<6,I-=;xyNbo~[*Q&9*^4xF|>LbĆx-_hU-*㿙rОY}[3%+)/)IL^)q=Wzш:0)B@OĐַ{IWI] V)h_(](! 6,bK'䤔)رAj3:]JbXq9*D$N+wŒ!71spn6נ- -c6My[ -,I740H`՗Dc rm j ]Z/p[Q<fΊd3e=SzwL_"y-cU}Sj}Hϒ/'՝r<*aO4GʴȩNC>O4.{f9u5T  4a%*&gnzQߍ;BVZ.RL'|'`l#DCv$;iOvHr<}THM-R2.PEqϞi4h,M[4,'N^Kh~H;[bф)*:B(ӒTpBx2SoJPvu7 . $pKrWzQ𗬔|PxvԴe,5UEˣq8:.ihdC qLAP}E(tP ,l\w#ýipz1Ho%av' gc<%ÀEqe4 -UF+9 --jba/s[ڪ!<>JB_qH, ̸v?"?H69aɂrH>&& Jmo& ˚Ap; >"0>B J$x|=Ew5Vl<;N$8]G xF>K@wx|2Yku]>{>5nq} - ~>>N3+>UEZzH> ~ '8!m/" |$N%B 0ͻ N;@b$x'\{']Dǝ'6 uN"x%k _\#Lpͭ#b7:w| c"x/o"ro&8ů'k74Oo#x- #@#. 0n7|?@U?Hp9Co"8& |5 k47k^Hp<]sE_Gp'o"x^E ^Kp\FJu:9r׫ۏ8<ؑ^۶!{0gR}ȫ5@6nz;^F-cZ݃ }''=R~!OGP?~B? $'P?A uyOOQ?_F'/Q? =tпG~~B'{{PN 'O?~B/'稟C> ]+t:92BO} g=DKC9R/Gڍ ] z '2ԿHQ?o@GnB^ tA;86ON~Bw~BGP?㨟=w~B߃ }_~B? 'OQ?D'3:~zEOQ?UKϴ<oK!Gb_}fSϞ{wנc)`mݐ}V3SޅDǬAaU{f}q5[2_sR MA0DeH/{=Oy]Q xgnu){sfT=^0a6z b:@zQE[~|h(WF:BG%PZEO7`y}!Uo=߉s {%l1;s{ߪ*SE9υ:Ob^ |ʉԝ3t//NQ q3Iy_Rgr<3t" Ngp8w#)x?9&sfyUKivƧY%D1S]04{,zs}(ox6Ꮟb0K Ϯb -uDy{$y7f)Ays5>U^Y^sK1[jן Q^YH8bίCg?7GigY^_Q\e/?se,ogR(U<hfyUy<^~*̝IP^^ps<9YkSzZR;_uS/ߊT~m=ReX_{2T~ į"0tmgɯ87RZȯֽRNʯu_2?W*?o_k_2c'Sۣ5S/߇/׺]/_{*?Ϛ&T~~פ=ʯU~I%g'R[J%=ʑ^`11]pd?}=B5e=eLTy[XR|*wu$ﻩB'd~KR 'xܥݑ{F~# 7+_,k/'T~-gY#d~SyY;oE2kSY[oc2 ZYK7:7zD/EB:?7*~DJ/9M˲#xRZlk6ݘ\G-6Lv*@UB~Hגc}<1|#N{:\k '{ k9{pVB\;p]G.u~?'pu_ +u).ϲG?'ۇ`_aO݆9c8Ϛs_" nn%LLfN@~'??0c|n?7Nemo@˟[dW ~]G~|; `{βC!x}2"<5b>{eձYL Yw1#βޝ*CY=](b'wVgY-Fٿgl>_ϲ?Fn au>CoCf{[gY -R>۴iou,J@S!/AA.k})Og]+oı EGŃ7ߝ9tQqvZÙvϮ`Fj &V ì,ʹG/Ed]>H"g\]d}5W⾶\"C/ -c> Wċo,V ҭ4B܁l ?k X 3:,̶ZEBXǠףh, Lq]3;z/ mhyzc֝{tnUOذhpZ}MPm.V[UFj o"6g#}MW[#i`vv%Bof;^Kԙ 󠞬7zz'+L<4ZrMU]/"*g=X|kRd_W3_`N%?2~88.8.\ao /x~2d{I=p0xE݇1EvO*=O_ZdǠ;7E ßїSd=}VgE![jg_`[YW2}V[}蓂 00=e>{/w^xP J;"ϸ?cr1rv|CЗ|46}6rqv3@Ks\+|c,~tiw{x ŝAYM.<ܟA~q3vix(ftPW hp=w{w'ߖkJ -߯k?q' s#|NB4(/t+_;,J(}{ᷓWUkNd!eLQvΊ>k^ y͍~S' :'.(K|C#EG9#'j'EbY^xŋuRS\scLj6+/Fֲ uˌtScf \ߝԿ}]oz';?semxq;\.~1zǽ -F2}dDoM)nΟ<թ~NJȾ=CɽgH2fm=ڡ}>vyNCޱ#gkˢA/MYF|fL -ٮ\ȯu$Hl%;:6 -/ƃnLGq|̎.@ڱ+<h[ߤiiӬӬc[o]}Y,#_b" tc6&q o5r4tZ[ג_{2yw@~$~qt7)~Lںʓm)-1=痩zb}G:UtC]+V?[lי]F>fGUv'_(N7Da{&XojV%)nEԲݖj8\YŽrW;ӭ҆RRXRIm>V_2tF>V_{'u_r?3_u_2ݩ}-_2gR~Xd~Jg}Y/_S*~d~T~`d~#jAZ9gFR#N׸5n(yܨG+|^59cGd2̷.ށV;ɽ ^#?H6z^zͩgY&?w}*Y'Re^zߕG]/0d~kdK7$7_2BRd~DU/~,k8L˲RN{/7ۺxߘ~?RiCٖjKe[,W$}6W ry_K*R{G ~[RyssO':_(J~r< <,mam:9נGz.{g=rg5IptMr\/쳯᳿뗊vS nۏ#>y,48ۦ!_zhGEّmt}^~}y -ۗ,_o_o_oo_oi-}OD-sEoqGg=""-R0|/5OP?=re>yfC/ nss}pUjasQK -G`rLȋռVveL`8gGY4&>n\/Pfdc(K>u2<Ӕ{yo7bؑf ؁&piw ߆/a{o V;چ܃X#\bUh6Hwp CBdqjfgvQl/括_,Vr,DzZcr-|cAd9Y>~C֥lׇh?w %ZЕV#y&/;~&)toBZg_#pcOA^}pk(i./npgw*?zp:7ݔu5_֝:LWuOeYw'[Z߶|HN'g'797x?HFK8g_K]k]N$^{F|I9|^kR.p7/XAEw5/,>q͸j㳇Rj-7|TZO?El%ԉj\3Hoy}S2!>8P&ܯGq# E)>!ͭEү4}G(eYւ.v~=ݥ\I nٲ?2I&i,k:]>ڪرfy[(b ?6ekVe~ٯ\_ -E5a+4')uxxHk/2b7)s4*Ur'-񻀗T#\iUcEk>H+jS|4Jc$>dbĿ o՗ -&^> >C+%~=KR5'6x`į~v\W(q}*_>K}\[^jKK+nk<((| Cw{Q߯J75^@7AiMW'['~XOA- -Ɨ$~o pKk%WI θ<=$:'isࢗ7(.R[OaIa{q9'".'Q:wk|qoo"]vK=`UFvIGҮ>S5=q9GX:2y [F~KO7w`t+|FEJE>^A|S(_j -}G=%񫀟m)|\#?q1H?Oܧ 1oQx!F~L'Pxp[>!Y C(gӀ!q?6wCAI#_2\y#?W#'Omw:'=H?X/OM{į~;|~ /Γ#7qqį~#r> -xC{/~Vw)}4?@_x!/ PÀ - -nkIewC.+ 5^@w?xRF~2i:'  -|.KxŸ~Hg*+|ܧ?·I\?*~ ~q^ŏ?ʣ_xaK!>)(MT{J#?q,WŹw/#?qsb'ޢya'3Kzd$P'z*ν8#?o>*:/>F~:.*#?_ |h*.x _ |[e -?x/x ܣqWUz!PqtcKzƃĽ*ޡeC -w[ }*>9[o%.T<}kG<ѸU<>~F~Io5+UO{U|xwF~x/|S<zțjM5M9[__i -o]#xwSO/5r+=ȟqUk[}s}w7 |_+A#gfی^&#?M5U Ʃjff^l'c _1oSx F~I8uS{n ?qSooQ :N x6__s \ǩÁ^yOM[>78/4JBũx].+8&xSE~=໌Ľ*F~Y/r/mF~:|f#媸Y1+){U' /H`6 <гg{x6ݝmX@y{Y&#9OM9!dڥK'ΎI+ܤ:oNH .C[[mhGJ>Z;8q|pvW@#]LƱR_NCr\o>! ,d6}qE;/=Vn~-:<.yJ?ɳ҇;<Eq>-e|oBYϨϫZM qO 48-ZgK.Qܸnky#ve5edB>CȲlڼY.ģ@=b?ߗt?J`.G[ֿ$Uv9ȝn,q9jRmcY\ɝ2q-m4Vz>@GmFW+/7w"zIɷGޏݍ'/|7C>$!Tn'ּu'yw3M.,u\/ʺt $MWzgh4ThKE^7HGܣ}Zp}'r{Q' ߂XyKo>}G釤O=^!}| A#!/+yĚ݀OC|Ht#?/ H^ 9m?M%񼨥Nہ3⹶C(:Қch.ow~pyvRQB>kkinۧi$ݑkNa 1&?r$efZb!"ϒqϚ 7&uEF}UqMidQl)Gc|a -ۃ~]>~C}hZ@y"1ų"zҋ -pπYĉi݇CwiHl[tމ:b>gq [#w<g.ұ)g*1-~gYZΟȩɊR>EFƵ)2(Jk^hZF[KyCЍ|wgtճNSlNsȷ!w/ -g}\HH>)hm}߁1R;<ƺ<16yhj?tVr"ϊnLxPg@Y3}Ә_>Դ|n(?UHyV<4 c_iMK1EGGO<(so-VY;5+z#txwzgCKI4LMG[mc*ޖ.&voG^ ]ߓ9Q0.{mi⎐n+[ڂ)&]!^7ySCoxf, - :km -uW=H!צ:He9VycWcq`Mm].|ޢq'6/rw6+w(i͙Yq}|+}}ZLv!i=NQ7<3o]M9~ĆK̩G/nzhw-|wkOMi{-̕+' uݼCX|G5"o1ݰES+>kO۽څs;[Q_:ED^r،s}w8N0dI>k ڰ 7M>}rG?=:@k;؊ Z(߳1>oƈbOd ,g voW %"(<">׸- o…?7<Ul7 _Y~Ur%*w3fɊX3>]#{P ƆSlC] Ym /yY[K~ݒߑ#@>o; --$M8yYlX -Lz7󶂷9dc0|5y:F?;Ӟg/mgs,mk9{wM͊Nc[q:y/k1v~N3DX3爇`G;,ɉvN~5ȃ>$a}'B-/9-~F.ƃ.t,6:8mDKkaX3FAxӋ-BwHe̳q̻?707m,eaƯ 0b?lغ6Aw5҉mHݏ> -\ܕ?1H=S6_5fF+e+/<~t$S؇w2͊w?*6i u67_tƤCzOQ%ȇq|JO0c["6t'_rЉs|vtH+m}q|_cS0a7 {ak.UsA݇XCFݥ>l\D y9^v>ޗV;t=C7ۃ>HIoOFĹj=^!R Qˏcpuv:]\X Ŷe$&[mSbnWǾ\50T^dEo}8G+aۋs?Q.ƙ|O7ꙩ0dQp/c; 7 c^:[Kb\syD^-x۹>VI_08"եюǖ6unow2?-1^^F/fBnugB?p=Au\{lcB.д1k7i!1j[xwd7l5 oHE+˂?EW@'c²֑u-y# -sv7z.Ώsqe-zoqɽ//lo#c VE^T} %7m -=;d-5QG;ߖs 1w!/ǂ_#oJ& ́ط=jNetL g7/2V`^o5*/zu4>Z-5Zx m'9FΧ Oqye,k03|l4 N;v<:X+tY-DYKK.˗9c+?/SՇ2Dq.ӕ)a|Gvˠ~Ms`cUkC{cj'T#øN0GlN62g{ʕ}+X7Vuo۶Sy\rLE=BcK˞D=#ċr"bm1W޷e1>H8`tJRVijRjm528 W6tjߐgh^L%ڎ>^Q[+n*lWz}-cʗ v5Mxͺe0Ne7 /g^\|Ռ6/8vꭌHgoCdc Wx쥧DDPq)^5߷k%õe#kUw!=  Neگm -ۅko&cl%ȧ+Ur'3` 6Q0PX#[J ^aV >Ŭ}[אoao:m  _+6ԌVOܬق+E+Ϭmyv#^cOȵdIHcs--5(,7ir̥K8whENƳ0-ck n 2'P*1_[q;roдEVQEV$#48nɶOqsu,_VQ:ؚ+}8 !MnO׎r~ O:'} H]w9!?_6M=ֈ7\O6I [ѷa#`'xvqJ7Q-;NF؏r%WEcLG63*mCci=g2pkW(;>̾ǘsSص>MmH?-}c=1ok~^o>Bt~N u~g?ʌܧgϡt/`鰽sa,j;Niz4|Qm4o'2V\+cϵ3pVNk;b~ ESh; |9n}ӬϷ`錌PBK;|ާhWlrweuS:6㧎S}})#K~kYlqtvX΂]}Q83h~z8a1umqm!G_Gp_OF?\]WeeT75%f~BWq23H:ۦT=|CQ-昪cu>1uK۸>^f6mqegE2.5,*v <3iAܛ]={&-c*avs˱f:J3-ǙMwn|Ygq\ؼY*?}Ծ飊&FOsc cmmA.C:[X k'쫆A| h}M ns_(YK4w9:hQQn1uXνc.kKaa8VrO 7zYb>{XS#Ҝq?53}&MB"瞦/l"3a-SCn\?DGUm6{yqw|+!α!cV[ >tú7CxvF58{S^g)]dwB?uibAoD_#O^agmtYWBqͬ+ok\?qaOwFU(Sr /ǧ)?<)i(7g覻cϧ^TurMi#N - 6LHGrx{uo5F1l5:]˧̳ -|տ{pլs7g~tc``֗ -6ihwKcH߾4-R˶_$纬j{^>]^}ntԩڍ)c|6ֱN~6g&Ɗjo AQqPmܻ}|ݕϱk?'&ΕpLo)rȶ=8簍C9|a7w?E9[XflL,2PJ~=ylG#;{GylKU{,XUzy/ZQ%ٻCr?99ReR.MW˓>\<_ϓ&'ڬbY'>GwDb;>;I?/Mor9bɉb~2'|>՟ױg]?TgFS Mt?a-0,;S;T{vѸGX.#œN.KDuJZۧmƮ'~v7̮'h@`y/g_.D:RuƟ~qG~!{(3C{_L;> ݜ$7Lg>(-j>0@3@}8 Qk2\v<_!cՠƝn^̽MC:+5["߂~ykmsx׺E`< 1?bc#elGY OQϲB| 6 8|C|.w_F~]50t1}oC#q: _`^2ip_et oE|h:7'PP(t7T}ZJX_Ffp~8EiʘJ7]>˲Rz Lxy^Ω{K֌>8#(6{T[a]]0;'iJ%`-֎ωD[c_|Uz"jVwTboPV 9ӯw/|NXj/ȿOԿLOh7;{H[R4:z"V5 _@™[^?}>;ztFf~x3Kv}6>ˮ_[[_IoZT>|]_' Rn5>P޽B}y>!Nj<~~Gkt'Cjf }|i * G6¶Bnh3Ɯa؟7kveg//qJ뱉+zc ǎ5'kS>K%9} e߉WwN> TA #U;Z_;gy6A;YGfFƘ]w-]ر!#Ђ،h'(-:{;F5n /rjO hig?kzN?&Fli|ut,_~_=Ds]f?ȹ$dW1,}^ni` 3dx1z=J_軨sғi)])(l*d^aގU}~ܷ-!쓜grn4 ;U^oL{lynb/`#9Rs mP&rt?Ј6 }#hJrz -yzT_3[Ij1x$À何mL}}u^}]_]hɾ6hwp^2ļdIn/a51K.;e~O~55Eڷg?y8A+l?EC>ߍ9goT>O%>P>Zo BYֿoq=*=.pƧ";a|f:\Ve]S .~ίfOR�±f/asU">9mq8 1hh."^ ZGg", -8y4&fO#P.߃Dzʐ+]מkyakam~gK)V/3>}콱Kq -e4\'RWh_,q?XC轗~qq|O[{c>W(AQ_FW|^}u9vlTz=Lf^%X|Τ4j?u9&;ȱFGi1=W3U`l-(LWK_ccx?34 /0c̖? Yg}_<}8cA~}o/ߵ(dea2s &\K5/OB'!GggܙTQ\υl˔=3 -rz~IhB -$f5^eΙǕ1yyWas vls^Z<{Nh7HG៷#"g[j9UMp|} DʍEd "9µtA[^Rd#bzȊ@>ct}y(o/mA_P{\=GnΤE{0=e=3Cs<S>c[Uu[>!υD#F!=+DLq{b/ ^FCk3'=3G@^s~K5sq|E|w=:өo39b3ǘj$s9ws CvVu,5}r\Ŭ+I~f+w; }פ V`G{j/C=S/TKS}@%ﶂn=%Ee1C>Ѓq-NX[Ϥ@+~X;W$>t$|7wt*Ld|åw}y?\g6wwN;MYYeIzXuzX0F{34Dok1g;(n{ HubjM+Yat}O|u|*8o;Oؼ;UI_xp/$]P//G{w= wGi!hkOEM㳛^qol'M 7׳zq yOgo\g5IxK,ȳM(رN^\ ¾ָ}ɣJRrnQO<8b-$L}A!}:KyH+~yV>G#;ݓ&HWsm2~%.^ ~p }2b~TxY2BBhbR9 E\Vc\=Ew^KEHikJ{auFY Uuuf}}u=mo>?R|DsjHyG;-]r쓩`vX:I euEw; -iW5c/pLʉ~Tlϧslalk=Ʈ /9=zl=syo"t>Av,˜@uކ~ini\V?ܛS pYg_᝔cF;+||kDS>-QX7|>beA9<$͜Y̤o9o}?Kz:'3܆wPhl[ cxxN!1SEdGqnu\G[u-}^ocǎ }SmE<:]0nEnڟ~OOsa2:\^,{@pj{S}いQa"^ @hu2^W97vnD;*/t C8.aFx!sq~#i<:jT?kGv<FZzL;L\ wDt'/o9ϢCbAtƱ;^tg\y[j]jbgQ8oӧL[$,CE c}3| n®m@ZaOm滭M݆vo83\ܛ/;yEK-OmN+}zkOI+inil_-׺cѥۭ1-nط[f]]e ܸrZz/:Mh?`l;g%q\{#b-GWA<!6=X&c|NgKKr~g\y|_puNHƚ}T}T"p-d*/j) -Nc oH?[\Z^=5?>nN&/z6Y8|-ʻ'" q]{3cǚ0'{o]<{|o6m ;Dsj2W*J+~cG {b +m7nUHf5e:;lS瀉Ѷ?N_[ߥķ-u:}s)|G}k%m `J~5w@dwg*[pX,[4\_pzq]} ۓ+_Z?z 2Qa`<^rs|e7.qKbow!vYG6K0ʱ#߃wra+s-s/4hk9ۛwpA'x_vЕ3nAuo2R[|cs2>/x+仭琕C]ĘO?dz9w.| ׭=E u'1:?:~ M_\?:r Khĺ)<5/=8: vt,=w%;{x՛E$/3w;j<uiC]{xyKOSFiYjᢸQgc;9Ӿ>휻D߆WӋQ}8; &Gbn~/wcuag&=5>5w2oCZ@m)x10D"W+h@/ܚѿC3-O|DWCfB:HsPovQ-Y/}N+ -lǣ g(a^rGk7ߏZ;Si27cy9 8;7tA}kp}va+srZr-y5-[˹'5BJ=Tlr}U}'-y5h^^_J^nkڐ(〿o+}Z>+5-fKɔ1%RB $Xm8׃d0:u1&>16h݇KE5`<}}觉}}}gblKO{<`Sf5u o,{yNiӞh1hE\W7]^BW(wW>oe*S|mK~^i _eZQcq}qzN|sٌnYwCw7DbĜ Ǒ 0._0NpeXWr/:7 ME> z3H܈ԯL-r?=ĺH ~kߕ#(a]oA.M%]?c.I'IS\Zѱngn}ӭ)|}, jrr8uZ%f9}W'ozq-l{Co_D~h7_.yv+ci$v˘S>#?wYKYzOH]Zz')--'-g#sKIm?NHerM./tߑē{LH_v;1X h6or~㥗.ξxV/̍WScu_ɳ9-qNȽZNpd?-~-|z0m9ƨ~8XXqgSw PDB7u+ڛzVifڻK|gϧF/lkͰBGȷ;AfQA QO{f=ht9Jj}kZ7ڲ1k9.0;ӣMa-Ǒ6Dg_ݞմG{oDqEz6Llײe<7ռ&&*xvɑ3d>LՅv{2a;W˼yz+E??莴8Ȅ  -9JcŸ9pO~oK\X.5ur-lQ: -w\9֟mtnҽ}'kOc%W->-v[%==:}; -O>oQdtړ;_!{둖q~xmd}#OW$6l`smlm ? q߶ %]٢y 3dt~5oiE6`u׆Am*vf>1VT{ч6i 0 !9BĪMl*S_zN Lng% -g3Wޟ\cho'-E{3\ -y1fϦԓ%ۻmۗZ6ߎ6>Mqm8 x~XLEqכq [qm/׆oA쿵m8t]gڻvc̀aGeѼ75yѦߌ|_||gJO>_8;ߓq5S~u -y<'%)WopU^o6=*ًqݎ6!(o5}-ҞQ~qi~?45͉g._4;daǫwV nzFA?5Cej=(cWt. iKamBOZw'=ϣ365y H.*-gEb.-)hA = 3f v>kMKeaO# iˏa6=|!FyEVq!㡳>fޭoީ/oÿ;5X[^1oƸ/KyeSR}yp޼:oyME[[7㪫TUx5*jusJk+טּK*誫Jo(E֪y5u:.Xu}żYuo+Ս$;}eUŔq/J**͚ *xvek7VS [kTLXPY^qɌP0S)7u+ -Q[5-]<2WT+UV,W&TYV_W1 -J)-ӫg΄.+JVϨB+VI5(S^=ofn./Bh*JD6]1]bPPTż`~+jf^zTy5kXBVGX*j*g@ ,*jdQU %zͯ6PAMEm5UYR^ ZU芗."GϫPrZ^ (6&X9OkwZTQkQYM*_U?rDw?'^W)}U$^ E7dS.YP,+&;J)फu^S]gC)G=E*W[b2r@8g,/`%ZxꖆUl5uRY+O̰=ۥb R%J5y)˯50ϜYQ]C_EŋtNjRQ9kvݪ]}Nަ/+/^h(D֜FKgT2ހ -.ZSzC_^;ƛJJL8izI%xI?"9+/GyAϝQUZ7a]+kWkU9of.q_?B"?Ji8Qur ^KS+U1 PT ;uqw(G33*gBE4R])G_RΞ9R;D[u%qW'_HJG{8CyAG}CʌnZf}^&) vJ:9D֖ϮQ/}BvR_)u+U2|/b4)EAط/hڹY+&#b-UԣQ^WU<qbe(16Q:tFٮU\?;r"챈U=T,8;跥O$ /@%"Ѫx9ЁjkMWe;hv& uI@<^rJ?3*# -@җ2x//u)?aT {E6ו2MޟoͬdP]~y  j+~ʸYK-R p2tŤI~\94t:/ꌘ7 W@?Jvv/Kķ~y3`Ϳ)]qaV1!bfR_MJjXQĵZ71ކ?sĿU)*uNz -uu2t$~N+jn6a0J/653+T5_%PɊr2o;sg׹U^NR} έkp3uڊ:/;7a^w|/T+Q{2\4e]KL$˛ Вwam䔓[5+Ps9" 34ȇ[\<ڂT6[*YokRJF9Yyp~p5WU%z᭞ȯ˯3MIW38_JO]LŨ2U^^f' /C{iL׃Ma:TSQ[~-dIN:T*Oò*T|u)i%WWϛj8`?OaJzd(Ô++f:ʗ2Ɂ6R =kzYNẂvbmZr SD+KLǹ71ijFF -oG9T^`qU+=*E9*}FUTbgx]5*ճUIה0T-aPNF!G ۬P2 aZ9kxEp ήY7ĞSjL;+lccW^RKjcUf -_b:xx#)n)@Q]<É_qU%pZm1ߔj*m<ĔePB=G2SSs+kr5&nR=afV.R$Jt|=y5=BP9=Pv.Fsqߢ4rX󅹜(AǹɅ(@.8tVa/^.H cf M[QUaBa:1fq;#YÏ -=t@ѵrHILv1;\$LhKyZ }|.+ UUeݗ7u~Z84s=4"֭"E7kDr02O?ME8r>Y.Uk,K!BaH[IJT$;=$`\7UCFGrDŽ8c#>n~MeuMeb8A_UD_Ee.qҔ]ln>e~ I%.]DRKATb+}qnkNgb4tnfMEEWd:IX@tӾ]<[2^^U'FѺ-YwtN&ʯ[z r/ϓΨz.t;oj48>)SIyjjg`GT–#ѫ]NcYfj|KKKy$E2]%TWפwevJW uLL9<9ΥԻ!ߨiUIYgr*Hc1:"nθ3_U8H/4>뒮v_ -T)[||hf978_{$~q:-[tmKәn|隷`@ru 8Sݗ{7"W*#FV&G2]b:dȒ՜';>])4#ysz ̾;:#Q*?si%ĘN2]oy$sJ*y_+NtRIbxQrdP/Z9SJR˗ 7sK&;3"ϙR.|Jt_=_L0i9Ox !; |]i]:ZŒW):mY_r}CО:t ?'MyT왾B7(c\=!{xp}׭^cv:kG'3m;n 9È{A!08Rn}]إkˆq 0 -_E?0>0 nebl c u(Ӑ 8q0`r@_yv\aT:F;8`pЋxN%a&I ^/$>ègmmᏚw!}R߅G e/#cbvcpdN: qvaw -vk3`7a<߂v{]: z|V&S^|O)?-pP]2m'a!*uǀtVO޺9Cd0 hGɻ{hNB@ <'( pSׁDpm׶ -cGsVT~a-VssU+Kyu苠aۚip Έ!ff}F0=DBo-GOA~[ž?W \)ȭu6ňL^ An]>Hn,1ђc]$|{zܞaW߫%ycu}Xsf]\3R*ܝۃ[qkCz A ڮBڈڠŲqw9hWэ5K@8֣X9)<qu|T a&Q5cig}_߮SV˛~>'DOIA~rPj>U=ޥ+}QQ[ -kHTD[z 8z<ՄrE5XXZhz u_Wd7R03񸪻<|->E:>mP?+@`ȁhEl}|_bowOn[ۇ.1ΞYBƴ:z>5@X.1p̋RzTAPí~X2ӯ|jdQKm<Ӑ9d֣DHC('lqgdҙ#Q Eџq 41|D9z=/Ej3`wd?T2D^)jDSʻb/,)HDK@5; ?)Rj,(,)zfk0ϦOƥX9Q -qgqז"p_^ rvP(y'>ޯf K>|2~}c &oU?CeN)tP (~%ѧ${ޤK(qEewݼTlaKʱhቖ--Q2smh{q -\7!+9 IG{A77NG9k -tU-ȃ0 !@}-1]>xF`}SXvyB:!`J9 -VvfQD*Kw zA:8IKzBϪ7M='8mּL5K+ߒ 1@lzRMh"+ /]OyRvm -(gW@Ч|))3UOsC!dT%sYl6#15˴iCi]S(WN^ކFf4p4,\6nrOINOiQ>v4޼C4󶠉Q$l]07r~|B>C%$Ds ''SɲACLy|q6 ' -/؆Ep=&=[8ڟ^نA{m8ڿ<#6:;ENسkMainWv7(Ȋ30D=sR9iEܱư뉏IҬѡk $Sw"쳅la alf4ݒnlwdjfc̹6 ɻث -}ύs_}uPAy0IV%(%y2jC h1OKD/La7 I"E"}s2kAT%9172 >b}1(Z-o|=_lfQXgnݔI|Fg!%6,ҕj Mj7Q<.#k–qz^O?^ mT$@dXb6Q;lx*H:\ܛxJ:P.dKE{:<թ>zVuawfӾcn./.eȪڋ ;(:l1bd\Jv'%23&Ў<ؘT ȯW=tnx'e4vWZYN;>gtB[wȡ-H5 Y+E];pG25,zj} -;MBN(/~7T"F__KAsTfj2 s3n$ۿmƈr"mN 6+Mut̕p`M%-!SV7@:wƊN~xwKiQ'}Z`Uiφ|ﵩO..>~jiQ<4-\7bhȝS-qb>{)h]oF :̯djzO~E -ᣅ]mn":F<7H-b+Bqo\VD@@(R/4 JM*,k\T-653:== -/=!\!n1C+ .*xi4uw:>L7 #`#So7cO1m -!qFMh^McZ9e Tڦbp?2"{ɲ҆hylO|wbWGi4I3dmq<]82$uD!"g!ko~Dgu+۬?J55MɫSґ]^r>^/F:Ke`.aHi ꉕ4ċ[ͧ c ނ>}x]0}3+r"xO~/uxv{v|DMAKoD7W0GǢbKzN,<>7ׁ-cMhceR?FtS>Nz,bXͦyqd :^b}2_['= !aceK׋>r,-ݴ+CR~Yy'K}6oY3>+>t,93l;[,Mwϙ;?R, -{J9("Ry]e8|3<^Xst?o尶 @&5<ٮIZEXvOt't=Q+?\! (t -ߋq'j6-;"w֞E3ɛzX)HsNVQ#GG4"̬qMizR<?Y{=`~9t,{b$!E }}YC}EǏ=#;@_uYw@{1E{K%iMWU.Ț?pg -]ÆQM 7 eR_t"Y{%vԺ.8]`.+da%Š_4IJCx٫X}bV_8U1cmqU̻[)4+v';?}NChf`!0߮0o񐍵5Ɨm,.;Ux(nKCvRyPy2*YFo5qwYZ6QKa',x]-w(elz++S\x]F?,VǕHҿהiklSiMb*hTYc|SZj>K}NGXzu>ǞEn𲵇m/[rFj90|&k+aGxRG*lE`֏I/6㣭l~r} ?'d[OvX4*GH2#8J1:yʣW=l7<ںP)TiڐuH)']冃O84ʎRVWbvEVlh|KcLkWLJ`#rʇ6N#׊-6x1wuuxo:UDZ0C RLY=A)zGT؂<1+r~{8YUYB@/G)᫽'Ui[vLnꨣVhl:?,aq -I9ѣՌ&IfҗcJBSVIQil rWv`P2ߍSEڤ5Q'G\Zo؈Of$|íPt>\׺l7 ;؊9Aռ_+?n”޺60Vg&K& &aNYüߒ|շe;h²K^U -mÏ2S6U&:T*>mmf*5wßl7HfδA]e{LfiMo| .:kXo~Ab~!I7*L0tQ2Xk5;}]]MB|7.UdL,r<]7ۓd02n4mˮk' ?j!c.k~ժz?tU4z _?8:_k-Y?iY[`l\V+ycזW?ؖcOZ[Z-+!CTM80)#ڂ! ?a\2)ȖLqC0VqϹ?]3Nۣw}w}rW,4oZY*wy^].g̕JP;szSXx}ƵP᫝[zDJ*{/ޝb.\\@^/.bH 0: HaS90BDhP#J^A\ {S"ړI/e7ZbE^VWl~4ժTjHJ0QU^o*EU^;⪼/UG%م~"U^?*Si-?9tTXՏF\WJxOL_!u5~TX"6|1Q 5QS05cq5̐+W1y8]FK.YN.!E?[QN֒'Z&ʩDFt0kCSSFI&溪}?*K\R?SdU^odyzW*%w'%D{sʫq.IVU;zYN( ڡʐ=f-⢼^*_"˗gs$τzoE@v\h*eU76FeXGo"YGL<,5pkT;K˺$`#nJ)S{yu=#/ܒ۞L%VR+>˰`@%/ B.Ύmx:ɟ P>΃.~ 9_Age?Ʋ/'fǿa6ަ^Eݩ Od8Xv|qٜ߁<yy6qasAqvXv38M6mwM}n?> 1m'm  il̞=nچe?_sWԳȦ?YdcyZz,i'{YvYv#6RM=߲;6&y6ǻ>nsmmsks\SA.OY8l&llU6|ӆk69zmnSb;6ݣ6.~G~bLL\{+yJ# sL|x }b^_,bc%t|\=!t3OX$>tN -_"uzP 3" NXςrJd|*$MgpD*(7f3׮1:";kj{c˞cBz+36tt!d?bHE.ذtYO$4IIp -o6]}D b(<Յ HV- ~k28>m-Up _>}}ф -E(Ե$"ݑPT7WF:kર[;f@n5P 4>-AΞlUFlnޚGpg&CFGA/jeӨVR'|`V!3໑ur \:ǧ -+)u[rl(|k{Lq0/va+$FkQt4Wzߺ؝X4d_F1v}ILUk~RFc%hpD2:H-:/e"gQdaT#vbFDX 2+sIFBZs oPl"Pڌ9][()[Lc*CM˨Ӝ `'<ݓ*Kv 5Ƨl8Z<E?P{㩄1aέ.{rY/RZ+lñ] CkJfU5{D0hYjZɆj`H$ -1g7bқPf醔R;$7AҼYk)X୆;:oHVo3ӘnhZS^yaL -+]-# ==5KLW3ԩwΌw.W#﬒[ /MD>E3ލ |?nqwF$݅VMj^X)yZqWuf#>1N*ԝ'~cǮZGwL4Y: jylMH5sDs,ah%#ÈׇS|k?D`'6e?4T a1r>-S:F5{uzAf*\ dllBC 7֕?Lu-CLA-,kf&?mՍ+j Sʽ+Ŀ׃ESEUU.?~^a?OlrZG KrdqU/ mlɝOW_kE3W6 #Rww0C/?=)s==#u Bty8$.R6P9\p%C\-}2EzR) 8(5<hNԩ~HJǤ𒟈Aǟz ?%69v8~ -2~yxP-tN^~_[ C ;$~Fę ?#[Ã9RojgAN4|dHS+_旺m2׵:nGx%EW긊vC%8WrQ8m e㲝.((!8]S6J+ ~Qt.#a/#C?Ip5s9E&!zv{;JF)p\N} >Jp\AJ\D9Lpl' ^DSWk/Q\ .lr'8UBpzekJk -W(q\D"8]['8m WkHQWkMQ\1Ei#\¥j 'Jt $\o'<$x)w*|>j|%B$""x\N^' ~-OE3HpvWP &x CpiIpu/ eMpOV~,% &x5_O%o#"R '|+IMpvcL}', >J~~k~#x' $)o"Hp&G[OV)Cp|I7|o&t"-|~+g'Z{FถPN[gf u:U)sOcοndt\6QLn[9_poQرAL<}%m|;gd1%ÕafcL78.62<#`;=zWos\w8؇>w}_BRw `?nw /5׀8/seJby/vvfƖRew){U::A:1K=sp.3K6܍-3|V9fXca>,UvaF|VoMf~ XeʷMf6+'oWx>^Et_ow7c|| ߍ:a"_|:_|j||CI?+_70Y|n?+:t~?+E:t/x|E:?׼ǯ7M5<~N}tV?\܎oyo\3[x|ftR?+uf:7+HN?e'V7gYFcL?+߃:ݧ gb||cob|}:<|V:P9,|!YdBRe'nڊWʷF-2GVc3ȷW4Ytљ<~Vt>6gL2wʹ 2y2y|g?GgQlYC*6Yyf-09!(=dn[7x%H' rHD:MHːC:|"CZt! H!t iH@z1&S.Cz)HD4ˑA: Hg#}i5-Ht;k@Zt7қv tR}~7 C!w D~<ԫՅ<9fm `T7`&Vr sNJhaY6G7M(\b|X'cʦblosgNحn=evavӤw/>\&fal<`~MGw)~{ jȢ6>Bv<.W0w{Kʳ|] E[\fk_|zF?,+Pv:aehӆ _a[x,V||0|>0An%xr,w])W N%O=>$4XNҧ|\?Xu0Ǒ+?l×- {0g !r,$v=;R$K ߾!!J~Wv/ꄙ˺sٶ_|X7D~8sуQ0?^7 m!|m\@&`~!xagu;9&&e6"#{npˍ wl=C!R}=}W*,QQ _"Mz2ˌG 22G&224<2؇& -*Go%ӕ{+ wb o>}X<%OօgfLs?~0X.6ptݢs?6̩AiÛLV%TX1'G|"\d}(yؗMH.*/^!rBvA0P7MʎE[)FٶLTa z vq y,cczYv= x!6 d6 sv]l=\mE -o6L,3e滋:jZ3렟7~u~f^Yyh€9W>_ <$` !s,#_7CsVǴšasJmf ҶFҘfQQ.9 0 _aCg/?r9bqh GɒIW;jI>WȀ5ybӹ7?O|7*#eβiLM??~~T?}a_X[Ŀtk?r~_]־Dǿu"%/4;kC_yϺr֘Wwɓ\rtKŭTdF쪞1.ƯέpsݒqkqUe#XۀtǪsUV+R -ODZmDZqg,|^lFDzgıgYsctq,|F!>*8ncU2c;_ p\CDZrcY;J8n;e8Ǻ?6VꄧR|y1vyNS~QR2nr2UEzC%BzOMNz4H.齐Mo#XI23n<:J'[^]6^-K-sz%lz9=2G/B'G<@dѫuKx]NӻIϛ#w^e68s令WMI/#7^]6v3r勤הMR'p|gӻI/+I=4'=o)f;I/'#J~v9Mo%W˦w^[/^^\Mȗ?Q˦r3W2EJ~:Doy}/Cku3z˯)e-/T˦^GzNz)KNzr9hzS"'*eӫp *e(T˦7I$oU˦뤇 J~O.8Vc]/߳_gXE*ugv}S˔<龭e"/R̦^x<_3_CD%lzO;y 8%lzv Hg6X1;n;'=o_,n%lzpҋ_6Nz"~/ލNz"R 4NzXCz^I(I/u@ӻII/u@/'=o 9 ~AY6\"9:MGخ>x'`=u'8I/^*>p'=Py9 vþ2Lz7LXw*Nه}޵mrEH.Cz& >B:ҕH;.BH;.CzI#7O#qAZQH#݂t mKv t Jػzg"ݎRHg!1AZeE?| Iy_VxSffg9f7M+F;u3@2U1Pv6 sL]6G*]gZwɡXm1\?,L=1m2t\&̮GٛXSq c>.$ƱmcuXSqO_),x)g q:v3$ro8=Ju}]eıX8V|9m&/Xq8~y0wF_"=;ut kZ7?ؠbϒB+ފaOŰv=< C,wa%^P1*U#Ίa-gŰv^+t̮Iӊa/R1 ã *қcX׭ A0.L7Vb Nݵ[wLM*юa-Y2ۮ16+cu9xOYwa%[1t {Gל徧bX;:u UxF ê&6vw]iŰbXfBn 0#U,wa ^Ű1)^ѝIa~eg?&LvYIR673>ӘcXgKX:u:M3bXcS1QbX^U[ǰF0+*%t k9cX,OŰL:1>,30c$r#|g{v B8%6 -?UB}=İ2u 02NVQ[uim̺AR ̎_\0A˴<, oSUj yװ *mj^y5אtj61P߼yBb~s{y?KcLm߼y5ڴk~s&ca0bnw$I[E;u^VNM1Ʈ`;`hBR1wlSz #lNO|%]ujC{X`wNcJ``]-,K9܉%åY¬ _cL/vųزOUa*lr| -jTW6~AwzW1>PalsXqg2L dO8SalUL"`R؊ =if\(.#eq%>g\~~nŕ5%A(W` O72JAvX҃ŃfNpC[ǩxFlJb[^iB}|nSMܒ֮cR :SYSgizפYx\mΠY1w]ΘϫUgv岜1lW}l,gg5nr1Rx,gqEUc[> nWwS. |_<Ml'=o_٠Mo^\34NzJ~v9MIOuJ~8ɟ*eNz~Z%lz]{_~W/GrW*eks _W˦^m^˦WϘϗsM)'y_6Nzb,S˦'@YMNz񁲯_6{AҥM=jRϲC8M=*zwIXEJb{(G{E׎<]8+`&骳4ݫHO]"ג:KOӻI/1D"=uw@>Fz,=Mo^@6)yl3Mo=Qriz^'=oG/^^P\/^?'xM-)eA/\$MT9(V˦I(x֜^X~Y.mtWMoreWgp.gy*UgvW8iK6e^T:OwOz;a!=c9izwCo4LM/ 6hsg@z2Fo3^WE{. z&ҹFB:na1+ͰOc.OΏovѠUS8<#/bٌ.m EG_Y0Oo1o~E!#YKYg(u.% ~?>dUW/vKd,J-/bRm'l-S:GDj-1pIA+ϳ`['PAunUND u$9ck؍eZ|Dݠ{呥e8e/B g<1쓅ױOGT`G63̽,3߮7Hu0?X/@P/!O/4Xԁ}Qr˷Y技+Eo"CPc#2P^ja As0/cc|:WLdyf ytҗG5}|GwRqz;b[nSl].>Qܱ~ ^Dkd~~ - -\ %755-|jw¿-Ugw\ˈMvh\`9rMso?UfˁxX㣁OՏUx_ă<HOJxPK[K! -/^ak|l>/LU'|Oh<x7) -wlwq -?o!x\qqOtFi>x+=kU3x7v _K;^[Uyǁn"3l5 |?Y -glV#W+)ԃ є|ʿ~,%]o(%^G -)h'H~kSayy)/S!_h -߷Tt[/m{mlW_'y/'nh?w2 l[|'G`xX#ĽBXC>5>}Ľ|[~q" 7_,Z תv_1#ծ?~]9l7Wm?pa~U^[o!ok _ m o sXZaO? U^O? \ -km O6柸Wh|)?qo^ xB;U^w_b)Ey+]|^q|wW\c?$ϷT﮸Skl>{﮸;`E7﮸2!q6<_6 ү]qlO<+m鿮 _w_SW\?q?xG?_x1mG迮~2XvPcx 7?z} %n{YxS?p?~nC;Xx-qC7k WkE,by}ąG|?ƟWq.xD1mUڿ|JE_?q5mlWo''ia L,=l00L/]ļg3f:/ֿɒv{9es3dqGPu.9j٥˺C|hWf]!y;]Ī[I2Y -޻Pޙfd9U1u#:ž5eKջyc\91[(ۚA?GRx^8 ,kۥFP e +Ϫ~?ēX cnlC9[M6s|?'Nji},YN{9q8%C{oA>mtVGIwqs#e4V:{L7MgG{]_~[z\.a!&hNdsYPX1 5dg@д)YN:0A{E{1EۚvEh>2)^}'Ezgah>D,+sD (cI:U ? F<ϟ@G+c[UdMDtS9z|Ve5Ўzvd>Y}->oToOBC( -^>MvKᥱ_Zx75CZ'ڿzvZzܨG=qtǮQɣ Fݮ!-ȣ?_q_5Jd ;"p[IgІ7XXE):=k]SH4m^4?g@ZnOz$g"M_d|/FdMλ"6 -+ ]wN mx(J=ύ&'I ~KU݁Q~;ow$$Ê/yw2۲ONa-d<揼z()yۖŧH[7:#ol+;}y >iʝVra/1E=G%ZtG(?{v_EeoJϗg֟*q+=5-:=jlb"nW$ -؇wWߘ[z"c>i:cEy FZӬq)ךN׊o)V>r);(ל'ו7F%͞K}DOL%\˖ -zԝ/ /6#dM^‚;٠}ܲNlDJԣ,Qu ȸ7^-5n¿%ܤdXz%"Fd;v[ !Bqr mPԸŧʃm~lG=W.r>17G^l%ɰ0BvboړRHu>Φ"uKuAf;/mǀvkԸlzDΖsJ&$^%w𼗨ry^gQn4Pw^]kC#Dkr'd 3 f!zS=Ͳlp>}x7*x׾e:pζ×)-?c&|͉,F}qU/x ʤ3Qq>kH҄!$z:u|}W|j>a~ocdak!huz y\6,yGuxȝ[SlL2c?V^oc xꟻI#S>F0^sž>_ƚijʀ<бQvՏk%- b]r@^MCj;ܮVX4-Z*-[>qmD˱kGFrlmgs{MR)>Ÿo5XFĂx}Vޛ>[@N7˿A -o^~c^Pd$8PTu;h<}D]L̹)YX+˂b*︳(CϡU[yc{p#piz1N2T[K퀿ҲkK0~!=v+%[v O[,^)G3%&ót刯#|W:yq?ו%;K?z8bՐB.*`oOؽf[ )ID-AM(݊bDPgXۘ*T{lOUP~Ec>_y*};ynb̲a<[k?K~j٭ 3L;A70+B+N7{')ߢ(rwlwqxklSIk0OM%AҎq=9܇] _G{ON{}, ]<YպŤi9-pcr@[;G*Vu6;s:&dr-lh>K`'޼{_: >U]2`h,C* KwJ-AX{q7Bd3'[J2%.)=)+Z].}:ϯ6"T\!aJm>7zg96_?<)`LtXߖgoȫs/Tk#V*-GԚlhlK< ) e+㰕5X<+<\xu8A`^ݵs_7W@=~*Ħ`xuʭu.I?e9[ M{:uJS >|wyw,Xҡbk|Þi}Mw!lE oPws_ԉxr!=ƓO1F=VQǓkˎ7volz/{c;|ُwi;Z;IKo.m'zo" <zMHc5}̩2Iss:|i6V{D`+5jw*",eFG|x{XoWm^ς3Xk}˅jۗ;GBrp+ډo d1@@*UOKgX ryWLڌq~C^>xZ[dU^}_MP+q.~zC9c,@ٖS+9e[U(ù`忆?<뢞8@8%s_` ʹKsc;Wܿ*[ NV93,>< -Yb:>3Ж.0{AklBظ/Kdc3Y7B,~ Y݋/[k?*lyxu;Nz~M1${\-xEЏlalwra+o e,;Pv{K<"z[e !C'eAA}#hi6(e$0q|x.>lys¾-B\||Wfwqw}O.W^re5hB7V`gL<0&4C+s|zqSxI<u j39x>({jDyi{qo<ubo<90˥m[Q@+q49MH?1Z>Q"er|^wknF!k5/^e¼+C)9[?c~hg-B髝@?-~OMSxq=-Gg>=k=}n)=|<=-|= }^p" |Hq݋w /qଡ଼eX-=˻eX[[Le ]yΗ{=:7-Dce}KwR Ym:|VJY}I旿ݝz~}6+cl~Y7Q9x=؇_"[Q_vi'{h)rr`vv%'.ao.x;'Ǹ]m(m{|e]MmW\VK؃Wq5}bMU:vh,E`M%jɼJ}hɔ pq,_x57+'z_鮷k!uWХW2&8kg~ښA<_OAJ]G^/RggM]l3Ի|Y:z(L{t}bU|suЫ?Ȼ%~w:B5R1W+!0>Ø !GrXV7uDKx[.uy˵C'|p{h<wsvYzA'd< ><pYúnyP8`9@}KFs;%1C@BպJ}dVov:|-I>>Se,'"ee>.jnE~jݩZwge;]r䒖iy:ҋh:وY5pV7&|עӲיläiZFUF͈ jνPPS*G> ؔC.հn˔~"L7sG!|s;C?ly; u~WF =jzaI` (w'`ƵqiY+܈g~Z?I~Q'bL<ϻ`FRDWZ'⽏ I'rn|S#Hף.l:Bbh춁^jlJ/Y/{UĹ7?cZXj Sكh۝ؠz S2]oROQSNC7zc)X9쓖?O8ozN,_z9iN>ܞ=Ḳj&6O~]J/̒Fjy76Y~!>~4(8<'9vϼ-S3{e2]b=q>? ӳGlov*z<~bŏ9CSgI2#We3k.Ϗ:!;?^w"3ӆ)Mo!<_3?'3S\笌yV.8&M.i=aU.~mJ9;?=0eZqH>﵁";B)LȚwnS5vyCiˇkzz!ۚ'm5%ra6V+bJRmfJ7Jt_q^RIm$u9P钏ߵqޑ{ kZnx:}-7D^4n֋LNϾYDTt+k.muxz=kO՜=џF.5SI |x|wl{_|0g-Y|st {n3L@L$OLU<9;虺Nolh\bmo=zXO`q6cX~ ׹]#&>KKcX'//}:Z¼jO,7곭[ߗHن3l-2%w[t}6x~xo9! -.7r*mZPKaA3nk-??nikmU>}5n~iB{9e/-ݿOւ9 - -p09Ι0%].߿+[,kceۅs-Q|րo]9o -׺%S΋fo>j|9r/Ⱦ|bOԾ˶Z+g2xo)YCu-/x֥o)6إ=omƿχ>>z} [7gg?ϐKb؀@v]~ATxYԋK*R&bf#1./G vvو1`1=Uf'[ɚAz1t Va`vl%H{vY?+dc[VZeWY)A:eV:.'3s~u1}[{m7-ޙ;'mLKWfދq{z;Ʊv`ώaM{w. ==]ߴ~_߱~+p{j - 0% ,tۨ;ȓVJ~d% B{Ke-yr<gk=gk5<,:*N,1+OV03խh +];M@~0\ߥ!}GlcFO xv|e% ]`nsmR*gu[e\w ^{^M._ Y*Zˎy wv2`n;Ӟ;_S1 >WB߆P^{1ڏɉ>1Lͪ״2dRǪD9gy8,3Lcg{QHS6ekz/j㙹 7ΜOKxGm/̸{rB9OD{ڬ||~$o&"]Pe9{ׅgwmg|L;8Pz~n-c3|\|pz"|;siwI_`OoسTr&(Z|eY9hN`.߫)}'ۻvy޻{ I}f&mV܃=7s/;V]:[bCh墄^FyYq+{R? (- ,<1/mVj >Í 3z;ǹf!j]iS,]|+_x[O'<k<b=\Ϟ}e#)އ|q^%l==68Oal䒃IuhGiX/mHf!RW2.jڥպ>t~|,]]"FܚoBo`.F5b+7u(ZX璘\,:f.ꭲ(9WQ^$eDdǻPfp.u}ly6Zó 9N?s^KooNul*{',lgB?Oމ}C`ztG"~R3sIe3bUXn6Iʕ^}.N&!Yr?A9[r,9\lˁ,Aa9,kqF6p^WWbowt&3Pan30= $^țS٭B^G=zGǢ'zy~}qdɂ~q7Nuܱ{r0|?.͌m 0` Fn, ๹ϭȝ` uoϹe- wZ]Ϳ=>g}k5su{JZlvxmœ^:ʼpqN?<4*&s+GXgWGמ= KT#֩N8IP7<5A&u 7tŚI ޙJ8opɳ'gw=_VyBФLjoAfyWݣu5Ė'J'3N&ZwsZ=%ߚ|^A6-P1g{t"[sSF[ݮQ;>]5;vkvNC^mC|nh td1tq!aX:>'=b>pN<`T&ȵXi ܧAh7?3O2}0}F|ȓq5xNaO#c>>j}q'*ڞ0RO2IGTRn~7J~Qw^A+T=؃SV'Y2Yme3ay,2x 作1%{ܘ9\cplq֋Dm|[^v1ȃ[]{||=RecU1g:yϠO&+SZkOn|fk+';k}D9Đ瘇F2m7;Ή kU_igL J7ukZ㭜_]3zJއ j`DbٜahS|~nTw {WF -k/8DiU\Yk1GjUb]@uM+9568V͜Lkﶫv6ӟ_i >6GSl˿3xsiwybޔ: :p'amWjUύ؆9:Vc/+cJ^>>p֨+_-%چO]19O')Ń}dA^eȹ~ Č/Ɵ{cn8=<᧰G\WʼAq!Og:M&܄k/ﰐ6|{yJ%ry zl  ' x1}+zO.Ѫ.|fi%6="y?V=w]$..}{Ana[TXS3z^WmuqP8u~E} %C\}2i9-~X3}^ݹ./UT{嚺vzm_'5e3[ϔ 1k~W;t:Q6Dwsa|{%Ͱ'1;^ g&tDgShf ڮx'em]ն2{Y+^mnU^JU}r~1ߓ^I_Ǡjüw6=XJ9b̽i׍z|ߧbK屟!lxI~ik̏KʽƣD:(e-0x|ur~ueVFguNzs3#=tlts/X1{c a"Zlڣ#s+Îel{sӌ M3jYoGεV7Q -y$cg~X9p9{ FNÜ's˼Gf:9hI4^6qZeySGg3^ľNxM?˖7%_\'aaG{5~Ը ;[KhwdYV==Ff|⚚6JVި6YF#޳,ms-1S.y{oCXx:c><ό ~R^.FuյhN35>=w۲|O^@5t~GrooE._}/ڦY_5¾>9@oO{aA'q^W8w{;MGp\;wt v{(sY mX|@oQ#MlQ {k@n& -5?|n8p!%m -FmZ?ϕL}.=UUNr7JښZp[lx@?$=E~V*\.Ig9M۸WUGs1g&r_&dPYP?M4٠wBO=Їa߼OsrD.].ž#ۊ׏@s^Sxvk߃=waӮn/pžڸC齽<؆ϩFrs[^n=Crn됌7|.|N~9K~ߒσ*n=$fpGw~#773OY=(mFZ4 '>k3';h ˺^oz__kyC.7|sM!yVW__:oĚ<[ٳx^4loĶCm@>gh6Vw;շ_] =wIXruE>ܕ?]/y yĹyZ;~4{ڷ<xn6 hzÊ<Ƚ-o"u)0sNtrx]xX]:g\y䠴K޻5siW9/S< 韫sljDWE]RO ebRy]|!]ϰ|^ߡ]9z>cubOn|wR 4~{vgF_rNODB,롾a.~cvqn}v ܴ׌M8rt3޵{?(lW/ѧF{q/n #'^>!j}=&ky}>a=6?#pa[ S~Lzƹ -[%nlMrY^M>Z c3s!ye4ڳy\gCO;:>91?Τ=3m(-d%=fC>o<{͈"Ui~i_B=B78Jvk][܎_B9פ7=z~{z~AN |"u=xS)!'G}yp yՋȫ\hB^'Nw -|<\S/^{OA !Aqts|mMb-D>?xw(|y5"Gʟqa;@FBcw_gcD׎3>O Qݿ9`6}o hÌ򳌵Գ疘+uu]w̉J]+2w 1/jhרWxr:>d3`;wlz26G׿˵*I,g6Z^rvE=UOꙺXm+WGk>OCԇN_M$Wy)Uwy b> J:Ff2gywz^[y/ u}yn/An%w0sf ~9Ϯo-}/K&3P K]rq'lG{1_ ?t؈}gF>Y};3fS칾_/xs2tJf~s|#bV|+ }O<8)+ }jwv{ {]{仦_xG>xA;`_Io(7΄EJ/뎢f^ySߢc: xmAU_Q `E,t}w~'>zU}9긾 ˹ʤGw?{3[x?H?sҪM7SRwT?~?=ri_e>%mdѴ.]?fC|w&Z9톌˺W@$Mq=݉dY`2wz=N6"@?ZOlii,"?Ѡ?IOFB=RlT(q߬PX_jk*E}d@%֛J$]~ޤ(@"d7%d16 E3,DEێ`!N_WD)J=W*Eu4FvEEMK$!FbM$z4%E#ɁŤSBPM*aIkRpA1ZŰ|6h.T.75aT6Ơ*K4נj+EA,+=A^L-8ZkbE`K^, *a?kҋVm.bA/lriKbN%cbECq= ~i7(  )+1ܿjzO"y [yVQ PBѩ+%GvaӸR6EyUi?NՇ"Pr?| 8x-(TIU[rK&ӂeyR#LkrasJY]>RdJ$G^(n+Og!5b<d -EwP< -bTBIԋ7"eeB q$^x1ߚT]W&/F ܋a{ݩ6|Uޤ=)աd/dvo>Fh_פh@yVK!; Ml~9oqUK|eʲ*i1)`# k@dZ^CX8FůP.mשX-B=lQ* Hc3E㍁HPFk8̚YP$ً3hl*_U MGWbvâK,O>noBr~Ògzxh_C$Y?m7kJ!EIBߔY_ͣ$(cV.8Xmgn4XP?\ -yIZh zvf%*j̬/דjN*+J -kʐz5Y~pʍex48:}Mj5lN֝zMsÍ@ F:,tC՛~a|PB<ky(9tsxW. e=m#'H4\V!2b^qv9rq.dE$9D6>V ABZ ꓺUuG0 V]qE~ P"[;:Hq w%a@:eYJ=#-T$ŰZ-/ %C"rKד~yY2Quc^[΄sV[bfͬa-dI[Nͼj[%'|-MEV^_9?OycZ]25{Yz7$:%m_$±0E1낌TҖE䫠^\o:>?u>P'EqVA X]D#I d׺W7Ÿ`PeX B -7%i-ŲT:qL4I67LXiҕ2':ԛ0$dyw7$+0D ˒P* Q&Qۂ w!΁{"/0z?ظfux"jiY4Gu" Dx䡑[|….9/2TRF ײ\ET8lC`ru;Wu?Q2QyfVFk<ɐSu2E^##)1L> -f/ z@xܒEenDfKFbըfD-( $MӲ6*4 g ʓQPu)҆8 sU0 tlYP& GL{jke "!mMN܅d`ڕ[$!m?źM\,; qɞڨ.#-17c}Kd3~G)Wr?mqbCgfsb1hneBj=0u+'해9=(SPCF|Xs ]‹Cx($G5e9\l:ibיRJ PEY.V$t3 ӔyGOV=yiʌ]E .@͘˦5F$ U/t"O -bHf13$̛jURKEf <)C9TvH" 8_ -S~n}HAPm端BQ'q畧(g,u} Z&9Om zrwg| bc{tَ6ߜh)DH/'Z^8Y՘pxO<ڈ}'Ah`g08$H7ȜyT<Ɩ]pB4@\ZJ<%ĥƒ$K^V`4줬VBL"f?YwM%HdU} Nh)k:0ƳXj&KRien j,6LNr<.jc*d):nޢ5H -kA2hm)=%Ae"ܬQ斖beܪyE_ά֮Bx=ӋDVsAdYȎU|tD@LE zB1a_ymY%}ji7MLVABo -%ugˑ[K/LzEg dN8D&DPI9hCd\⼒(F)h31KΠ<8t s嵈WP7թ;-`+\x& D`l&V@ٔ -)7|(]*rq-A:Mj&Ajdbc@ad4AS8ñRu=XrVunF`bRaqojl8*87K pKuϢK\fbI oDOm%! e@ :g 8RM{0ߚi2hx&Ac=zÀ;TGzaz ʛG -x `,hS7<F:'\fF')C,/0b\6y@0|SsË ],6 -S-`Rø2&Swxȱww BF|ƏSSYFm#0o !G 8GjӀ|  ceVR }V|0xp=`/`į7@p.6  -x ԕ<`Gz>W6Ap#`XD?ぷ -0:ߏzfs%\l8| PsAØ0 j8 ῁.G ( tW\?6՚n]6m6tl?}% 0a+2oAO]7`nC#aQ@>d9zaC Hk7 h 8ƧӀ=o1=yM/!G ~p9 q?ʡюrz א_C?òW'q}#Ukɠʔ? ˯9Ic@k*hrҋ_ͅ[9;AqIW/RV1? hs]S^˻ٹQikRno.제=R> -PKaonw:'8kR}5rH)=XQ`!y[\=ԊI2}U)G)}Ys 5%Dm۝'|E'7焈 4ՔϱsIs['M<~˸c6jed]5Ш*E~Kx͹󫻾k:}dg|.trtx7pl(knر7wfE}ls19Xez m/db9l\HO->k5r>|= z.T`"Vxa. x]|xAU.72Ri՚]Eh /D͵GV]HC΋ $Hf*{UjCt80-nFx㡬~m:p9~ He-9]ݠ<4?OX7ܦ8| ~tQ9yO"@"6 )pi<9qs*ka(Iyq4?ngaaYfƒ͑)lex^Zxۑشl$sMǐ瑗}o?Pzȹ?A#fn|t:M6obk0g2{?ܠ>.=xrap͓!hrB-o'r?iF-Xbּ!a}zsnF ښG E?n퇹zS!nmdeGy[nվ U+/jla}_H{.6\6ts~[VgDj& q4J1m"?邁SO^z)tv<0^%cW Ka^.J)m^ qa[Qi{3vĜw~7{OT˦c'沪 -cF{=[lTIvum؆fv&q{` ٸLw=q&|hANJ,%IЮ?1dHVKa#G!9v3#$Atu=ΩSNsn? }.Jx;_2`ΨmšXLQ^g\!^mYtT'7?~1x|~~Gxag95H}^˱x5F<~Ⱦz0%0F 5뻞Ly s}MӉ15w\ ,?~s4v͊'@E[?4_YAphw'I\$gyR? y6a2hgq0R ?(e:)ބGXh0 zHAwyCWJ{ |>>_W)~~`*Ƙp.be\pRkU6\׺Łz dEmx2_}9?Zr桗7l+xqW5Ĵ8F2 N4S -qlW{AapK[L\v\G:}a; xF7\tc#~I?X4pa1@mK&g'jFGS{]4.{8 .%J܁~}tb -\/7'^ܴdh㻣E~s/`P.in8\2R]#yhя}1P]?qpSpIhQo~},$ ti!+Rޫ9-dg u ]?w-boK0֥ۀ$(t&St ~sӸ/Kנ_;ZcE| /N&KoÔB&65}bP+>;92QwGr^c'x|:e3}R>'\ޡyQ|?5Z?WI&Sxݢ?ܗȏ=~c)E26ޛ摩\ 68|_k. 3xUKLáC(ĂG?A|Ǐ<=#'JO=ʧ&{(_2:$}i[,xn,Lgpq2Y~Or}rPwL?8Zxᢑ T3b]o(Z+|cB*."#Uha`u7-hOV\m4/@ԟc1t5hq4g:B2.98]!BP%~YTB'mdBm䖅C MHkǭtFfYRY9d[9~s}=YlxC Y­ͤK (s9d I"c۔W:c% -*P,Xc 1Eagޫ!So -z 8m\C*_CUKY! 렾ބQ)wsȜU[/ȓ3rx.d -zV@nXE+*PUۀˌ()ˡUJ(np.  -_Zww[+rLVq^Ɲ DQ{ . :(\lG'K."ȺRDd&Dmv*r\rIRRFBW\ rBS+}f%q2plRp-B2M2#iX.n5?SHf~ Tg -QU -톴uJ@;iB$ZQ9_BVMƒBȈ.ii5~3Lڂ\)6 Jq#ڋPuZ \2!\H𹬾X%ޱYr{ vo|*Vz:Bx(4oJ"NXBl>?ɧ :[*V]SD}Z`RH -zkK=4KmhMp'xڄ? Qg o vF9 тˏ8h}K&Q%2~,?92~L 2qń2$翃vgB0N$cL#D3>=d* f4RY 1oelNo`Z9Lom_#FO8L`Ix+KƭxCqٿL2]f~w _ -U/Đ3O {/\8bėz[߿GLcу_#~ʯ9W3($~/&fzDx3UIR4D 5ki8> :ј+N񎌯 n,0nwMTYU!JC4,[yVs՛e -|['ĴbTwvޚJ+pz#]ѶN|Mī3ֽLwUL{*ݕja;rRrjֺzcQ^q-֭po#M')"c4U'UV}jQ|iL:}:wjl쭬a#'ōlf/Uvf+oaˑ Zm-TصSB"=z)-P3a;;g;yݪNR]q6mS+M5Բk;pU.3]2|wzCV#xKkaM‘XxW3 {! -s)3ڻ.;33(G9Sm_9Bmf /BܦA$)@O,*$Oe=1PTo2 -k?\]xKy07ʵc ΰ68όJ6@ݒtvgc ֎mj֓ckÞĚfj'5Pvq2MvxD aJL`jB#9Bbx-q<s2 g؍tvNG;F/fS*Ν x7&@E3A/T :]@LFMH]v'afUQѳ#z:k5grfwz0o=>Qp%>w۟e*æUñ"_E*0dFUb`5'ދ #9n\6 ٝ:ebkXrl~ W$5aSnHDKm*2=4 -:'5p6+o`/`X %+K`.'+]æG&x8M@J9aN@ 9ٶH*!Q1N4[ꅿB I-.ýQQk/-s9iv3E^n3#k.kG8s`w(Rstk**vmhK nf\]A.up: U0g{f?@ׯ_w=r2eI'GH-%sedږ.,_Nҙ֖VBaE (Am0Ŷ,7\'ÝԐaT'۩YVLk`ܨ=#5TɱSyKSNGU,z c1*ٚ}_\*vuDwz_NYj1aڞx<yvIeTGjH(C‚aî(n}IYxu딾5͋t-ga[_Zɥl=N-Zdtz6HVJuCntG&8*o,ZLwydd+Y۷7" Ypʅׯ\8Svtnn[i9t3Mz;N^Mݜ\\iSvZBʼ`-߿+-(C/8 tزC#CaB +R3\a÷HdiȌ0*ΔYi˵3:MWhCHap+(Fsg*{ }}Hx@EϘ:"jTھeg|NgPtBVICԴp,3lcyMǀ-86L>7Cb 6ϛF∭fEc,:˻E܅)s{v [%S׳Ե(Mq)ݒmҴ@Elݟ&e[ NZz+&+wHj%BNulOH ^jՔgH_ņ`a0 !"-SK CKwcX&,|nP7nj7:Nײdq)-u|AB핛-R LW5ײ)OUv-E +Ѱfs+, +!i +-V{hj\f!pRu/8LfĶ֜H"_NM8%5[k'3Ynۖ;#a6ULP@DG)G11{atpTG#Ifp +*C KlV/ *FR,M+FaX|ỶʖwR+zZ/}HۊPUZ2%|b # +kgؼ(Er-Ln'Ϥ'Vœlf'a"eoOi0dct*{/Xw8Neixf bxF po;goo[v߿v{#{>w?߹2 y +8gj|8c+S`bR&*+ynOj3jJ.0l-K'(D>y/$ 0f8wbN$Uĝ'D,H"̪{=Wt#$T 8&> 3 nIǡ¿Y=b]#o#k$Gf#x~x;~@ci& +`IV3(9l7/*2M͔j(e)wHOYEu%7cR ʵ9o6$_I٫b=H",jr<Œ$PGw1cΤwVaV^A~Ln S񮞠vm[`ejP^oKwu[L}hٮ84V+<2Uy׽-(3}e"Eve'PYu*05PKGm PLb>Hvr.9!&(bJ&Q`y`.zb@5lD=GMaRA< 1JѵJZ.Wı-]Ūf!x;Otܛ/UE3bZ3w1Wρ1l̬d;) &w ̏' Yrl܆h9 ^R#ؐk/ +gHǣ{tL[A΄ϐ=3Ut^$\;~ςӟeԧ?e'x)#rZ^A*g4s=\6/U7p~)n9\^je (X|GHkn]?Լm߷7*DYd0BGs~I2\PK_A; WIu6;HuOIu{!yiCu=jQtA^&Oh0`)N'2RL(DY;xm}p\;o >56T󐟈|NT=6!YX+;PgHA/hq@ܖ9U9. Q6NuTFHm+#%fR>ZߖYi{o8R];)Òi]-xQ%Lem憢hpygɵWExhP\mb-#:Aed[Z0×ZpP T +KkWRu#FnV +<ӏ^ޮ@bg80cꐱ3+,S\wzCh:jW\2DG4MM2لwBPU[-k+WnzdtoٵV$[Iﺵ]VZ23h5F! !Bw٘I<zܼ<30ߘYfw"_$}L= 3R3R,c ~gQ0ӟbsX\~x+_  N~" E=nPa 8S8 ŞD%J $1~DGZ@;q ` ohd{}]aD{$='ϒE.wL[=OnJ}Or^|HyQo]?J]hW'vQ2!wGDCǀ9Ss'heW|G.<|. C]og%GgіkO} )/K/} ?K}  ۗ#u~bZ# ]S""omnJt[ߊLE qF&yc/N:o7CLr20Ch&D/<p'4CpIg<ǁ0LyiOtۀ=H{y 2q_W :o`"~fzWn?s^ dAd &iN}{@혊_H2!:kZS'v7GG@8D][=&?LO_~w' +pAxt1<u~1mzwJc$D|9{ooz nԐ'˲5#o?L:uu\!Wz띂I {;|(~[g>_y=!c09:DbEHHv`d6(!c]1 S|uBEgwLE#I88OuD =X#8.v?v76gGdT x^yz{f)17N' `܄P:cՆ)}{lDM9.`TCU[r1㑝Mݜj҂:8dh1 tfyVj״CjUD.^u L}00NLOw5 3= q47=C(CK(۠< +*(Ey(PE9)rc?i\s.h4G>c5F ;mAB@Ѯ;ֿ^\=F.@A&a;8MGn[Y}}?7B.A)L_e#_=g Fz^zѳ _-A<;w5=9^7G15=Gsξ?x^sT]s>s=c BYt?[p؅[@;Gc o}i8 4pNiX@Aq(@ +s=٧YY'hE3*qO&Φq{.8Rwk@cqSq8#C>q&/-Ω8g\lOa}(O9^ +>x#ǏrcOq\>{8`wU +|X@owJhPtK4I%ӉLC3_miIs2!I'縶$<*l˩N$3^`kvMQ*2_żKu@v1ʪJzNQQrYRMS1M/]z:նqCF= T ˪HrqH߈ͺppuV=N\?9/Eb]w ,6y'D.b9҅;qF@xV lM yEB%>cs 4?rqK"n'%8.(ey "ORAF8Z΁EhhsQw"ao$L^Q.'ʽ. <~7|q!D9_!AyrH$1 {h_Ov(>9.7,τ$> -CX {_Bw%.E~M}G2ta OYQ^4!?ϥ ]CXa? +ehyp5er|pŒ┊'zVNˎa&L3V4v?? +ی$N/VTN +ݱݟC4/eZS7MEf%q33PgÒH2XW[^_YB55_WVR7g8OGU&ނY`Uq726#:5dlI*[` Y}vv[^?>8꺯> fmLzmdJZ $V+0ϫ[iվ;dg\HvZR+#e% :'uҸiӤS4'LgрŇs罻wJB6LjVs9{ 3<@70-Z3}Ҁ}DiEg4 +9- huLx%恩q(a4tcO4FXZ;v؍ZE[訄0|쬙i|n#7י`tnSf2__ד]ȌmC׃+3wZ(d1k,v.Z 6a.&l3&rmHRMmm()(epk*ȫBPb1T;x.\|U!YvHNj,sj^33&R - ,<N m@̏&-c/i+4*(C vO̕Z ץ2ad07Cfr5 N*]]L,6!wm27ǣĔ)^3EexҢhƞpSp5qw zBN'C +}VMW)ZA?Y/S +=/*<뼗LQk:B?%ЛY\c2M?86z'cwaн&҃KUUs}g[$nM89&併W689doqr+O2NNŜN$''2NN89ٯk189$Ndi/ܗs Ì!1?#LKX< 1Exxk8#뉺w"=53Uw;0M6͜[;Sߩe}߭yx׭aؤ8X;g@|呿UkfeۄlB)_}}'jdɱcuA-'W2R=*Yv\c%w- +-ps/ +C|wuQ97~"svF?wXϝt.&FN|ta$,g],wf\4?^ovͼliP[{+}߸wz˭!m7+tΝ]; #ዩu3mfF~>9v7:=_Kqz(ι7~{3~=nIB_)g}-fN= y|3Q +c.ͯcY3 8b~ig޺a\ɗ8WwLhwqx?qaY}>f_ m[=c~/[N ugo@O_c ~9#},ů +,c?^0- +;Ў޽7.qL9u[0$?dfKnW7Sy_*~seofov5wmx2~s +vӊɔyvгPO;AayS<>c>ōTݜS!i1|!كeF|&TzK*^AzH̔ħHWHl K"vѯ˱+Wԯ =p=\[^OfkܵKx/i6U~bgQ/}52U-nygVY}˿rcG%(ULkxcA Gu?V9^;;徽\r1-^z_`n0}ܶcP߹r%Qdw?gGn]~7|eYmH)P[g[uUWu.Gv9Ñݍlœ׮FdOpQ8(fN2 +';'F~/nȏ6Pُ6Sُ6Mُ6Ptdc.d_dQ잋w&FLM!ӷlK*kQO6uV(&H 3/-uv| +K-:k?WѮDvm }XZ2٧ɑ]] p>K.*Ӎc +:_*et=#/ J86_J)9,ǩ86.~⣫c񐮸_@|$O3]i|V˯{|H׏cSDZR4Sql*U,O7]FM?ZBЕ([O{b^95~l|N\(姶ǖFWN___-og|86Z-_"gOű8Ni@G/FUNNMB8׉.~] %/V_7z}!DGks(~Qdh歍x a+ҴYnp?ǢhFȈ9d 3dR2cJg~jAK` BKYLK's{z:'ycJ8Ln OtL͛ Nlz mJgX< rXw>,>*0R U1Ýz0I&Upo2[dQ;J1<>L]ch"U5)|He+zۻKPRuBwt_?,:`uGGuO&i쿤.:ςJ? +VytTte?z=V8~.:ςJ? +VytTt>S(#k5©|4ۚ[󿚛6߼zuqJ:Et!3>akHҲbrFj"gfas8ca+՘ (5DԘ#Fs0 n@1- C0Bl-ck2kЊ.fCGc5S{+H + hL6 hއoiLxDcN,h@txXk]PW<wŵpV(䌬nEqLc*_ح-uFCk٪56j0m-W`׌djB|(~*,!d8ͤ٠ֆ>:˙Q\n߁gH;%6d#S 'XDd1}27˜B!=9 iu I Xq[ +Z)b}x4kDbΆo޴'dZl%>ᠦ.~?8gG/| g^OwX{6?r̬S_?$6W*CSCK? g^xu{Ӑ G Tf̲hxiR +fʰZ]lio7SIq0X۴)FTqafJ JUh +BؒBe9$QbRxyBz YT jJbR[0 dBfo6xuJ A3gmsD!ʰrF` I6' !e]sDkiEnL[AЛ7ٰ /t{8ºhBO<]JtyX򔺃3ƒX'~&.JpVAtHt'GFhv?Z,8g<8WG3X w~p%ew <%OKKW9RA;Ғvl۶-NIStOi%\W^7Jlq~E`k]}"o +--toMsR ef.&mcr [̔nT3jMz +m?.Hq#,C-;=R׉$fjC3tV !m0^%Rq98w\8֓c<̖$EYX(9%PW4'XF at q ~ObPT5٩%Ю +$D cVpi$B<dQK4x8Ύ2צ6 < wpjk&ĄWX⽸3e,09@FKL #K%~db4b3a7hKHwa+&==#]LO1'g˕VqT nf+J#"8'ⰰî5Ҋ ~N77vx^NÕҊ\n@6Q*_IY=\΂al9k<:<8򒇱(]Z iu7*CEw/O&ёV̸Zf(%zzOUC{:azvj_\0tzH2!WNOrtO! 7̄.FAi9'6x9F|A$3Ź``cuv\e0r3(3}BîS:l6+n_w`|GWtt+*`E +]1 ZSG0V _P#= vmp8?kIKc'@W`t2B2cZ?(3i0`@=eB{v*k-6,SDkMkwz,%Bz(Rnug;q/n))`E~# 1F*yLm( ź&Yh#) +F%=X1q7q Yס 9:EX`EKA` iA^!v&"5r۠uthM@\xWSMJ8K9OY.(mޅ\"NҗR$^T&ݥ t!w 08Dݓ]RxX<>bHB {(]; H5";!?m> ۝@@la^`",s[*a.Τq-JZluF +V>]LV8DX7O"( ƞ~"mxD&58Rb'T6Yxl0m|?:[7"1I 9 1?h,Z,e7H2wW +,Hc+Ɍ$#GYX8.H_ 5E[r^o)0KGDf|`W9\;XqO_l{>@$,*^mEG#T ^gMfr0rfR,!狯' Ćc xjA lv&\sCf`'DSOˣr޾8dpS +HUe L0V.VG~WTT0VX+p{qrBf<  eM[B,Մ|;A4-AK >Bh5[A&y#.WĎ}Vim [hJ$LϓXA¼%U.6%)ZLܔ$B oX:1˼N 4`.>E ϨZ1lْŅsUwCuaNV̯S + i\/jY#ebo%3퉆h6\2ېϧV{鎾gqx6 +'PEz% +t,3X.ʢ(Sѱ;Y{w>|3rd +ϻƺQ}}JޖYOZ-]vc뒕6^zMӕ89]jw-rn򤡣LoeTtL,Ik\=E3T&HgL{{='d"ڑNd=ҩlC}G6ʥ]`~y쮭ZYh~qD>* +5OE=J̵EWD՚e>v2lZIokf>ڽ ձM +IV]܊ +QfYBE`ɩ3:MX'q\[d]ֽȺFdB1I4y,R|O4^{\E_w۹|/dJZ%{T:%3(=Ֆxʇg_?7~J,=Ԝ#xO|Q3 Z6B7L 9!Xz +/xPf{Ps_ug i L]Ծ }\;25`يUgCͰ -4 tNZg /ӜkFe 6G2uб+5hÜUG +s)0ʼˈ lx&p#~xXcÈ'~ȫҎebu!4f읇"vnEAv/~fV3| ۃ큇eWeY/<ǕG~B`V,ބGu]M)Gt3z~r?l~ kuZ0o(LWxPWx^|!tuΰ-w,-gGz+vϒ +4g նôSm=QVmLuêA }UDZAę$ș˜-A 2v`!f_Uw 3m֨ TBڳD1t9w;flBtrX,b01ι4Ƃ3;~XT(,%> +M\1auT6`T?Upչѯ^XX2쾂;A + Z_d]Zv0 笟qء7YTF] ~Űige;f/g1t:;UPT|ASs۫O0WcB[SEQUi_0:}_+b*5*+ilWl-vAX;kp6 .Ӫ΁6Z Xkbͅ UQ=zU?vν-宭@9BRաrf`jk]jQ+=/ ֿoy&W 8Y +=i]Q?~(ҵ@zqϿXq;7S~X)#Zm(W_@ ֭iW#[ +282g&{bB Z-`LC +n>U7]0s@g>75C='{M51~AS33`8'RN1?,rK6AX8o߇ /^O#՚Vn~ArAމ M[6[66ax{-3NWFr9߉SS{G_Dz7tͱu巿=ȕ͇du ucXψGG+m2=i}JKH kNfVDiL=\S[jegi#Iӽ!6`Nk5C]m2U'2ё1zj7ׯ “7_]:Zb&6)`&*\x 1-WQ͌_nd{q}n,2:18-6ӭ +l;(d|uTiOuC^ǐ_xGgvra\i!hot2} +~:Fk^=7tT[=z@5m N7D^R% u_9|,Z0z^]:OkW  6\4!fa_TywZչى +&ƨGvU!SzA[ˣ +}>ȿ!]4vN}b6:lQ7珼rh7޿0VX}*1J#}HMH`=\ltP 1Ȩk+o~#">õ 30lBad[CR>#%`<ه4d/Ӆ3^kj/ElObr?bid+#&r8^~B܈JtA:$#N!r?rasE\K;dJcJ~k#(gFGty4fI]FG)aR8e;eY8?~)+g&/N8S?ts\{랁)Su:tPdz \.ӑjHq^!VH3l2Iю>@t>Y ٲ?e311˓3'RS%IXDǛǒT6@rӼ'-TÏH}wivUkD  +H`硳64,Ԏףc+}q>U]հ5vo/yx!˴y TsW2($ag!3pa4'="kmxǸbJ3Zl =f4 kbh6\AN2 +¯VS^5#ss @{M 1Xl +0`C 1܅n c؃aЇaW0 c80A``Qr^,Æ )s93YO{0u'5 6a0Cw:w/M[EֽvB>tLy3pֳ +Ȧr۞M#J#X;> +<+ܤ>^hU(|MYuSaY?~qh'a]í# W^g{,#L[E'_C6Ie/݃JgAi:@%>4wAq{m7ԍ+UCKZmt4,} +#9JhqX ׁ|{H8:T4/- & DQ;W-g +ר(?^XcDzu*m9+l\|!6{;# wzi/R3> 0=_&9/*nWOĉ- @PL4@"?Ql,?JdIlQ +&Lv7e'[ڒdC6KCMiYmCZ ̴fghst'i]w91<+ Q}3ObYlz>?3M>s3j/<*x3g>s&un}˯s19AE}sT+uJB(uFeq#WBPQhT59B:s4 +:G%¹tЯt09B\!tW:G+#WI#+#+#+#+#LS_!9BDhjӝT!G+J(Jh29ZِMÖ+Ϥ%\S"Dr-dZIDr1{V^_'~*׺˥KBk_kåpY?T7~?z9Mߙ9MlU$nSɝStO$1  +yZ[֎hG{?ڣͽmh fok=5-^=7mѦbU<y*B3o_PTT<7nV?=Y_g] 沥}݇~Kn|ڰ׋6djowcU<}x4Lͫ0cz|s>(;v\^0{w:6:v`zn_]sL_X0u ~r 36l~wR~RFrݐ}A̮w{+t%G;[8Zmt(\fzzʳ(A;Y|}tod["xύ!];{Qm> m4ށuW?~^ϕw̃XZg.g?>^ ݮڹzx0\AͻWWFjqFk܇f)m=np}\!^ +q_ x0l*}/l_ ^t>~&2{#~-ɷc~a}im]Ml_Pt>.W5׹;p9bk}w0_߽SŅ,|>+ڟ5!u_Io'DFW8V(/,[.[{([ʹ([oG}E{kFهMť^[pߠ+jCw0_*0{;>&GWb7.6hlC#3f,c4񭨅eݙMflvenzc]80xRFNP{Yԩ¾tNz9@O^ꔽ5z qZ^=ړc|^22Mڛ+eazEnǍ-R~pYQfy^wJg۝6u,Ъ)~ֶs|q(oE %@SaZ +P(=OvB;* '9; '!fv0"e{`[R{]ߟH_iֳTgfJήk1g9sB|VQhnf#p֬[f{8DVE"B7ranN㈳(/=lLŀ l2LfBG,y9sKίXk?ZGަ;Gd?k +AG'pTM?E?_ML8=.m.zBÎ>pK^KO+'7sOg2W9h'nTMhb_7Z&_S 2?qS7N+q|WIUF*?SW^_7u \q|?{h&d1S '0钗<:7Ds2Rh6gfL.o̞a?6ǃۿN?́s]'VrD<9p#<OfbּYqJlT:{crv8LO] Tg\wƅIҎFP +^]zU>hd1kťpUvNs}YZJBuUN"9^V8EZNv}r{/~ٯ}q`s/a:&m϶gKiZcyͧaXvO#::/ݻ?o6 _;'?춹o%w~g3Gڣyo"fVKKZu]' ]Pgb3q~k=>z+3}Peg=U ډd_韬ǿ\nuh.̰/oqH'8Ӿq[Apw3{|ȡ?|C#fu{vCy?ӡ_ ;mr!~tw跆C:־ޛfOC:KáW;83s+⯙=:Oy,PNġ?,qx^3 z;_}zPn}tu:7uC:֡?tHgL3l_+P*jخ'fYll |oM5"΃~3Cs$Rms*nޞ55q?&?;M q?[pX{%D?+/N ;. U9,ˣ<"c{eǜ~;*A/۳iqb c`(4-/g^as Wt%RIsu7a0#65hO0%›g~׮#6L#;͘}F.:bD.)b-8l.J!sh(kYȚa7Q~FYxULFn0cF><#m6V5ҹP4Oe=4H(ty6W-DC`INxjhrK,3G0YlMt' +bX ?⺿?aB;Z+#Fk?Jپ8rHuDhe`$x4i2[}Kj)JåUқ"&~BDp?^>y"ܕJQ,TVPb$!օT b5{&W Z&Xwny0;ē}еC;FFq臛أc91ߦ1fr 7hL*#n5rӄ.˘xLNLWtx+ts:!5h6,L }KdPGcqEl%9|*͡b(Yh_#1MD1סX*b8"MԢ~,&^evR +dZ5LhHz]+aho|,*qҊ\,5 hdSJR2 >ɉ3La< Ka8Rpj AXl~/2l ǐڒ)9!і*,_ՔkW ,R"%[pс ٞjlXS=a,d‚:ёeH&2{m7rsCCΗ˹̞%<- f!oMWnp؊1x; %wC7Hd1^tyhQhҮ._EoY͍z;ep](dMd?~n}æ4y_%JzxfՄKWKKu?+ʟ|+UxuIx5(I-YHw+{~?=#En-a?{܋P(_~4|*?|-7}^\-?'kH|!O[~ĂwJEOK|߾E^-x^?e-wZv)e[{-zZί+(^Wα%`wIo}J.o$}5_yT_'gu*yսDKYrYC>&1tjX^+aGI:Tw %$>"0y!6Sv|'|[&I|?DE?L^% +#x|-aF k@OυEpw%8#9@pPnKp*G1ps-b7 Nn'e$&8a_A5q* ^O_M<|!vO: 8!N7||7?I*B%͇Na;JF#z'q,~{  ǝCpXOpz}<'x NNw<3[C[" o%x!B Em_Ldz{਻/%Nw|CM ~ >Fp"swa& #8q"8& _MpQwI93ܕk ?[gUu3s3  jUT$% +.y%**ƊBW}ViN[j*-#R{|OyO&1$ϝ9紮>gs=wky~>MjԾDjFjORRRR{LjMjSjAϮٞ:k0tv{MKĶJ%}Kk/S_ҧ)Q|I{[0$1-I^&rI +Iע!鉨{$=O (/K +//_ҳ)-?#P|IϥKzŗb/)K=dm_(~S^A%K_R|IKA/(̼~Kz=ŗ_ҏS|I?I%ŗ3_[(~Kڦ~K5/({wp|,x5LP _I}Y KQada0n` p?,Hrݗvk$fu^e}F= mAJ閨zݍn|>&~ƨe/_] w;fwZ;}@zwԍ|OӅЀw7ul_esÛoCK8<[їaa?\maN*.L2>}=_ↂ3vUϵpNo#YQO_}>&ɟD΢*s;!?^s&܀~μL~ +OrFqnnmbg(v݋gp * =^,|$xSÎW4wY@yQu9*Я59u^z6!^T/d3ڡ~*] h>oRywUyKu^.t^/9y:/恷UyċF "*¯ET^X%ȟ2^ȟ+yVx>0>?9׀"*oOoDTa("*tu"*c%>yiLSyuå"cޛ:wD\?KVOFB(SyuY~?K(oRT^g)*':GUyw(xF Ov !^Tݠң!Mky~x*o΋SySt^z lSyy~%uYUx:/Q~H祋~?y"*o[}>"*+'c?yl,Sy8FOyq0[o@pȟd1\$~~qi\v'E˪:/]sg**`/9*@{x5}g197K^6v2jS֡mEEm3hѮA{!ڵh/Fہ6v)h@ۂv3&Om#gGжݎv%ڝhݍ6c@{7ڃhF1kО@#,D}uu}F]|K*kޟ-]ޏ*{N3-򘬁eA w=Gptd]Eˎ27s0eLg#Qϧm1eг},>-a]gh{3"28񣍁l&w4dA a{}>`.r~DZL4Vɏ>6OD!ƿcS_)KO~&=/D?k&MS\۳ϧ1,y(x__TQ1>>wCf DZp6bW3~Œi]n/= k,8&y |Hߍzvt;.zſ"u9FSN{֚<YlYbgmuX @Jp~jh~5eEL|tdLg> |t|bA|F|dNhӭp]~w_˗طm*= q?fO>/Ѣ}(}U&c1/[ԏ}3blRXpxxQkNO^ɮ &n5 + DzwEg7ƞp9gm*1vҋm,=,`z +׶FkV|߶rFf!jY +ƺE5\cu@5q ,W_mXfe"XX&gj՟ng?}/W{[|\i{HvD' ‡FbibPbqؖ*$-uWѿ5'Z{LHtwZq sYܻ^w')xqxrwi}r(Y o dl2F!Ă٦N+Dm)6Q~dvcgZ|rdP?ͩ` \ x];z'C v +?hA3Tct1AI|]Č!g+qc9khϓSnĝ.qdn:kܹ9^6;]7,q278 i+sG,ةl1sc%h,B9V;!Lm!C99-jv :N>SޜC ľdq`Cݎ1ByG-|X筜CKק_vs!pt/tfwYx|ue'Eg͇QmY}>\w^Xm {[<@[yysW X+}aߦuxx qvy5~1sJ]:Dkz.5_CҞ5Û; ݐ[KT7KgӢQ3; `Fi:f8\r9~MqI|||O/6YЩWM9t^ %^VxytL<@I ?s&L%^sxLxqڈ_㗙 t7}V4aω̈_㗘(nJ{ӈ߄\Y`_S?:;$PL_b۴NFi>` ͯR_^ܸN"2 ^Ƕw :祩uߠ]/gm[9@oFgNhYw|̈L zO/B/5ISzl/8fG^v3Ӻ0ϼ_f'g8e[ +jʋ8!\ e#qz\i>y>VWy/뼴#8;y≳<)ga4yQ%0|:#yNQs:,cgy޽:/Qgyޝ:/S%8;ny(/≳?O8s,yS2>?3Pb}mOYpNļ̀Xe +خ܃Zb]ެ(+c$גɽX}'\y_' d}r]w.w ^?&4̦+^RW;(D`.<;?.Og?|,'t!ZmӀЯ=03B>y^"x"y7z"ȅȇ ]xٞ}%{"D#OŞȰ5Eb/ۆom=0,f?;XfHeJ{`*ۀKtY#9(eV (}bf51>`s +\ h^6Ų~NZ_r.& \OPO_>9}'G h|1wzƸhgBy7;_48(\q_r3sqmf3_@ugkĈgS^߈kĖޅ'^޻֩x' b<1=/>LE=} p=G`])8"M& φEI>Q؂cE\Gԏ5!\wDx["mE' #TkuZ<=v lx@Gcݐ}i;/룔e;Tw~`-Ja]v<-)xX vCb@=Zai`/~5YppmOC;Bf65v_[bCHFD;ydɃټ>)3>XKۖ$1w5-~m(]^̗p-3Hv;2*мM ,di֎=-m +\<z[;"\{][{;r9 \c.u|i֖#Cx=8_ڬݑ\^ߊkب3ݑJ E;EFcSO_cSG2X;S㭲]/^ݫ$y$?XCaj=Szp/M}ܿY6')2L>WK_̯ہ_gx§*υ(?>7ަp7!Q~ϋ>xv/~nI|&l[>x~%>%P`%^6D`IkV⢧_(}>xc>do:JpK_1Io-ҧgS qNUqQNңU~ߤ +){uy6U˼eE>(Cźq2&.>դ&vAgH==&[~;4##)2M/7>7L:e +wb\_ <~pG6'.I2w+|&[>x~tn*< xDQ3$ۜ3SNi<_zA5!ަ4$~/ ʖnO<դ_ғ#6[L{K&=ķ_oI?q_+~_ᛁܤ_?P/_cOܫ灯4zKM(< Lo*B4_epmNth;Cܫ '4S ] n7w+$b5J\(8=OsտI'qA& & +-I'q窟ؤSWZ?0}IM:<6O?%kL('gw}QMe~?g/}z.L)-&Ľk>ɤ\4L½ L>WooSxMe~UO~I?qĬ_ԣ][5'ޢ~p&)bD]SmSn +lxLOM*< ?5P~~P6+s&j<_ǀҸW}<u~.w'~ٮI_;o2'έ7ٮ;_~A&]#F>`.ȈwH mxƹg~Dw%k~hl3<}ff'FgY%ڽBud7.mb}ύPEy^3<<.i'eA?y;2g2mv!ϘONͦ2z"w9|+~d?'R;AnA}rKZ۵lm-&{DZ ܛNwd-jK-ve}&L^-r>̛m ~qN''.Y];yN!:"]7=6wgB{X*e{V:W='/s{QB,Uwkwob/?_ڭ^qt]=B\OSdۿ;&MDd 1 }_F a=/i=_}]׭=Ғ"| ^}@E|槏;2hIi* NT<0j\_{Su<1M-H?4TVx'wa4?g>3/8O=^<#`kx /2¡9 ?G$>0 J7 sw8}.k;fC,Q nGz}??3]iO7'=5Sz BXe4^pƈץ"' "5?;:j yſT'#MӤEѳ2>rjq@ay{kv0!6 }EA!㳈:|PͲ{+EE-e?+sf2U>=B|%\[X_X<`mK:U;aǶH+]ؐ@Ii?coMnIݒ^wA rZ{_YD+}U 6ꯕ7-mG~AK<1"P|;uڮ +Xh 7Gbqu(A{:^g_&MOg@{L*뗆F_Eyg奸~u??79.ړlqES^XW³v|'kFx2$ؚh~gXg}62P>;h=NuHvd+=q(CɆyٗ"6:Ž~=`RO1zg=1(˦SF߬#/1=`*.Ql}Rqgv:x\-ˎn鳀fΕE|9y0#A{dRcu.|w(im_'_eY%WdQԒ,ӓog9vF8.vn-YF$=ڑ_栃q{ݿ xzWXoCL}eo׀-Gܷ8RspGjk~&Ej/wwf{׷7 +Pȿ([|7l>|'lӾ8ㇶ[ 1ooF=Q[d:Okd2}|K% W X6 RZ P'Q-qF kNo\q'|yhq}1*M~|3#a] q\O-'AGi'Du:8x~!֮Y9QyI:6"]yYuP_2HF_wv8,u^^yb}DL~ɵ(O ئg9A[j~tsDzR@%' "T_..@[µۮʛр~hZ +gQG@<>eH_PZKWoͪ}7?2~H?-юgOyھ0Fҷb:5g>"iW:sqxmr<&)ch;h3Ơ?7!Z(S[(>> mr& +s&w[%,&r .) ?H%#➡SEJ~_T 󲿟Q5MOv^֙hF5o]љO׷/}rxdX.gLz7ns͑>7YDpk$[rPg&t|p|A$O踚HDӑWV+ʝKS~3S8_?Z%ߔLH?i43F< +8p6fUG̟IE>M'/Q>߲KĴM5yqO#Ago?Hk~>Vf773ozEb+es) f-{̀ԍk` (M0vG Wot>5<}i/Ӈr(ϤMW}? ׏>Kc[f)A6}I}"Y\BTS\*롟A{QG.JaC%|#|b;f!!U17F0|/ }mr}|O}2xoySܦSVwx" 9|ې +l/L:A$o/j=^!ɒ}M}%l OIΗ|2Q.TŔ̹'~zX +y@7]srI?Ot{13^f@>29|cf5uUOVϷ?P+{MB,E kǻ_·"kI\+"H[P cF#`1[*0M,]żoF==>?B2/~~?rx#^bj}pp/v>]| 9_/Z0xߘ#I|#%e |ruSWًлt +^1gYgԵ. !W!ֈ{șah"V昦Ϝ{,E~_2CwKu~R,0(kisS(s&z{eY{yIw*;pyEڿf\h#:/q]\ex/ȘU:)|W꼦TJ?-w>:3\ +.\(KM`K>/{M0v[l5xg/2w"0K+ANj(̱u1~,TymW0ayfEkpUV'7> +zna~_>G^$t=ă:[\I"3a=i=tjAym +qU=uţEv"FcO SZP\CLCOW 뜪N]119ǽq gx;Gr/Z\l)tB <q >GW]kz}?x1c?x(b| 'uSn{M}s p<恿{ AnɋJvm)}UBK4DwPo5.܂q| e9eP7%#n;TLe5/m ]FNogYo*b|gr>bBMJ82c e'1RSɌ8E">tC3 +me)훟X>"V=Ύ[iotdžO$}FОm5ۘ 9diʬZ >P{CG?դ׫q0Ĉ-2-\NHsK\j_,纫\~Nj>Xas swg\*> +Y X=3?(I-VV`uppLꗡ'`wM;|..nFÃeO!-ox /gA/pSڄ{8/\ZБc +`b؊l);x!Fxo.AI[DƃWTa\A:G40~mY [JN?Vyd~nWꧽ{S; +dE7~ӏ߀:ɋF8M>Ȫ mȹuhk^):]LX/oR'7V~3X_]aRqчvsudƗtk]s/<ޣYUkص REĆt|Ǯ /o%2AuANw3Pvqd"\R">^{R|OPW7Z(oղg[BjF[O4|l=?z噵߷Y\rx+χ~tP6Ȝz[EO; +E {݋,/=_y-HB!G߇ =:Pl'|?/ +06У/ ]AO=S>G=۵3q,iD.)[O_ka~l#dMT| ߏN#@\x>[D֤9C刣p鑤КGz\+67Ǩ veֶ[S'9BkMCS/7u9zpW]p MU8ߏqm d\MMMhJۦ]_#C[V@[B8a"B,,'֕[wJg%um1}u۷~6rп 2Pu:L]1bN7mҎeJ;F!Xvܧ55|qwi_~4 +Fنm6qcxe&"=1^S_uKkc.xOzKߐj^ˣ [ٺC7Frg7K7Ulo}6I{1.xm\':msԾr]Mm(?v9DSnQ.q-8HS+r,X0cNey>uw P8snWnWt+-rJ>Cע_/QFϤ_^/eZZG뛔.5g/Z^y4GJ<>ڦD=|CY>휪}'h,} 8͜|ۙe\}/=|Q^~p̳"1zKe}zrՌ:xfy#ۭ>robxYyvpM0Sj7Arsug5} s\;7sq3Y,̑\;jlFTQm瘐 tRGhto7S|7Zv7ЂnX`^AJ#%"Hp{=@s-b]_~6$OsYp~ƵV+?{&t0пЎܑMCܑ:ɯ%65rugcC_9] xգ@ܿȊϦ ٔהi^,ОX#(M^VlFVct3,=~/rD绣SmhAI!z q\[L(:;O4{mHWyg];ߖ!bd3| 伳$nIf- ׹#!rf+g9 Q^yFȧf)k.S2CCO OϹ{o+MuG7OF3}@esNNtJ&=c2ҫLp?+|~]%o#mWVS(# HL.cRFn8ƬK׀zf~7BK9 z]ƈFg/Q~kSR#OY?e rE?Eza}uIoJ:_;34{gϘ:2$߾5cxWILA;vv>&o +OtO5I(?>YM8G|{hqt?}L#?~u}TaQWwZT:3;omaǗ ]WQubl޷q6^͵SAȿ)FpP;3%~-0$Yr˭U{ܫ8e4c샶|VՖu{~& חz)eGsŸ8.)lstWs.عM[Dl8Bv@hB{WH_}:ig hRl/qj1ϗw8:ڏCrϓ}s|'~Vxtu3h&ŧ+⛄믲=3$m,}GM/|6|AM0YƵwf/i?b60"xx*)˓&S F;g'ף\;@O|U?< ]C#qtSg:r'T՟F,ڇ}ߨEo~Z+ҧRtg[>l'#{zf#5CG_B{mPF/$ +u& '?5-KL6Ygo_U7o5w=+@Tbo);3[+&~i> ־Mh'[{3N['-_oUO~ ֳ +ovo{jkngoO^lN[-goYӝ(g[5?g?t,#/r\" ;:~{^S==j&ѽ+u>fl b>}v`d;o 7cJw~@vP7_ +_ޕcWe[hOkS>K9}/,e->O^¾篮"|\SY6^':SQvE.-"@}"߃žRB^ IqSo_3Г<ܣ93N)v9FoM[؇6=BIBq//*.$ucԎ N28k l\nn^ƄCD2{Lynb'b0H[#y#`m<8vZ7 c\QVOiR_*Z_[CO_{sV{+'~oK'r|enNtNoiN)A6T9:dQObޥoLoWuUA^-| 㒙cq$;=Pm%3qw ?Dy~dzưW5#Ft\98N|>1,1] crŤrg571o/~{NQO%X|^Y$}{cg/9pn>[$æy*;i}!~D߿/ֿDGQ;5>&?>ug1/l\ajξ[?S6B[.GMNR8l~/ np^ks_swƿ-WNAqϬpn1y}86: +=Ά#/~}'P8n 3ϰG_l:[`2=Ck#_dg4_s>AsD=ǝ >[q dܘKRB8d vYL̏;AH&Mg{k-ƴ_FBA%O Muf4^#|/ca 5x)ηޚ?) >q^_8LA߱r{靼Xp k<3f}0Q=ZM#]]n|_qk!׳!\ ,h:!mv巵gC1,"8:!9fOC.߃ǶO+Iu0;ۜ="'w+Zέr_g\̝F\ע^c=m!mSrdnť=;v=+>[(B_&4u}cD~=LfN1OaVk'/i=>,3Cj?}=!;Ť&T9#{PWÕQOgzo+aOvi࿊c%:yטx|j?=L*\~x>66MnyL5;NKKtT?Ά/1\[ӆX3};@KM tY1POos/)#wyo7dr.m[ENeZ|N6c/?"B/vz˩m1zfs|iz_}"k4zaBY:aF>G=]-E^%KԁVG/LuJ!rIکbv~;¯8q㑯ǣ#n<~y|60?M91FO/r3;soH|C +GJF~ Ol~a _:χG={g=4gȿ^3ŦΈ8f.wG}یy،1e'=|D |s窘cE7cy]郇Xk5eBb+IbO=i3+w7(9/ǯIa@xƇ/+ Ala,sMr'#|x!?:-" 4׍E{A,*&߃3}p"D}}b}sbEȖfb06ΐ޵MW\\ +]L[t13^-E^\)t8dGZJ~#ƪa#?E)fv{,T^ː?dԉ%uϔF?1w3Wwљݖ%'& ~oo<> ~ #bkJi3C6ѓ|g*_B|9ߧЬv]&72i5A>xz~F=.>z +> zWw.3t9b?Cd>wJ,Da0 +YmOi=b|Fs8z |b6>9Y{{ކ{N>&C2Trt}Sm:sݜ{u|K7eގ{cWx#Okx#|ܗ< TG=kSOBlDp#MlϓeFܔly|q e7G C(ޖݽp+e-t +S |6oA_ ܔ}d%SCi}[$1زJWUQj\oUo^lzxC񕶥r\o=QOhaȓ 0_0 #DvyYSݡ잼<|u?,_m㐬+}vt4"k}2=%ڇ ><qtRma]ko5=e4|疬v7Jwַܵ-5S߬sG9?{'U "}.t/mH|+glEЇGC!ٝz~(˲Bw%ۅ<~]z 4#&ifgj~OL_`}<1x\rN蠝4݃v/]@W %w>fo35#s +y?Gr'n=&׾s}eK[ϠkQzX,?ن큶/'XHo}q(kO"vo$GÅ"CtNM|u?Rϟ>ڇB؇5b4QIm.mN;o,-u=eّ,GN;"'2@m D?đsmaО*`k?=>5|}\d/~?_[2?/xhr8 3ļyAl3`Q"ߒIў z(`D{@p mEflc5븦;9c|_Qq.⚥hgkevKL5|.xՐ|@x.gB|M?&Y{܎ ; {N;Ay ׆1Xz Z|ٷHw>se27[*DM-GaanǕ6vczgOik(jQn)_-kb G|N6mW~|Wf~|)Rw2YNz݄=Ō"|!)W*Ax.n;b7_&3κa6Kn3 [s6꜐-6E3\UyU۞[X4Mym;AwO+ҦOM]oYc(zOQ7B鵁 qGSa4Qv7'sof-~{Dw|yS!q#6q]k-s{f~/Jom='|l: wU2KbN7ڷ ~3>}϶p(oVo?< +]^Qrۣе?y01~]gOT6oU.~?̈́b?ǡ}ɵ6̿w`,yjMb`왯a{H^)_qؗFA#W,A{(y0h]h5 ?m-G|sˎ#Ӟޑ}ʧX&(9a +]w~3@EGp>xlhѳX7{F;:t Jv4[lݔt1Nڃ|OH^q~Urҳ݉_WqKʈv{YHuoSSF)Yj뿌"ܨQge;9R?FiEqξ +_mO/E_7pfݓF×$H,=|LN."Nʄ]"sOp͝,ۘ8Z b̿D]#6L//{a +ʦ}{nѾkƾAڄWfJCa_ +qɽ]|?tohw'In4,1 cweHA~kp}7AyW~'H糚r-eu^XV{*?羒9ʷefu5\ .ٿ~w4h= }i,yߛ]ts䫐yM3QOA>bb|? gS|jʠ,>^r8=@y?M|Ё[p,a~W$o[X:62y.xED~@^sHv 1W$uP߅2|~4|Ͽo?e7 畞;=ק^7\6U)-&Vvm}cS4̓pspxA~-y<}uνmļ@>Xu流O|{mFJ^ ߣ eA"nrNm>g^A/DL +yYq<47o'< ً]3w"_r 5!3H򞃿!yo /kr9S|xi? G:9i`˚8ސA/ r^UF_6YSE{Wg7&~|FګDPOP<ƞޒ$^Ol:!jundz}~:!C6ZsêM6v!wI +ԂkoYU7nfwK|s|X3in.oOr^8~VE:+Aw<@^n a=nU ~n^H痖=3i^sڇg>5j}ڭF[f؀Td@v=h lq_U_VBx"?'졃?)m#4z |1'#nD CCT,1 ]~;:ud,kkm"c`X^ֲ,(ܑ]WY|i[dY/W=PSDF߈"5cqaK"Ca/FOR>=B/)诱׽zNW(% ",-"/]k\h}@{9^rBl̮7M_s>"q[ޅNGa[0'6`̃ϥmGohx`vy{ yg +580d)>>cwMڬD ޯ = Smdz,F9]nƓ^exU7~6;+;|UylJ/*ƙ[uͲ\zS-{}~^_#=2 O V͇|η::Ժ;<>c_>_U'1%ʬ. g8h'~$OOu wFot_!  +~f4 osOC;#fk3j#\m#C\L\ѷ'<ߴzn3߭oS_\WSZ>l㮯b뒄7{vUW[-Kk]ծٮY5*%t7heeUiqZ}WyS3&u]+Ul޶WfɼkQTQY1{z֧ص)++M/|nye>@ٓ*+J%ܟU>zޤ9*VTg櫩қenk/U0|*2!v}[U*J5 Yr= u37fE!jjY5f:gvYOY +UՖVI%ue~մiey񬪲Jbdnt2UULf9k"(M}s|4U>W"f}sʫ݄~T٥ ̱l!RE73W]q*|Z5Xz?X]4o |%ղ*\9`jNYKyflorUJ~tƋVynv e5R_Y^\e +j_l٨^i>e7UcgTE)SY7b6D+&q_xfz 9QP%kc%>gjy%ĄYs*L*!cn3P IGI**]StD竘f6th&͛-F얂UjvUT*e$?2 +^s\BM0fZ/򊱲f%uӦWkcR!x+ϨZR@{>ŷWԖΰ)iAQ*)BBUsKꦛրW>UVY1^N8≓ +L-:x+Fs +Y2vYe%3-ҪƵfNo_UX[,SnP&UU.Uk(jgC62eMU~EmLUY4X1AT0QgLRX|EQS ݊xXC٠Ԓ:YsbfZΠٵ:KIFS)tFyYYRi%%)Zr_7{Y/-ƀ)+AvAfwV̪ B^N)Y^WY,䱰ڼ)z172}㫤 +^dWJÜ?ӭ5JT*j|e߇ϸ:Wv &8 +W +TScj +Qژ/KLWP)+/yA0ٝȪ̊oN[e\;0KTkԠ39U[:2DxӬW ˄B`\5N7+ݬ7[V!]ӅQ cMz"fԸKvv/=UC +W7cR4=QJ5e+~QWBofUH,ro-7ݤ6ѧS)\D-4C\@rU5R^_] rĭ +|Ū"V{ڟ]&KuM:7򅋮&>qnOk6I-הNWO1ѿ-tTy 崬6;>f֜yK{%T.S=VQm +ϡ0[t8dV)W" +˧Yڗa3- z8Q ONIX۳!^2x5PN[d-s1SΛ]9@-OOTĤ,9T@ie,FYGenHeURzTݢ2H +Jt u%\54USK!a=5 Y''}gM+Sӹ' *%rp AWKw.j[`֔sFN z!.gclMB 4 wŪ(gZdtcP*G myeBuo6‰\5 pQ0Fo*isX>F+>\\QvϿYV_NFyTe`j&ͩQ+"&N]Bdu }D|X;J'͙<&'kˋ|53rܤ\BDv3غr0%*Q^7 }%4p]t : LLu|s++jWVkZ;!~%.S=%b0vL J\8/s+&0MP2OfYfܪZq6M"_b]H'_Gz+9M>U dZ3{\>y-ěR^Rw骽|sE> 8]:C1vG3tqFԌìai坳yN$HOYtʺWI%*ZgzU}Zvl *05˽3Cl4յ&{f᪓p݉&ꠉc +xbEji88Tl.:V'P^/I&7ƥ2"aMT1'}N,wb* $ft +3ck`uSvr4Ի&[W^'nAXT-bx>hjf*TγArzQY\jwњAK'g!kZ-NW4>3̜団K\}|h:֜/τɓMي uio꽷5bjLvoMM^'|Y|bᐙ-ystUO >ę(=FVCz匽g1>m57%(FW M/+j(nӥrVtq\b'^ku}hN{ޕg>|& ̌X:ןXs[t(\+X쬘F7>HYYY8nrt9 BfFK몫i Uwȳo_O:3nn3qݍtVBL;LkJy4FX(8 +.L KZe]\'S~M3$wzi;ՆR邷QNvwTzb':#W&X[ǬބJzfsA+RG ]**uuߓk8+,@m㺡N!wgWS80\qiS3FƊ!BE*ҍHGCH'#62s>1< +KzcA\UH#@D|ARÐ@Zt|aBzM!$E=H"uDHoBzxx\Gz (zo2ZoH;">0B~#}ua֢,|aØt#t|Tq<CZrHw#ݍt"{m?4 $ҍHE?FH0~tb Q tB~ +> "Voe1i H"\,қ nszWA~B*9 c8M<.yqX1t?׬=OigׁH?cEOɿ@~怏+߳Qh5@ׯ=H"}i gsq7ݛtgHb2me ʁo95g_:>({W%{m`j@]%ט nL=tz#}{n#'"0B.!]u\+Ol#K`o00OLqBc;%ۄX7ȦC@p)sޅ.Gޡ߆]-Xj[yvHTӽ +&Dz礝;xn0t><ϺL'yyAGGyPd:&$;.{0YߜҞ>pij}e){كuNUK<-YfSIOMzG2rTKq%Q׉m2xr +8@+PvߞvR̀o1BrCISO_Tߣ`svO +GҬgjBxQv/@єP~L]ѾyGǓ7ca ].o- vlO zz/Y=!kEʌUٿuo't1.wd[O]7 +(مBbkPٛ]tepI4K0|CelLo)7ggPK-ao+&?XLA|4`E${mARpRw nÂX +A6>i@7B"3ȗ_G` hA7dw,uBƤ`d$= `2 oQprOreGԮB[Ї9Kt26뒙#xq; X.v'`squOWgUgh_ ]~[+:@߰4hۄw۾CuQm! ^5)`7lw~mt!#ҡSoEOx ա<<6e''qy05>~a97cY e&`MU0Ư鈽s'h'7-MVՙI\*hiKU OXrWkHgS8LنKew&E$w`_u{Xoo#y~]ey,h^}RLIݥvRoXc|nʶd@N|;LYaOM]#~?jړV5C%(%y2u\CTT.)Q b@rC= +{ ݳiYj'o߹{E0 Q3d|+13Y{tίb6wq/g^G]*͕/j,G؅a__1*=&/KC`n=^: c'LtNc@穩W,I!+4<9  `,i% ҟ4*{O4ij1R6$5wٻo*ܾ֭cxjHkQOyCZT8B(+iJfdb*P';8bTP76?|ap9?|)w[]|e):3\p{뭴E0W(_vueSG}Xz=*))y$੅yV>j^R~G?<)q^6 C0m_6 k@\ LydEcS9zc tj3Y {x}V;g/CMww4V&vamB j}{'7 #⥂ PjgUνAs$͝Xen[m_f_g^ў_c no䳬I,԰EN]XWɃg!/ք&˕ \pQ&o//|.LVL*ȋ僝|f4^ܖ_zd7qD/wa-|ܽ4=|Ӹ=F%_<7H0{GśMEyeR LT)Brn|L=gR-A9^>~a4!rz<W2o}eiאZte;J (Ƶ9zY!}LXYiQvb7e׍l,nW}}yrkeΔ3 W؆ʴLٹó+ݦ1~m転ˏe>ϲ~vx2=1˛L%u|,?wY?OC_4Ϟiø8h_ʲʟy,ֲ >U貓;튿ls2uThYX;kYzeԲԣsW8Sӻ++ɒ3V겡X6zvڟE\kpoz=wriü]:n.!5ڮh|W W2` +=->7P2//8'w| +_!I_Ë"/eKXQSo.K^ -1jeخ#΢FoDKffcb4J13uR2ɾv<όmK5]1H`b1{5j$k}(ƌ"F8_h/ gh,XAc~ν S0p(賆1lTp}W<ƕz/WnCڊs_tu_37Ksua&yiHg-Vs2XT;LĬ q{7w{{ v_Lqs?G Caئ Ceפ>C99!؜&6?Ixc܃~vbS,v0rW2$-herV޵ewed^Q *uHDI\fCܠROp˨(a<(0}^!4?;s9p9C]/gr6!M+gS>ZNj2XNߣe:ϩ7Tj鯔B[Sv6gd +poֻـ d;I_6}Jc 6fcLpJ [L=,=~>F׏Cnf6Ⅿy?;~Y?^3g>ȔOi5lt I?mff9ߠOa?;ވD5MڸI hwpGY $˄}tC8`V:|=wMUъ32aL鈽@q尬I5Q[>εȧ ++Zn_oH~vx9~=W/TGYVߕݠvmD&ן>kǶ9cl \)[v +ZluF0vn~Z}ͯŪ?O> n~S=ѡq-׎W`J=WYV?Sfks|-􃗱eEfCZKAPh~`Rc_igm6}ކXQ\06c49M?QLuhLGm[&}]?Mr6G0]> -ST]T] 6vHVfucQjcRcvp줊֮qr'wX"ppƦ(gWN^c+#QU | +*`6VfjfHls52}lF({+#ڣ켾}͖}\K)w祛Jc-sHIwτ;"}/H] CRC̻RW)YߗK2VK+uI۳u~gP";p>k{=˷Vbt뎝kMN~e̙el9lԹ;1$O^c\E21K;g +7>j){`@-5eN|9a __bhtAD{{ |w05L" #NG4wL$N/Ofsd2 eRH }ia++1_6`*jHJ꙰AWrG@b*w71*/G%ų "E*;+_Sn-_~r|Sh?~ǏY#Wx\5ޚO=L,u5~+WJ8~2Q 5Q +\8ߙT)` V?.vg&=@r,7Yit:藂vfUfQMz|s3d9`aEW)~Ey"- vXk-yžZt,,ƻ,wZ<7r6,fb* xװg \cOK 8_YfS,4=e"_- -|B wK t~*teg="Nx +~9|F&TA1݃Ʉ7 fn17[ZhuJC-ʌ;Bs6|PήEPҽw0' h@`t^7=I.g fd|Fg4qA|L8K^åxp <~3?й- r'#xyFޡxZE$kHG /\oHmzmlr#wfP b[<}qElCk2Ep#F"w _dY4vÛ}[nηC-DD0;2k&oF$gFOd0+2:ÆEnzԕ qc +nע{Y_*O gCW[*3`c D3<>-p+ey4CCQ#:nnG͡8XhK~p5,L[E8}fp\ ]ASgg ^CYL1O΂9 ^\o@m}X%|L/Jb<\)/L">^-013]b!} #>4:^k!݊8{^&ULhLBZ ]enPqT\h\z!'^q=ͮ>ğ˔Qς䫊=q[D|?']*5wE9W]/XO=h gx*.%y:/yښ:/n:<)_q^:żNY^ӥ0y1/Ǽ[a^Oh/R 9q6E|sL^Ufv(tU&/P@y&/V@Sj.~:YүDyL^slEsOIŹ[D(t^ŊbYH1-TߚT1]yMCW+jWL5J?'4ycF~hD S&*!O=kb%4|yM^N_dtwL5zyL^X=|JBN[n";[M^~żk5ybyq7EO~:oK~:J'k0yxzN7NUx)8WlRQλx2OeU{>>uW~:tOo"XT9Sx1yωyL^y?E\ǣ +giz}180m2T(=uFJ:wyOX%z꼵&/]I}9S6&/?0/e&/#kywb^T-5y*zyqwɋTѫyM^J?w TSOM3yjzQW&Kpp<.,{ے}3Y7+dZ܄2OltE_ևe/ȧ/,ynzȒ= ò}#B>Lf)Mzn6:ayj>\7-ه%?wƘDߴ|`]Zݒ/wL*n[kۆ*~nxļVRoRv/.d!}VRfh`}>x%}< }_#is'VCa?dyuXe ׄ'쯆}a ` Ͳ$kڽqSh^ ;+L~ *}_Jg*0xcw tOo3{t߾E#13=a:`b"c!t(QUw^paĖ+<L6c7M`CdU&q;۽##wtq} PB|닗pWUsȝ\MbODB %,̘&31auaY>Z>;,c㵯}^X^Nj+ |^xmk;,zkYSnRX~G&Y^}a5׫ YyYXxMj4,o ^>pڰq֟|^ni.,a?o&z^g nwXwwe +~^!oA<\srru>&{ޝ{W]gM]/&ޝx<9߻|zr0?s=C|zr!_(<,e`~wmbz~o(mAaɥSb&Mc_t{8SUU򅫘]\d[Yٚ b ayaG?uV"%1"&ʼnknLת'-K#8]##ףOvj3r97 '|#eky8o}xĪ1sm.F a*=~s}קҶ_<~_{.u?3]=_צ|/xryةU+o!~ϫwX쯺0<;7.]顩q[MzUzk\\Ҝ;CU!cEXqʷbةWձηֱnvXXW|L/J.vXxW>& ;u\#>S:ӟmwY_R1\rƷ^@ۅ{ U⸎K/gv>Įc;u,G:عX^=p"VWs^D;l:o% v#NM`  6,v!ح#;a[d`?l)nrakawa`EA]C;khaþ +k R 2ؓkbg`Y ndM?<5GF~w=ֿ=WRxvպUamj}:[裏E~T6=:+V!ȺOD3LLaw]B{֟ tCuÚ{rj3 UJDc=Yam&a}4zۘv8=TLobkdshoLD"dFh{h |Not4Vk{x=.Rfb`j/`j<ҍ$a V75G=,7德Ή=ӓYgt=^F`Fׁj-juX'on^sO%j7Z2ws7z+>(Urj=eFg~>7:ܯbͼ/7:{yzxM=ռ_O鍎5}^_WqnwE_E?u视{WUӻza9`3FO9Ѿ.zp/T\Ž+Շ}LQA%]e%;>+\]q-8;ٻʊ;rtܷZe§u_|3wA7<ވiu^932ܳދnⷽ_0 +oviE~mבX,wϔ~>Ll`_}z}_);ЈrMcxJs_+UDc^oQ܃1Gro(r.HCZt ld^SS41inpOjiMnqQcopnȯe^H!wʹCv Ƭۭ k!;? 4|=RtYwS>foZU.kЉ(݊OuY=mtt4KnQT4Kg8n_O'jмPdڗVJdLнzidE˟tZtl(7rZz#"N'L'2%[ϓa}o^*`1ɵ9Do't\KO)_gk ~Sv֓\KO"L~r-=T~֯]jK78Tk ~tG)~YDwk_2|ݭRD*HwB/SL/gq:ӾX7K%۝/pCd~;SENI%7qRd~u"T~J'zZR~ʖKx*HO_2RyzYd~.*u׈\ğ]ZR"}S^|͞_ZSm+|oIZzߤT~V ɵ+S'?wy*?wk ~CS2R\L;;=I=:ϝϝeB/_N*?_Sd~SE;9S[+_ ۚ._q:OX?K7'ǚ,ǵwSs 9;M~bJȵT{&Znku˕krWY,werϦY'LcB~{էE~.$=Ў__+ +lM?(~`+aBgWmOM}CuOi\{6gfzzhW ?t x=voy?F]^፞={7"3';eZ`4>kyoԻs+HQg59t=(s73Vt hN5/Qe|ivkz +X¾Ba5/2tmMr̓{9JoطPc~ 5o\bþ &o뿁q (H.Qna-">D9^( ߄rl>xê"W26^|ÚM|+p[|Úrm+[ɵQ=rv֌qA晜cO~C֥5ߪ'GU? -nJ^w'|(j_o(Q`E^j_N,ہ=\ 3(O4N :Ms[+jc=8V:7u> U(^Ywz^}UI>ufڙRZ`%M:iuy&P~q$J_؈􁍣=ы"+4sI+^8Ot0iH_' #s<|^J9p=y_k7{>L9p]uBK=nP(}VtO35|TLOE*YSǠ*O?Eݮ1)Clx'4 L^}>b4x#+L3^L^~<@T(J#|6\? #deMvXla%ظ?+m2[GWDwQ?( |Ww_*q7 L\|`\(~Z\} + P[~$e?UwxWa4xIoxD>.`g7}:mRO~-pL\͐ޠ.|CqG|$~wؽq6'uUXwVgtj|o> )x.!0]WI5q9ϰ&<Ty.kWO_|xD9ݽ$~.QF +?0#+qϩw@~ + {FNɧij4rJz~Sϔx\gA;jwY?O<;Gx'[jxP{xVo!ˑNk|W4H{/ .$ +m)<F~IG/xPM7J_4Ky,[FN'ǁO\#6* +#?M/+^K[~1KK|{%^ ȟNz~-ik +0GN&F~_K~xDW/(B?4w~=$>X#?qq/>59إؙ%3e~7 gI/|;|Kӌ[\ +<s%A{{Γq?wX㵒|oK ^oO-H4K+<F~_(O<&[/oh'X/x#S> +u# +"ҫ<{/[~>.T] 6+|;<*^&QqxE\?𛀗9%/5"Qx?6o0;Yg O<ˀ_m'Qqpcu{!F~Iܳ4roU CLT{:jqx4pQN^nvO^:.Nq?q%ުwx񀊗wiEƥ*G4Hc$/ ުӸWҫ8z;kOƵ+/~x‡/20~]]y>Օ0(|}_WW~_+<F~AƯ+{7E=UqjW}qxDi35'Q1hSۀwxqSwh@<S?Ӕ \ǩR~IVkGG6=o!Vq] + ;WqoiPo2oUs_6xtF~Aw3rU|5F~_O;r#?qGOȧ/4x/м?$Լu};/"]E7w `0 .m6C4gxzz;Kޑ.&#]&AsmI|}.(ܯpm (rQ!mXsMaRυ{j +\X +?Ě݀OFox! +xck>D}KWA(_ߒx^4|=pP|3gApebhb1W(A_KXLI8`/\=E;4yt +ņZw~ Rgߝח;GI yZR.-g2Y-Oȩ +S>Ev /Rd4Q64(oMEFXlʷjRl,._^J|Slv^;|oI/ګyǤ88XKo%VĚKfO]囘>i#=q1pޔ//&?ňWZ?{{DhAW9N/%'FYىEb⿚<;^f^_FYlciq.Fv)ǚ=K{1h9XGcW'ǕZ1K]=]E1//r79V,+g(d,Ȝ?o7obO7"#Ѯ} ܰ7ˆ<)oXqY賯s![R9<5\@ձ1[=:PuX^/CU]U833s|O67;lB]4oo!_Q[|j!T44Zt.ۥsßⷜvmm`w}|jo^ƙ /M-\&,Aےi}[ϧ=F49Oy~w'#}7KQ=11`31 +x5 C?s +u\['yҮc+[\l7^̋GϓW,۾Z͕h:yI$V"Sևl'e?#y:O!՗SMzɵ4Q<CU m# >73L#:8ҏzIɔQtU2<zoe `i t>|v7ߡ gL؍|ZK{Ų3. }zd<~AS9>:@~Xw^0A=7c./Ռ6|xiibuM +N-#KDrJ {#: s&Xٯ2{j0+u^b +wqО":\Td8-b+A/yzFY{V=Y/w  4ZgXHI}PQ(] 1Op 1mso̳g6$=bpΞǚ7KoΣiPq~Ƹc|ӿ`CZsW]yE__gbn:R~s=QغQ)]+k*$Enx7bW'3 zk_Ƕ']/3EFƒ|'!OGO_gb3#72wq-| +R|tIO0AD!z/g<`'> )m.WHh~mp|>cjnbl66LrsIn3i,mKkl) nE*ط_~ymKl !$M¿gj5dH/kU}ŕ8ׅ~)HqgW@ +x~q@ȴk V̙:ݮN)3k_i̫p|g0>}wgT s@#p^1kC|Kٷ$o7QtkK~_ŚlX&k8ˍl,F%ki-zݱQ;"voeps\YalW]m>~.N.֒b"Z ^V)1c߮\5\bz6!+|9j\ "?װ^g(#MzĊ[7Ꙣ K׶zSSyNg/ZZ*Kb\?sy 6_=[Z%l }Q +{Eeh#wzV-~dOژ;yX5 Ƙ潇,[.hYZO-r -] {ၮ|Z`Ry̜2)[<]:ŰQiyH kH*˂s?EC'`²{֑u#F!9s6z.ӯcŜ#%~"el [n^'P&ܘ 8a{̇~!BR >6࿇m2V->9lMs\l-hM˱ۊ?s mSSf?^苌H=Rߙ5*/zk|e l>&\ }wNԅLo.Ş82E5bəJf>6 eh6<2X"DYo%Ikα͓xuԅu$>l2μxԯ)c&sLcj-cw>PkјI80#m}|n_qIwb9֍Pc݇]źEz.o7U:^}EOU|6z[."WF+0W8^q݁|N!G0^~q~#NqR})e lNIJGQ@Txn̕w-rXs@5s0:OoZZ7MSjBUPѾo%˥ %>b\ަ[T:8շ(swE~\/?P<vCfx.a]icB ($M܊m2,Y;زc?^MHo\%c#f'w~j~O yqi+?HX67C|w;v!<w`<&\7N5\^ǵaK颧YX}*mA_b_, aqm<w)܃3PD'BVsa62֭cd{4;ϰj"TUD:pwC1ޮi{b=Xe ҿIݔKj|m#:vw{h]PA%k +z[ބvCz?dk5]Xq<A%LG?POq$dz864bа6뉸f|pׯA,L>.pCs^`ƧʙKw3WJ_ ΐf~a2l}@>m~mcچ<h̍tu80/糵 X~CEЏ_w??2φ#cqYM)_ov=q.@C\?_ j=ؿRDzzIBލZwW}囎j#kq/+//(D]xΓ;S'mCֻ?\Y꽒oKK`qY'srA]vXu5Jl8jL؇'Fп/yO:EwSyܛq }}~_yL;8ч[&W>2߽?yOɁz߯NU{hqL#)GKO=caﭧ88_Tt+}W/[Ŋ}=s xRǵ&eȘ(mCmEabG 2y\vQÈsƖqQc?xR@9h+Iix13^pzO7~NumwĔHO1qs9\\vfp1Ϋ뷠_ոTSQ|7oM֐H3ߛ9=%G@E0dg=Ѡ;gl}Z5fŶjD,d͇vpT,s:C{Q晈w' @}'߹^{O L*[-?IS`fxP/zyǾZ>, QkquWw5 2qGcCk8 ,V~/:MjFĭ {cBS!9^@kѴݣoW Ic<uu xzpK=H{<S~Rvn2Wq|xI ~P.˷-BګI`/q&ӁS/7}9~=店vzYߠ:f?O;ƕSiYy:7h2>!E!³Oh٠Ȳ +1">-+,Ae7Bw[wFzmkF6H7<Ptma>\*B~o;ߖN^l3ޏ{vDS~q/a^KGgP,`Jy;-ljac[ʭ[տ6!hg-gHӿZRb?Cu{&d'/~~/S%Rl[T;luxe|˘xqNZ/ 1Ί<՚ٗsg֥6nxgas= X ]V=-ߏX~QI; dx<|uKfM`3~@[6a_v?L.c$׎"r~lg/uv@CGA>;WsQ\9bM;5er-8N uŎʤ>R%^I7:H}e;AO[!d@#iǷ%f^u;mU҆_~vveo6k-jTԑmQVmu#}Z-/6[H/rǻ](Aљ!Wݼ_ޜ8XΚ)ζ _2 VN乥o^_泘Agp,/j>w;|=}z6;6v uͨt>2a=ף[}ܗ {_9x8Ԉ{v_8M_ĚҾh_M>nBϳ``MD &|zO=7nS6,ҍ(㰊?6{&h# K ŞmۅX1q 9zGp䘣d+dzP-6Au*N+㔏Q}!NQQSE7:c?v'lo'}] %dHK\|Iϙq{$t{8ٍ8kJ =uYW'Owo&{3ǔWw,Q}yr綩yRj9P2pmt|j̑S<`~vo1k4NGNx6QcTS1/_ǣ|̜zΒ4oW>%gfcyG;ƻm8uۀlk #ٛ ߓ&qP'Z@fuVyyt,8憇-]s•.c|6¶L~9zm_}O0[ڎP}BgۦQy[=i1iJ!+d6㘎rA>g{R9|{3kgζC{!GC*E1"9_'pvk:K~k''04IHyA~ӌKyןe}?ױg֯Vڤ{m%kBoe jYg9ߙmʿ\:Hj[e"8Dh钻Dh}QZk_kЮW'a}] Oi_|S/B?E@=IԸQ$=;$޷?tNn6;C_r7'>Ӗ/ӴA>9Agzs3t1VY4qMNkԷ1(qblsoGo[iOQϡqc88q~+>&>KG8m#qUW#Hl-ǙF|h7'PPG|FƮ?(pǷajg}Kl3Gtւ8moYVIJYt6{QԽzLĆVkF} +}&VgoÈ?6xx9xG컏nI[?gTboE[gS'OoJf\o@]ӓSZDv&{G|(7ۯxK[,[=ު`=[O6ޚVzxk⭞U[Ǎ6d*5:;q'i/V[_L;ܿrDž?urnܔy>!Nj<~~W;޿Y5e:{Mo=0Nt>ߝim=?gsr3?oV6Ƿ//qJ+ozc 5kO}}]sN-_b}'_;yDb/t\S 6 Qjg!9afWsw"DEÌM3wc̎.v3Ԛ."1!)،h'/|z>bM6ѯaO>Nj*9tDŽzz<7ȳ<7 JYWȲqt(b~FK^{['mgg?I1']#K6wW}|4u +ԧJƈNXrKXDKn_]%Mq'<!熃Eؐphvg/)[؎9#0Gh4qF6}86Q﹌vR{+IK=TtKUA9 󒑛z>'WNkLyԣ]C~~dz15/h5/Ɯ${3z lA 㶉czOj۴_/k̋[ӛkom}}ĻKtYGj7^Dڷg?x(A_~9s)c|/7|*Cwzh~ߧ#߄gz{<~DΑ4> x_Ϧ@o>sH/(3LNO6]V1̶&M 1V#tJזּ<+5Rsm[x:u^P|8# DK|K9W$Կm;CHou~[‘/]~‚O6+n+Vת +]֑7;e\ʄMp-{Vr2q[f.Zw"YE;u蛘\d>r>^;a_b=Dy߫ M\Ԓrn<8/KD mpK;aRe?;k>B/g/xS +I9E1֛2R gYoP~0ZjSʾ9M&*oqϙTgAgc#G=xSEM;^I=|r gQ*='t\j"l069 ]0Ip_4q=[3қ|1Na"/!G?aD[9[xrB+]3#OFǓ8~|oGˆ9K3c;A![o?`Ӡ6§ߖcgs!ed޽kyn'l,\-\/gE\c9D=D9çrc0whRr1C d<(C>c߳˽y(Wvzfg/m{|w=xۣPG[R{1}s6m|1=U|rnl#z>G?x^[CGܘE!a'ƿBCayBgsjg}}ؼ-(`Qx޴Id7o-*&:zghdbybg A-!kcp"# ^"FDEm-f`o!bvx&տjDRE?}1]_iRвϕ/XKiuDG3AE]Ml6ß{ZQ8ϺijsND. d4^V}&ΝN^7} H߭;)&o=}~$ߙ'k}P|($@Pś9wH@2o:k?2k|޽ܣԾcwwП~WwRʳry῀?}9N~G)+񵴇$=ԝMW=aI=GѦM&\k073:(:=uz&cz'15rs}w/f>ssu8?su8GݿGҳ<8*_W<Ǒ ]>ahO61ߧ yZ/l=DpyM;۞(ύ䊦ԕ"zr ygo\OY]} FOFy8Et36,:z'\3o^[WP+:;Э1* (σ\X: ReX.q|KyoH<cB;ݣ$IWsou2$.^ >,eiYD1)搶&i-WYׂtb2ִ<kJC {FY_DWo'bUgYww]b{,'o+g5]g5v-cً_='O(gSEx1݇{y+%HwP"ޜPpâ={F98C z8B M}#h B,{Yi?sfzOPf{Z7tI [ۯAw|8]mfp&:foAQyĸNm?y ^&}іSn4壹OK[Yʶyd7ϝ{>ʹ[j&+\|. 1w[/{ÅEº`=|WSӑ#$|D}]1x?vOlE[W8 3lAK`<9 !ć/p,y3o ~>K84Ӕ_Si$g\GM=G~gHvRϔ)>}*.ߕrQ"Q;gZa^P1}qTtۈ2Ev{rz@C9M[L$,D1c}lxLόv]o,hƊyB[#q*X|'u2 v8,}=yl7던)篥B,o G99;<{dLy̓~pb}Tl9WwX~ųܿ>^LX}6_*y[K><@뀼gd?bM쏧isky2 ^ᷔs?_=i:h=~zu/ځLǻf~̵] 1k~Wyf5-qgcͱ7Þ/wT }~3 c>ᑈxqvG;7ړ/s?O%FޥNN[^Qy.7럿Vg o'^ԷVҊ60Nۦ-?8"{S3{Sނl4mV~&5VG_'Gux-(u-0#z1s_ [/Gl^|NgM36f]N%Nr]-߫f\ձ|2<8Gpgg~9=~$-__we|7i|g|B_1&ws羋그1!3Gݏ')_;Q>A;&lw1 ΢:8Lp >'n h} Gϲ%M)I~>q#鹋9p3;;wռyҊ<⳻ޘx~KOSFiYj˧bἸQgm廃9Ծ>{ױf~#x~_Wه;[Mߨ$eӯ3hfm)}S3\s-6{xIH SKK$bW~ߋib. :9s7C*=AO:l4wHN14҃ǪmVeB`>+\ [[:% J'f{or~k(\9o>u ϮxI= ϵ;Z<G9k[iChq/ @~+P]<UUUy]~)yͷnӴM;2P=/oO}Z>35-fKɔ1;^?ڟ H~44qɺc2[}`| gtؠyfv.NsDyC?M|5l`[.ތ +\xmñX3ϔ:Ϸw=ԶWڴ+\|.r_RL%<|N2jzslnՙҗRsI9U;衅.}bקGͷ_3_5즭b :jm雷97#.`.]0F8aYAǽm|(xBO|ֈ{+1ۀMקtI9^ob]_ +<_Gw!7&OK+Cց(%/!žGk{G\Ng7bBGGܽ3no>voDPX/5¹'|p1k:/:د); SZ>rv 61~_ma3kgվ-C,nC(f)OSfD$o⇤gmߕ/WB.M%]e.ߑ'IS\ZѶngn}㭿ݎ)v}, jevG9qHf>}W;ozq"l{o_D~` _y`KX;2E;'w;-[i- +ܓ3\ 9uŎZ&^0}Et4v15?~ ;mCq}dsAہj5Gn:޸A/lWM#՗{YΜ}NȽZNpd?C~6|o6N6`cT?#?,83H )]~yww9j{B=|8u3{%>C4/}63)=:~u8L}[Goc_b^l[-oQߌt M?W?=h`ub ڒ=/V#/I9n2[ Z~3Mk?kP]W!x"uY~<(_]rM뷺? 1~6;CFq}lcKїrO;[Kq@jO$]fӞS}K(bוCaVG۸(}-YsJ]s[LLT*p%]'5DžQX|N*˕0cc 's˼W9B0CОBpF~$Xɘ7`ODc(W߼UȵD1x/, /eQm[qhCߎY~+^i.w*,X=m@y +×D_ ^= i+>4wspw W65ϻ_^cmk Xzf@6u]]F,A9`+QAFl"j҂vm8j ;Gm bc;m1VtVчViZ1 ־H<Īo )rM>g'z%k=UrhrE\ +g}S[~; +0;7cmlJ\Y[A}ٮUhlT7DMa x2RЉ^f7!S8A66VA{3 Ø%wx1ۏ1mpw:]T إ {0W."sNA9g;?% D>7:o ړb=zϐ~^7~>]G;W 4I>kqYMdD{Ի{7Gy!}]tԦwAᾺ-}ϷwԺ;yP߽.7wt5VN?+,71poPNAq$Ϙv<k|.}SXS~= rm,D]¢ski]lC^.:ͼC߼;_<w_UZ6gȋ.LrхsSR92uz꥗VVZ]Q寜^V鮞WRU~G\B(K/-Ygͪ(-)SUVYWWTg]S6gzW⺦|NKm}u]>l|lIkL+t޼..`-㰱+H?d\2M%e5F-ÉVatR]<Ğonu%<ˏy%4eE&бWMdI0K/UCK/^s _< pd+Ǫ+掌ǻ5]41rl^{ݬIW\r^Cvؒ" s9_ Q6k^9DEN!XCWN16&pMZQwLt +2$~v*7a0_\ajf+VSʮˁ&~r7QuS|Ƭ7~VVVT}F3 +?TwuN7{|T-!Z6}2]B<ڗ7%oǾ +%+'jJXaD>DճEEcމW9S9jv&UT3ܯ.ӼΙꮘ:Zi(o wyUv>Ӡ|$pWg4m)򠄊e }̩;2J1qݎ{՜r@+3*Puc\A+vsjY7Ț|YB4⹕jh|PԠݡ\j洿y]7n,[? hSSϥe4}74;Ӵ boѤrB"*$x ҥxܧr9_m4LNJ$x&+zJYbN*IKdOu3$s>T'7!z*[iAɚk F~{{jtҘ7-hX*6 &i*cj,lu'>E9Z.Nj.%Kh9k䅊\W.:do^ޜ3WTƎJTQ뮹FEob̋UL[Q +Wc{IͬY=y&++` ka@~_JOusQe|?FB#gZp3Ƅq/{܄kǺMP AeUWa2,1IB-=kպJcj"t氬6;{n|ʥsp{E%'UU̙j8`?/KaJp8W*Ô+cʦʗ3->l8r' ejsѦe*0CqVpo@QfWңb?@(9ZZݟZ!{nUx$^]9Rt4,$jkJ/U-F![۬P2 aJ[>}xTΨ5 anZ-Ԙv"WNccWnSEjc\d7~y24pWBR\癩q|jE6'EVߪRWP lKD\'̞!Գ]7T-\۫Ԅ>juuti;]/$}OB&U*ep_Wp.[TcVqG q0%87QtӸ6{*0ͥIRe~ I%.]DRKAy2xIdf::TOfZfҪfP)@O;KՎn 4_\%]Ϸ)F} yfLin(fN]:*/l^;qU5o+Wq="lv:qWɝogl5bi!ݴʲdt[㱁}y*)dֱNr.CLڞ_d)tj04˽CP3GvjʊٸjuD}h Oe$sϩƃ7*fbUY> [hOpo'WRR֗TvI}u2+S_^ĔÓ%nnϺT¹It?ڶ#K/Z oe()u*ĒTrǸn5!Sj,RHrܗn^]6v+2C*n)8vqNO#kjpz$,3;jqK$űkmϸ3_UYq^i|6})trSHC7ڻ$i$픰/U'ۊǗ i𽵦5Lv\ċ'"W*-FV&G2]b:dȒ9O2EG|M RIS  TtHL72fަ֦e~9l +47fD MYf;\WЇt=|La1/Έ@bTFn +OJW3r:˧1O2045XBћf.;֍Va~LfU?-m&q|J1}jd%Ϧ&Ȝ+TT1L)p̢KZe]\'[~GʙZV;!_:vp[*6 d;yN.JoV]re9̱~+MhU]Own4w%hCJ^%@7qG͏  +=u6uKێ qcO^O!U#C~_!2Fb3CH~#} H.H둱N\߈33 +f!`" iƥ kE(Y,VO y/ŮDX,/@N;^cbH"]+pHӺXl OŞEz5(kbXl"OfL6#m zb~r},=;t?BHې~-??A:8z???ź$zD:Xt'HBXWo!3OnD9HG*fiҗF%H?Cz%R!B:`!<3#G+.ِ-H#H"W >H́|('tcG#,@95HoE-D> +7b yibA|Hg7"}Xm/ -u;Hw=鼇c:kFԇ~cd- RϲX5!ݏtXFSv$^ zkDHHDʇ,rb>4.cdwH u-M}w玫$݇4Q'l۾c^C>|mߩþ{88}Ձop/[ +dԭPPK1~i326NDaݟV4NKw)Zz,G:?] ߻G:/w^mテ:ةdpo +AMPɉA;&;wLF_. nۮ +Ec*i<>$ԔV*zc-8{v1ԳWy (]De?U2λ;vC0T׍< =IW39q!| _XɔR;;1 1V,uv1Į;n>ޗ Q[Vw咾}{$wҜGZR.k3x">AO~o̒g>|s E1)v#۫U42Y˄}]ƾ p>bYJw)pM5d`~Uv)ۢ ^8imd\}%]4YV@mgh8$G]%۝[߆'aF/3-vB?"NaAe!MqG%q1feyS>^lce1tZt_Swcc<|`8٤76\~n}lIlqCH٥p.ZE-RD[kUVȀ&YR ފv]ߞ<<ͶUF7g9s9g^曦 ~\ǂU4Z^=w~l.Е?^Xޞ@^ϟԙ${sF }/˩;SsϻF?ntۀ"ɏ ΂k?6 55`t=}F }=2O> +qUqL0DG}8n v {#8A?<)ݴ8IVd:Ckz& +n ᚥ_vpp EEbAWP iwA|~9|Pi]U> +>xSҮٮf^XHaKx|Gl-;jv9ln=XW"_Fk4} +cEtt/ú#Z 'yc"=oЖWxE׽wrjWG?G;?072%lKjWH2F$FPwD썽2сo<>_-r$ $y^4;`[LY)CYB;  y޷oqc/\$>g't!Gou4uU< B'8O-`/Ƿͺθ +%)fi̜mh?&#ְZ.Ae sR (ΊL +0V(MVrl?F,2 [`)`i%K:9 |XφVSFpYvOU\ 8( 5;IxVOӻ3n'5h?j0UtOZEƱưʂ51~[`K03vI +y|*,q՟eic&vBcOIyy[VpARC"sO/ ѯ~bS2dU%׿2܆UDy#ˊ(~3ZqsͰ̰v_oXÝΣwİA"^H2C?A^& ~.Tꖾ+7%ؠ8{P['.ˇ|1MAUmXcd[kzLa*38ɉ`{} vB-qTw'{Ҁ}^|gQkk뙫D@}PDqbĺ&9/,zH< Y ߧ~<n#CK"A^lN?Go)!}%} YY|%F~0Rg0e +θB)6`֋ذ{ǿBuj6=}F+lŸ.#!+'î31iSC1,t}x` )6%dґq`ܽl7?~=}mgQ2 ύ>Fv*{AoR˃fbcړ)MBgu:J}Rɏ҂?]1wNb{H= ݉_>k_?2<{ s%U)Ϣ^Ǚ~g;~マ&D<Fڏ{y μ=|A{'Gv-yqs}-x0lhr]Վ8<9D*{(" ңOEUK`0uqDU2"QؘJ I0/4!R ?`LL}݆o"tDqDw:J6>"8RG$/ySs6S?K +#S1\X pBk*$sm=vѺ>lx}Pti> R³yK/%S4/9Ko +ϭKVҎXOҥx^{z'bJk',CT_-z!rOP>v(+-:{kGfzmc|/Q5@'3xFYFCCP,JP(/Q|GEaψ_nu =2 xfm`vyM8bqlQXO46o9ؼCS\dؒMB7S:YN+|6aLűEt _42|nܶS`_K1~qv[;8`x<޾٣|@V}lO|FelǦԨb[-h}&C_c V˔_*uت^f!aۡ:86.C+FY$y |9=.v%~Q! [8{ d:j ֮f.Yj5){)/FV8>o< o80ijd+Aʩ7n]QCsnt͘G66" /5Yp5/_oBW[y{9[ފy7G4ce:tRuhSM)l!?L/pr*Lbz]X<n؟52a<0%%nxh +&So%[jClul#+^J&-HfvZn 6&ӹS*b蔆:z ,u|{|V'H~ʙ*N˪^!bQ~$Iư/Ar32GYRDۯp.+ /~A͊D]Vo\ePG*_Q^˪<u 5r݌IʟkWEe| ?|HE^33-fNNV~k{N(|?77˕UUӢïm5wee嘹ݮPAuxƺ3eY-5mrFŲjj+ĽMuzl7B\~$jj K gZd:p):n IILx=P},5F +3ې'|etY@grnS &JBAVS\)e?_Oed5(,m3l51MzDu(b`"5͘J1%q~-6`f_7z2_zIT拄:5-bOhieH-MeWM CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc > CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_plugin.cc.s" - cd /_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/Increase_MTE_AddCustom/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s # Object files for target cust_tf_parsers cust_tf_parsers_OBJECTS = \ @@ -93,18 +93,18 @@ cust_tf_parsers_EXTERNAL_OBJECTS = framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" - cd /_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_tf_parsers.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -P CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/framework/tf_plugin /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin /_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/framework/tf_plugin /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal index 34512b818b4ddf558192e8733e3ee18f528a093c..f0ed2c969311498dcb8fb7a72d4c5a094b3b4be4 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal @@ -2,7 +2,7 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o - /_Increase/Increase_MTE_AddCustom/framework/tf_plugin/tensorflow_add_custom_plugin.cc + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc /usr/include/stdc-predef.h /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h /usr/include/c++/11/functional diff --git a/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d index ee3f0999b1ee4da28692ac5ffac787383b6f17de..6077ef104fde8b44ab3a1fbc498d68ee67e3e1bb 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d +++ b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d @@ -1,5 +1,5 @@ framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: \ - /_Increase/Increase_MTE_AddCustom/framework/tf_plugin/tensorflow_add_custom_plugin.cc \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc \ /usr/include/stdc-predef.h \ /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h \ /usr/include/c++/11/functional \ diff --git a/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/Makefile b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/Makefile index 0a299dac95671b66dea32a744dd0c60f0ca75db8..a1126b1d14fbc67f5e2a8304eb0151aebf54e4ab 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/Makefile +++ b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out # Special rule for the target package package: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /_Increase/Increase_MTE_AddCustom/build_out && /usr/bin/cpack --config ./CPackConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && /usr/bin/cpack --config ./CPackConfig.cmake .PHONY : package # Special rule for the target package @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/Increase_MTE_AddCustom/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /_Increase/Increase_MTE_AddCustom/build_out/CPackSourceConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,14 +152,14 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles /_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin//CMakeFiles/progress.marks - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target clean: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/clean + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/clean .PHONY : clean # The main clean target @@ -168,22 +168,22 @@ clean/fast: clean # Prepare targets for installation. preinstall: all - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall .PHONY : preinstall/fast # clear depends depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -192,7 +192,7 @@ cust_tf_parsers: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule # fast build rule for target. cust_tf_parsers/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o @@ -200,7 +200,7 @@ tensorflow_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o # target to build an object file tensorflow_add_custom_plugin.cc.o: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o .PHONY : tensorflow_add_custom_plugin.cc.o tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i @@ -208,7 +208,7 @@ tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i # target to preprocess a source file tensorflow_add_custom_plugin.cc.i: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i .PHONY : tensorflow_add_custom_plugin.cc.i tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s @@ -216,7 +216,7 @@ tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s # target to generate assembly for a file tensorflow_add_custom_plugin.cc.s: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s .PHONY : tensorflow_add_custom_plugin.cc.s # Help Target @@ -248,6 +248,6 @@ help: # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake index 8e9a5cb913619c4b8d862bf46f7401309f81f6ad..31bfd68d5bdfa02b75d9bb67804327565666bc47 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: /_Increase/Increase_MTE_AddCustom/framework/tf_plugin +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/framework/tf_plugin # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/_Increase/Increase_MTE_AddCustom/build_out") + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -49,7 +49,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/Increase_MTE_AddCustom/build_out/framework/tf_plugin/libcust_tf_parsers.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 diff --git a/Increase_DataCopy_case/Is_increase/build_out/install_manifest.txt b/Increase_DataCopy_case/Is_increase/build_out/install_manifest.txt index 0743c2118b1fa5cefdbf8fc38d25ccbea7187d8f..8a204b6adcf0f817402e0a5789f5d129848e36ee 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/install_manifest.txt +++ b/Increase_DataCopy_case/Is_increase/build_out/install_manifest.txt @@ -1,33 +1,33 @@ -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h -/_Increase/Increase_MTE_AddCustom/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 -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json -/_Increase/Increase_MTE_AddCustom/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 -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json -/_Increase/Increase_MTE_AddCustom/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 -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh -/_Increase/Increase_MTE_AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info \ No newline at end of file +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake index 4ec0508caf9316c76e4a485c010e4c9afbfd03c6..a824f65ae0a5cc7b77dac23d3340f58147cc06de 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/_Increase/Increase_MTE_AddCustom") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/_Increase/Increase_MTE_AddCustom/build_out") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake index ccb79342b2e0bfa01c75f52aeb64a1538146fdf1..8e6b573ea3cf5124ffc3c7091dfdd21b24a9585f 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake @@ -8,8 +8,8 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/_Increase/Increase_MTE_AddCustom/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" - "/_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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" + "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d" ) # Targets to which this target links. diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d index 6aedcd1bf6f73a6793001bd9d56ece7202486485..03c9b56177ea705d2bd9c1f64fcf2dfb765e000e 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d @@ -1,7 +1,7 @@ op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: \ - /_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.cc \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/op_proto.cc \ /usr/include/stdc-predef.h \ - /_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 \ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d index 2131f295e8c6662ff1b6fb8a524d079716007f7c..e3884368e3992edf90e1342f5543aec1f7da74c6 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d @@ -1,7 +1,7 @@ op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: \ - /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp \ /usr/include/stdc-predef.h \ - /_Increase/Increase_MTE_AddCustom/op_host/add_custom_tiling.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom_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 \ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make index f530e968ea533ece021983a2c577e1cfa6198128..1e51706d8b63e0c91f6a908fb6fc00e58bac6506 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Include any dependencies generated for this target. include op_host/CMakeFiles/cust_op_proto.dir/depend.make @@ -72,30 +72,30 @@ include op_host/CMakeFiles/cust_op_proto.dir/flags.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: ../op_host/add_custom.cpp op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/add_custom.cpp.i" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/add_custom.cpp.s" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" - cd /_Increase/Increase_MTE_AddCustom/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 /_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.cc > CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.cc -o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 = \ @@ -109,18 +109,18 @@ op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/add_cust 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_op_proto.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_op_proto.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_host /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_host /_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal index 6a02a7ffa4ebb3597a4a9896f8b622d1136571ae..c4a007e0b25b60a6c9bcdca97d0ba1ad602db639 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -2,9 +2,9 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o - /_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.cc + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/op_proto.cc /usr/include/stdc-predef.h - /_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.h + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -300,9 +300,9 @@ op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o - /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp /usr/include/stdc-predef.h - /_Increase/Increase_MTE_AddCustom/op_host/add_custom_tiling.h + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom_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 diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake index bac4146f507f79e06583622e4a6f3b832f55b15d..b47a2de11c7b79bb60b24dbc85b424fa519352f0 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake @@ -8,7 +8,7 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d" ) # Targets to which this target links. diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d index bd0e0509b4762d9e80681f1bcd2aa1b0fe0bd1ae..4e1fa48e5b2c412cc22c944fc68702916bb3046b 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d @@ -1,5 +1,5 @@ op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ - /_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.cpp \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.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 \ @@ -121,7 +121,7 @@ op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ /usr/include/c++/11/bits/stl_vector.h \ /usr/include/c++/11/bits/stl_bvector.h \ /usr/include/c++/11/bits/vector.tcc \ - /_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.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 \ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make index 013ae367ebf14be7f20633787c2f63fd745fd1ac..e6f23ea352c89bbecf2376ca89020476cbb1e11e 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Include any dependencies generated for this target. include op_host/CMakeFiles/cust_opapi.dir/depend.make @@ -72,16 +72,16 @@ include op_host/CMakeFiles/cust_opapi.dir/flags.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: autogen/aclnn_add_custom.cpp op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.cpp op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s # Object files for target cust_opapi cust_opapi_OBJECTS = \ @@ -93,18 +93,18 @@ cust_opapi_EXTERNAL_OBJECTS = op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_opapi.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_opapi.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_host /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_host /_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_host/CMakeFiles/cust_opapi.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal index 3453891d87bb7879d5f71561d451e202816de684..791ba41f0ca2b09b23ffb79e3ef6d7623bd24ac3 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal @@ -2,7 +2,7 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o - /_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.cpp + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.cpp /usr/include/stdc-predef.h /usr/include/string.h /usr/include/aarch64-linux-gnu/bits/libc-header-start.h @@ -144,7 +144,7 @@ op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o /usr/include/c++/11/bits/stl_vector.h /usr/include/c++/11/bits/stl_bvector.h /usr/include/c++/11/bits/vector.tcc - /_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.h + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.h /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h /usr/include/c++/11/cstdint /usr/include/c++/11/cstdlib diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake index 1507f5e6e27056129d7d208b7c52222f75ce0ad5..7fc628c787d13b88740fbea97baa1dc55c3ec776 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake @@ -8,7 +8,7 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d" ) # Targets to which this target links. diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d index 37397f419e9bd637ca6b41c2b13c699fdb66df3b..1eab5e1be44fd70dc844f35d562cd71d68192017 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d @@ -1,7 +1,7 @@ op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: \ - /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp \ /usr/include/stdc-predef.h \ - /_Increase/Increase_MTE_AddCustom/op_host/add_custom_tiling.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom_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 \ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make index 4bff8473ea669cacd16f67172b6a7fcb1e487247..8ceead35022c64ec680d8602af035973e47b5e7e 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Include any dependencies generated for this target. include op_host/CMakeFiles/cust_optiling.dir/depend.make @@ -72,16 +72,16 @@ include op_host/CMakeFiles/cust_optiling.dir/flags.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/add_custom.cpp.i" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/add_custom.cpp.s" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s # Object files for target cust_optiling cust_optiling_OBJECTS = \ @@ -93,18 +93,18 @@ cust_optiling_EXTERNAL_OBJECTS = op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/add_custom.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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_optiling.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_optiling.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_host /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_host /_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_host/CMakeFiles/cust_optiling.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal index 2a9374fa7eed03fd533bd3cc1f24127e5bd3c3f3..eb8edb3b4410214b1e130e65f295ce5d581969d6 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -2,9 +2,9 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o - /_Increase/Increase_MTE_AddCustom/op_host/add_custom.cpp + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom.cpp /usr/include/stdc-predef.h - /_Increase/Increase_MTE_AddCustom/op_host/add_custom_tiling.h + /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host/add_custom_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 diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make index a8198d3ff745778dd751fe9ed11cc714edafe35f..15a0721ccc0254bd00c9817de69467221912f40e 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for optiling_compat. @@ -67,7 +67,7 @@ include op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make include op_host/CMakeFiles/optiling_compat.dir/progress.make op_host/CMakeFiles/optiling_compat: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /_Increase/Increase_MTE_AddCustom/build_out/op_host/liboptiling.so + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/liboptiling.so optiling_compat: op_host/CMakeFiles/optiling_compat optiling_compat: op_host/CMakeFiles/optiling_compat.dir/build.make @@ -78,10 +78,10 @@ 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 /_Increase/Increase_MTE_AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/optiling_compat.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_host /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_host /_Increase/Increase_MTE_AddCustom/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_host/CMakeFiles/optiling_compat.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_host/Makefile b/Increase_DataCopy_case/Is_increase/build_out/op_host/Makefile index fb3251d8b3e40be6b8498c1fea529e339deff228..e989ae5f275d9e43c106810f399d24c06cba66cd 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/Makefile +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out # Special rule for the target package package: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /_Increase/Increase_MTE_AddCustom/build_out && /usr/bin/cpack --config ./CPackConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && /usr/bin/cpack --config ./CPackConfig.cmake .PHONY : package # Special rule for the target package @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/Increase_MTE_AddCustom/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /_Increase/Increase_MTE_AddCustom/build_out/CPackSourceConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,14 +152,14 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles /_Increase/Increase_MTE_AddCustom/build_out/op_host//CMakeFiles/progress.marks - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target clean: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/clean + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/clean .PHONY : clean # The main clean target @@ -168,22 +168,22 @@ clean/fast: clean # Prepare targets for installation. preinstall: all - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall .PHONY : preinstall/fast # clear depends depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -192,12 +192,12 @@ cust_op_proto: op_host/CMakeFiles/cust_op_proto.dir/rule # fast build rule for target. cust_op_proto/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -206,12 +206,12 @@ cust_optiling: op_host/CMakeFiles/cust_optiling.dir/rule # fast build rule for target. cust_optiling/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -220,12 +220,12 @@ cust_opapi: op_host/CMakeFiles/cust_opapi.dir/rule # fast build rule for target. cust_opapi/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -234,7 +234,7 @@ optiling_compat: op_host/CMakeFiles/optiling_compat.dir/rule # fast build rule for target. optiling_compat/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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_add_custom.o: __/autogen/aclnn_add_custom.cpp.o @@ -242,7 +242,7 @@ __/autogen/aclnn_add_custom.o: __/autogen/aclnn_add_custom.cpp.o # target to build an object file __/autogen/aclnn_add_custom.cpp.o: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o .PHONY : __/autogen/aclnn_add_custom.cpp.o __/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i @@ -250,7 +250,7 @@ __/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i # target to preprocess a source file __/autogen/aclnn_add_custom.cpp.i: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i .PHONY : __/autogen/aclnn_add_custom.cpp.i __/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s @@ -258,7 +258,7 @@ __/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s # target to generate assembly for a file __/autogen/aclnn_add_custom.cpp.s: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s .PHONY : __/autogen/aclnn_add_custom.cpp.s __/autogen/op_proto.o: __/autogen/op_proto.cc.o @@ -266,7 +266,7 @@ __/autogen/op_proto.o: __/autogen/op_proto.cc.o # target to build an object file __/autogen/op_proto.cc.o: - cd /_Increase/Increase_MTE_AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -274,7 +274,7 @@ __/autogen/op_proto.i: __/autogen/op_proto.cc.i # target to preprocess a source file __/autogen/op_proto.cc.i: - cd /_Increase/Increase_MTE_AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -282,7 +282,7 @@ __/autogen/op_proto.s: __/autogen/op_proto.cc.s # target to generate assembly for a file __/autogen/op_proto.cc.s: - cd /_Increase/Increase_MTE_AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 add_custom.o: add_custom.cpp.o @@ -290,8 +290,8 @@ add_custom.o: add_custom.cpp.o # target to build an object file add_custom.cpp.o: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o .PHONY : add_custom.cpp.o add_custom.i: add_custom.cpp.i @@ -299,8 +299,8 @@ add_custom.i: add_custom.cpp.i # target to preprocess a source file add_custom.cpp.i: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i .PHONY : add_custom.cpp.i add_custom.s: add_custom.cpp.s @@ -308,8 +308,8 @@ add_custom.s: add_custom.cpp.s # target to generate assembly for a file add_custom.cpp.s: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s .PHONY : add_custom.cpp.s # Help Target @@ -350,6 +350,6 @@ help: # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_host/cmake_install.cmake b/Increase_DataCopy_case/Is_increase/build_out/op_host/cmake_install.cmake index 192cf00b7049471dc6537545d7431ff87d3d3e15..382fc7283aed712915ee20ca6044cbf401e9efdc 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_host/cmake_install.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/op_host/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: /_Increase/Increase_MTE_AddCustom/op_host +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_host # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/_Increase/Increase_MTE_AddCustom/build_out") + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -49,7 +49,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/Increase_MTE_AddCustom/build_out/op_host/libcust_opsproto_rt2.0.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -66,7 +66,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/Increase_MTE_AddCustom/build_out/autogen/op_proto.h") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/inc" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/op_proto.h") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) @@ -76,7 +76,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/Increase_MTE_AddCustom/build_out/op_host/libcust_opmaster_rt2.0.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -93,7 +93,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/Increase_MTE_AddCustom/build_out/op_host/liboptiling.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_host/liboptiling.so") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) @@ -103,7 +103,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/Increase_MTE_AddCustom/build_out/op_host/libcust_opapi.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -120,6 +120,6 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/Increase_MTE_AddCustom/build_out/autogen/aclnn_add_custom.h") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/include" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aclnn_add_custom.h") endif() diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake index 4ec0508caf9316c76e4a485c010e4c9afbfd03c6..a824f65ae0a5cc7b77dac23d3340f58147cc06de 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/_Increase/Increase_MTE_AddCustom") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/_Increase/Increase_MTE_AddCustom/build_out") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make index f8555898c76537b5b8e4604485308e80b89c827a..b5969d76fe46a61dd7ee7fb8825619be8360e7d8 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310b. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp -r /_Increase/Increase_MTE_AddCustom/op_kernel/*.* /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -78,10 +78,10 @@ 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 /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make index 61ec900287bafaaec8b265f54ccfa66083e832b8..e6df8e23318df4dd976b46e91909f59f0f175c91 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310b_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_de include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build: ascendc_bin_ .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make index 434e61c4078f1697d8bd3b6f1ac2af4b04e67297..711a948033e502aadde48b6e6169a37ec09fd1a5 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310b_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build: ascendc_b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make index 8a36c85db3e5b4ea73c784505fae1cb487c4489c..e881b6d24cf1b3b0b802bd927906946a655a5965 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310b_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/bin - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/bin -s ascend310b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make index f0badb5bb7aff8c18a88de878a46a294b2f036fd..538fc7374735c91461dc959a677bff49538fe1b4 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310p. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp -r /_Increase/Increase_MTE_AddCustom/op_kernel/*.* /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build: ascendc_bin_ascend310p .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make index 33f0f3da39763dbc380dc16ffff9de3b1c04fba0..adb934190e7d33ac7e3fa17933f199f3978432b1 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310p_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_de include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build: ascendc_bin_ .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make index c5ad8011829b777689f7e1fe5229a08cd294e5c3..4c3397fbafa38a60a2dd648a36a6eb6e9c07837f 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310p_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build: ascendc_b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make index 37683c2d824d4a6533a793d4fbe99bc3977eda45..4c8e6954ef115e2cdc50d539b66915e7e5858975 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend310p_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/bin - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/bin -s ascend310p + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin -s ascend310p ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make index 23245919b5ea651cc867c892098060f05f088f96..e764d7fc431f74855e3e1fc749266863de35361d 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp -r /_Increase/Increase_MTE_AddCustom/op_kernel/*.* /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910 ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build: ascendc_bin_ascend910 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make index 408acb329f5bc5a0896ae250816fa7c9b6d02eb3..116d95e528b7c2006cf05cb2e8825e322c81c010 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_dep include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/src/AddCustom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build: ascendc_bin_a .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make index fdf37bcf4d11120832ba9b61b562f59115e1c73c..c11ddac9c1bcb4356e6eeeaadd64eb7bdf5451f4 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make index 4db08cb23e14f86d597df178c7462e21e1c522a9..05b59d37da4b0b7fd9b53d4014e4fb13f06f6091 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_d include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/bin - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/bin -s ascend910 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin -s ascend910 ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build: ascendc_bin .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make index 7c9098c189ca9b4b0938c736721bc5d864802b63..9f0749e51a1c061538129b50575e8137fb41ead9 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910b. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp -r /_Increase/Increase_MTE_AddCustom/op_kernel/*.* /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build: ascendc_bin_ascend910b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make index dc709c1204fc6305c33b1627dab710f2fbe4b3d9..8a60bf6e040cd1698b76974277397db01baaf723 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910b_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_de include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build: ascendc_bin_ .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make index bdcf9a7879bbb71946737654f54a6494e3513cb8..1efdda295a1e8f22f72567638b65c6371ced862c 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910b_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && cp /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build: ascendc_b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make index b5df2cc71ab22dbcb0a704a70fd22b3920486d1a..195d3ddb4bc63fabd525011d4345551bb1515993 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_bin_ascend910b_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/bin - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/bin -s ascend910b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin -s ascend910b ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make index 8a5af1a924531f403e4e1b48aad361c9dcede272..14f76873d3f5b72d97ad0ae2a2cf56b42b5dff93 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ascendc_impl_gen. @@ -70,11 +70,11 @@ op_kernel/CMakeFiles/ascendc_impl_gen: op_kernel/tbe/.impl_timestamp op_kernel/tbe/.impl_timestamp: autogen/aic-ascend310p-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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && mkdir -m 700 -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/dynamic - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/ascendc_impl_build.py /_Increase/Increase_MTE_AddCustom/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/dynamic /_Increase/Increase_MTE_AddCustom/build_out/autogen - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && rm -rf /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/.impl_timestamp - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && touch /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/.impl_timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && mkdir -m 700 -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/dynamic + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/ascendc_impl_build.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/dynamic /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && rm -rf /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/.impl_timestamp + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && touch /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/.impl_timestamp ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen ascendc_impl_gen: op_kernel/tbe/.impl_timestamp @@ -86,10 +86,10 @@ 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 /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make index 6ecf631574f67bfc0024b1dfd6089ef581457537..c7b1bf98dfef9634c16a3e3d66c9857ec13bca00 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for binary. @@ -74,10 +74,10 @@ op_kernel/CMakeFiles/binary.dir/build: binary .PHONY : op_kernel/CMakeFiles/binary.dir/build op_kernel/CMakeFiles/binary.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/binary.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/binary.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make index bbcde72cf7107227a4f4816c7e03392db76a3b7c..dcf306a058dd962a79cd0f9385e118fbeb58a8db 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for npu_supported_ops. @@ -69,9 +69,9 @@ 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && mkdir -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /_Increase/Increase_MTE_AddCustom/build_out/autogen /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -83,10 +83,10 @@ 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 /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make index 72932ea9c35e2d9b29386448392946638c8fc190..e0fa17440d4ffddbd0434cb08554955d3bbd43e6 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ops_info_gen_ascend310b. @@ -69,9 +69,9 @@ 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=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && mkdir -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/parse_ini_to_json.py /_Increase/Increase_MTE_AddCustom/build_out/autogen/aic-ascend310b-ops-info.ini /_Increase/Increase_MTE_AddCustom/build_out/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=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -83,10 +83,10 @@ 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 /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make index aa037c3be2c1e89a4c0f0fc7a0fb5f2878bb6da3..8dc1a0e09e441cd0b2027815763dc46350aacede 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ops_info_gen_ascend310p. @@ -69,9 +69,9 @@ include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make op_kernel/CMakeFiles/ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && mkdir -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/parse_ini_to_json.py /_Increase/Increase_MTE_AddCustom/build_out/autogen/aic-ascend310p-ops-info.ini /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json @@ -83,10 +83,10 @@ op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build: ops_info_gen_ascend310p .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make index ecab72fa0d194f1f96bde1b6e775c2f7495a603b..025599e3425cc0958916ac95995e87f1f1ec20da 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ops_info_gen_ascend910. @@ -69,9 +69,9 @@ include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make op_kernel/CMakeFiles/ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && mkdir -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/parse_ini_to_json.py /_Increase/Increase_MTE_AddCustom/build_out/autogen/aic-ascend910-ops-info.ini /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910 ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json @@ -83,10 +83,10 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build: ops_info_gen_ascend910 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make index 375faa2063b6019c1ab145b21cfd7f8e56de9a64..c0cc204a044809a1e3045648002b3aba32755e5c 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out # Utility rule file for ops_info_gen_ascend910b. @@ -69,9 +69,9 @@ include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make op_kernel/CMakeFiles/ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && mkdir -p /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && python3 /_Increase/Increase_MTE_AddCustom/cmake/util/parse_ini_to_json.py /_Increase/Increase_MTE_AddCustom/build_out/autogen/aic-ascend910b-ops-info.ini /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json @@ -83,10 +83,10 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build: ops_info_gen_ascend910b .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: - cd /_Increase/Increase_MTE_AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/Increase_MTE_AddCustom /_Increase/Increase_MTE_AddCustom/op_kernel /_Increase/Increase_MTE_AddCustom/build_out /_Increase/Increase_MTE_AddCustom/build_out/op_kernel /_Increase/Increase_MTE_AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/Makefile b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/Makefile index a82a74a25461a2e699a55853bd56bb4ca154e2e8..17e454f42e5bc937abd0df212c3d74d47a5bb953 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/Makefile +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/Increase_MTE_AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /_Increase/Increase_MTE_AddCustom/build_out # Special rule for the target package package: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /_Increase/Increase_MTE_AddCustom/build_out && /usr/bin/cpack --config ./CPackConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && /usr/bin/cpack --config ./CPackConfig.cmake .PHONY : package # Special rule for the target package @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/Increase_MTE_AddCustom/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /_Increase/Increase_MTE_AddCustom/build_out/CPackSourceConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,14 +152,14 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles /_Increase/Increase_MTE_AddCustom/build_out/op_kernel//CMakeFiles/progress.marks - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/Increase_MTE_AddCustom/build_out/CMakeFiles 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target clean: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/clean + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/clean .PHONY : clean # The main clean target @@ -168,22 +168,22 @@ clean/fast: clean # Prepare targets for installation. preinstall: all - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall .PHONY : preinstall/fast # clear depends depend: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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_ascend310p.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule # Convenience name for target. @@ -192,12 +192,12 @@ ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule # fast build rule for target. ops_info_gen_ascend310p/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build .PHONY : ops_info_gen_ascend310p/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -206,12 +206,12 @@ ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule # fast build rule for target. ascendc_impl_gen/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/rule .PHONY : op_kernel/CMakeFiles/binary.dir/rule # Convenience name for target. @@ -220,12 +220,12 @@ binary: op_kernel/CMakeFiles/binary.dir/rule # fast build rule for target. binary/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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_ascend310p.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule # Convenience name for target. @@ -234,12 +234,12 @@ ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule # fast build rule for target. ascendc_bin_ascend310p/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build .PHONY : ascendc_bin_ascend310p/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule # Convenience name for target. @@ -248,12 +248,12 @@ ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend31 # fast build rule for target. ascendc_bin_ascend310p_gen_ops_config/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build .PHONY : ascendc_bin_ascend310p_gen_ops_config/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule # Convenience name for target. @@ -262,12 +262,12 @@ ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend3 # fast build rule for target. ascendc_bin_ascend310p_add_custom_copy/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend310p_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule # Convenience name for target. @@ -276,12 +276,12 @@ ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p # fast build rule for target. ascendc_bin_ascend310p_add_custom_0/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build .PHONY : ascendc_bin_ascend310p_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -290,12 +290,12 @@ ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule # fast build rule for target. ops_info_gen_ascend310b/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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_bin_ascend310b.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -304,12 +304,12 @@ ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule # fast build rule for target. ascendc_bin_ascend310b/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -318,12 +318,12 @@ ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend31 # fast build rule for target. ascendc_bin_ascend310b_gen_ops_config/fast: - cd /_Increase/Increase_MTE_AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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_add_custom_copy.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule # Convenience name for target. @@ -332,12 +332,12 @@ ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend3 # fast build rule for target. ascendc_bin_ascend310b_add_custom_copy/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend310b_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule # Convenience name for target. @@ -346,12 +346,12 @@ ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b # fast build rule for target. ascendc_bin_ascend310b_add_custom_0/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build .PHONY : ascendc_bin_ascend310b_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule # Convenience name for target. @@ -360,12 +360,12 @@ ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule # fast build rule for target. ops_info_gen_ascend910/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build .PHONY : ops_info_gen_ascend910/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule # Convenience name for target. @@ -374,12 +374,12 @@ ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule # fast build rule for target. ascendc_bin_ascend910/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build .PHONY : ascendc_bin_ascend910/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule # Convenience name for target. @@ -388,12 +388,12 @@ ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910 # fast build rule for target. ascendc_bin_ascend910_gen_ops_config/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build .PHONY : ascendc_bin_ascend910_gen_ops_config/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule # Convenience name for target. @@ -402,12 +402,12 @@ ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend91 # fast build rule for target. ascendc_bin_ascend910_add_custom_copy/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend910_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule # Convenience name for target. @@ -416,12 +416,12 @@ ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_a # fast build rule for target. ascendc_bin_ascend910_add_custom_0/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build .PHONY : ascendc_bin_ascend910_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule # Convenience name for target. @@ -430,12 +430,12 @@ ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule # fast build rule for target. ops_info_gen_ascend910b/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build .PHONY : ops_info_gen_ascend910b/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule # Convenience name for target. @@ -444,12 +444,12 @@ ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule # fast build rule for target. ascendc_bin_ascend910b/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build .PHONY : ascendc_bin_ascend910b/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule # Convenience name for target. @@ -458,12 +458,12 @@ ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend91 # fast build rule for target. ascendc_bin_ascend910b_gen_ops_config/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build .PHONY : ascendc_bin_ascend910b_gen_ops_config/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule # Convenience name for target. @@ -472,12 +472,12 @@ ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend9 # fast build rule for target. ascendc_bin_ascend910b_add_custom_copy/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend910b_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule # Convenience name for target. @@ -486,12 +486,12 @@ ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b # fast build rule for target. ascendc_bin_ascend910b_add_custom_0/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build .PHONY : ascendc_bin_ascend910b_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/npu_supported_ops.dir/rule: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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. @@ -500,7 +500,7 @@ npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/rule # fast build rule for target. npu_supported_ops/fast: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 @@ -551,6 +551,6 @@ help: # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: - cd /_Increase/Increase_MTE_AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index af48db355f0f25ce2a3a2ae53a5c97258013ff93..804d928946865a7bbae30c9e822e727aabf46c7b 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -9,7 +9,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "0da1ed837989aa575958b2654c047ddacb817f905e1e97646dd6663d95f12804", + "sha256": "8d5b5221a86a3ef8c0abbdb6634e045541f86278852bd5e286c97fc36d646ffb", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 288d997a7256bebca836a317ddef9c19e7a33fbb..837277e92865b8897df09c0e8d63188065b4f268 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh index 6b8abb9dd10b70c85918bc9ccf7c5cc1aef613d4..6182959d3db76405f53f6db2a53772c0e26bd1a5 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc index 3f2a68f41649f62c1c4f330e3c37f87b3fd21d64..f0f6ac5039e9456fbfd71563b743de4146e068a9 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp index a25b2461d4613ad9636dc8e6b80f434410383f35..8b101b588e0458d4fac3b0246d98833016075db8 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp @@ -15,31 +15,29 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); - - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - AscendC::DataCopyParams copyParams; - copyParams.blockCount = 16; - copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float - copyParams.srcStride = 0; // 表示两次搬运src之间的间隔,单位为DataBlock - copyParams.dstStride = 0; - - AscendC::DataCopy(xLocal, xGm, copyParams); - + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); inQueueX.FreeTensor(xLocal); - - } + private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; - + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; AscendC::GlobalTensor xGm; }; diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index f138d03363f7f107eb9fafcc03ed225c3fd49081..7acfea32ed1b657241f98b052534a4865fd714c5 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -12,7 +12,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "2912e3b9ad9dd7a0a43d2e58c0e120f74d1cab6127f00a26efec626d8a6009fc", + "sha256": "b0bf2a5e6dcb5c68cf21bbd0fa39504287a7b1c6c0882ac76700f0a310c87966", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 531e5698d3444e77e841e1b7ad274d4f2de34ea4..d94c43d36f23612c4e50666d1c839b5743c0adbd 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh index 15680d101caf8716365cf0bee4f97830a4bdcea3..ba7df2ba76f32c7685aa9e7644d77c4ee589fcd7 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc index 16813a741e51955185ec43b5317fb1d08692f3eb..5896ac06dd86c877c866d082695d4e5adc577bd2 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp index a25b2461d4613ad9636dc8e6b80f434410383f35..8b101b588e0458d4fac3b0246d98833016075db8 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp @@ -15,31 +15,29 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); - - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - AscendC::DataCopyParams copyParams; - copyParams.blockCount = 16; - copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float - copyParams.srcStride = 0; // 表示两次搬运src之间的间隔,单位为DataBlock - copyParams.dstStride = 0; - - AscendC::DataCopy(xLocal, xGm, copyParams); - + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); inQueueX.FreeTensor(xLocal); - - } + private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; - + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; AscendC::GlobalTensor xGm; }; diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index c935cd5ec149c1a93afa0c2e1e5cfa70fbadcbe7..2c55a36588081f4ddd288d8c5d05545ad4ad70b4 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -12,7 +12,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "42835e21fd8d58aaaa5db517546d30a1a0244297f9ce2f62ed9cbd41de0f0049", + "sha256": "2fdf33870976e3c92ddaf696d83895e927b1f88aec55a5dc1fd62218e3e209c6", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index c6dfa2def56af8b188a558180a895f05ec3fd6d6..c90c8eb6c10a3e7791f25d6b89ee1e432bb2ab58 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh index 45a001f99778586cc1bf0f81b10914b5ffb1e7ef..71b03e7235c8fa310127e1939f32dd131235960a 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc index d67f1c113f12453ae9635b2749e47b9b54c4dfb4..0a6bfcc24d2733a86b0f83dd38853ad0ffd5a72a 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp index a25b2461d4613ad9636dc8e6b80f434410383f35..8b101b588e0458d4fac3b0246d98833016075db8 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp @@ -15,31 +15,29 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); - - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - AscendC::DataCopyParams copyParams; - copyParams.blockCount = 16; - copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float - copyParams.srcStride = 0; // 表示两次搬运src之间的间隔,单位为DataBlock - copyParams.dstStride = 0; - - AscendC::DataCopy(xLocal, xGm, copyParams); - + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); inQueueX.FreeTensor(xLocal); - - } + private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; - + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; AscendC::GlobalTensor xGm; }; diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index 89844e6b716fea07b967bc60d5c4657cf9b17bf1..bd4aca03f4a81005c6298d7c32814bbc965fbfdd 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -10,7 +10,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "d7a59137f7125d16a4254cb47acd705f26d5546088d41cc56b7ec30e9bc4f609", + "sha256": "657169a9860c0cbf28a4b7ca2a7716eb628c797cc41f95fcdb1214d17e00b971", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 85a8dc34526108c183fe3b09e93cfb6dda8d3206..f9b2efc437f15b74b1a07fbf17738ebb159f5957 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh index ff1f3ded829bb1bc76031e04f6ac6034823483e0..11a197dba27df74e2fa258b7c7eb358e813e06c3 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc index 3d59cf3f2b971864d95a1bde2fc7ff280d07358a..05ff4e354da99f4516ffd59c79fb57a46bb4de55 100644 Binary files a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp index a25b2461d4613ad9636dc8e6b80f434410383f35..8b101b588e0458d4fac3b0246d98833016075db8 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp @@ -15,31 +15,29 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); - - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - AscendC::DataCopyParams copyParams; - copyParams.blockCount = 16; - copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float - copyParams.srcStride = 0; // 表示两次搬运src之间的间隔,单位为DataBlock - copyParams.dstStride = 0; - - AscendC::DataCopy(xLocal, xGm, copyParams); - + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); inQueueX.FreeTensor(xLocal); - - } + private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; - + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; AscendC::GlobalTensor xGm; }; diff --git a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/cmake_install.cmake b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/cmake_install.cmake index 27a6e26eaab3e9fa9a5b988570afe941ff3da082..17544cc54d764eb8c679b60521b7ebf85726fe02 100644 --- a/Increase_DataCopy_case/Is_increase/build_out/op_kernel/cmake_install.cmake +++ b/Increase_DataCopy_case/Is_increase/build_out/op_kernel/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: /_Increase/Increase_MTE_AddCustom/op_kernel +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/_Increase/Increase_MTE_AddCustom/build_out") + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -43,78 +43,78 @@ if(NOT DEFINED CMAKE_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/ascend310p" TYPE FILE FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-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 "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/dynamic") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl" TYPE DIRECTORY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom") 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/ascend310p" TYPE FILE OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.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/ascend310p" TYPE FILE OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.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/config/ascend310b" TYPE FILE FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom") 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 "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.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 "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-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/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom") 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/ascend910" TYPE FILE OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.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/ascend910" TYPE FILE OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.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/config/ascend910b" TYPE FILE FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-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/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom") 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/ascend910b" TYPE FILE OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.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/ascend910b" TYPE FILE OPTIONAL FILES "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.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 "/_Increase/Increase_MTE_AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/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 "/_Increase/Increase_MTE_AddCustom/op_kernel/add_custom.cpp") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/Is_increase/op_kernel/add_custom.cpp") endif() diff --git a/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc b/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc index 097c6f172b4bc7ef42daa80a1fea279bbcb520e7..40988e11e202291a84247f4b5d2747b54d5c2220 100644 Binary files a/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc and b/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc index ca4f5dd7902d3b484871b728aa709ddbc13d2996..a9029ad17ecadab788928301406436ede7582032 100644 Binary files a/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc and b/Increase_DataCopy_case/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/Is_increase/op_kernel/add_custom.cpp b/Increase_DataCopy_case/Is_increase/op_kernel/add_custom.cpp index a25b2461d4613ad9636dc8e6b80f434410383f35..8b101b588e0458d4fac3b0246d98833016075db8 100644 --- a/Increase_DataCopy_case/Is_increase/op_kernel/add_custom.cpp +++ b/Increase_DataCopy_case/Is_increase/op_kernel/add_custom.cpp @@ -15,31 +15,29 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); - - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - AscendC::DataCopyParams copyParams; - copyParams.blockCount = 16; - copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float - copyParams.srcStride = 0; // 表示两次搬运src之间的间隔,单位为DataBlock - copyParams.dstStride = 0; - - AscendC::DataCopy(xLocal, xGm, copyParams); - + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); inQueueX.FreeTensor(xLocal); - - } + private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; - + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; AscendC::GlobalTensor xGm; }; diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeCache.txt b/Increase_DataCopy_case/No_Increase/build_out/CMakeCache.txt index 85a9a7d0951c0b885a046d33b5ce107102b8a50d..171b1caa7b200816b9f7bad34357107f305a1e65 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeCache.txt +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeCache.txt @@ -1,5 +1,5 @@ # This is the CMakeCache file. -# For build in directory: /_Increase/AddCustom/build_out +# For build in directory: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -112,7 +112,7 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= //No help, variable specified on the command line. -CMAKE_INSTALL_PREFIX:PATH=/_Increase/AddCustom/build_out +CMAKE_INSTALL_PREFIX:PATH=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out //Path to a program. CMAKE_LINKER:FILEPATH=/usr/bin/ld @@ -251,13 +251,13 @@ ENABLE_SOURCE_PACKAGE:BOOL=True ENABLE_TEST:BOOL=True //Value Computed by CMake -opp_BINARY_DIR:STATIC=/_Increase/AddCustom/build_out +opp_BINARY_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out //Value Computed by CMake opp_IS_TOP_LEVEL:STATIC=ON //Value Computed by CMake -opp_SOURCE_DIR:STATIC=/_Increase/AddCustom +opp_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase //No help, variable specified on the command line. vendor_name:STRING=customize @@ -272,7 +272,7 @@ 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=/_Increase/AddCustom/build_out +CMAKE_CACHEFILE_DIR:INTERNAL=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -347,7 +347,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL= //Source directory with the top level CMakeLists.txt file for this // project -CMAKE_HOME_DIRECTORY:INTERNAL=/_Increase/AddCustom +CMAKE_HOME_DIRECTORY:INTERNAL=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase //Install .so files without execute permission. CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 //ADVANCED property for variable: CMAKE_LINKER diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake index 2c97f3c8ac82ae3d3985b287fb2b9c5172867e65..129efee7bfeb0be6642b067160c6e56dfeae5f70 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/_Increase/AddCustom") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/_Increase/AddCustom/build_out") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeOutput.log b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeOutput.log index 6a167e184b2a4a8e28e4a5f8fc4c9bf54612b50d..c92d3d8b82cea27bc9c37a78f4380b8e09502a91 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeOutput.log +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeOutput.log @@ -10,7 +10,7 @@ The output was: Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" -The C compiler identification is GNU, found in "/_Increase/AddCustom/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out" +The C compiler identification is GNU, found in "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out" Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler: /usr/bin/c++ @@ -23,15 +23,15 @@ The output was: Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" -The CXX compiler identification is GNU, found in "/_Increase/AddCustom/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" +The CXX compiler identification is GNU, found in "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" Detecting C compiler ABI info compiled with the following output: -Change Dir: /_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_88bcd/fast && /usr/bin/gmake -f CMakeFiles/cmTC_88bcd.dir/build.make CMakeFiles/cmTC_88bcd.dir/build -gmake[1]: Entering directory '/_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o -/usr/bin/cc -v -o CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_254cb/fast && /usr/bin/gmake -f CMakeFiles/cmTC_254cb.dir/build.make CMakeFiles/cmTC_254cb.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_254cb.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 @@ -39,8 +39,8 @@ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~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_88bcd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_88bcd.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_88bcd.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/ccDS1nTi.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_254cb.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_254cb.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/ccl01BkQ.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 @@ -60,15 +60,15 @@ GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 52ed857e9cd110e5efaa797811afcfbb -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_88bcd.dir/' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o /tmp/ccDS1nTi.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_254cb.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o /tmp/ccl01BkQ.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_88bcd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.' -Linking C executable cmTC_88bcd -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_88bcd.dir/link.txt --verbose=1 -/usr/bin/cc -v CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o -o cmTC_88bcd +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_254cb +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_254cb.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o -o cmTC_254cb Using built-in specs. COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper @@ -79,10 +79,10 @@ 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_88bcd' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_88bcd.' - /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/cc069GFV.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_88bcd /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_88bcd.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_88bcd' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_88bcd.' -gmake[1]: Leaving directory '/_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_254cb' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_254cb.' + /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/cct50f4p.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_254cb /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_254cb.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_254cb' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_254cb.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp' @@ -103,12 +103,12 @@ Parsed C implicit include dir info from above output: rv=done Parsed C implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_88bcd/fast && /usr/bin/gmake -f CMakeFiles/cmTC_88bcd.dir/build.make CMakeFiles/cmTC_88bcd.dir/build] - ignore line: [gmake[1]: Entering directory '/_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_254cb/fast && /usr/bin/gmake -f CMakeFiles/cmTC_254cb.dir/build.make CMakeFiles/cmTC_254cb.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_254cb.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] @@ -116,8 +116,8 @@ Parsed C implicit link information from above output: 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_88bcd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_88bcd.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_88bcd.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/ccDS1nTi.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_254cb.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_254cb.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/ccl01BkQ.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: [] @@ -137,15 +137,15 @@ Parsed C implicit link information from above output: 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_88bcd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_88bcd.dir/'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o /tmp/ccDS1nTi.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_254cb.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o /tmp/ccl01BkQ.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_88bcd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_88bcd] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_88bcd.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_88bcd.dir/CMakeCCompilerABI.c.o -o cmTC_88bcd ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_254cb] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_254cb.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o -o cmTC_254cb ] 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] @@ -156,13 +156,13 @@ Parsed C implicit link information from above output: 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_88bcd' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_88bcd.'] - 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/cc069GFV.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_88bcd /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_88bcd.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] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_254cb' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_254cb.'] + 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/cct50f4p.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_254cb /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_254cb.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/cc069GFV.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cct50f4p.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -182,7 +182,7 @@ Parsed C implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_88bcd] ==> ignore + arg [cmTC_254cb] ==> 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] @@ -194,7 +194,7 @@ Parsed C implicit link information from above output: 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_88bcd.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_254cb.dir/CMakeCCompilerABI.c.o] ==> ignore arg [-lgcc] ==> lib [gcc] arg [--push-state] ==> ignore arg [--as-needed] ==> ignore @@ -226,12 +226,12 @@ Parsed C implicit link information from above output: Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_b754d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_b754d.dir/build.make CMakeFiles/cmTC_b754d.dir/build -gmake[1]: Entering directory '/_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/c++ -v -o CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_84a37/fast && /usr/bin/gmake -f CMakeFiles/cmTC_84a37.dir/build.make CMakeFiles/cmTC_84a37.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_84a37.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 @@ -239,8 +239,8 @@ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~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_b754d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b754d.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_b754d.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/ccbIO88V.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_84a37.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_84a37.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/cc7xqrPQ.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 @@ -264,15 +264,15 @@ GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 3e6e780af1232722b47e0979fda82402 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b754d.dir/' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccbIO88V.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_84a37.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc7xqrPQ.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_b754d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.' -Linking CXX executable cmTC_b754d -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b754d.dir/link.txt --verbose=1 -/usr/bin/c++ -v CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_b754d +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_84a37 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_84a37.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_84a37 Using built-in specs. COLLECT_GCC=/usr/bin/c++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/11/lto-wrapper @@ -283,10 +283,10 @@ 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_b754d' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_b754d.' - /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/ccZnaiAf.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_b754d /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_b754d.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_b754d' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_b754d.' -gmake[1]: Leaving directory '/_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_84a37' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_84a37.' + /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/ccyq0XqW.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_84a37 /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_84a37.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_84a37' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_84a37.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp' @@ -313,12 +313,12 @@ Parsed CXX implicit include dir info from above output: rv=done Parsed CXX implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp] + ignore line: [Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_b754d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_b754d.dir/build.make CMakeFiles/cmTC_b754d.dir/build] - ignore line: [gmake[1]: Entering directory '/_Increase/AddCustom/build_out/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_84a37/fast && /usr/bin/gmake -f CMakeFiles/cmTC_84a37.dir/build.make CMakeFiles/cmTC_84a37.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_84a37.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] @@ -326,8 +326,8 @@ Parsed CXX implicit link information from above output: 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_b754d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b754d.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_b754d.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/ccbIO88V.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_84a37.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_84a37.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/cc7xqrPQ.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: [] @@ -351,15 +351,15 @@ Parsed CXX implicit link information from above output: 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_b754d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b754d.dir/'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccbIO88V.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_84a37.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc7xqrPQ.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_b754d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_b754d] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b754d.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_b754d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_b754d ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_84a37] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_84a37.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_84a37 ] 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] @@ -370,13 +370,13 @@ Parsed CXX implicit link information from above output: 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_b754d' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_b754d.'] - 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/ccZnaiAf.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_b754d /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_b754d.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] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_84a37' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_84a37.'] + 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/ccyq0XqW.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_84a37 /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_84a37.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/ccZnaiAf.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccyq0XqW.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -396,7 +396,7 @@ Parsed CXX implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_b754d] ==> ignore + arg [cmTC_84a37] ==> 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] @@ -408,7 +408,7 @@ Parsed CXX implicit link information from above output: 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_b754d.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_84a37.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [-lgcc_s] ==> lib [gcc_s] diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeRuleHashes.txt b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeRuleHashes.txt index 639e83692d1a0f6ad652176c2f902839a6f11fde..4acf7b6d0c61366c7743168552ad79c53ea82c35 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeRuleHashes.txt +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -1,33 +1,33 @@ # Hashes of file build rules. -e1fbfda9df040f851862f639f4ee9fb3 CMakeFiles/gen_version_info -0fa5dc13e2eb2c2eeb2b24ef12a67747 CMakeFiles/modify_vendor -a84643aef7e940b59211adf685c72b92 op_host/CMakeFiles/optiling_compat -1b183c9bdabab770dfbd79d184daced0 op_kernel/CMakeFiles/ascendc_bin_ascend310b -ffaf06e8f02193956defc632d5a084a8 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 -7d99b2d859d1233480c386448ba34ad4 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy -9e04892d6651c920e2af926f692b763b op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config -5a645c07c3dcf3e2b95713dcd7ec30bd op_kernel/CMakeFiles/ascendc_bin_ascend310p -dd4374b3a60188d28adf8d773d07ec0d op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 -df31b833a5dfcc03a7d7ce18e51a8904 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy -816e4a9bd13421fd6fd216a7db348e12 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config -c8fd3cec399016e2033f3c117406502b op_kernel/CMakeFiles/ascendc_bin_ascend910 -c4e977619ded9bf4f8a5fee5b5462ee2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 -3a7bfb571967f6c1cba526881873d192 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy -82bada8d233cb3243d78d9b45be482b9 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config -9b2b981381f83c5c28dcb3dc41b173da op_kernel/CMakeFiles/ascendc_bin_ascend910b -c5acb73f196b6f2d77da4abbc382d185 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 -47d25a0f223bf3afbea6b01b1df47312 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy -1b1d5e26662374094490106ee0f4a264 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config -ffe8289f9664a3e7b0bdac936b348c3d op_kernel/CMakeFiles/ascendc_impl_gen -ffe8289f9664a3e7b0bdac936b348c3d op_kernel/CMakeFiles/npu_supported_ops -ffe8289f9664a3e7b0bdac936b348c3d op_kernel/CMakeFiles/ops_info_gen_ascend310b -ffe8289f9664a3e7b0bdac936b348c3d op_kernel/CMakeFiles/ops_info_gen_ascend310p -ffe8289f9664a3e7b0bdac936b348c3d op_kernel/CMakeFiles/ops_info_gen_ascend910 -ffe8289f9664a3e7b0bdac936b348c3d op_kernel/CMakeFiles/ops_info_gen_ascend910b -7ef3c43ba09ec20eef4310f68f23865a op_kernel/tbe/.impl_timestamp -54249ca4b9da0654c7334e290f200dfb op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json -7abbc9cf0aa90f1e044c91897622914d op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json -1f449b8d8fbcffba9b8890708fab4f8f op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json -72dece07e96471b86433ab6dfa7b217f op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json -5d0cae794c0e56986c74837e4e1c6cb6 op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json -20cc6c411fc822c448653ea377047c1d scripts/install.sh +6f4c6f8124a52749e50db18c518aea74 CMakeFiles/gen_version_info +1f068bb1cd430067cf82098c7696331d CMakeFiles/modify_vendor +7ce04fac784a6950bf51d492cf00fa31 op_host/CMakeFiles/optiling_compat +772600d12cc0978e2c638526cfc7e507 op_kernel/CMakeFiles/ascendc_bin_ascend310b +7be6a2cb70014a8483bf73db20e743ef op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +504851ea9b03cce23f864b7f9fedb5a2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +e9d45e5080a47206a1d7ab6c23ccdd0d op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +46714341a9f2db214b6c718dd8650d4d op_kernel/CMakeFiles/ascendc_bin_ascend310p +6018e15db841023cb7241056c9dec693 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +1cbf23edb930a269521ba8f9c98fe3fb op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +a2123f61d7998333665474539cf9aed2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +96a38d6e73771456f3d7cfd67a598d8e op_kernel/CMakeFiles/ascendc_bin_ascend910 +f4e669312bb06fac1b07496d185fd24c op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +ee15449fa6d1e8d14914ccbf00bfe857 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +a1d406191e66ade4f5b18bcae31847f5 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +fa1689b508d71e5bfdb32684ed1343ba op_kernel/CMakeFiles/ascendc_bin_ascend910b +f00d88481b4ee864b60898c596270edd op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +b856cd07600ffeabdbc385f84d7ef888 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +ce19f63ec9d2c9dccdd17ca90ea6bb05 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +b3e03fb3a31fc149dd8ed8b00759927f op_kernel/CMakeFiles/ascendc_impl_gen +b3e03fb3a31fc149dd8ed8b00759927f op_kernel/CMakeFiles/npu_supported_ops +b3e03fb3a31fc149dd8ed8b00759927f op_kernel/CMakeFiles/ops_info_gen_ascend310b +b3e03fb3a31fc149dd8ed8b00759927f op_kernel/CMakeFiles/ops_info_gen_ascend310p +b3e03fb3a31fc149dd8ed8b00759927f op_kernel/CMakeFiles/ops_info_gen_ascend910 +b3e03fb3a31fc149dd8ed8b00759927f op_kernel/CMakeFiles/ops_info_gen_ascend910b +d01a52e845fdc27ccab24bb968608736 op_kernel/tbe/.impl_timestamp +c5e9bfc2522a1b227c7604c24625af51 op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +4464e1cd59fb9dc1f2d299caf147c526 op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +d4998a3bd0e58bc266ef2787e33444b3 op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +0c61b5591133b2ebf692959d3e517a97 op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +97f121fd1440beeb0755a1bf3dc36113 op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +d6af4e28f6838ca5febbea233cc031bc scripts/install.sh diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/Makefile2 b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/Makefile2 index 470b590f7a05f9edfed0149bed89b4c98a8345cd..467b377c983051746bcef526fdc595822bbf1b58 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/Makefile2 +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/Makefile2 @@ -54,10 +54,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out #============================================================================= # Directory level rules for the build root directory @@ -184,14 +184,14 @@ op_kernel/clean: op_kernel/CMakeFiles/npu_supported_ops.dir/clean 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=11 "Built target modify_vendor" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : CMakeFiles/modify_vendor.dir/rule # Convenience name for target. @@ -210,14 +210,14 @@ CMakeFiles/modify_vendor.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target gen_version_info" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : CMakeFiles/gen_version_info.dir/rule # Convenience name for target. @@ -236,14 +236,14 @@ CMakeFiles/gen_version_info.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=9,10 "Built target cust_tf_parsers" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule # Convenience name for target. @@ -262,14 +262,14 @@ framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=2,3,4 "Built target cust_op_proto" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 3 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 3 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/cust_op_proto.dir/rule # Convenience name for target. @@ -288,14 +288,14 @@ op_host/CMakeFiles/cust_op_proto.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=7,8 "Built target cust_optiling" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/cust_optiling.dir/rule # Convenience name for target. @@ -314,14 +314,14 @@ op_host/CMakeFiles/cust_optiling.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=5,6 "Built target cust_opapi" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/cust_opapi.dir/rule # Convenience name for target. @@ -340,14 +340,14 @@ op_host/CMakeFiles/cust_opapi.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target optiling_compat" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 2 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_host/CMakeFiles/optiling_compat.dir/rule # Convenience name for target. @@ -366,14 +366,14 @@ op_host/CMakeFiles/optiling_compat.dir/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule # Convenience name for target. @@ -392,14 +392,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=1 "Built target ascendc_impl_gen" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule # Convenience name for target. @@ -421,14 +421,14 @@ op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_ op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target binary" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/binary.dir/rule # Convenience name for target. @@ -447,14 +447,14 @@ op_kernel/CMakeFiles/binary.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule # Convenience name for target. @@ -473,14 +473,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule # Convenience name for target. @@ -499,14 +499,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule # Convenience name for target. @@ -526,14 +526,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMak op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule # Convenience name for target. @@ -552,14 +552,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=13 "Built target ops_info_gen_ascend310b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule # Convenience name for target. @@ -578,14 +578,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule # Convenience name for target. @@ -604,14 +604,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule # Convenience name for target. @@ -630,14 +630,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule # Convenience name for target. @@ -657,14 +657,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMak op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule # Convenience name for target. @@ -683,14 +683,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule # Convenience name for target. @@ -709,14 +709,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule # Convenience name for target. @@ -735,14 +735,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule # Convenience name for target. @@ -761,14 +761,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule # Convenience name for target. @@ -788,14 +788,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMake op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule # Convenience name for target. @@ -814,14 +814,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule # Convenience name for target. @@ -840,14 +840,14 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule # Convenience name for target. @@ -866,14 +866,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule # Convenience name for target. @@ -892,14 +892,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all: $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule # Convenience name for target. @@ -919,14 +919,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMak op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all # Build rule for subdir invocation for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule # Convenience name for target. @@ -945,14 +945,14 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=12 "Built target npu_supported_ops" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/CMakeFiles 1 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 1 $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : op_kernel/CMakeFiles/npu_supported_ops.dir/rule # Convenience name for target. diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/TargetDirectories.txt b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/TargetDirectories.txt index b0876644d19763b376aa26a15576e2e6b7449155..1bfc1825fc70a8fd5d7236d220ee2c73ba15e97a 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/TargetDirectories.txt +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/TargetDirectories.txt @@ -1,70 +1,70 @@ -/_Increase/AddCustom/build_out/CMakeFiles/modify_vendor.dir -/_Increase/AddCustom/build_out/CMakeFiles/gen_version_info.dir -/_Increase/AddCustom/build_out/CMakeFiles/package.dir -/_Increase/AddCustom/build_out/CMakeFiles/package_source.dir -/_Increase/AddCustom/build_out/CMakeFiles/edit_cache.dir -/_Increase/AddCustom/build_out/CMakeFiles/rebuild_cache.dir -/_Increase/AddCustom/build_out/CMakeFiles/list_install_components.dir -/_Increase/AddCustom/build_out/CMakeFiles/install.dir -/_Increase/AddCustom/build_out/CMakeFiles/install/local.dir -/_Increase/AddCustom/build_out/CMakeFiles/install/strip.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/package.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/package_source.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/edit_cache.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/rebuild_cache.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/list_install_components.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/install.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/install/local.dir -/_Increase/AddCustom/build_out/framework/CMakeFiles/install/strip.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/package.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/package_source.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/install.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/install/local.dir -/_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/cust_op_proto.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/cust_optiling.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/cust_opapi.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/optiling_compat.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/package.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/package_source.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/edit_cache.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/rebuild_cache.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/list_install_components.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/install.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/install/local.dir -/_Increase/AddCustom/build_out/op_host/CMakeFiles/install/strip.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/binary.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/package.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/package_source.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/edit_cache.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/rebuild_cache.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/list_install_components.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/install.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/install/local.dir -/_Increase/AddCustom/build_out/op_kernel/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/gen_version_info.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/optiling_compat.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/binary.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/gen_version_info.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/gen_version_info.dir/build.make index 30a402ca83cd6db3027a8b27df75825e95ee6472..ce1155c587515fa45a833c47eab4c1f4f75ede9d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/gen_version_info.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/gen_version_info.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for gen_version_info. @@ -67,7 +67,7 @@ include CMakeFiles/gen_version_info.dir/compiler_depend.make include CMakeFiles/gen_version_info.dir/progress.make CMakeFiles/gen_version_info: - bash /_Increase/AddCustom/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /_Increase/AddCustom/build_out + bash /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out gen_version_info: CMakeFiles/gen_version_info gen_version_info: CMakeFiles/gen_version_info.dir/build.make @@ -82,6 +82,6 @@ CMakeFiles/gen_version_info.dir/clean: .PHONY : CMakeFiles/gen_version_info.dir/clean CMakeFiles/gen_version_info.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) .PHONY : CMakeFiles/gen_version_info.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake index 3894796cce8ce774328e9b4ca840080b30b4a800..01e14e08557a1debb540a37078c484d7fc8826b0 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake @@ -12,7 +12,7 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES # Pairs of files generated by the same build rule. set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/_Increase/AddCustom/build_out/scripts/upgrade.sh" "/_Increase/AddCustom/build_out/scripts/install.sh" + "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/scripts/upgrade.sh" "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/scripts/install.sh" ) diff --git a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/build.make index fe21626dd589821a249475a04ea986aae7da2234..cca2579631461a6f22dd36fe22d02cadc6e63da0 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for modify_vendor. @@ -70,10 +70,10 @@ 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" - mkdir -p /_Increase/AddCustom/build_out/scripts - cp -r /_Increase/AddCustom/scripts/* /_Increase/AddCustom/build_out/scripts/ - sed -i s/vendor_name=customize/vendor_name=customize/g /_Increase/AddCustom/build_out/scripts/* + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/scripts + cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/scripts/* /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/scripts/* scripts/upgrade.sh: scripts/install.sh @$(CMAKE_COMMAND) -E touch_nocreate scripts/upgrade.sh @@ -93,6 +93,6 @@ CMakeFiles/modify_vendor.dir/clean: .PHONY : CMakeFiles/modify_vendor.dir/clean CMakeFiles/modify_vendor.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) .PHONY : CMakeFiles/modify_vendor.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/CPackConfig.cmake b/Increase_DataCopy_case/No_Increase/build_out/CPackConfig.cmake index 64c0e38ef51150863f342817704054d3126eafc4..4d0dcb373be7f7633f8ac7058355f2874379d507 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CPackConfig.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/CPackConfig.cmake @@ -10,18 +10,18 @@ # usually begin with CPACK__xxxx. -set(CPACK_BUILD_SOURCE_DIRS "/_Increase/AddCustom;/_Increase/AddCustom/build_out") +set(CPACK_BUILD_SOURCE_DIRS "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase;/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 "/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 "/_Increase/AddCustom/cmake/makeself.cmake") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/makeself.cmake") set(CPACK_GENERATOR "External") -set(CPACK_INSTALL_CMAKE_PROJECTS "/_Increase/AddCustom/build_out;opp;ALL;/") -set(CPACK_INSTALL_PREFIX "/_Increase/AddCustom/build_out") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") set(CPACK_MODULE_PATH "") set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") set(CPACK_NSIS_INSTALLER_ICON_CODE "") @@ -29,12 +29,12 @@ 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 "/_Increase/AddCustom/build_out/CPackConfig.cmake") +set(CPACK_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 "/_Increase/AddCustom/build_out") +set(CPACK_PACKAGE_DIRECTORY "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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") @@ -50,7 +50,7 @@ set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.22/Templates/CPack.GenericDes 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 "/_Increase/AddCustom/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake") set(CPACK_SOURCE_RPM "OFF") set(CPACK_SOURCE_TBZ2 "ON") set(CPACK_SOURCE_TGZ "ON") @@ -63,7 +63,7 @@ set(CPACK_TOPLEVEL_TAG "Linux") set(CPACK_WIX_SIZEOF_VOID_P "8") if(NOT CPACK_PROPERTIES_FILE) - set(CPACK_PROPERTIES_FILE "/_Increase/AddCustom/build_out/CPackProperties.cmake") + set(CPACK_PROPERTIES_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CPackProperties.cmake") endif() if(EXISTS ${CPACK_PROPERTIES_FILE}) diff --git a/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake b/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake index 2fca7ce64181ca67bf1b3fbe344cb0a22b25cedf..c4fbc8568d1b6b87994aa0b663df0b26746e6310 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake @@ -10,20 +10,20 @@ # usually begin with CPACK__xxxx. -set(CPACK_BUILD_SOURCE_DIRS "/_Increase/AddCustom;/_Increase/AddCustom/build_out") +set(CPACK_BUILD_SOURCE_DIRS "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase;/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 "/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run") +set(CPACK_EXTERNAL_BUILT_PACKAGES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 "/_Increase/AddCustom/cmake/makeself.cmake") +set(CPACK_EXTERNAL_PACKAGE_SCRIPT "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/makeself.cmake") set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") -set(CPACK_INSTALLED_DIRECTORIES "/_Increase/AddCustom;/") +set(CPACK_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase;/") set(CPACK_INSTALL_CMAKE_PROJECTS "") -set(CPACK_INSTALL_PREFIX "/_Increase/AddCustom/build_out") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") set(CPACK_MODULE_PATH "") set(CPACK_NSIS_DISPLAY_NAME "opp 0.1.1") set(CPACK_NSIS_INSTALLER_ICON_CODE "") @@ -31,12 +31,12 @@ 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 "/_Increase/AddCustom/build_out/CPackConfig.cmake") +set(CPACK_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 "/_Increase/AddCustom/build_out") +set(CPACK_PACKAGE_DIRECTORY "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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") @@ -54,8 +54,8 @@ 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 "/_Increase/AddCustom;/") -set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/_Increase/AddCustom/build_out/CPackSourceConfig.cmake") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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") @@ -71,7 +71,7 @@ set(CPACK_TOPLEVEL_TAG "Linux-Source") set(CPACK_WIX_SIZEOF_VOID_P "8") if(NOT CPACK_PROPERTIES_FILE) - set(CPACK_PROPERTIES_FILE "/_Increase/AddCustom/build_out/CPackProperties.cmake") + set(CPACK_PROPERTIES_FILE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CPackProperties.cmake") endif() if(EXISTS ${CPACK_PROPERTIES_FILE}) diff --git a/Increase_DataCopy_case/No_Increase/build_out/Makefile b/Increase_DataCopy_case/No_Increase/build_out/Makefile index 0307e1a027f6a82aa93368d17fc6346482ba9af2..e4a3de6d0defe5d1591ecaebffbe9bf5a7ee151a 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/Makefile +++ b/Increase_DataCopy_case/No_Increase/build_out/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/AddCustom/build_out/CPackSourceConfig.cmake + /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,9 +152,9 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles /_Increase/AddCustom/build_out//CMakeFiles/progress.marks + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out//CMakeFiles/progress.marks $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json index 5bfc7ca0b63f42a84df2bba4db55a234b86e3bd0..6f121838456a79a62e4c67cea05d88e0d6232dda 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json +++ b/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json @@ -14,7 +14,7 @@ { "component" : "ALL", "components" : [], - "directory" : "/_Increase/AddCustom/build_out", + "directory" : "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out", "installationTypes" : [], "projectName" : "opp", "subDirectory" : "/" diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run index a798b78a234b5442e5a0bd04878be36e1571fe31..461618a727aa26c7fad5ea0be5ab230f40f51dbb 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run +++ b/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run @@ -6,9 +6,9 @@ ORIG_UMASK=`umask` -CRCsum="1648662565" +CRCsum="1438551679" MD5="00000000000000000000000000000000" -SHA="2393b463f3ba5d11b1724e391f4ceb405e4516daef6a0f81f078ccd4560a3f71" +SHA="3e12c916f16e719af969bbd8e36a09ae5a4128dfc0959f7cfa55e62eaa0a86f3" SIGNATURE="" TMPROOT=${TMPDIR:="$HOME"} if ! test -d "$TMPROOT"; then @@ -31,9 +31,9 @@ scriptargs="" cleanup_script="" licensetxt="" helpheader='' -targetdir="makeself-948358-20240827164715" -filesizes="103519" -totalsize="103519" +targetdir="makeself-916256-20240525182739" +filesizes="104443" +totalsize="104443" keep="n" nooverwrite="n" quiet="n" @@ -375,11 +375,11 @@ do if test x"n" != x""; then echo Encryption: n fi - echo Date of packaging: Tue Aug 27 16:47:15 CST 2024 + echo Date of packaging: Sat May 25 18:27:39 CST 2024 echo Built with Makeself version 2.4.5 - echo Build command was: "/_Increase/AddCustom/cmake/util/makeself/makeself.sh \\ + echo Build command was: "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/makeself/makeself.sh \\ \"--header\" \\ - \"/_Increase/AddCustom/cmake/util/makeself/makeself-header.sh\" \\ + \"/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/makeself/makeself-header.sh\" \\ \"--help-header\" \\ \"./help.info\" \\ \"--gzip\" \\ @@ -669,288 +669,313 @@ if test x"$keep" = xn; then rm -rf "$tmpdir" fi eval $finish; exit $res -f< pŕZa``!Z6ڟ$0,bl!x4;N;$RPT]sTBI]ꊄRgL P{o{g#9?}{u{=#'Sj>triiVi_-ɴt5!4VǀSlru2V'7 35:.ZbCXz=ݬawJ[Ou90b+L#9VthTQv#rRRuu'XԵKz,k(::mPDbgeP'gv\ODQus6 u_w h^k9 -J.MdqiM-KԳAjVuu\;0Qykt2#k%[ɪޱ%XRH,%kW-vՒv&oKkmtKF͙؞X[h4У=qJtzBpurMEkށh FQv| a# -TM<Ҍ`D"KCflE()Wu4wR>O[)57_iBBG %0. H@]Eyt42]=V+=6^l5F;5*z(V -U 5G/;#>sJ>耊.cԝeˣVn:\laߖKy4*,Gm5/]cA~X#.NAul܆-Enj #0>Nl*lf4%, MZ>oxq[1YC*V?-r8fGBb4EWgR˯ 3 nŬP߬]]7Q5#3ב -`+`Q(+X+w?pj8 9) ( * |T׿>0`οTT)R5T׳5AyZa":?6 ZHu:Qтe*m]E!ʺkn룆е=yԇUQq^Dwq -wBٕ:s@ -zA+N2趦֘Q7xw_Ј3`w2;6Fj;-C-v7 OA׆,jU{2:,5"Mށ/lTZ7ƨan,z/*ֵjkLluT=:ށRWk[?uR *aA򑒩!5_TݦJƧQ `GW38!' 4̸:l -ޢc -E)ZN"qڥf&QMSpk qz6'Tr+[-&=7wuS26ҷ~]7@ngdR4Oo#jr -|}~zGyld ̤xDx=n^{t)ioYfw"_$}wM939RSR,c ~gQ0ӟb3YL~h>+_  N,Etz" -џCMg/FOD{C]~8"ϕG%i~ډk9C#3%.O9~D/Jt]b|*xpD?K|xpD]sKt -DD?Ox]L:'?|0<h7c6\ Sdqd>siv}{A뜎_I2!CZρŝw7GGAD][= ?̜~o -pڳ8 clAh Ǵ;ixF#Sƺ!?{s]gݮ~ 7l}Þl/؏5v 2}yEgl;7 ^Pnrű3O{}¢z|CƲajtE=/v>+ۡ(7uMǀL ޶I=s:!cqyNy^㻟b52ttsNnwo*9pCLmy(z~8,u{.0O\~o<2-y.̙PgB~`L9X^y͝)Ej[bjV^3yAUNir+b߀4^߄]X>H|' =OgEȅh;%| KlKz/HK/z6xC<4蚟otx{玆;#^r>:OoL<>lQꚿ?r9{ۂ?s;̻XHPV03OG#{MȂ䑆E7G$pNI8 '$|, 8 ?ST,SA4"'gS=p\^qagx);5f{3eQn88s\gl!8[{wqT3.q'ΰz> v -yq'/,g]id%$ۓD䡙&8s\UIYJ|6adT'G ә(ҵY &(Pgyb%: |8|PgeUW%I=x(]@)].=j!~l -TzCyeU$98$oDf?8\8W:c'Ü"R |GKluy~B^Q8# <+/'lM yEB%>cs 4?qqK"n'%9.(ey "ORAF8Z΁EhhsQw"a'L^a.'}. <~7|q!D9_!AyrH$ {h_Ov(>.7,τ$>Y.[64߿bxJ]ȋ~ o':tT7TR#O࿁9թ&cSbc#g Jj{Wqݏd'Vmɖ1:Q>y$E.QbLhG'nuI'rjԮ4ET([6M?&$Q -C{3vHHy{G ʛqP 0# Ǚ1e¹l2ĥPrep4y`zF B=X:p1,= {M14$g].i]aHS(-uvnj34tT%0ᣖc[Mk8͐.J h)]*;6,`.637ryZ,Ut()[Ҷ6WÅUpfk:ȯC\b9T ;D. -B]9b2pzHQۚPPkۖFKȢ>s;a/u+喲{1'v(4a#]m}{l{}n+U_ǥA|:hG"_\yXɿ, W\ႎLG -~!ni dݕ|_wGDէt׋.dS_amoh[@6|exaGy YP4@))_G1KƁg?韯A?K}=Ϗߏkk~A?kp~ՠ?_N tL'~ ~L'jО{_`u g>vׂ7gۅcs -E;;:㤬)ӥR\HOx@@T% 3J&AKNv-G7` 6.A1ÅApBL[*(TǪlO[I׃DiCުG$[CiVI/S}lrJ^twZiuKh RO9/H9kVIT@ű'FĠSql- dyPUUpa_WqgYQpBWnm*NNDɩ6'U}NɩT|S?yRqr(TMEt*NNՓT89w*NNwS8Qq"s_AnϝE_EVx<+bs_<bg<4A\>|ac-oӡ s/ -AEH·gzclyxkZϱI?pxM?PGv\,WͿx0 pqݭ;X}~ź&ܡ|g <q[{`+B/t#F7B>=|NR7G7F"?$p/ ?oϝ^"~¡8N+ %>=g~da ,gӊ9;45ḹe?GMyk8~N%/v.sw{_ҽ r{ҪEXQN40?c=0{'d~r.[c`e|^\͇V@4vϿsПq3lI8<0 p9S/ ~D)sIY~ e병U>vNs|l27)_QTq#̱3 -4^ &櫲, ڑУP`9#׮π?t}/ ?ɵkx4Xk?~x7Ti߾R]18u;r뀗ۯz)rϫwg}iW;^^T{ &?XcHʪW}3+{_\q)R~".Ueas{[2؟]k+k^]x!x_]ٸRiP[ g[wuWw(Gv9ÑݍlҜ]ɞFdGxQ<(eOv27?-Lv1 -=,(6P56S56M56Ptdc#d_dQKw%WLMm!7elK:k-QdO6uI -&, -ui|׳K-"[}9qc Cص7ۧLirdGvi :٥uWDZ800^űzH|Qc|ZObNDZzE~S|F!x^@? )=_-闂cϊcױqlǐVFOs@MO7~plm2<)O9j?ֳj}WDNLJmz?'3ZGDZd*qlwJ"7OJCckeKNNt\~T/FZcI'1DN/c{[E/ִQVws}!DU;'=c"[l;=X ~[ֶ*: -pZtC©RS+g"ʨ )Kuf9)` AJ鷋SҲ'#rl邹l!Znoٜ.Ŷ<:+ӣoKuu:I#@J7I3XsܩЏ?ɤ'<Εy.lV>\ & :4zhf,q`5'>d𤾔m{/TYTH}DŽn/w}XCg_YTH}DŽn/wjǠg;b-qxR1a}_@F}}bE\Y[ -y~޶amkVok7~Vv"1*nf ǛY[k[#Ldه-h &'c<Êcx"JL}0B fYidvDXY%vY&+;f`fOX~tO23ڿ K&4a8sQ8L-| ͗fE ^H;08"H %FGYpdj >6ؓd#cɑфѻY̛9Ö?ו{3B*Rjo3Jw?4.ֶ0q6˗,Lg&f 3'`؉`<2|5 еa"}.g+s5jr o{ݫID(xvZ;axW=,6\K^a:o)pm'(=v\RfrhF#=JN.MF'"3po`_jH3 OC{[T({5N\h`!ܶ]6\g`(ĢxrGHJ.L;ʵCႀk].vb5Y"܌*ܲ#/W|._5F(@oW dtqܶs;<趲.;q?^+V a?@|39l2alA"ENrlhECJ&]mkfg׺W~,1 -ɞw<^*+W4y%ZWb- 7yjol@EǠC[QȀ#4n!2S0Z?>:оZɒ-c - 2`1?cl"lVڕelZ\228J-9m mqz!mO\1c;|&-(k$ - ޙV,;~w;w>vյji[Q4R/WWDpfmY{.FޛLv֬pg-nӵ7__s޸3^B }oiſisp.ؒi!ՙT.If\4\$\ ED2;:L̦x"5YEL6:$j辟\=uŢHHy9r[_Z9~Bqc|ZgR8szzBy`Ûsm=;l'oqc$L AM ^ &Pa\.c|w]rMvyu -QKa~$ ޝumv4gL,tT2DbX쌤ӱTss,mFr]\"fؕJteN,1tB?%\7&Mnp vgsXƱ)t`ޘw}x -M w9DtDZ$%4n(5 -7b٧ #Mȿ&5;J927^?ngs'АjL=cco禳۟{hD41>%˰Diqzѓ@nQ\ -*P=Ǔrf_t`~`k>zn`|dr兇 DG>ji:ZwHA``j V5Jp됷70iVo>hIz#7YفnΠl~UO<ea{k~ FY6?GvGn?d2$]!9^9 -O|T02Z*ֻBTBi}q{@d=X)zMn -9JTB!ܝTzCdis!P[l^Ҷݧm#ĨMoV{||~a?O_d+a^}Tyվd*u6;2Lwk|.2=bXX>+о*B!SZɰI2v -j0~:Tu,,|.gl\jd B3Rha `%[ ebPoQh˞yX4YЇ." Zuiu*>sP?{}V9VFiwe 9eȯLy|'MGecO~)cv?6<X?5lG#=5XwRDy[;XDRG?ۻ,';^gD_Bڱ~~Nh/ұ~@K{ml$~{Nc݋|8VC~oc{Mnj#)j Fڄ|t6/7ѹ?RT^?Ve 9^B~cJ -,tPkZd])ʌcuWXBOsłXD5u^54rݱB׏佇]bߣT,czz/nڍa-71"&)4q\j7E#-/LyO{!"\7P=4Ph}(}~DCBONzIƧ/i¼ط}(H^>اBڴcHS6qf/I=mw{ۙus*şm&ln۱kGq/ |(wdVK'OʥߞS 5պU|#œͧߩf+OSN!b* W}09Γ.W)}pDi_NO_N6!=of9?>~{.U[o -p1zNqX7Gĸ?8Jd"ɤ;ّͬ0;|BH+$2H+OG:sX*&slg*ґwrh&#Q9ptb Q1MrW"G|"Q/O4G~_!S`b(.I|kA9),JO7hHÒjem*k[X * SˬɲkXT[;CG`HR~IՆ_VW#nBx7R0>pT-3B;xtYOJUܫ~;a1 S n R++c*V6UgR -"ߪgP50wtWc~wl"wfA5Cx_}30jtuRgo)5v44UÍAFE[ -J(zs M7!E繟$_UM긱-җ1 -b3-Ԁ.kR p}J92tU|z7GJeӘ<';nlH)DvoB*!+i ègc9RBH)&G~б^A^C%(`9UR3i\KsDkP>xwDhWPN1J\o#D^Gys zE5WQڱ9[ȫ!!GZNjmb[.C"^b[._X%ڜXЩsc__B{gҰk'ʩʩʩʩ|s.Ѹ#=C8jBjq$r>tlnֳq׎{7߽k37%:M16Ob|89E g)Dcx3{}`cg,9)^~,γMO?S (T>]i $4L|dƪ`]$O&Kts.DSήX*TLvbx#$T9Jh,4+2_~  eO1M2)f#{?fs҇x!gы_1At@cC$؝4̪[h>圮1<#Ob>#̀6huQCuK5usoQxZJo>*+@u*lˇU0te$]0,Ũ :{IEUxkY dJ 넡븑~5jP 4.#jwN}6}jНgj}Ey.ĝk:kwҜEY)vlGjp*\;2m_(旡%9y:'UhW>P>UC`.cP*a Y-,ba0lh`!́ϲy|\͇&V&[Qs1GGrH%z ?Vjd?Ћb>}ruo2a sGO?0G0G?\}cV!ag'9ëbf9ZWQ;пxCx.9h[-o.wmon{-O]sԏBM?7sDrQMo^w?R.(>#Q?I~7sDrQ?E樟_ s7QsDQ=9"\`H.0G$#sD/0G sDm -sD:sD s3t~;{G'{II/FD$v}Ptoy3_b09r Li1CuK/'}~TRx։I6:8?EkaU.uki|qcІvLfSf3LvtGg.HRt&²D"ҕh"elt<)hWy<m'69ʃ4ʃAr:i濿k?Mٌ/La`bo%Z)Śk?Dk?_ p+кh|}>0ͳ=CaZGЬAt*NZ}\^ZTfݪ\vONO -叭a~@nۣ'φa?RJ{NQXj8\َVc M߱fZձ tqp{kA<,}BgEzPXl|Asq^Gsouo?W6ںpW,CͻMR* ʮր*7V@נ/dsί5w-i9͹ xcS쳷 -Pܾv)C`ț>>x>>~ǟ" -^8_Q<磪UJ޼Ę,Ph]ta8d| ˫ǘ] pTU>I%(E|Dc?BtF@|t:7INw݉AȨ.-qg6hAє;ScS3LƱZz!KNV9aSavxX Իnyxv7yxz[B{kfG?I -B}Pp^^0.W q|OɎFoo{#!,x{ׂ`J:0a46&nbSF=+eGU7~c/;Pxb;Qg0՟ꚕ)ݴ 38/?Xd<9itGD)`Ogolc^Z"&gYK,x6/gl'EFr밙㻘9ekl!"_Yb.Ff_|9>5E]cVmQ-(O,6 9[[Bb^n!lz~EH B 9,g~?h;93;~"ZPeζ(,u>tZ}_#̼ܮiQ> ,UcТ|~a!nzxE_h"_["S,c 93-4a簾Y8x~`2ܮj0{ 簑*S,5_}t^?;aq ^c"="=~$GshJko簃o͢ VO]Q%wuEzdrBj~K(w.S1$Ko[R _TjN;蕻M(ď;K8v KtF6y|ڀW a6My[, 71cջ" -6"~m5 ]Zp[U<FΊ3e=$j2>5]Vg q!%'O1N{:KXQ=0^b("'B,D-DbkSGCTŰHA>@R48 ŧt3‰n  BՊwwah핢r,رF #a!p{CcHL Bjj1Y*xLGZeEf`xo:R:Yej9܈W+1"VԆ |+!c$)q(_6"Y>,t8>& SSg騖yjIuDiuPAk $D)TN^:Kh~H;[)*:a(SWp8wcSE<ЏAEQ7a% ?yqxUd#|qj[.AQӎ~;nxХR.B<*@X3v va)O:y WtyD AVk`-$kZTѤpltUXM@R ê(`$ΛQ)FOukH'"Nv< 2>?Kİ"L:AdޝuC18<;CKt%^_=5AhojB D#mg( -܂rHaove}% 8n26L4 -6y|@[S{QC`QXeR5dZК DamtLӧ -x,ah.@5 -q^ RgYj'H_mkm # fX)-j|Dy8"0ϡ'*"%8MnI -Emzj n9):^|V`LzOVFkq}E(o Sե*Lh_= .Wnmw&EZPSlO'6*= -d0J= a|ďeMknKn^ 5x>S0;P1a@袉8d2yep^JG]ù[gnUU&ampW_ …@!L|XWpuj: -7_H^Y#9K\%$rK끣QAI嵒%>Oe3ˁY6&tr \قʥp곍|USu'vz7x{ [l3Qo1[+|'4G; xX4ş.^#!^6τ /3 VA x.oGQfQ>|^֋5\yNpKO-]F| 6?,ů#Èkӈ$rCo#x"x(,(I#hrm!8]?JV x3 ] >DMpG^F=_NQ W~^ ?hnGHų ;H"8G3Dpd7OBs7Bpz%d$a&qt(O-+"/& N , >5|=/&x3/!x/%xE%|.|2?I OpCZs;^LA/ ._I!-B '{N(75w%?DN&&]8 \@p' NmܙN/&8'/'x+&x%kF[O%o&u RG &x/o! -o%8ů' {74Oj x  ^K]C#n$7|?H?Dps Dp&M7 4W@5/$8]L%xw|=㻛7GOs !x3o#x\Zd{]Կ$E? 'P?@~ -GϢR /~B 3ԯ_z ߌ{e}ۊ?zcv~7gg>}Sl;cL{nƜ/_swf 0e.s}0{,Cs?Ao){m |re.}s@㿀׽8qCRBu*H5=!S[2_9W ll2gRyؗ׿Tn^e癗xmyJվ\dπ}.^L^H/ʝSXyL{Ǫ0r6n_1 ?vA9jq?po?CCxoG8 -9p=B܁t}~mfߧ =(_e5"O^GlS|ˉQԝ3t//MU sٳHy_8gq<3S<})3*|/s>FS}Fyt[7OS(oh2 y4y+ 4^f́61lzyq9n\^^(lAO/O2eʛ(VwQ^Q+7OS5g)?GyeFyY f)/˻(([y^UދFyyl^~zy|^vt~RS~Td~ K|*~ץ%s*?_kԟSHo/+r1ݞϒzL @#DQSC] d?Me!ǩzZ'OP/4:|L8_@}]gXm7)~3Sΰ_q2k9';A~˓]/0J~MH2_2ѩ#R.HʴJQ+H'Ren*?_uPVTptyRf[5,wyrȶf ~$ڲd~o X%מT~-9730ߋZ>n!ϵƐ_q2'˳.]gnSmo f"i.ґH"i1ېN@i>HCH#tґHW!t H!cGzR!}-H#iHGZtҙH@Z-HEiH?Bmm4\帾טb^ᶯHqyuM>9y>SyVN>EvR负_Rd \yr<`g<-w#Kcn;s#Tvv 6 E{qugؠ 6 ?bZo*#Σ9i݁X-泧CK[X]{;! ~n1uֻ7PVOmʅ=Iݟ`V{9h#{Go"d gXo#OL >CoCf{[gX -S>۴iou r@7@^Ɠ.=,l]Ybƺ|ڇo{ȿwFgG}>Vj{ -CJ5wE9Ah僬I_'z~afrȼa urȌ9;Y "㠝?+" m0-, ~>>@^KI [A?o 2=ٻy}O'Es^DSZ%u^`cg\1}9ИcBKawCu_>!ˋ?lK 98 !.6Ҷ\ITWf -,MkX] Z07rw7b5:ckswy@sj\+|c,u+q-uygE7y?]y?CQ@Ɠ}@5SՅo@݄L'ߑqc|[ -))| N|;z|)|GiQ^:VvX|Q3:xo'ͫiNd!eLQvΊ>4/Ls_I/'E <6b_4mEc{ȧ",g/ -E:vX}X>ɱX cDS}akYȺeF}yXS1xHߝH>ҿѮ뷑fl \Q.^܎2s q-iDfa?Go9T+"2 ~'2c!4W{@{dk>呞n; yw[ao{ϓ. -4?7fY[1}(d|"ϓ{gl"N(+1M1;:9ck.Xm~{Y㗧YWnHhO:nվw%%g"o܏$5>;N'㋕܋lH@*?xkiS!d~/88fGuv'_(N7Da {&Xob8V%)nyԲݖj8\YɽrW;ӭ҆l\.y{b@kIKn*r)7ːz;|ב~o7?w??68ȋ ^KC#mF}dX䙟9x]pNfw8+/9sv>~%~ WyW ȾH-Hz"#~#r/"Q ^m)\upy". >'PNg n67W66[_tPX,DŽhHXkýfAe+QbCeklJbCFyXذh`;jV1RD/uGe";,fЭ]˲B~9?x12}{d\a%xA+|-5 -yne3>>*} f:h6mX6bxپVp[f#cD)g=41&𙬇ۺ^#jEWVA`54 2&F;pK:oM ZFQNA池a ^Zf*M!vC;Tβ%ЕFM^w\S>C.)0 5ς1Gs_g3L';7>qJYS9j5?Et?K^Q'q E!\cND"ʄ|㼞Bpgu㏡'4I_!yvg2[ eYSvX la%t:`s%MfȘ"خ&9=ivhce=o{ո/G^S4e#CrS 4V|E- _q?qH~ƃC -_ |Ɨ$#whOVY—>Yhz -M%حk(X-\56{]iħl@\wM^>ԋx§2į~q\C - -Wަpq}ό -<7O_!񋀟'pxE{0t-Ŀ&ƃ?q{P}$te~u'{4$ޢNoh|)K?]>Hxq_ۀC26dzI{VeFj`ro,h)?ȧ?oܗ!.zI|= e qXoO -X|O< -_ n#-]Wߡ.p X]ˁдAM{O\Vγy}em#yI{7r>dg⢿Ŀ od%ޢo O>) u/6rJz_+FN_>Í{ϐ4{> -x$񋀟a'S}[^7SÀzhx+6~H$}{P4ʙ-4jxH'{kOMxPH 57WO7CTU[%27r-G{ϑu/6rg¯#7n&.Γ4|PG5|{GH"g0qGq! xq!/ - C7H %]+dIJw_⾋$K5H N#ׁ?is_x\?[Cz_?Wq^;">_~OUqFRxCz?~(|i\?凁/|T z#6"Sq}+u^nw\ ;F~^OEsO\ǿ_k -/>I<ہO0".T{3qF~a|C9U _5+|"u\uF~- -4gT\|l7*.r~.^'UG4!?h?C<,4 -{U|CKT}s4J\x(4xXߣqWҫx}7)^j'V0x7f#?q7 *> _+#x79 ƻj1r)-#'q/M5_a -o}#xwSπ/1r+'=ȟq𦚕k[s}w7 |_+A#gf!ی^&#?M5Uo0S7~z)<OuS f'ަcqꦚ)/52NTs5 9?qSooQ :Nx6_ܟԳ \ǩgw%6oQ G4@ܧԾ?x+ӁK  -wH㘛CC*N= Tc^,ϑ>3*|C! ,d6}qE;/Ē=KWj~-:<.yJ?ɳ҇;<Eq>-e|oBYϨϫM q 48-Z?a]q/'`?ݰ&Gve5edB>CȲtڼY.ģ@='c?ϗt?J`-G[ֿ$Uv9ȝn,qjRmcYK]ɝ2 6wn^]}]+Yr#6Tc~G\Ͱ] 7m}=^B{ݹ;ЇKx yO3-|Jwp` -Ժׯϐ:l"eb}}U|&F{4`PZ%nܧ;B@fvxzvso{nq 0Yy:kb=SN'n9kc;{M:a73>uwoJ}{8hw;'^]뫞?՗{y7:{^J}=]i]NUzG]Rߎ>ᬯڎE?.$PK|^#NP/5)v K4vbn[w7KKo?2X7K'oM>{QOt;E4DSh-O/:\z߂koS wb|^*'u~͏Ś3q}|psg@;_s̗pbMn!>$HGK|hH^ 9m?M%񼨥Nہ3⹶C(1kv~/Rݵ!a5J}dFi }˻ivG83;,Ę\irP7q]., CnkB_Wd]/Wi*O#gO?m c>VB,^CSv5X9|Q_K|[1ʪ p%4]okc-1cÌcǎ?-mj]?SY~Vt;eăB=Xw84πW$|tgsG/1"FγɤqJGwoZr,1-:2<0|QE{l"7YקS;XBZ#hmUA7ےNH~҅=q!1q rؖ&60-Șb˜u#o?+1GA_m{BРC^/Sy3Jrm*顃[,cen 7vE8F֕AДw@T (zNbইvBM}7|=GªM\bP;ċW|_##/ [:}{( >:ͽ胻Ժ+ZߋY <7ūSD%8.$WwBYLԅ-&V.[+Ċ, eZ/>k/2Ay//xxo|-_B4rCGQǸ=r|61 Ĥ͈go_p u\7H-' Gyo1 ?R^v?ң;Hy9k\v&5cKSR'a|>% xd{|v@M@,u^^y*S՗DxMAH(dž -~gsl߰s_rO1"3J_)zt=6zIɔԅy.||@nT_V<֠!o4sG [zdl c@ƚþ^vky'џ|cc/`m0b}V=lD1"e狀&x.p@]S1gP|e2uE -;.O$H5.Dl pύ?o_nlM(G]n\+c}YVOHĞ!#Td% aqb)ëKEqV3֒wdEȡِO[ΰBh7 ~N\i+3+C9< -c<s2 wrdg<'1>!ώY̶3feH95gVƽVW;fE͸_<M ;?'}"DsCD;Q ef yT|0z?ÜiFA:Uxe6AX{W:u}4LQ/Gp_`E!;2YpƸQ~Co\?mKr~rs}6l -u{DׇHݏ> -\ܕ?1G{l2ǩVW\_ؘ~t$S؇w2͊w?*6i u67_ppƤUsK ?镞ah96ǶDl$Ogp> )m>O8)0cCU,!fM}.~'4Um&me5_;e"܄/HF~qU]O׺B$ۓqZWcHwM/)g9V: :9^}!w)/`e=_ċwhUso۹#兾mۅgv%}Chgc^"z̮-\)9ފ}qm۷u;Za:0K~ͨCș} $Qe m@S?1L|0.;njs-5 UkkY'ah:|L˾c|jy,u`}J 6m&.y|D %Ge(haL=+Lb3_@gqqpȴk"G֋م=D~Oh,c*dfξ/`CЧ1~wG5}(=A?;]V~8/:1k#+KKzS(Q5%hfy9v\k~ Gr |?P󱶞bTKt+Tz "vobps\};f_>~-N-֪Bm9;~VƔձ/W-ճY[AQJOqm}c%%TDyW8eyvypUV)V%ւgO1vo_섾{&B w)dSw^G" 1̴LC3rB>1r]V;QҒuJTa:~\ tyJ}>ey2_Sl!fiF?I8u0[ r:u|^ry_ -9֍Uc[Ŷ{E$zoq][?lW X[a3{gE<EZaW\w8\Dz;1]㇏kEX{lbIJ'Ppb\x~̕-wYS8`tJRVijRjm528V6tjߐgh^L%ڎ>^Q[3n*VoWz}-cʗ_ l];y Mf2O؋GYwZ6jF՗a;VF X$7xR}]<""s@[;šr@kp-D".qAH>¾=]cЉ=9+j,Zx|*;QDOxh}wszg`LxuXɵz2q1I]A6a^!6 PfS)Ҏ^Ϭޜ,ofb vW3Gg&ۅQ .HS^/֯s͙4ihޣcڃgUBEƯd:#q}BZ8,[ba{E)y;rĭxx~b~t#n|//nM Ȗҭs=U''d1kDV'~5-7mY˳-!!k7ÆQ۪iuv=[_4~(y噵-o#n+ln\Kt1&=ے!_"rsޑ&.\s' ^`<+!.ݲ?f o\!>އGzhV'bϳ87~ -|w~ IGhq6gSmQ-;NF-ߏr%WEx=="?_'ƾt8M__Mfi~g5yRsm4lX푟[4KM~~ \.+nY}!ƶO ቆF};&_}<ߵz3׻k wo2}F!C¨Z>|\DgهٗsN ާ迭=jDzϐ~gW?cܧ5Y>}Q83h~z8a1umqmS!G_Gt'i_Կ.ٿ.x*m՚3?G^8 icvGmSeS!Ö?wLձI:e|Θm\}/3z^˸"sVe}zj4 tGMl.kÞ=\̖zX0QC;9lO~:+_Z?6C~K4vk/ʥ-j[^xni(Vk̷(稜{97? eP}';.(H+.p,=XXP:=0k/hKAv銎?7oQgrv9#vԲ%׍}={'E7\g/D^A{1)--7~h)C[֢3;"a-ܟ0b\9K'cM|ki.պuA!%uQ`0|'}\ du곡gV2Qo+i +|6gK}eG/@iۗ+:v\+Q?;ǩmM_Վ҆X﷔k4CO -֑zd\&.(Ӷ̺ӾhoCakqrO|;4كdNw--qT8V#xa)7UdzYy[op11Eq9rY4?Ÿswv[˱f:R3-ǙMwN|YgqؼY*?}Ծ裊&FOسcq -JgE2\Vۏt·N)$V7OW  #/NaE Qy#)ru>lbT3&{ -]֖:oq@n3 |ΣFsir\$E86 }܊8{pτMj&zO=?e~2cm$a0ssvv(VBc}CΩ |un@o9팍jPqJ 8?!SV"Nh[S߈SVҮH}nc>9]dwB?u)bAoD_yz}'[utP{BS6!]8f֕7S5.x\_8ݸADž{do.p)95OJ-g*% 6n>5X&?f{#>Ž,0!9=;P~1XhשZ>S}foo!糮.+ևfc9C[\mqʹa,NCð_K"lkqY=QFGڠ2kc,g~&A]obT d?(ʖ#9Nʲ {O19v ĹM;Uٶ<q(tC'BVg(1T+Ԍ BՕS]ɯ;^#ovhdgz(OyjOP>4Vy>!{w|(R# GC*E1r|y看y:X]$NCxgg'")M.GL39QWoR]5Ч:lCǛhᳰԛ戮5ef|gw*rǛj/#.ExxiӥwNiׁ\k b_]ӳ ڮ=<4XwK<X_j)ƑȞ%ʽ4>^%g|ė9dnr7'>ә1|r>s4 Pgb筢h ׹ϸǗojPFN~/ަ!-coA?5q~)69}SQ5GǸB{eF_x>j+39k s?$"M;LeB<9xˏ_O[Mα -^-** z.~/6[/1y4Otd#ӿw}K%eO'-_oUNo%[/nS[QNo{jk만^8xkcju֗hw8lx1%ޒt⭏x4nr?Yr#9^y%;:X~pYLwbk=n0Fjfl b<}~`l(ȋ6cyHzj^f}|Rdؿw?ְ.{X3x;5賤]bwjԑ;qn'{ZajP< vPa9i>(cc"㎴ ;6D؃_{Z<E^Gw?c48z[veO! 34cMϩHs<;s/@!c!C\2A=>E'9&sE-ԥ.a~rMٟ Eg@?)=Ƙ=#Rg\ }bC_z" ="#[),=+RZ"ҏv=}~\C΍BwgIvvO>-M s8G -`Ԃvw -o~m] _INOa7TsZ{+I?P=8d{ЃB2NtNޮSLԵlt%Gs?øؘ1}ȭh_-| %_MKFv[sͼ|#O܇bj^$І-}(伿 -:sM` M@M\Ǻm;dqg ݚ\|??>ɯ&4a~P;'?x1v1gl YH[|oֿwx~ -w ܪH}6YCZCXF1yZ2*tYW;{24k'opoc6_zʭmwA|N -a{D -st¶vyGJ'|!y?A`ŶnpY7-׊mn5W42"|.;O4mYg48>(cWwGgyF;|}3m.,>\W^#& \;\}X;×,Fl԰^lD \1Ayݹ?r<ӹ,H%}n粳xy=En+přACS|vb3;8Z:tVR]A:sq/ -\~‚Odi,V'WUj+PFõr/uឮŲSq5AɎ{TWn LE 62yc -PCaw/80+x4-jmmG܇s&i,WYߟcSqmt}tvӃ}53Z|2hV羢t'_@j#٧9Nxco:WõB0]B~NXFHk{!O?bTW9~$xrT}Ɲ|Oe1/1 \OˆL3c; WO4^9&)ج9SVHSwz{6K;n6ګ|Ys/7 ({Dd;u]-'W q3Wx?ޗ0__D.#\H1t(%z%E[ZK6 :I&}>k%O=t{t&O=V/G)(=;=wgPĝ9 ̽7n}W՝so<eW<1[賂xuy>yNkϙw#<{yM.uFy6sK}y7O}y8y8ƼTG|(C!j6y[?ױ\kys$eH?IQr_N^.@[aW _Wqncnfs.sMr'+ؚ1yhSi)W K>[$oQآ]=v0Έ-"w"G;g_l}eؖyi3b87Β}1;տErEϴ}1K_̎nԴe+G_< -VQ_uD8c(;} &H]3͎^Rb>{j/C=S/TKS}@%_ﶂn=%Ee_1C>Ѓq-NX[Ϥ@+~X;W$>t$|7qdȬ 93sR?E+@+D+F])߹$Emb= $w4Raaٍ?P*>=gi>ߪ7cgw0&˵Q~s 菩ɛV)ϳMuu3nWr'w$=/>߱yw+;A[|(㈵01^<?5Cק4g:s41BC=qqbt?,1&!CWrΠwg)#wMt/#d))v+F-acR$%m9ƅis^Tq$]DxĚٱTVg[kI X_G;YgWףI#J<׼怴' yĿcqU.>qk`aB:pHϸz~#ՏZ㯝qφ5S|=&x]݉[εc>_x͘e^ڇsDR u[mzcqÅ]n?\!5^Nm~vVι~v Ŕ6 #p߼)O#YgmIXcyړ wwȵ)xCs<^9ǵ>zQ >dO֮!s׺{HGF_Q_I?7Q'.Hkldu^X'P$Bg|빢׎v*D 3kDP3| n®m@ZaOm滭M݆v,gd27W_sw,[ۚelW'֞V;V4پ[>u_< C:Dm}N=o30;ǹ~6>꜐#5y Dl[TB_S4nyyd,oĤO 5wrΡ^u~ =.{.?nLS_,x<:Y(ch9~0g#s+Lޟ;@g}t]twkŒ8hUuN)^ٴu7L9y<+$o=ooq31ήhϷUwwB26Xg/h&a{}O~:LO1tTMw]O|*2}Nߟ\z1ߟQ߾ZI_/-yjM-ٻٻ -0%-Mc;#\ois|wW(dʗ:^}:{A3;B٢d8`惋Cwoz=]br]=6p؊f\KK" _>{ehyNcu', 9tws S7D E)߭Z>9Зq sȊhbL?vSɧb;Q>AkVl4dK:z O@?z릯9~4[bݔrqI ;:=<"Uu5o!=J< n%'Ωi[,mX pa(ij1_?iEv]i߆W Q}8;5 &Gbn~/wcuag&=5>5w2oCZ@mx10 -D"W+h@/ܚѿC3-K|SxƇ8̬J#AM.Ⴔ9Z^BXW@B~GkPׯżnC7bwާdos@qown+13,\9 yW~'(cZr-y5-[˹'kCJ=Tlr}U}'-y5h^^_J^nhڐ(〿o+}Z>+4-fKɔ1RB $Xm8׃d0[}`|? gBؠyv.Ns@}< -&>}O-=Q~WgY[@;;Nƚy-xEؿs?9|ٝM{Šr]mwk{ }0_{:߁^]:L-y-|~zhG}Ʊ9q-e3_ۻe{ĺ[ݽg;;HMs&G -<\/\ `^8cmAȽ6`\` r7R6#86 qsb;P2~Wʹ"-!=x796·`Z^IG/a Ĝ<[۳?z/uZS@[}-;x.+tB<,~q!|kosp 7eTcNv53oVz֍[o򛸣vG{7h[8.ԳjDKͬD.f)OSfw0:kӊ}WΏ\w :8.6w5K'1'M]sivRFǺNw><2?˵;[huVxlO"%3wgj~"|Yvډogx`A8j5"^:Y 37_NG}'bwtǡ#'^:!j:a)ls]S}~/u°G?`yamƩMb?lN~ŇzG~]AkoYU k/#kOqiZ ҇u֗;ރf~G^䵣?} U=|뉿T>#ݟBRFM>wh*Eۇ{3і7"Eqוhn7m -C♃&u5kc<,?q*?>H\wv"[qV򢜇JB|<aM7Î CG!x.r.D9?sIT><(oQiVgChˎlώ֠/7vǽ!=|=8S}+b #aVWd,{L=jbH';+n?98|ƘSY]܇ pOf?lv"}w#OuE~(ݑGv0AC!Gi 1n WsYA_Zq!ׂ%aШ|EcYF'!,Va^bUSX70DK/ -E&L=#eϪ{ghiwGDv;ԏzEN]kæ)[ 6vf>mXҕ-@9a+ AFlןQVkQgmԽ>ZЦa}lgcEOծ|]7}X oC۠?8 c@hBy"V}nrd1BZ{vb`r?3@,Q.v<"𼈼z~dcD{=o ڛuEy6{6,ޭh0ؾlZv lg'laģ{ -? )-HoFz[kCڂ6oU ݂1f@0O#tRhۛߚgp/ܰ):<||78*ya7|ў|HG: S\3/GI3Z|4/3z;}+7=AX_o׫Cj=(cWt. >PNNzG glkUA[q` }g8(q$/Ϙ~^]Xb7,]HÈGbM#il1g7nm+c8b`KO xwzl37ߝ: ֖W̝>KG^zɼz}];[^SMu5ު`̊oݬ\;+F|EB]qEZUU]^Z9N߯ V]W1wfݬu}ܺ꺲bJI%UsgN VӋk|3+.XXQ~QPeyqUEpURϩS]yus* UV'jpzI9ų*+f\#5JH\R]3fb -+Hft\Oy]=L Ω>[Q:yNi奐^b~ܺ0LDʲUPREMiY}et}z 貢tN*bT.r's Qt3cl SOn_e55v5YqG|aE JeC-}"a)Mp4Z5<:Pmtl"~Τt.3M\8@gz8t'!jOo G閺U5M l8J' e\jsѦe*0BynſJյcƿ)TWy)sʠ6zۼ嘪ŜSY;1q{Gn3rau'Q哄wWT -A@ٹlnBk}j -a!rj&nfVM>Xx;{"IJf1AFhQb24mEU ,tf?*Eɛ"*=~2#QB~Ǹpt3i/劲% -v *]V˺/yjE4 G҈Zj$E$%T~ü*‘Ӥq]EIvvyzk+DZϺԪDEMRCvbB,j3(Y'bld\ͫ[d'諪kڂ !y%.S=ebKF_~9HRKRu3~b ^)Y69S6Yj=NtnRyu+AFKU|b$.ǐ'ѱ`lϖ疛إ*&:!r5C)ygb~'~i\}VQ#fJͨJL'i>< HnڷrKf˫$R;ZWy%뎟ɤ]uKBWUYTUu'MG'e0x*#)C]Mpn Q1㨚y\r@Wz3\~"ziL?X3L-/yi}Iui ]W7j*ʫkR2;ʺd&r[VRM.'qW3pkۅ,bz}|80t5)ykKR 'yՄL-qHYpS#U"r߹K|{m"] dOi#X{c|B57wC&Y_Q/SW'fFɩT[")X눸}Ɲqjd*T-rArxQ\jwIQIr_w#L3i/Ne_4#ʹz ̾;:#Q*?s[|(5_˙꬜0>)jda`Q -U!7 $1*]^_SCwQÞ3UU?-m&q|J1}j4歒gOdd)*(CbS -$E>RVYbա_?r/un-ntWt++=7"Ŧ#]AHFX }Hd~#DX,i @C0*Wb!|"tܟ]>H"!X >CaA .Czi'zW"}X.#bmH);7%҅H@:[VW;oHN,]}P\uサ, IBɶqm(dd(" K6*jزcC[lo|yQStJ:2S2,|H3?蔶ԯs{bwd27{9{ι{w/;8Fe= Vˀ]}!a8`Yè XX8 X8 l vb\5F0]s v9 -t{.UX^1W0dxz> `0a3Q@e#BC.u^nM x1èut5v1JCM3m=_U Q~ ;5B/C;FnG'}+a|/0tls8  -Xטg??fCxVht)ڟ\(Q|VU|OCC3quGtMnݜ&K2цi4䣋]Ž|,'p!ܓuqon:p%yIkYc"uܫ[pNc~qW)R0|sA501eܝۍ[ kz @k%Aet)/57}Syk8'ypIXbEj -Rgf\FX a@SSoxDG՘r&!]/}MY-o"5C'} AIޣ{Ux2V4FiGmQ+!eRnEQpa{W9yҒs&`m`ii }\}x.HDxr>0' `syw P.C,+U{"=Ɋ];oo78{d SjՑ}jT\$b &y>Lϣ[eΧ|jdQUHm<Ӑ9d֣*BWHC('lqeҙ%Q E?◧>#FE8AtBS^ G,x>ݐjRUyQH=JN)|f.0;Y? ç =-qlZHw8|._|9F?<:bde.P*ǝ lj[K}Z/Z--zHɃ>i><5_X\H![5~C**pJJ_)^%٣$oB+-歭dm{]R@[wOoi]nh@{;W܋Vw__X\M:{|AUyw:Y œ7;x^ha9T3+>M QcyO7>ag/$b -&Ml/ mE(jO#(^廒y.Prc1_'5g# rIy{~zk?3f^Ӿm9yI_S8jy̦'Մv<<'eW[(Ҩqwa=}˗">2Q?7BFU"9!dz x c_L6Dօ1~La N-hd:HGsuo{))wT]16%aWt[9D3o U@vs#wϛOާ$rcX8[bP8[_=bI7B6ݝwTmjfc̹6 ۩˃S9ӯ>wy: "y4ޔ;~bRR ->OΠCvr@&&d-yg}E}[f Wߴ Q>y0HV%(%y2jCMh1GKD/La7 I"E#}2kAT%917g3>b}1(Z-o|=_fQXnݔI|Fg!%6,ҕj j7Q<,'k–qz^O?^mT$@,dXb6Qۗlx:H:\~:P.dKE:<թ>%zVuawgҾn.-,fgɪC 陹 ;(:l1btg\Jv'O#KdhgbMmy1/@6ː_3 :o᯹";>RS'=ENi*rv|N6ZC[PkVjv% -9dN fkXe6w+S%_^ ܩD^{%x96* dBF0%;KiQۨdڜ6+Mutܕ(cL!Bont9̉^-VaIOҞ IӽǦ>zŅFдHp ܈7!wNܷxw :ci:/_=^G5[\svc hmBS ~<L:P"6? -erYA#or!t:&x*5sQAm<S8*tsYDz9>/xҪulԋ%)`P>">x&[{S? -I܎ ܦgt|u8c^v0n`O/ 9˨m*b,c/';,)kVvw&vUZL#4CFjZ3:#CRGrN*r曲 -l|R5v%wGsI:BZmX@o7-+"ѝ$'P&BѝD':_tD'ObXͦ9qd:^b;;}r_' !acUK׋>v,-ݴѫ#R^9y;K}6o93>/>r,uy3l[,Mwϛ9?V,J{J9"RyCe8|3<^t?g尶 @&5<ٮIZ(EXvOt't=Q؇\& (t -Kq'j6-?ۆ"w֞E3ɛzX)@sNVQ#GG;4"̬qM7hzR8?Y{=K`~9t<{b$!E }}IC}EǏ=#;@$ygf~}Ø$۽-dWӦQ*}d83 kCQM؋7W 2Wt2YSw'JumuE]^6]OJ(H)XYܭD(W> -b׋W0ߤO_F;ܙI;w~TG3  ]V5yKmUdc!_wٲB6>hg) ',ujO!;x5bco6.zry*vdM7}Ep:UUbJ*VvAECꘒI71m(<)S^,CJ"ko)WQwzu}1GXQ/+m)4 -06UMYƺșpI_L7p)GaClF0a [l'6To*tca 0-S<,myBaV !q6 + -ﶳ:\9le_RW)++ve7027qQGv u~H’raGYɫM ̤/kGv#؄䖿(2BH/3.eXZb4,&|X8P<DoK vq aSvT1_/ֺKxDˏQd :OTkl7 9ز9Aռ^프?f”޺60Vg&& .aNYüߖ|շe;hK^}XpvuMxIhmiuKqKٶ̶$,5ͥsٮ3l{Lx 8Egt-M3O"R/$iFW 5.HzfWk ?We{~̶՟ICDzf{lfZ/mu~ -aaW_+B}x{w._9rp\#>ڃ&$m8Aϗ=|@ocj㪮֒c CcpvW h` iZYkKJ8nq8L; Aq3@COLd -e;.f`syWLhssy{w߻*+Kv%STEcpنhx}Ƶ`᫝{DJ*{/ޝbe_y1\]7Hd4 \;OL&͂C< -(yqM/D+kO&ߐj"&zu6[WH\WjR)>#5>(DTy5t@t9Ty5wbjTXgETy5tTN>&ƶtcW?~qU^*U?u3Q~R5c]LD/FN~CZ^wDFv:XYtW2C^Z^T9Jt-Ud9 )ʬr*ŵTt;QN' 2YwJ*0RtO21UK_Y^J!"j~&˿DU.YK?)q%:L{U^sWF*;_͗wEYU1kTYD?#}&{("[9&^"^iW/K 6)ݕUUnS\./*'Vψ{H`N2ɥ_CUIb⟖?U>]GRCGUeUYIw%Of?IHg#l֖5-FQX -(bp$\rXwV(K T{ -.$s-F??ՅN:unʕmܨeSorai[ Ң¯Ct/|g'눓d }w/@彩roeCΔl-2m23>M%Vhax A.[*(%>sܺB_CثT3UysZ|R5OOe6/,& U)擭ҟ]\jd\Te3!WeODhqD:d ̫dl`ϒuvuc5홿)?>ȫhX{$~ᖜo̝g2q6(?ZX*yrUqv|eǿWgA_NLq^vlw{m\:>#1{9X&klsM>U6e'wBTA1 =_oh^֬Ek;= WfA~ | ]~MtYO$4NIp -m2B] D b<Յ  HV~k28>ef_@9x—OasF0tGo$BL;u-pw8ମO [ÝEȊ-{CQj3 _V*-AΞl5FlnHUqg՞ aGA/]wʦQj⁹+CVg8w#6>:JNWlH-qa`_J+V! ֢hA/;#h`l#x8υ: p8؝x7pF*CC %~ wuHS3=vÝznxiwdCti1QM|(UpGK|uh'Na]FֱcW # ;y_`LXSR4`wo8ܴHxb*.q>&f0aT.,'"=afMOq 8UBmOԮ #ׂ-.>9›,gP`7Íue;&S @)BLF-$kf&?mƕ O|5*X Ux2V׭2w UK5 -aJsT`2?q\'SzGoh`HT^|$Z4/RPnMI"t2 xiI ~we29x%~ ﲽ!~jS.[ݟ(]"="=n |P'u~Q3J=_i, H:.kk4|T^ /HtySRoi 4|tBkAe5| "=M{~HgI,3ީ:4/ %& K{ϗo[q&n dPÇwY ?i~Kц,s]8x}]b({Q}%^]:گj:,$1}}% !x3VkP.<. ꂲLa5e# .ErU?L%%x' .f.ga<ގo -פ{%T>WsCWkQ> >; ^JG}Og ~5G~ | .V\F Nӓ^F3@pvWP "x =EpiIpu/ e>EpO^,%M%u_GEo#"b %x?|IMpvcL}o$0, >B~+~~-%x' ')o$Hp&G[ OKk"8>ӤI>7Ep:^{ M~J\Di#W Ep\Kr㭳[~_v?y)75Μ2筇Do(Aϩ蝠%FЗ= -z;o%zօwߍWf{?wߏ'C菠?/菣'ϡ询:'o.'Q_O[OߡFD''9&>腠/#z1DD %9G>fyנ{?ѫ??/CuO7GDމ=@DCD nO~/'O?@DOG?3C?BD?49Wޘ\6ҳ[i 0eޚd̄ڡMS_̷sfLu\2Tb\?zOxx㢡).e3:.:Cs|#!jܾ}`_23e}UT5Q2hc@~ն\ iݶ؛gb=qfcy uQiC[؉zblN@=cg: s| Aܡ`ܡ~lg1471'xe׻\v\6fl㗋؍.n6{U::@:ƊczN 瞕Xb9=mȹ]bqL7`>.UvaF|VoMb~ XuʷMb6+f'o/ysL<5/[:@/7fU1_C>GF0GT Fa>|VuA$Bu{x|W|Ωn?+:T~?+E:T/y|E:7׼ǯ7E5<~N}tV?\܎oyoL3[y|iftib?+/tif%g:7+XN?e'N7gYVct?+߃:ݧ gb||ob|:<|cVM:`9,|AYdBRe'nڊWʷJ)2G^cȷWM7Yu<~V+u>6gT0wM 0x0x|g?GgQlYC,6Yyj?+[:_yr?+/u:u>oSvoĜg!m|4{)y7uUq&!/r&Tn"VnPlG[Ik?j.jEeCZ5#(-ehuZ)$Ze / -*V6 ksrJ[}~5;33<39 |nncp9@3}N~eg6݅N~C#g6Z'M&'pV\c:\vnfa>E y'hegmI v#ݖU!; }0hS5B6| D_NκQ[ys'֖ṽ5g:,pyʶbC[eoNr/Q~˼l4=A܉5W0wCL swR?#MX{D߯ӺvVtkIy 46w]Gw)~{ jȢ6>Bv<.ZW0xKʳ|] E[\fk_>|{F?,+Pv:aehS _a[x,V.`YraZ&4Ї[ .W -UCSi8Iv6 w/)<7 {6x]$q)Ge}^!x/Q/2k@0[!LW$9.72l$ ]iao6ƥrU1DoWEhN;i@zrbB;a sjP>SM&ncw ^_.⺯3P[~bA!.ʋWD\]A }fQVAQ--?UeC^yǮg\ír^y-^02]o6'|M>"0\ݴ{WyG)`[t› ;/F4:'>az]a?gߣ8y8,vy20`N9)W'ϴ>. 16~HkȗPqE. k91mqhX"mm@Y24YvgK'gg>,W3y&L7}sQIٺ^~<<m[芀<mY'nf~0?2-'I,ګmNݢJ;H v6)〹=UklVǶ?e{BwWlO"5Δgv'0ݱrXs›υΝkNy|ޙ=w{ngǘs/?r9bqh GɒIW;jI~WȀ5ysQo~3nDYUF˜e(cӘ~~~N4ԩgſ.,_ˏ5?ۡ*gǿ -S70絻}-_EJN_@iw~KǿTus?Rqǭ1'7:[vɌU=c\_[T%Xר&ƱU>6UV]mǫ:Vc}ێcYe3XOYV،n;eψcϲXV8C|U;Mq,\w)_ǪPeDzwؑԹc UDz%Ηw;:'qv˖q:u3pl˭hsl Oץ_c%lګʥhc;4]1UEzC%BzOם".i^]N{>&Ʊ&^e65ܒyNu6Nza,'lzQ'[*e[J~s zd_6Nzr_6ǝ}H%lz9B%lz8>J~qr'IwI/OvuQ~nqҋvQ~jDFz-Kf;WI/u@^|R4䓤?rK8E?(e;IO U˦W(U˦7I/>PީMo1HުM/I>\Rq"ǺF1;^dDZT*%8|~)yf}[;D^M5'yg6:%ȉJrqJ,^%lz; dcvwNzBO/;I/X(J~~/(lzE_6Er'hzsD|R 4Q,7^>wϑ^>_NzslDr<3Mu(]}NZR{Op^T.&=}Nzޡ.s'줇}e zCo1TRt?yez!C H.D0{nD -kHW"@^ D AK&>>/ǑDi G ݀t ʿ1.Cہt-H+bꝉt;K#tK:\:&i5N[b瑿F05']橏~%Z$Om)~F7y0zOA8VW@$1nsttIAj&cYV -Up0xxXs0foώcmJű&00Ƕ :ՕcmJű>}0ҟr.Ʊq,ϐ(˽羽X*Iu۟XcX~sBsL^XOYq;*a.+Hzv 뎁Z+oQŞ!V kúǟa~x@tףC,wa%W1M*U#Ίa-gŰv^+=t̮Iӊa/R1 ã *қcX׬A0.L7Vb LݽGwLM*Ɏa-Y2ۮ16+cu9xOYwa%[1t {Gמ徧bX;:u Ux& ê&6w]iŰbXgBn -0#U,wa ^Ű1)^ѝIa~eg?&LvYIR673>ӘcXgKX:u:M3bXcS1QbX^U[ǰF0+*%t k9cX,OŰL:1>,30c$r#|g{v B8%6 ?UB=İ2u 02NVQWui?mAR ̎_\0AK<, oSUj-yװ *mj^y5אuj61P߼yBb~s{y?KcLm߼y5ڴЫ~s&ca0bnw$I[E;u^VNM1Ʈ`;`hBR1wlSz #lNO|%]ujC{X`wNcJ``]-,K9܉%åY¬ _cL/vųزOUa*lr/i2mC9z=Rg\G -o3tsRl#k_us+Q֛#xfΓ{9RgFg^$_!=uC'=[YzNzFoYzNzESgiz_sKkIO]g-sҋ*e;IW6(e+(8Mo^]N+td_6>Nz~J~^V/^^U˦a=J~ڜו/g*eۿW3%%yl6z|&(e{I/2@Mo(˔I/8P)e^|M^'=ct)eӻsګԳR~<#Nӻu]jj}X^.^oѵc>=l/ l7>XI,=M*gCFSgiz9酇u.rK HO-:KOӛ,MJ/%~*^{6Nzأ{HXN]&M`+SA k + UA/tnѳ[ig#e|J*f3ӘKc~git4hՆF<,? =):x@دb6 ;GF[eїg薾I4iP>1q[S:QC8I65v#eGy>Q~7~yd)y~Y<#/~'G| duG?};'<sbN<`id4q|i{` Gc#fb䱷 .ȑo"߈}1GNM,o6b\#_f챃mV`|efAw7!_+"m"ε!1Bx%\bYY5=n>OGA(yY{tąz S}Qa$UmYgult!r4<|4 )}Yd/2m;t[rHx]Շ]˰'k^nh7k+{qHcm|_,L3Q P>բ\].Y-Z|!} +{~w̷e>0N+&|cm'̿W6} m2?9la#?~eYU%+4Xf_ٽƙ9e.6S|岂evk0˘| ?03_ٵ O( 4 s Cv5Vf_f5~0{1Ma<]k E;uo0)'M;E{te⑍ s̷ A, >n 'ԻK =ֹu`_"m"J#lћ?0#)ZzXrEKUS:Y#}bk^*e$r q#o>r;_ݽTގcX|Ɩ[`O.w|0&7YxDs_g!b¯>k5Mߵq l _ڝo oUj|Y.W2bӁ]ba<;䳼fNi@El<[+OUir h~cs>Ƈ?%%_+R.)|Rx>!Oh |7)HS5<[ǿ}yw+অ5x>]Gſ#=.oj>q | -6}GqYx-qoŸ7Oh?N??#y9~KvsGj-NA,|po w> -})5~O? -_Sr#RiG}COEg W|$OE@Kl9h |Ϳ(Tޘ6kO<}č"ܴZi ?,|`[UyojYopqQ瀿i~AǁfU_'x3 6Ľ'O+~4U6og\柸?dO )6#/^aO:c>I6^bM<|t]hwctG4<צC\}96Ѯ?nZx4i~ -?,4%򯯿C)/Kɇ}ߤ<ۀ/JWѷeJ># ;R.}=ڔ|X^|^J>GƔ|HGAצC:m>VEŽ(O|ܿKOa+BO 6#6</|*x'q/l9H_=_x?0ןK6n~bO1'+;ŌP=}NYL3}.YBK乚uvޝYWHN-:~L.ԭ)ϕSzWsfq={mg#ͼ|:o,ͺGg*Lbv}o -)NBLȧ/3 mqńl??>!6߯v:oCUם}Fݕ+KLRi2`@۵C0};E.P' --G-:6Ⱥ~NױS>iQޓLy/ynVK4 &Jaqf#Zqt>_ϽpYG |K9ndwW2U+ēX cnlC9[M6s|߇'NjGi},Y?8l}= 6vew$w892\۸+Go/GfײߖbjXIv<#\V,E BfG>ޙ,>04mʇt0iОoAmѶ;z#?j}^/ƾt|Ѭh?%E<< |XR.OOo'6ǑN=Vyq2~S+"<P0o>ACc׀O埧Rxi |-pP։oij7Si8:QcרQnא|a8g/%2xt brDf$yhÛLNsբ?LNV.ݩUN6/53c}a-7ۧӃy=t3/2Enng>|Y.틆Q&D9Ϸ󮅈ABo.8~@=h;ʵRs \m՝a=`}C~;07o cNcDD}De>O>bNf[s)?EW=mț2'm_|=w?ƶ2ߩS7L^ .蓖_iy,qqSOssd;rikǔ쵣A赃y+]5Tw!Vq؛y?ϩާ_k.Ӥ*=t>];Wc -~Jb-+*`q|؅ȳ…A79~0U7֤AϲxFz8G^!74kCʵӵ}B\{J+5Im(u%'wFqd"q2FQucEFWᲥBu狪xh) o.ϥ5 /c"?鞒|v7SBby!Xvl1Ç= 7\>o|b|Ojb|[5&`aAABloq݈nnY/^DJԣ,Qu и7^-5n¿%ܤdXz%"Fd;[ !Bqr mPԸŧCm~lG=W.r>17G^l%ɰ0BvboړRHu>Φ"uKuAf;/mǀvkԸlzDΖɳJ&$^%wu?Cdٰ 5.T/C[bu-&~+jIl0 ڋX|瀋fѧφXcաRA역\~}<@0o/jfB}{t3#>~ K uYAOP~xKTzƳ(Avh7e(;/M.˵e"5TAS2ʉQɅ iR|H[=fa6D~KkrrDr ݂Tpn*KؗzKgs?fsk{B0Xwzx0֌F5yXVxμmg.N:<_έ)_wuNz+e^W<^cmZz뤑)Z_#^/bDD/cM e@ _ؚ(S;5L|.9}csq!Z5n\wB,--eF\صw#Z9w]jwǶ3[&ǔ^O[ze#bAbb>o+Mҭu q eq[w7/Nh1/(d2O|(4Oދ¾Tn{nY \,,`5eA1wY9yn˫ʱ -5}D\Qɍ́%݅ӂ_3 |(!wǪtݍzv4v=k'K*h%PہvWTi[5%d ϐM;򕇓-;'-}/IÙMM٫]9s~GxsqueɎ jX5d`Ś:vVkJh-kK#&w -c|X++6j1[d/z)zĘWqJ8a}lYg`ldlu9$y~Rk,Zv}Gy>dŒ>n y` -; <;,z@P5a&7;x!&f V? {gW~ѲjxO8{7~l{Dl~[enBhgv*}eYwlg:o\|#vx};&ިߊ7xr{ƎMelu#_.mG+|?u:{)mYM_@@a~gàHbcҀ9U1c.q.VO<!ƶjL{0^m>8SeSW%P>Ys;oo1M YzFk-#o8|P_m^_xHVHO~nE;qCm,vLVQ{  #_>[1=oKZ~Jˠ˱*%}#oCo(EL6rJt%' u -e8wאpH_g]ޏga[? נ!K?VLgzŠ`o41hMezc3}l&!KGA>!Kzfe{@ov??{`1dڕ%0N!|繊zU-\u;W}\]ʞlo5_w͞k?@=Xy_?Ow{<ߙG9w<ә6$ 2ߊ|pxxxz~PmǙ+9]>7o -Kfrشhizrȏ sCh˖;yc3^awga 8r/}K5}y`-[X;\Ϛ*3 cHTw:=s̾sd~;J&'Awqds 뾚LV }WϟDΕIY96gw/P>ϝMhcDuҞ7u۱qQ "TԝuНqqOm>ͨL֟Pj>i] 7Sy2(=:[1T>?A|J#徕'= gs繣 ~^:EC3ͫG7˼:$'-{[EeGǼ,0a:꼆ƗmP`~:%tmq 6gKe6Q?5Û{s[חHu>MKKxh/'戳|>bd DM`/[%I.yH6h7G7nE+vkʑ v?|Y8CgI$7|&zPgg;ꨅ~bG J36Ç-o[yAط5]蟚kϸ2..Ajދ2YM -7^_G/ք9~}HΝB17|j:C??1pTo EsQm(/m2̀`n޷@C';aMr+h%&'ֵ 'F'Jl@Nn͍(d-sE+\fY@we1e?#gKv`̶W(}dzɴs -z\N9tރ|B(GsgoJ}A44wFͶM|0s}5([70;*BLcN ቅ -s;v(s>α֛Fcm(yOƷ}Q2?]"99̹A!9G;o<fʎ);FXca&[^7=#h/ryaEaӞ>yUSI}=Ϛw>w}ַ<,=}r8z;l] cQW_Sᣞ"Wo herG>u7Q &om+ӫs.C_d^){%S]c gy qq+k oro5'Ye?=ǁ=Q.FۉumT˴Gޝt/ڼ+Wds+N8^}1[Nή#eڛ?;oyǺ$Wc ףmKIM#˪v {*sfOlPO'Q ?ZMӼ]w?a1o3|D8r8W6=6"Vz~-~ -9Ú_Ƅg~sOY#IK]oZ7uVr\츼ρ}.z|wy`NBȲfXj> -`e#g=D^]JNh r+ڥ.t6?}[Qro~m#nnK/ =q.<qP{D׍C3j#ghO?c|>؄0I8߱]c슱F(ޥ΍'ozAtHU՞60̓S~s$vg~=X`ֺ :C sN@:{}S,om&[g.%|9Q5u畡qʨG^[t؂>,.Ā۸V2.];mX407t%,OS/!ɃyHjJD:{=DS΍ojxѥM>PGԑ^ 6KME=Epo8}]Ck~7`~RͿaj={my]a\M~z)< -~ihROBy,kxÞ3;'}XMɀ%Vo=9=')vهӲ>W_mya8fw>/K[Y|Q-&/DG{ۏ9>'$g;e~jS`}SƳKg\#az?2H5G ӎQEROL:^zYҶc 2N}N5~G?Mrfyi}&7rEr~KVsVƼ ]}wKb&4?㞰*cj6%ŝ o`8x@by&d;_S\>}Ciˇkz!ڤ'm5%ra6V+aJRmfJ7JM,^72|bwkۓI s%}Ck/#״܎5b*uZНۭo;Nh" L}Vz*^*z= &zSb˫9/{?Gߍ]j ^x/zeGxa=!O+[.&4Og.=H}%y&snw3uU Ѹ-o۞߼{Xw@ )KaA3n,??nimU>e}5~iD{9e/-ݿOւ9 - -p09Ι}0%].߿+[,kSeۅs-Q|րo]9o -׹%S΋fo>j|9r/Ⱦ{M|}mWxϴfR۳-?LZM_DK7 -Snom:5K[{_?Nk3OP~=o-w[j^ X|;uD1>xcH|Qq&C^!UV/ۤcMtuCj!ք>ko L?qA؁&6O~4ւ5> x5wornA__bJ)?絆}b&[xǓwj@iጺ>wSXLGa=!yvziw.Mz(]M b`Nv\Vw4'0a}cF_7}<ɓ{s 84vŎf@a񩭟:sN(>kzzrh@AޝRf(߯asEaf|]v<(3F9೨ dd?NY998^oaL8#s1O|xFW2l3u~?m#9ˍ^=CFxzUœ}_0d3 $ d|DGE"uob+`)=Rr`o~c^Uq/aL߹L{ByCPl%[fV1,_hAV:JeUVzbTZQ^j#r<`IXwӧǍٶ:h+~CdڏII칈[(%s%1~f㑤 aIOqbqRr8>7MQ=&?ryBX<7}Ҧot_foh|<ݰ?]8~=Sjk.oT~b]#α_M%7r*~O ˀSl]̲HJNډC|7ߊ=T`V70kk7 {EQt0_4?QVw4f>[Ft^_,_]4ba[Jo,wUӸ'/uwEXGzd>_ނfM mzc:gHaAsEڇGtHqb摪% F2n[ou0׃䞫2Z]^W0_]5sBxρi&UZϼZM#);γ -< aJŇAmukm]?h~!1w7wHkIu61~'{l;xtG_yb酮E06Ew爳92.;Ɇuͽ$/=tƬbKeR<;S;c {0Gbiϋ񯪘Ȅ}+OToC(/[V=)ڏɉ>1LͪW2dRǪD9y8,3LcgPHS6ez/j㙹 7ΜOKxGm/̸{rB9OD{ڬ||~$o&"]Pe9{ׅgwWmg|L;8Pz~n-c+|\|pz"|;siwI_`OoسTr&(Z|eY9hN`.+)}'ۻvy޻{ I}f׆&mV܃=7s/;V] :[bch墄^FyYq{R? (-,<1/mVj >Í 3z;ǹf!j]iS,]|_x[O'<k<bz>y^[Ck^!' ۾B~awٳc z;1>O0.뿄M73g}f)mژ\r(-1> |<;D*r^Pf]ECwZӇΏ"e+_K݈[sMň6^bQlF=nE 1uEŢXUe91;>"+r(xw å๮[8FbRrxF}!>IGywNԋxI[-թC%7rtmly_O{;Qѣpϑ3my[=?XOy"}^@u.lP̃ՕP(cC'!Bo!G-GwoߓQ1Jd;]9]%S5f\iЧb?1T9kޑo~V%C%ϒŶP%aioSuu%f|Gk:jy vV:y~R9*tߞ/?^uxq^qc'q;q,z)==wy8IG,> T~O;7': cm#"xږYx y v0yoZkaoܩ PxgP*_oxޓބJzцk$Zk|5΁nۇeC;=}Z6SC0C-m@n@a=o6CЯn\ box\i[j0WPzC>*割h@{ _2Poe؃pu\YҼͯdu;#JC=2>}r7MbFC˝OpaΒGGRU.Vq1$ͥtU'r›;دy"J{ lv}~}=Y*꿃q;쏷Տ~bv㠳`i۪,~N~QWkO)Xxc-kKqaKoUug&D~X'(m?Az%Io"HLfv)< 5A0wP{I{hh^9{b{ {L&'_ַ~%׮_f_ͳx־Z3O\}wiwk>MXkF\{y.AS~`+ұ\ZnOy'A?bZ85q 5v}ƀ9>q|NV'ht{93?p~{&)v Oø{󄱿I9߂"-1:y{ԯ[n9-N1˔Lf*LG~F>9{J5x7+lm[}x$[ssF[!=ѧ>]5 そZSD< xxW-h^w5;>@GL>]R|ViPv@|M#zvAh_Dž?Lߧ_,u SXϸ}F#|Lqߍz^k6Ӈy@kJ8甮Ixy!uٌa+'i5‡<85I賢űpN:]P~| |[Ͽ}eW*ϾAS[ -o([>41̕ –Ctu{Z1޻4:ĽV4_@u'ƼL1s3k1Gi5 ?G^ӆq&[jnrh=7k2q7?.m}9eϲ< 7`8'|~M,: NWnt&>xV#}!x6G19Owk51 bn_1@Ǯupgn-EQ©m5s[AAtB2_1u3u{oد~f)^흿5F/ry~Y0zj_ⷔm|-ψTpu2'TRYkځѶ>~Ϙnj<'|]: 3v3Ews{E'9;zN g&BgWf y'eu]շ<I+_}nQ_L+T{jR~1ߓ^I?_ Züw6=S}%J ޒ{jh9ts_6(45ǥ^?~=l<<:>>:Vفy#xs۾38'ؙ{#=Ctl#dsX{qʨ)!Zlޫr+kaKҷ;5vi{'=y#q%sSM&BI -EX-Зq \>iQ72&}?x(dL|H_Gm> V&mdт@ՐG\!?:~"M߸|z/蘒hY)btk~O쩄}?~#;=dzv{w˼ۘK?h{dy=FbNMRggP-#Y׶J|}<~͟}F7aʟc /҆oTj=+D螛_4Zvvtu)|ygs[ݛx OH m%ұ|+E4>T}ww_8'șy&D/Ef -vu.qr_SHKS>V~Gi.~P>tu>+ܳy5ʆ |߰[qhw5mv[*.V~GÑ^6+X)r:۷~+]z/;Nkvoe5Z*94X~{9R.g9MݸGU˳Ma=/kc2vŬ{`(9yǦlPKʉk}Coޏs}wWp9b]Q`g| w|F<|!̯NsnDzZ^N_tua\Sj̳?hurR{Ӱ!~|3?n\3p#lT~uig'jx*,RLWxg\wv-t_o^1y~ɵcV{zx -c^'o.{sWp\3J%G{} {z瓐ruE>ܕ$nZw:E g[r_Qw̹eBr_^7joX73l/wxqN]@_=gؓӲ_왤m[e7toN1mЏb]GnVycDr*ёT܋94s3k'YOwݤ2G [7>!wLv)kC1' po=ˤwa1$W3y֞˖ ,y֞M=x! ̵nx`Oaw&ymGyn!ǣ-/mQyyߪoFzeO+ewhڡ~e#s w@<Yr|Z/ޓu3nq;v In2{:t?^x@D<{ Hg 23C|O,b q \;oF\H'NIw -t=TS/B_{oO!~xs%""̄;s[/hWxzm*t}g2AwfZ7e~yG?~aW9ɠg y2rȁy|JK>okƻhb/rskrz.mYV;)~~=hF87.׹fvvBW L7o\=%gZ\=W|&G3fЂ9g}݇*>].nK<3r{ >ٛ9%c}?Ǎa 2y@Y[B{ueq2|QΔϱjå\x?:lXC|ְ~ui@e|{*b]-XOA©RQrR<./|-qҺ{s v; -iy}y3lWgyfs>Yw\(geRƏ)=kʸ :wR{ _p(oGy(/̻d' !wkhނ<9zx!ŋ<#ɐ)1>+awrZlL}Wv{0`n7SW̩ 6dz]Տx&z wMfEIٳ}}GP$Ǔ=MËHCjSH>.Ca}IIڮP8i('>}-A=7HFT:Y\GU( HU4 -joқKcPSh?fYp$&ocH/8 ;Uz\_ -^Vj0Yo5-|4єdZ$WO0NTRa0IRpPGK aH1,ؠ#]O 5~@M1D -M5`õ?P GubEGX]@|m,dUs9Y5gB}YA|j(R5`uژY-áSP/yiLTpީd,\([ 'sA/5P({<VHTD2?'a5ɸ?xʺR|$ܦU+k*|p!H|o'q_z| )j/4dUaMdYO0sn4(PsAG$DTڈ E0lu_i, Y\PpiɣޟJFknh_4p9}^œ)'f% (xM0R6&P K…30ǭKqzlnĽpaVWiz1iY%)`ͪM|^Jb+M"OQ[ΙS z]4¼aдߨfTV[W]Q[5[>VNXH/`W珬ik( *G1: -Sɐ4V=Q4o4T5_ѡ`OPzS ;L4f*|Des~aI]kA9t;d(M~␇M;$t7"+/ǒL5nZg=T u!B)Sb%z0%| BOW"kmq ~!$~ie~/M=G}y)\`Dbㅣ >ACq(1cmcj=SRkB0]U/25Z Z,bB d?]حq6VK8lD!Т`0D´9 /j?*g[#K[ HP,kA["V>ݷz M-5DR@s>,f0lŲ?W^ҩ6qe@4atQ4q_,'~,KfRӯOǡ}{\ڸ̞YHKf43+hl*_S Oo@ bv.M>j+*|KnDpqWpzx_K >}l7[EBߘ^ͧ$ȗrKƄ^qϼh")䵡~ΩsUVϓLB]gӭo70ͬ5Qsff{MsSM1>PD_{]@ԻN̾:)7sWlթiW'~8;u'N[HtC _T/4G#AsN(]$L~eJX"o@j,AU:z+ܞ%ř6̏Eحs&lxd _BXړU R`"Fw(EO=8Gֺ; \,z0Bt W*HbHuRo++GBɐu_Y11cV- TXW`V)3a0ۃzf~SCsPK$ -l"cjK+^ (e&-lV}w,(wpoR٨MX-(7 -$MҲ=VEWӳEc(rhDFH">* -B]U.![ᮇn" 50(h8>7GdY3 X+܍ICfMj\$H䅀]dV}0KmsC M/wYʌ%Q2DO[jٚ暪l -%[c>f}uL}yH$j{%-u(L!H _E8g)̄],Xx.CᘛHzn5bcZeϒ[1a :ӌB$rAzX7CpUp~X0H$23!lqGimͅW(3GS^rgNvMnP LUoi,!w4U#'B̽p) 9e@q2ƖGIbC9,=DI.1nn*@JJP!ٜNutp9L:5bld h<\k"NÇ~ؚAHE\wY/6SdTkKF_~s^(F]oKeOXPY,·G8꿙f6cʻdmP` ̯2uˊ/Q_N{)^Jg@\9f25U3Ԑ+s#K NLvdB3(-j-'Ӣ' T"R;gmHUWo Fy^"vPơK8dm.[r_AT"p(JXd%LM1[ oPvTzf;C 3&Bjb`cBaD4IR8ݱu>H~9k+gb?fg섘*T5wXܛA#{.ʨ2$8gэ%.wYSbd$W'w䶒Q†vm&#ʚ z.I '14&v&cHf-^AB}s0y %eC -\>]WK}Gq /kb t:&nZiy5mGS(硜r=RhIP5I -mִ (?Be86܀e;QN 8P>2 ׳ Q~fcPn@9 e'ʛQ6FQ~ɛP <(O2bP>90PByeʛ 0b(| -hGى2oVF9S Ia//6 w!0PBي0^C90n,¼j  cطpwb|(ODJקPNc=v>wF1|e-rtU4)}(?B%0QiZi@Yr'ZO(?$|aqPD5e(C9(ƀ(Ǡ(2PvF!JPP6ǁ&}@_Ljщr}hGYڂq}(\C9~CJ  c&ʾ7(0?0jQ67EÆq再TxQ\y%|@ٸ x4w;e؄r?(_FY ;z`'Qv,n/|G(vrȩ'ANݐ7ʾ=GÄ0>VCcƃOOƽ(;y 6嵻[[ն.? 1N#\N -f{my]Nt~'L vEpq>GP+<#Kw^֖>̻%o鸻R1T/Zt97#4ep.>Qncd)[$b.A[x͹kZ6+e[qB_]^}WdfZ?Lm~UW!E,6F.KXCv7Ww{krTh+vw="ȱJ- "Y(Đywq[ +vu9vqxv;w9[v:pTtlwtnsltlpxwlupݓ_; gby'<זfQBà>u2gX L+1րk% ݡ-D$x_lXN[\pkNzVmquy1OBa[ntȣub˹=k}v r2iKz~K?}wdG 2ڭsͩjѫ=gS}O.I]Ko˥ԟ ,Egc '¹_-Wޫ[NXo`b9_%{ڜ, -. E Q#Ȓʔ%G*++ FسK/z,h+92wSTqG9,Qv#6(+ZCwn'HҐUm'y ӡ>f mN&o{U]r۾6~00D;݀Xx0nuwYa dRR R"F13?Ɋb)l(d:ԣny$D>9uԩsNm]LQQg\!^mYtT'??>ŏ!Yq1vPtx&mJc*E]d`2D3{ #?~OI|-5OxaLb|bgO&qtF,'EΣV1? E#>Ӽx Չgi@Y,gйP&?=F@\у -b6^*T[ì`O6c.HS7ˀs+[ZۨB<1<-cnX4'`M,Bl+0ˉ6 4qtťf\i8'8yb789V{O'*\Y]I03U-k;2qq m"ϥ _f)~I?P4aP)cЁ݀;ۖL`OԌ>dq')/Ӹ&,8V|8+q3]kuv)p>ÛVn|s3Cܔx?\w`ޡFA^(\ -8X:T2\{]xHя}1P0X:aaa7R?>lx}u)U2sºNۗ|ϋ7)t m}Tt)Fi%kЯĝwb'h!NT!|Gz?gDK֚fA0Eko;#9/r<>⹺`Yz%8w߁Ii2נwm^T>?*OzbV5g~)-FAp$c>Aصw -E {}vƱydj&ƻ8N#h! q' ބrpho -p@o1olzz_#pψ{ h+l%H -\JɖAB--ʂ>UdC7%ʸ4\gykvvz<} u%QAJ˘=NWv_F ʼz'",-KEd>-QR܈X3p TVpgOiBJUzWi>T8^@XB^GZ=ez9<'sɢaͷ O#y]"]?Y@\;"OT¢++/X%9̊tx}/yU{i7}SqHX5s2D~_BDrU--| cE>Dc*W8?r&Q/q/aV/-<& } *_-"ş! _RzCl^i7x*"ɗyHeHH~!W"/O -o-󽞮fONWaR >`ϷK+TO(ޣy<aYO -Q,;~YhUnNwg,Gm3~}\-$xrYƣF^%ϴ@ho8qߙg< xQԅϨ3la;moo͋[GFK[4vӐߑv$7*<o 5@6^Ƭ02--ߒi(~H /Lw -")%`ė~R/J0F\}ė~GD_}K&Q%2~,?9 2~7L 2qŸ2$翝vg\0N$cL#D3>=d* f4RY 1oalNo`{[9Lom_'FO8L`"<ƕ%Y9PyGGݡKaêrT !a/3tdOqrubV[56D -.# -dOGfwXg^RwƧo:5:STn6 A@GZR۳LK3Lڛ 'x}oѣvҼ{]uXuXuXuX -A \ No newline at end of file +Qf< u+`1}s !qpN* ;J$y47;w;jfVw,#QEU3߄O(B P#CTJ6B\aaU eU 7=3 0~9%Sj.tiiMKͤuYskK˲kI9Mh:E ؖd8]}sߐ4Ԡdc;u3cي6 b卛gXw3ݖ*:v*gij.h +^0t,XE[QRUۮWtI5J-b7m\=b#Y#S.걌贱&;.8Yc+ ꉂf׮XNXָPײ]41Ԝ&KF,NelYT7hvNwT arEtG֊Q]m~ӫ < X ֬XpmL;lM[F!bc1cn @v֕ȵ6Tjt̋B}}":X"@,;42&T1ni,QåM:dV !\TFߙ2m*x8B2mi0PЗ~:Δ uwustwu_tmp T(SPCwZWWUT) *Cت;iHSsl,Zpdžc|[vH,yӨXՌpQEyay;ar׮_a+dz庩Up088ۺ[M(k޷Ӥpd4}q:ZModE)[DȪ@SЛm "2^K-^IyEQl?K!؂95<^0ȃT] 5 mh;OH)w z&vFzumi.!wW눗Y`e-aD$,iƀ|E;.m1{3^ q+4j2tn;eRGK2ucV+|hɩct-KƪBN$d^t˩N-]s-{^QlWSdZ Km6’/K:mFe`V1/ ឆaZ :pPGO_c{_%Go{}/ʉ4 0Ӧ9wbN$Uĝ'D,-K"*{=u#$T 8U&< 3 niǡ̿=b\#gò$Gf#x~lvށƒM\gQ sjk\Xd/ +Q͛)P4S + +J*g ,@ks2lI~?F_Wfyd>}\)s,8Us!v! O?J{"DJb1aY򻈭b,.C-'iI̧bXR͝I|ӁYRй-Bw ]=AU48N6궘h]q2]nHVlzd.=#,y[PbJ+E)h!OT`jhmkZ١de}d]t`=BLQ4loŜM9ʲl1dpChz $꣺wrϫf|\Ugja]Ājؖ6zW{fC .ƒx1@d >mcʕdgklɯdcYkU9K@d1,ѱ6ֽ7_*gJٴf@esc8Sc* BvR>?M28.K@70o3v :<0s@:O!צ_y +~A eL" +ԲֲWXܲlYZzk)I7_Ӵ_ҽnu]$Q=RieA-'ge92X27Xg2곟etQn2Sruɑ+8 +n-/ 3YA.Yȋ{%2<\na_ +@γs0}j~Y!J1V(3ҳ~#~g +Qr"BhP|. +P/)U*)RU>4*5|a"FRL)ls2h]e;gC7!U=KDIe~m&,!DQ`u(knT27v,S3VWFFUzjQ"݉GGd" +1eg̑?Eͫ?G7}vuێLjX?~35ckw/}Z~ 2?2~7=OF/$F|ܹkS՛ wt-\׭x.tl'eva 6@y!opLTx42A`+7q;+v39l[c'fɻ@Ƕk#dgI(ڀ/ukO>?Y~5˺A!0BZz$;A Q=-2-:}2!OcqyFn8$bl]ϱq8E\'|%F&13Jxց.&VG&*#8ߛ8Lqj?ym^ s:6(ֵO-8cs'mqQ㥦ڊ;׌ilfUQŁ'P#γJWVڼn[ ryt&m0:55U܅$ R/l|\OC)}~sϿңa.wҼiu hq%f CG;[/zisx +|]q뛰 G o4wg|m3!|I9=~e&|SȃxλvSwo?˿:/gY=o&>srj a=R}.z{f{A}?cu} RIT?['p%@ȜG䉺yG#,pY8 g,|, 8 ?ST,SA42'gS=q\^qagx);5f{Seqn88sgl!8[{wqT3.q'ΰNC=A +;8}c\8ǟ?q=?յ.8X4"mjJ&Ӊ6}9n]Ʉ$ڮ:Hl'brh2 #C<,:Y̌Xj5D:[ϩr.Go:+*IY{GEfJ5MG5*wqPTVǘ`S3P[."A!I|#R7k1M¹*Y;q漐q@"^u-5 8 E&^bCȋH"RY5-:e3 5O1B"N-?B^-Q丈&,%'"NK}|ް?f\׷ a}?'li +ޕ5 /+~o'ɶjK\#/JrIcG;,=rN"%P6? XSv,*DImՏin]4&AhlRߛ;7GR7o|ϼycaM8H( ̘2\6RQad +A8< CZ=,w[bwQm=́nP~hubxun3Z.4 +nHz0)KQ:cVk FT*Zcia˱,5fHsPsssp.Ej0ș98-*L :RĔ|iKQb+Z@DBB*q#յyB!ph1yʜ‹` *u yP؜RLO1^VI=$zm+m5mKew#QdQXlrsܝ0rKŽg_۪⿀ -v.WiK-D|rQA'4 \v :0+<|:=PvW~Aߑ>U(VO}Am_ៗյxgㅭ{pfAMRv!tyK1KƁg?韯A?K}#Ϗߏkk~a?kp~נ58nN8:N ƍ= 9ANy}_X#n%laE76 civvdIYSKι47{֏zJg2"LrP,[Jn"kwgm]b +DBL[*TǪlZI7<][8ߦCً_Kѹ, ̞o'O!p=Ըc~b~m͡ L_X~')o#{_lx8𗄟SN.?wXs'9XAUXs3 0ois8n.C5107u{V1~A~ى$eRa{hUo?pe(/ {0//2 ك?y酆ٻ! @ݖQƇ`< paGp|%WID_,cYs/@zX`#_I{Dz8g-0.XlOs9V9 .6>y?AdnV߅O{?0{+vCzW Ύ7#g%8w!_/?$y~E^ ͞ {z-3_Xч? a\S.A 1o6mfq=YhEU yKWļ^++7zdvϕj~Qio+M,p }z8O< /K+a \e֥DẊOUF|&E+*?Az9vFf^@;ka$|U6"v8 >Xիys#>݃c=A |EO~r* V}z?A75xxw.WiӶ~agQ.} rU}W{WZR==/=+˗= @bކɏw⵻{^򞗚N7_^6H}bY򖌹}W|pj=V&^ 'Ҋw|ז/4_#Fv6iskϮFdOxQ<(fO2';&Fa?FFFF(:a/ K(Z Evϥޖ+&٦[2L%ߵ(2|Y' }XYua|K-2۲?WKvr±![H&49K{ +#Һl[Xiqh=$Mc(±J>d\h"SҩGc|PM'[ O~Aڏ|&ZI~ql9akpǁJMfFЊı2I'ql:KY?Qzc#jı˿K_DZ#ӿDx"_ Fָ^VwBvOzZE6yMvلw*{@m[5_{[G-N\nSP8Uq{`L3X3esPgj=>8.]wd:HZ[d`^iJ7ClNb[B^ + Q:C:canw$ȑ`U yLtURZY9_]ßdNbZ,ef&vΞL6P\d+YfvLLU +ދw&H3dҹ~%JQ2XjYڝҹr6ka 0eiaXֶN>Vil/@۲ys;Fͺk>\3ㄵRn~fwvؙt'Mst$ +ΨQfn)"˫)r=%2T/ aιa)Ï;o5]|ѣwK݉kp۝X(A |9(ъ _!+ÝO;Ǖ[G޸5z=A"^R웠>Ƹvט1hz"7ז)sۊ%iB<<(G+ah]ZeK{۹sW(*(ȓO>5" oWw?+-ԇjvW6ЋpfCzơ`On-yLapE{x";-%<ǢlfpL3JpF_: +(qd 蒐 iȤ!$nRK0tM慎%(† +xaU8+P/6x! "!}^ Fz<]]҃hj%e)f^lx_1ܝ{D dt*Q LaXr + 'Ð0;:PoN"xzX(]ʅ +-eŒxSېA,*'xN\\ \[:..&%16 +2#=nLUіn2QtxOH* +N9V|h@ cmnI$;R|ZeE.o >|^#FOXz'r v5MPyEZl}HePM7uiKEO(&ё4C +2{TQs`i0"5 )/`2/{BM(ҡ6n: +&htyP"W`x^nCq=YháMb=?Xx(*DPre.Oo;мСd?dZ]Sv²{S\.=fgw񦒂f G)Kt21a6p+X*x#hw`ĕFx/K;"0z)-dIA)' C6T=nN2#ϕ96sʙ Ipu&aF]Cʠ D&'[[Ve1'k*!>Io =0027 7)UI -hHפd(b+t?r +ؠWSY>1aa!2l2G-I#o3۵Vs߇eųJHiWY9 ͿQ~[-4_bjݝv$R(=۰9I)C)JT2h2 01jh4=H&f>mkffgv$#XbLqgW(${k"2x\Qk]0t穽uԁO@6MG xʈ?lh߆x<R<}ɏ$ ^&I_Q}w;*=É$W]19|?Lo 6 B2gpqy)++ᙇ[(D*$7z[m;.!-wG.0dv +P9y&Ěz8Ty %l#(DR}†/*ҳI#b58kњZlF)f X/c᯦+xxe[ljW0w2sjNÈwl f\-'4%˷N,0W{ސo)DhC=QIX +M"B~ "4l%6v{9%sۖ:7o$wd̳L X+ m>ZiW9FVⓦv"N%-uHې+6KBE*= Ai0!;w;锣BNUvtwoh:$}(][=WDQf۲%Ly[f#حz-_qÆ+V]Ӷ W]k8_3n{-ZێQ(MI2]\mS&HkM]X*jS9n'әd+onjj岙Lc;J&vݕNtc\"5/Bǡ9=;ȴҲAA4&(6Q6B4D]{\\[>:9~Bic`N?ƙ-j ޘлͱild줚.OWqЋ,P>F'@ݛsչR>Q$뎛RޥeK*¸cTqNx2ۙ62L"eS͙L,H6&vW,N$Sd"mǺsݩ\SnJu.Lh1ԡϟ[67{9(2XʏQyk2bO/BǓlJx(!%QaQ|8xTcKtׄPꎥ}0xʙפbObm~o`JG"_3'А=kLc@8+賎Jf,>Qإ.}*$<.UTzcKG½EU5.`{ ]/y#*X;-Q:l+9fB@ `4 {`8\bW' +{0lp( N aOǞEľB8cpXSCRk€!+̞v$+Qm +x(lu$mC^I]I%+>I$%aYC~Nl`ÌpY?ر͕({݅lJwMc{O9Q~´oFVㅃ<ChhAa+Q+sޭ;!T#FQ'C!+ْwq eT)mka-pU-+ ΰDXdxD]}xr8G!,8DtR,ۤSOגxzN&D{>-l +   u8أ?^x^wʯG`6l){a>vz悮k&3csj!ߌuZ \YAZ,gag0c NyHgfXw7YyA D{><*]shhSqWߗ\\]|Wysxt~W&? 鹧9,).#Wd9*+8і-|AAf95zoAbN> ? QfJ…b6,p 9 )I)q.9*΃P-,|`vtΞϖsѠ/(K;>׀˘}6Qz=R&\p?A-foM| oqłQٖU-|*5Tv"o?24xi=ԋ>YX,8_󜿠r\ 4~z @!A*s+(}{- (=9#?Ceҕ+*#]F;eŞtxP:ґϾWTxmGk(]>M2]#92V3T,~h`SF,c)v\@=R.EXʫG-U=EzNNIyAk2y'@Ff|U $1yz/_xbJ\w7GV6vhh:Q)OYf|(iQXWzA _OH %!vOע|9g!!*u#mE:M}O&(i۫DLGڄ4,TEU7=gW9*9q=N%G?Tr|}/9_~9/L8O +c7&O6gcKO9-TяK$؝40 ڻtK%%<Л^"&zӮay@3 l p+Vo:uCOгPg6EeuK3LR`[; +(CaAx5^-4h} +K0nfWcJ  u+ޮ@E"?,¢mp)n`4¸1c;ƛ0v`܄]0c|^c܇085G1x``41*xDžg‹po g a= n5Y4aV1s0l-TqQё jD!L|F~pW, ӞA]U~_ʐoBv4/M, `u,FwfVˠvL7]e|F\p@5scN68X>cœZXo.?Z:CYta/@X :S 'ax(9q? >yB33ĩ.m--Wֵ7WEgytVƇnx@,ziQtGs@*:t:@gxŁ@\Put` L @g(n)휆f>ĶT{V#Bԉ +#y(Xbԋ\(fEyv,T̆Qq1XWGϤY/WĩM4c3zN(GTg&="\aHG$W#C{DG+ +{De* +{D: +{D أooT/= _$פ⟆cd s5_p"V\dSh5?Y +O:N;g-GGbX*Ly}xRr8y87%lw;} >UAv2\~U; +?{WGq{le[Zq 1V/k+k#-ZCV#ip  :H6Wp$gL $ݥIq")(]1&Bsy;e#oKyt7{ +z>O}>Y[^_kS믭k:h r] 8<,yJF6o_P2hR*yJFM1M~=QM?\J'kag2uw9m=UogGӳ!KۏFۏ{؎~d?Sۏ&,zJTD%*QJTc!ũf'v/8ou0FP7u0{D>WaV+L5|,5Y9v0Ijl ITԢl2O~9t%|7u Ha蘄KRqsY¼ =5.~u=~/2yOsG[O#ҷ~suJ2Ixiqr êxÌ81fq^ϊqO54uBG7jEp/Dkׂ[J:0ܢW6&b) ӅP%S>^9).+G_5U~`*~iBI%eF\>ui &Т'T1 'O:urD"ZkR? ÜAc>qish; 4R O? kSU>M? ÜASx ǥ.Mo?}~4 'fBH>p/Nx焧{H&Qry9+ewM1 l o_ 1wD2x&,ƻzYSHlŢ=*A6ߤxO?8]Nu0L +L(xTwTl#Ѩ.ފ(|Gxu>o d ";z +ţ޽@xT]5ܱSngV.E*9){\.ʾ?aw9G7隮v2q=.Ofl{/0tm95ޮ}c~>᪷^yݦk3;]{f7 cE|.c]]g~4ɌgN|]z蹙FlqVc4o7y.WOIkˍs cWe\N\zh،]5WAL0׽&?0Zfz1^i7cRoW$#$&OMG;MĤJ& +r`OLibjRo0 &?L~fI<1yMIФ]<Ō?0x~kҏMY=1M&kI9~/|]g r'pU/cdņx5_QJ<(z6;(A}7S +>JRWo:%[^^^RꐳrW_wWlLSX{RVߑ13%D iMG2N^%4Hь['KXVZ) +tP,x]5rl7ztnNK9O뤮?_ڥ*&e)ߝcr69u\7d |: !㖰@fz0Զ< CE:c$f3粥Xr ,"Y9)rXD-t&WۚY"w6zCb[Mq?6 j DV~5ρgX>=FuSoLX8B.lՅTR^ʭEe(iwټ'ŢS.$\ u1nQ1CX3zZ3 +E + 4a>cqPS3ċMݜHu@b2r6'F38 +ّަor+-l:D ^jkYY*xLN;d]fE7os1 J!@c_(J-Ju,SJ25|X +D{,KvdER[T2FcNLM?Or#2O ۣԂh .3D6'@Zk-[d.^_tPPM1<y Cb+:@m[.҄5H cFO|!NH&*IǟmNީIn~w˹\"PYK5=uaE5,q/I}tJ`Z&J~j+wfZb\dS7OnA/T&T{ +8E~_%XTٴ +x|1cny)ߤŸ?oO8#D j7Mă*CJQ)D,{hWr2GԚ f_&rcv(>9o?D_`s…!L V0+z5\HS;O#8oQEs &8=SgLo|EgHIE t>Jpzf>vyCWmrR&^; Nuy]Wn^Oz @fTWi5$Z_En_M  "_BMdzUJp\6/%7|'EeMC%P9#x MN?GymgbDa$8]Ri#xJ_Mp7Kz=H Lp\R7|5_K Mp}.>d/m86ikԹeUv?B?@v>=/&| +vg1-GvO (߯w|ߋ ?'OP>A1'v_O|? ,'(/| 'P>GP~ƿ UOߣ|¿ (o|@}OFOOP> OxR_Ӂ"|9 _|;~?BoU(A/Dދ _ 9'(Q߄  :O5(_vh΍(( +DAO|gQ>Q>oA~ʿRF~O-(|? cO(*iOgQ>G+Ƴ^wCsƆV/è婏֧޶oWlKԃm?NY`@fcSz .FgK8  38 4`"> WAPi$tg#:(D0 Ơâ +´"~UoߙA|~O{O:uԩSUF<4:^/kRM[J[x:EHo>#(L5"@ʍu+/bRM'(߲]A+}Ƶ(sHIi\yQ1wקB~a7 7>[qTcv㣁"= +记O1ʕj>bcw.K X(r/`ER ʹ̘(*Ju u"xl`>,zG65!$h#-O| >%/a׀9A(9xh;SSҽ)iz$hBHveCtZnba} 8T;MfI-k&m/hJH:K5}`JK˟y5AwKMk d~F ~# A~~hi.J@2HWogW['+ "$CJғdq/_M]ow#d~>;H~59I%i k'RRbטb KH5Ie$dM5.t/BFwd~kDY/ +;?o*i鯨d~ҌϾkM7ߡd~Uv~t=sOWfig&>N+&_c;JÜ-Jm;?Kd~3uR.퍕Rzy?//xHO)~I%sy::m4d~H: Pd~DGc_27RnѸVc?y3ARN{/i\&﷠+RO'1}#zc2ߟ S"z8]>?n.'vy=3d~߷ v6N>ͳklqww(v~ud~ /tߟ!3_a2߷ոt6;}t/QΨ/rYHDt HoAZv#ރyH/A:H!t ҁH!tHW#zCA:i ۑ/!HKi)]H#}i =H"H;>o2_""7gfz'1>lEþǺ +ʍn_mš[1՘WO/{o5n,輫mjءBD^=fz_DULq.է݌#E4zHD_byrx|MXrw#X=Ge=&-kq|:* knt7~, +uB;]ä{ +} +166~sῃEx#ڔ.!N?0緦{ӎo~AW@]LY~<{1g +v6YD?+<0|y#ە7 _^AH!Z{Al _?|p/<7|EFB GR^YzD?*<9h JsDKAtg*m!``FKި :;/x ML |'ߞ̈|@3>, +_KFu{{g ~=>2 tbfBRȺBD$l+Xߚ E@\|`:= xvo{kC=nJLl 0OO#r{J/v`}qWE4eK!. K!3P~~N~u2D7 %>=蹪 9U/A )5ܗC'߃"c#Ćzh~qy!ރt)~_5b"Vjee'fo0 y͚J빦EYj|󍿐J`=ش>#iln7I4X62^d~=h'uyo/=Xߘ#S1c'=1R}r#)Bd{wf;Eq/^/qbMN 1,r K-=rh>s0/;s !1'0xQ q +z=>F5s"?V?7S/rN3>ҽO<!b=#IѻYnۦзQAl{ӉFnt_Mvma0p:o|-f3h ڽ h3ˠl7Vx;1O\\:xЖkͶ} +W[52` G?ߥ -w!r Y?X _~~`'_'i_[D2gS|"oh'ýZUDӘ \]u<}]_[Awom +_2F_ zy-SQSn>_ߢϢ賚 ~>)0sa\ADưg/˙'pA Mx (=<_q~' G_k87J`w=̱|1{LT]`2vctuc橱4vɱ{ cإ}ӆ-rlYMÍ~AIw% +YA=]xx#/r52#ꉽ[ + S,x7zewoρR`;PY.kOqo3ywvdW|h r0:Yxͪ|&go;P=l;woc1:Hfcm d兎Ao)a}w vnoAL,qОM>_~Ύ䳟#ʴkE,ϓv1'QxQy'Ÿ^>UZ, +Y3*+6xEG.`_wqby  M.Gd/FVtmˊx[)LS'gb /1/~n~oFؿhׇHO0vef-I:秊rz!/iD9F_gu}{<3-ϧ/O9ní]w<ܺaPMl +- [4o6wgPf!A:e+9ʹQT|I7tCJ]&ǜB䌭e0?Ĵ%MNZM+t#kֻS[un]s(IGRE~tC'q;˜Lk:-;8;o>#N' ?IL~}4_r+MLkxR?zmh:USq.m#-t<̉z~pnv-Ns"y5q% +:W6b|Nd^H`W{ +^B#YdL/^naWөoOS]ȢI$gFB/#3A.aBOw!3D{{麛9%l!^Wi=NC4HtRNv?t'4rf)KAB^տö]]SK˘l+q:(E'7rs3vy;|N}&󭵷8D~,=.;`gMg ~~;O'l9#ɳ/B܃"]vGJWgrp3F Yo*H/-E.>?v_yg?X5|1x-v {=;8?| ޝ|}Qd_,_{/x <_/z__e|KW܏DG89gï]O/;?|ςoaZ{ +N S]29|<[^kAg4v'nZ&x.c8\_0!.\qmØ2PF7(36QMKd0*2~ pӘF`ⷳ NϺ0B%l.A#L)4&1Og;ƍZic؇u0@VmNIjh=kN}|i4ۄh~Ų{2Slc\e{q?l˸%l/b\/gLlJJ}L| et9qEOvudf n#J|DAtz9c?m|cm_6>A~un;qq4osI5I?x4kh3xۑ_|cC]KSC/ LQ/b<(5u9#<;_pH"U=:}guQb~z/}gcګ(Y{PA,-+[e7J!t;T.0~N.0֑Wy),|]/q` 2k{Ǥς \gEByڥOh7Z'Bݎ:6Mk9G}|m =8kN/jɶSu?mfۧ1LwM&4O~Odob5֡wR }:FIn7:*4uFXD>֍5\N#HOuѡr ?|үϨ oIʁ| "Hߵ|MF{13Qfz=(S)7|T.:=&?EԁQ'.cEl!ާ9P&7)Kѓȯ "W}?BSvTvXءgGasMȘl&9j=ɐf`sG㻨eclc{Q,M-ecMp8#~G&r_d>➁_*=&$*|1&U֫Lw^Gr86RX5`1Y&.\n?DSz .JN>ݮWGvoR$\IW I?/O փx{O^#csGM< (3&J<'&O;Rn*{?!xx›m  _KnqIC1|^ěoܓ">6{ mnˊ,0A_ķi-| +q{%|E;?|y\R_[Oa2qһ񣸜W|B(.'Q* G  n|G*쒶]|I0i(1,`OYfW/y)|6Z~ގ ZN'§L\dJN>-+F +|;I|ZNɧo~S+|4K½h='񫁟w*|<-?qE'Ux_x'K=RL OOBM + R-7q&..|èWჀi>=}%y):Tx_M!AJ7'L=ܚFxrw~HzgJ+$o%Rt? %foA + '']O?-?q_Mk%X +>$qoTkU|/!·i\?*~~QqFTxCz? qP?|A\?C>*}xSQ#t{UZ~f^w^{Z~EOQ'nƿ3_ +|_ſwE\8fõC +|E9U{oi^-?q3.xx‡6,qck _o*bLW.wY»e~Gg?e>ILxGA;`k{U}kM|+q4C +?|;RHxPᇁY/UZ~!Goߤ'nͯ_Kz7_13տ`LuZNA$aLK^_)3} C + ZgLR5Z~ +,-?q/g>]/ _3}z.۵ě^ &-?q?g+OS|v)POj7|[OIj%=g'aLXkE?qSK'ި!i8?,M + xx nƩw%»ҩި.?7Ľ*N&xHa  +L ¿]'Tq LGܯĽ*<-?q;_֫wU|-?q3 Y-'R'QqxF} 74aN=k +Bx!tM{c<3F5XSV|γs21ľdQr_2z!'ΉO*+yfH4=짼wDٚ)VD _V'"۠_WzaӾe[Ae NNeJ?{,x{bȘhed?=c/ÏFM'PlZ50b}%|yHyvalӘhc<gz@]?9p +yxȺLl?m/&݇s%ӯQ)yT>Q,q?~ ^9奬GMZ lԉPx8:ē-\BlѺZ +N"?ͳ Xq;7?Gn@ڝ(p1y ؘh/ z,v + n`[URMd.;f]S\t hpvp. l2U8|+8.<[z|i~0y/;k`)'lusg>:b7+>w)9}əoﴖU˳鮑&[{]-ۻڻlζ[g_{{/?5?gcoxPLKvyk2EtMP;C@נ۶^ś!ɧ;4x7y"4y=ne~i _mZ/¶4t ޛ&Fz_hYh %"7u^!mhDaKF/@9ئ2gNyOz.?z-h~kx!\_.eGs87Y| @=$#$x +53 +?oIk0f/gڎkpmSLym8 nGV}yA5i+gd=5 wC MRf^EXl\?|jȸ 74Fvp 쟪yjY<[8JQ`hc룇 7PyoGUM, +sޛ!"zaga8$3`|q‡@ P FlYB>gy G;/`.7c~量 ur&';BXe|WdQ6Y4'm~7/1kl! N]+=`O?igUlV^E> c;8b t;f{=C1_ 1'=w M; +5w}5Vǚc#/Q&N< 3mha}'bL ^~W1I?4G3^Ĥs'1"FIO18?Ex~8'O.ʜrD?⿺ kwfG&K{lw1F諥iQ'ےHZ N5A9qr Clw>о-Șbz bN8Q6,Ċ5@o`QlW=]߅wos9S{Ӂjk}&C5YK;+h Q娿u([|7lT7|۹w8KGy^d= +Exf䉏=#W7Cٰ,-&.\%bI6Xv8BC@|Fݱ)r]u{[ʛmw×G,cGq{cryJϋB!Ǐ5}؊tY$ʓ_c|.?7)ž01 zq>|P%)~^(SGWgu+~w1WW~_/؊P⯥O/f4KKCdG/I ,{`53J6."/k[HO/yx;%ϗdτ|&t#v7tpӔri0wC~ޭ-cu]eOC0k*?'{%xQ{>}6%9>ѾMY6yo++ʝGu~#zޯJ;$^匝_1u:k㰉FѦu0 e yy>8` hC>6[|5-F.F.x*6(:qqNMDcX[ٯ~9H:9DQ/|ӎ-BgPe,sσw`l`mFtϱ;˚nqxyuÓ'lf{kp`y#&3hϔMW}Y? Gg}#?=aT}<]ݛK]rcRAz(vxڒ{g8G/дKMд~Dl$:O/Љ P +tH`8WԫE 0֎]r>D{X~GۥHIo~Cҥ|x>Cr6]dP%'@ܿK9U|1ms.ۉ/rܡ?/-zN.p,Ъ^qG|2U}UKLVtHoW\;[6X|55om~ a{<܌63aN^u@ e6e$hzÏ9:p:IJU~K|yѥx6ytto y*y*sk!6{oq:ou lO3!ަG-+݈tݎ1SCAOwΗ[e}UܘF,U|$O3K|rXq-saeay? 4臘xLῊV_/Fd"R"S`g1g*Ӭp3>3RjS}awLa@?rh%sS+(V7kK_6qϋBئ']&@ckJ%jv8}RĮM<'[ΉB  +cYoe ^&)1<5T^dGn}(W+!k?Q*~+o3S!aҮmyf%ksq[qK@19:{/^?VImY_0h?ߋT*A?}yQ|r[D]xg3c]j=\:ՙ +e#E+`#EףE`eԈ2z2)[<]-p#܊~WLxsM~Ǻ\gx[G,Z\6|)Ƅ_tr-+`&޼G[51ߙgclec71uKw>)7bb+!=vu[b|``huZ yʶsyJSU?:'wָz]l z$>A<vv\B /* _ks=w=D>bq^_?|y#ec>=#}I3 ud܋K߹la7cn +37Eb2TeH\gDXVq)׀71W^?ԑEt,tu]_|Hsn,^C4Z˜rdqͩS4=NggB\wu !+pBO:.f,xR1AUsi{~z +X{wV&Աy[1ވцԝV/xԯuϙ4ih٣.ڋͽx>=w#:i5Nw.)a?sZuO,ЯbLt*i|7c//> ,%/ְz>EV|,-7i\{[BD6 u!>]dNx/C^ys;.yVemy1>ibHCyt@] 'n1kbڏxg#Y~ qsc+C<݈mԱ2],ıh{{-!Sk0wT(h`R:yL+qs]a`s/o" b7O16~XZ U/dI8R/ ?,]{:)Ӄ5\-)э7Sqozeֺn +9ql21r>u=|g{!6]hnl9n=qh9nۦĸq@7~:}!sm>Y*q5'[ߌ6֔[/Xcҏchlfjel>q~CT6"[|q^ Ľ,}]_앿`C}9jΏ'Y08˜\۸}%M<{I1ϊ\oq_6^C6 {y6Ʉ='#cXvy*y^BU5YwMm؋zi[M[^nynV{,ר\{6oc߄:(ÁC.(@pY,p?Ժ>u=> }< .'U?}ڿ>L..s$9侑ߵwTX >@BwE-hC^e %g&.a,<0b\53}_6M.0unЏC|sEqժϵ>#z\/ch_axO?otKoN+'r9 rM nvh+QkzҶ 4<7dMiM;X;?#+Fq,VFVmktM7_\dWx~Ptfjz緻Ü'ו{&N!ob9,y㷱 1EqErY4d1\h;ƍVlނ~^=\GT3)Ù:(>,Chڋ`z_\BUU>U:*9Zν_<'].c3d\ʾ u:woo$c%34g ކCLѰ ̇/Zۊ}Pv^/m>}KYh;Q>)mBV,[To\f|+y&41eM4kifC^_rukVKU]ZQ,EQ),]1N1&gF_ۘ|Z>qu<=Mpqz1 2t2OG̶R>]-$}f\W$tϿڨjdgϧ#uzT5Mkk#ĵlԻvdrY?]ƉJ87lF)d{) +[װzpNG=%"!;W1<וT+Tϕkj+!/}T_khORncQJ՟"]P٭G[doaakH%4"F_0\/Q\s.㈜k#69?7ma$Yv4cmƶl'|OXk ƻ{F¦RoxoK֐),׵;YQgvXK.B6]rTnv3^ h.97iڵ r*|WhOT/.zȞ{9}`۔{S3ͽ>F=͐OgnQ뙵 gBb׭"M4pONko>kըcv~/zHN98M1mMXs[ zW8w0 o|G cB&bc6WnΞǸN@BYPu,l"nL^Wu ":x_w~}}hk.1cP_CzL5N*á-Xomc}$C]ֲ9Z8z= ⽞V}{[gX1˳aj @l4fhi[1U~e:N4^b+s0zu>  cy+Qmypn] ;} +-ޒd xk[">ުz+o5VgTbo9VV15֟j'w~Mof\Ps"ΩiSVR[J[|5ުbo[;5ZVVz;{xFf㭍x]m7F[%[V9ʽɔn2[~?>C)(^~e9!狮a&?z~7YS3q7VΚ0Ϛt~Y|4zvAikd朞8oF YΗBxv%/mm=s潤-bs8w%ɷ;qj+g*p@y ,vP{=7/ڇv(dlysvAGtTun|@#b3ޏG;ݿ᷐=11цN"%?y>kϧ] >=t>k>ݿ Q7{y`˩3ЧDiRD|]|\c;'x\Kvv[}|i7R%"./9.\R,%woi%:4OqhwI3:r9/ ]ۣ%9i|?G7k0vr@y_ sqkrŹi"izT_s:[Ijѭ9$C?mL..{u0fLo5b3L2VyDž&L{j:9`^ ̻ɾ6wp]2sb]\I^O!Q%q!%[wlu@6"?xz}/,''>Zd nOb }2%ߒS^y?s<.|w=E:8~"A>z3 +!ƚ=gwT>O%g{zW0/ N1߆{~f|]8:o3IK}6KZYG!gSF&}4L_3j>56ZKa;$\NĽ&򝂈Yܢu}7oLf?\syFw|!y?bfb;˗j'⚗|.;Q4<)砌Igl؍(GgyuwM|wS\7f):bHē|=u`~e#}G07={סOtn^9hʣH3i^>+7#F{gW17>}2&zh֕L1IZz䵮OUkQݏCR8V"ׂϔb+x2ިV빢t/uLӜ'<ǜ-c>U_2pq3rd/ߵ(dgSc5uZbS9~rrgs謁,:?&" a-S'+1D\VߜG#m|q}|##eL߅y?~,\o8rʗ5r9\#~A~ |:+g +5 q3c{<0%Kgs ++ :W%zj--%KAV~=uV?C*?Խjmxk?}kќ3u|.?:άȅ0sq5zVWS>s-ÐF#u0ύ:7bbgo -a?:w β?* kor{DZf-w_w]Է^>bǜg{.)9䚻ZsxxvT},5ukF$eH?I Qr_LޓG_^/_6>=Yk އ #vV|m}?k cdb}Ē-okIآ=1Nz@9{=c{`[0C68CŜȾ]j|Չ%|VŜc1'Ѥ--\)I؎@쵌 +0#:#(G38eXþgzwb={,CΓl]N,2 dz4^W^:w};g}'>y@_V=ަ)_vi}C=Ѓ:;aDbo=:_)}f7ͅ}?ߙųߣSqhQS&>7m?{|~9yviccƸ+xcsIC5.7Ɲ3妬l$=,=G=,5lzwrzx.Aŧ'qmd{bgw0'˽Qƛo=XSbNk^ ߇e{*WŮ zkQW}jכ ǘ$<-%vyI(ϓmxȹ:0};yRzoX9 v@}Is4[cTQ,u>ˠ 㗱(2^>}>yV3|. +vO_8 ]3K~H7+1vrSݎ:0f)#w .#d)-V~>@Ck 7fk~3|kX5>儺F]6"'UQ-uf{<vt[f=6> X}[)ϸv AXܶ|{tx5 cI'W3e-ǯ#BQHf~'19)73c<ʹ%sKdǭkjxs~|?ۜn:qΝp0Ϭ"nyGbNuބt'꼂4[0a<<[qgo )\gx~#n~7!?b?|N!GaF@%p-2ZcM8>?7I wv}ܜ?K#;'3o޵ eߕm̑@9րG)$u#ϹS|'w}r'Wѭu-}B=w}7}cy?jwwvJ +FWO\ X:PV'm +!K<-HN |G0HG3?`<`Ek%eS.52Ȋz]{ܿ;p=u=K> RBߠ?&H|!dڎ),o$gG߿a#4ָ5S|=MwDd;/mؠABAwn\Ƴe3Ĕ-ƝIe +=ڎjR.hxo +x/n~r_~_v(w5t_^g-IXc{by\_|I߄ +3dY7|M?ue Gıԃ}-![_2w9M k?"6O2&C2?D?M>ۿb=~O8!lgޢxe*K&+D}CyNO(k\״e'c)wŋYʺfek6D?gLfk\>mۍ~n|'g[YQgʳyA KcήG9'g-JW}w[8(.~>W2сGxDClۊٯKħ[i0Er)ruGn iot¾*-lN_vuA̍R{Mm|h;9spǽ;<{dLu +τ"Mb3N[%yޛRlʿ͎}嚳O򽬔)ܿG}>7GN3%x.}kj7vh(}6z<1y&^'$ڋ-b n{-,v DC~vٞnw;&}Zt @5k3MͰ#X: ŸX|~\t_o.ygD5Gg' t2Il90,s}o6´_LոuiSٴu7t9u,2K$w=o q31fG$7 UAu Gg/0uk}h̲?N_^ooQм^k^mq߾^I_{З~üݵ5g$_Ry%sob0y.==&G_~79_xs^ћ`R|&ȵ1h0GFig=^ݴy]|Ft:70ʹGO뱤gK6!Z^k:^ )߾i؞G楁'dX8܍3.B)m|c~d|B_96w{Z%=:Ximɧb;Q>Aƛ6ԥ!#>i:z XOI?zo}qt-hľ):M+[d:Tjw?\7p׬%wuP ex/56쟸niխGY-s-)csy| bk+֟c8'؊b &yPbY;ǵ^t"M8/gj|6{R|d̩mcԫG7Vg' .uEc|? g[|mP?AA'ιs=y? +>}j+ؗ~WZ8k6^S-"žC]|Xڴ+R^"U }U.Tbo/+LW+}W >s|~zO= Uω{Uu_6Un%Vr]#[4܋oy$Š S/'8ҷ:WGy6wb^` zyEٌZ<'>3XmC_=ľpXx-&MΩkzC|V}P/K8^B&=4Yq:@[}zC>ho3Af.&yqo z|\oWZد݁ y~Եz\O3}3퐿;yȑb+Ani _H<+zXspڂhtȽ%(cgh3z-a}}v?$=qsW?>w :8/6w&_'7M 6*+__]ޭ\E)c^Op -y|sa03<1>O +[;g?}LmGcgD}uNdܓ?gtYfs3j}"|Yvڌ?r^U97Y.}Wt37_OV^bqmLCGXO>!j>6lkl >=>aȴٵq9FnUm?q;ǡ.>s7G=M-ʳMB=z-,8v {6>ksT<{mdlG^g2չce9C>_yO(~99RF|ߡBpG}jx}y1Tfq$%5)MyaC 1xAZ5kc>ʙ~ǩtә^/ WmG\Zp.*̭E9;܏C)?0Ep37|H#υ,B+˙w/'9Usr?=_~oDbHS䯓}ydlrCHiy\ng?ݟYSViĮi1QZ&cp+ >{pLy!ۅ秲]Y&xhYo!g2a;Wra|*GG |>paxîȑ"r<kXSp]s oAF ٳ,sgo6ssg7m6~־~v -@W#K:rĦΰ4 [;Ժe+u-Qx]ۥu}4O!}g cEW>.ߛ1,7aL MП@ԄN`\4u H/@{#V}mLk1BxoىY"?T(Bky/bEx?DŽ8mJK1VH7ߓZ棿k·Wgo}fSʖ}Z> 1}$FzC hx2RЉ[ތv!=T0 ߈>=}z&s8~}srb΀˱Ny~Klڛߚ:d)7c|>ߗ&$k|g/\ht)6~<+]?[9UُrMfgџ|H_Biʿ7L}_9 }ӤgfIg4irY[iywf93_,HU8"ͺpm>~ m_jV(=6% m] UUSώ38'q$Ϙ_.t*p%7 -?>5w} ]{6b9{l!yDf1ys;- 9ww |?|3@MiY'?ۖb7ʪZOiuYSS;甕VU{*˪=3Y%5TB]}uɍ%(ZQQUZR^YSV]k^ TPV9vıוWD_^Wu$%/++j +OoºڪYfe斕 */-( TN(/v}V٬{'̮-U~_*,NWS7Jj+*Q^6mt"?JHoYV]T6$ Z`fSYe7^jURsoei d.S,SVY&(T>ljIiTV]2byj4責dVԲ +bTY2˔VUN+u8k6fNҒفj +* LAovYЎ +3_VYZ}!8z^ _uTjSe TU %vή7PAuYMt)/Hiy XJvK\#U)[7Ƃ+JAWJU.3H5O + =k* +`T슺s/*dNY5S*Kc^͎dW!YP,ٓ*&͚]qU:GWU']Tg@ +)GE*.RcĤ+Dgdq9 _HS =.G@r!>UKMS6TPzVY1˸7~M%'\2yTqHE\@y}Ԋ)ʙkUZ^3"p+U϶[u-$n-W&UU +T*ߨZ2&3UySEwݡ9TM-8]0S2c@A$(-> + |}R8bJegWBR uL)SfNiZdJyFS)tF:,rЖHJQT^r]:P9]0!Hո.~ +L/k/*UTVA$gyU_E|ROǢj(f7cn %S͋m]O_e5vM\1Ձ3t+X%>kJS¸-qO Dp]6ErtZ<PM Eh:{uI@<ޞrJ?Sf# +D//aVSWZ +6*YRS7{6¨9XlF-5EG5A0v1>Ԕau%s$F]5j^2y6mfͱý!!K*X3YUfV*?ߎ7y@ɨs`g W03peʦ3$u}Q,냒h5(އo Wij3VQ|1ӯt +|2t|?e70KhD]/-ǔժK*K9_9PɊ_r_TsESwQEBEfנbSEb<JKSb!w ݁t?wX1HݠK/ź" +}zDZtla,v"੸> +r!:|EI7 66{\;#=t8ObZcoH!>!HAcb,v?Ҿb&o.̀b"t1Ҿbn,n^,i_?vyH7f^v[; q+Z3.F:H"݈4ecbC=tvFH7""}D~t.RBXi +̂H!݁t,`5 ]tc6E=@,6qwڇԳGEX hA,"R8;t3aGtñ/.]}!z@_KiXgoT<J;=G؀;NE\U_G@:{u,&KB?ߚG_ a B:ҍOb9hON?=ұHB+7@y(Kԋtد?7B;>4nX@A{i?`!xc,VHO#2ȉtQJI=G$1DۼN +-vyߋC'O +9ǿ.jR@- #q!tM{i5_(Ol3N`^1`ML a!_/z:| m+ZNl}HƂo/Yh 9oӴŀ+@#ж#fO+Z^6汔+]+7vgW>½E {#XO{|{:|kwYW׃K dԾ@}Q{Ak2g$&-e!fdT+S +eԷ+\z=ɐK[go6ۯd/`>,uzPΧArR;AhJwXc}o?mwpagݫ{'3XC}su^WpK<uYOAMzWrcɖ"ceKї/_f!:_Ft Oo|otAݫ\P7ڷ_ʱebAR'z`'ӟJ+XZRks 39~`>P2ʏZq_Q^^QIxQ\Yއ~}쟚dϧz]ֽZ2UY87]ۍ1p}eO]Zo%/vQEƆ̆_ted K%H?1oPLM>6yA?1[ҝ~n w鯲/@aol#c-(\"Y{r:{S4ЊH Ik?onx b,ϗOΰؠt r0M G5;❤ =Ǿ)yHX@Ws.o}E{`Կ2$HZT{@1[KJ)] +ͥ -'x}Vt+W]*Ԣ:>Z.zשZgyO]\ko}# ?Ď tcK3F=ZGᲐ~pSǞtZcjw^xb^jƻθ4&ƔqI6G8in)pם<'iDr! +l1:[wt\{l>ANG*<qѰ7ջ1Feg$k?uƸza^,낃^WYH&+}Z|+p[1)wu8V:Xj#Xc UJsKs3ؔ*'|gd3kK{Dwg)?ԢR +wtO}so^Q*!n8oF!DKipE˝)L4?NܙZ`čh etr֥2}wlTd۰ƱGlt{:]=MR6 +: +]eŻƽ=ߖ4+RLɀ 4!z>u`ާ6]bО<昴̛mݜ~s ǂ=bƸ>a \0_Otޱqh>R%eM)eTnbR,wA +~bߊݭ-˸_l;9X9*؅K9["s;m3ߑvn3u.<~Ywv]B̸ {⚹3.ʔgїu OÝf2;?|{,_jӥ|rn黊8[6{ݔo; ^3l~þz~l3Iߪ럥'ߋv KQ%y*ůǩ\Jv ` ?^RTFxݾ\iϚdUYx:DX??[|+Q 3Q{|ίwa5waqRsBL+_X fܥ3 +KeSG1,|Y_~ < +0="rj*U:!2܏L]BjgK,)g +0>-X֡ רXHw޳۷o{K6ڊ{3H}ܣro>'ι'XNKD~pũ7&X,L[G1 ( )l![*+Kәw w;[k-CR0욕ʧǰz0řX- ۝&u4ɅoսE˂|쁱+_9h'qHM y؅9qnsxi.Ly݌$qgcՕSV]F*W?zg[.{opOiV><:e{U.BgvOxq o?t qȨjm׿W8̍kb/DҿVU'Υ~ }fBU..no 8|B|-2agEa=ֺte~ )*WQ+ +7 (ߔ\^i&HM bUP(1ʇZ̨1GAfD2ޓ9u{0m-g:zP?g[=e',ۚ~YDk.7m2Ym9Ӵu͖vLq)odK,N=[[鳯A;?oY$ny{O0{XEh _kCb"m9-~+ By8,dClb=-hm4"}V(?uV,q}EEw߀v5ou9ǶR,J6r3XZ ͶJ(L(Elgl5OzPPXћpht| 2XEר};S_qQEQ\3r=^ za~JD%V,䢱`ɳ =~qlϫ(ІX/{dِ짲dΏu*XDﰪ.\UFXW]{@gifBɬ!N+2 eʎ-yO1+K:7 ڗ vwHw&cJi@8Z{XA~b1Ǵ`6)}$E~'E,uJ`hriTrH NTOA>r/M.T>"])".Ն)c_:TWS;*#ھS!"}Pμhѱ;E&Kʿ:ߑntf{˱Ӆ MŐHǎه"Խc]po.k%.DN G?& yd8 qi1;DVv&B{&$rl{0<0"/yl8!-vH׉-Zz)m@f Q/74R7~Q͎b+Swz]ܘ.6 =MNt?"VƲsB-OQ1cC͞Hsɛ&^wVJ[}/Sܻ^Li4frnEt]\b)Yx~:MNNS4S K?w.F~#5?x'.voU]_;x8v)~oo!r}aG:^L#a;:ܑhphttuJwdSkHs4_N;*n}M1X^r!;#. K,fgRar0586vxp 6K;F`G#P-;ҋ;ƌSu \>Ouci0M sұ)dEZwݺXJxQ[0wS#X4vI+/Wn^d_q8ќ>f)/+Ҿc +vBib#O+80Ycqmv_ts`M0v. FnaW۹v7wԧ7wIv?np-p7d3` P{G:vpYmނ:~z(Mv߰!M4}%[cT&4d^ןr<"tt|H;3.U*?L;ZKT7xcg h;rN.u~'[~-? Qf潦{yv7Sy]sgbULy ?ܛɬXPToaHrOW3u +U@kVB+?yf:O2evf^g龌h1;W13TLk?i4MߜN϶>~o?SXxMS*k<ԯ_AI:fMzojfV~UeW֩'|vwJk*{kC$4ͮW[6E>VǼD%wJfLNή-/gR>Vj;;-; +Ul]Qhrjkd?nuߕ3jSV9\i<@y )S/|~}HhC{*4A?pC*ԀZ*^ bj.ELrk JuUYgnk~ˮ,,gqFcȠA-Td8*+JS>rj4τ%'M(P2$(Ŋe Moq$9#xhsc9O ?h7>G0HD.|Rl5ӱFbnֶHϓxK#xqX-yM~:>WYևUևNuSu}]m__Tǩ?*,oaTB~t<9ɬ- 3SU17'~ֵ+ ?~_H%B,#F?z#D0q-9 sgE/sСay jJpO>?}SşVbzqv"dK\ޖu]$u<"Zǟh:~qoO;3Z 9:]kS yv)[?,Z:2ZlCmmqz i]|ZǟjW{ >i?kOuzx >]2[&:Zy;Mkm ylC~^ m~d\܎Ogh[ކ'A6eac6dhhρ6Ҹ6Vяsj 1?hmxy\ħKr Z6伫 }l?oj }۰ߵ! ? >!Of|/oc{ y(6 W$㽽}0 +aWgЏT\&^4};ST*/т3a⡘krڋvJ<?V|&2y~HA&OpwSR2}VUe|9|I(W|c2P|caEUeYB1 ۏ:5Ɂqj'(-. ]W^U;u*5TX0lZU&^_ e0[b_2j!wnق{fF?oĖk)/2 7y`({!Q[I%W-6`dBִjk&kCpaU%\ х'_?J,VUe0[aT,_a +6PA-8&֕.TyOyTXM,sKfUTq]ξ'9%ު{JwKe*%J&M).+V_ o/+>#-vBܰ|zr꘲ʉ'diy6\96" +$Pɑ1%P҆XL\FW߬5q()׮LW7ɵfʫ]X<\djjMРqwI0A)e5uwו̮5i)5(LF^VqВZS,H1`HRgKԯ5+xya0 h5W;dTwl_!{Z<D/f } RNg2]v%% +.#̕|ͫj`it0 +tt^i ] + ?ƜA7q4-Ȝ(g5O.I(Lj˫j0X$<5wUX=?Լ<,$V !&I!o(2y</0`(S%|ô tIEY񯗛w%KE_Sޚ`{\)MV}e^6<#BT1zXC2(ve 5ZP RSzdW KRUT;LB+ηU) a(qSU_Okc*`&26#) +=DJj%EW#XZEg}jNW GtV5XJ&FcU jXb@/Ӕc[2eUl שEZJܿwnQ:Op$so̩gf U{s,09"+`-0hlfꏖNp(A(WYefxǦ'p",+cD6u?` е7)(/gM=nx$Fx}&jT2^3J` + Ti<Dvj#o糆̕oUD[fzǚcnWPXrUCyk@kBJ|z+(0̚H}Jh.v)\??s%)%R,לOS͔^⬍4.f2[$e:? +T>M߱\xytK׽{FO4Oϛye5~f4pp^h:O^7~33s|*i'ޠ6id=Tzď&wt>{J;&ՆWǎ}mFfÛ̼׆wޢұvEjÏyw*aǹ\5Ϗ6|Cem_j7VPN>;bwx]o&.LylÛMz &>̆w5cml~ k$fANB6|Jnx+?yq!W$Ƶ֓O7v|GJ4v\ۯNf &O繾|g>-'hM'?- F n}т_hwXpVtiX|o ~ĂY~YقjM>y?Q8I߻ق-xWÂ[+i{,V#?f4[p W7ٔt n=l.]-8_? n}߂g+fVx->Zp )?-~֔[-~Ɣ7M\?l n}aXϷ-xo Ԃ+-EԂ{-8ҟ|hZomgXk-l s-ς-x_l -R ^dWZp! {:gc7Z|g-u|ނ7Z|oehY,xH|N-xg g=M7[ ߂[akoc-|s^߳3,8%ԟ^מ%v_ۺUW_?kby7v^wq2O^ ׶k2'-);&Ӑm߅|%_Kb-Y%J-Y%co?-X%[O~K~[o[ϰ~K9o[`6?$-X%~K-oɿ-h"!-~K3oɟdߒ?-y?,OE%|%K -\Yݑf_AK7_-X%ߏ[W~K~fߒ/`W'Y%dz~K~ofmߒϛG$X%+Y%_-9ߒ[~K~!&fY%(c*o?-uۉX%aY% c*seB=E j}R\ŇR qxLTkhwR΃|=?vUu33Aȏ!I&?aPjmhrgJ+RGf:Z6VV<.BewY%ևX|v:PѲZ-L~ !?{9>#9罟{{@6N 42ޘ.(>6/Ln{NaZsr1 9l6) 9lOQ~~r?('`~)'5c+5]?\Ξ `9/E'"n:c2kD!W;g4 y"7ИG>~/`@g^mfZ g-rrh%B|= >u01`發9Uyɼ*/\B?+*[~2oc3FLg&L.5~2UNJD'<B?C++ۤ"8wyWyL ^ZWy]3wsKӊx;Qybxx2*wy*OyKU^~"yU^^ɼU+mB?WRxAW"U^bB?;T)57E=calXq Vk1`܀F 0n¸ccf bløcW`؈q'ƕa\q?5øA0x cO`lxca0`܈Wa0> |5C2~f_Eb)iys ] X)FW`r7[u׭H4Vlߥs,]xb[J'4[Ǒ߭Sl|qGdP?Jm;uzRZnisM܎Kk *~DCquhoEm>>L4`;^N\Q?1oFCc!~Xcy;zIS]I5uPn{'?:' 1z+*DZ%#]G֌4V[3#{:cPb=@rpiĭp=짜PM(ŲC7ձm9K3q|{lűyؑNHVgޏ8u4̎*GՆS_-dju?s屯b?g_m<7y;机2.z_ 3u124zaK̓c0ڎ<᱑!feiAFki=<)h}аߣK;:+Ov;s7sz s~ \_F<:cnZº-$Hp%8kٶ HY9ҁcL1B8i49sB\NOewCTwۨOȝ!!Wcq~5Sњk}E/a,s֞ !'JHKM̃TGhq݉),c7; eֽ<{pνzWwu45ӼwxΓjqK8tҵ밮azν_Z5V-uug)߭'"뜝xNf$]+WhWgsG; Tޢ6s0f4O`_5i}ZhYKc_=_ݦ54^9Wp/o֛ڗ :M.!kzjC+<0?Ղr"jY KN q1wߗ>cuk}SoWYX>ևi Dzrs|_P_\>aXV~I%eX?6)ߕ/Xva9ckrcՈ<<Ǻ{rO>l{l[Z~_>̝4K˲.<7(.xiw&%񎨼. y&#kyPǫ;sITUy1'#^\%Tj۩4 dޏT^yB?Yu8'Qy .~v۠<"^ʋyQgQe*Oχ-VX>K^w3me^ + )˗x7Xt <@BxE'樼p!(y*g~2HwB?75my9O捨{Tw|'@ܘh>s5|:=b׫T5l#=Aj){yo0}i/c}^G)Oʺ~f#+},WENc|X[ub9>7c|Ln6=ԗ-:d|:!l=agyX!{x-Ю۔izXAa 7-nyX[5qӳ<Β%<_36qQ?K3Ծcu5Ù0SNG=g>sv2[I5Ɵcכq<ֹ=E{s7 +Ju묺azZֱa nՔ=F_UE61?T55ǟ*0mX{}$j=[0útZu`úQYަ5ʅV51=<zXnʙzÚI9iʾiˉe qzGl^-Wc5yYK/yX3ߥ,`]pb_c8q_ZK'`]k!CQGk{ȿ: V' RX6vӻ._2~C;y5>kOnzL*& Og˅wKk$_͐oVX)F(G㥱Χ?uUug&/^ɓd >r&A^m!jj˄[޶EaVؚ(-e2cM!aLK|$*ϐk~~̋>9߳kkcj.aRޫ9b!_~s~~O}ν e=|]l{D}|L[3_d\$6s;ҧV/95Ew5fs{uϹտ97~>:s~>w>zqOmϹkiկ) =}&US ~jw_=KH #saCcNiS} 9=+rCp/Ƚ+erjAX\mSSiEfǚ9ׂ jɺ\VMf*|XoC,QrCWcEOp⊐ߝ'ߕ>v{;(?@,fL.Hg>-=hk ϔ.vD+ЊJަHy\1J|}%|yĊb^\cPB{ g&dPl/x^ +bE@nnvgH=չbq˫Scox27qۤ׺^/wܡ u1+ʵ+,7 +5qcP[v9}`?_egtYe=q~} vubz]-r_k ;TU(7N'x%u= sOSNۘN/r})ɵuė'~N}.ɵ_HO'-s]=~z\ NO}zIv L9rG={p4q*/'ύsϧDr +³R5qϧ rJ9'NO%=w[:=Zz=?\KOZ:h{ɵY=ғk zW Ktz^v_*%R~\#NN/)R~z$JOӋ'Jc[/rf|طHkOc]/ޮtz>)Tj*z\)jϧҫh)TzϤ KkJ'%R~~N.Ktzv/)Tz Yl_*?J=wSʏk zs>{>w/HQSєWtgif'MүLoFαw\KOн5fғk zSۭ'Io%=tzyr\߰7,,(O?MW.ufաKqr+|̽J 4z~~->g-, ~AW sCÁ9Ͱ-4l6-@|O^Z<[\oY$>1 5BWksBq_!%Bί3\^%60쟧 {&aFSw`/9R .G3~˞NP( \oF}9e W62><A%xid]u@ߠ7웉'O#.x/*+7we4~ දaۈm[N9uj=Me ;+c7HwU}\otۥs QAǍnYND-u\{'zz%Zr}>(n屋 K/ݟx p>yćO>y,O}؂(_qF;0.D}F}ς2 9>c<{BCrX$9#h=>N#r=E.9F&=rK {3De>9ȿ3WX9]/4Awgڛx ,ހ{L^׷K4@B-9Q YBss QX"ÊŪbE\*kurmt(es>h5, ٗho;T#,߈zH'i)q3D]~CRRg_؊e\go^8ؘ'6-.qC.Om>õNTח :|jɅ\E@:} ~O2|>|uw'/WL(?>+y*P~qUH_؈V􁍓,RʪR +>>B~q`k-$V]2krJx4O|ү5d9E?HY}'tw5XN/ޗUHji9=7|)ȿVcSOh ~0bc7ζ,3gu1?^yBxy:S~en~hWjݗw"\α}hlQo1~K,~@aMZ`LO.{5VzXn>&.IV35^G<[ # +o펗?o*|2i+0$`iգˁA>M3r)U/t>2_|‡k՛/(/~~~\ \Lx.sWx"B#U9o寐bq/ +6+%x,K.pR~H>OnK:B⻀quI|+6(okG< w-#_xqoğg7*8?N8?# +_ |ml7}uR_ܯVby:ؓq>H7G_A=$0=zJ~Qx#qzI$߃Oa)}oOЉ*:|*V3 .#[]Rm.ʲYey=MשceJ:G^4^M<7|J:%)+<OI?O9~\KDؿx@3 # +<'nH#!7*|7iP⻀6Y^[iܕA>$ +5^J\K;4#WxkY~ğg?›o2?k(|%Q7?I2%' ă +/˟+/+> ģ +I?qDⳀX^ |៸+~x@~3GNfn^/˗I:4(7eu6+_k'n 8W$~ Id+_s5Va%a(7qp~xP 93B5|*<xx|c與Hȁ:ă +iH|?X0UG^(}iGܺH⻁M# +K|+67 +o%%x, .ҿDxD7G/?k'W_kGKSqd|=1O +,.WC(.^GӸ|C\8z|X^ |v\>G|HG~ߋˇt~37|J:*^cE<O\ǿf*u?¯~៸q2%'ey>I}s q?(j`yvx瘻8 KtwcbX9`NY'.YBKẚ^t3O+lN-u }Ŋ{'֖e㻭Wvfax7é߳V?e7gK~ӦuL`vMq,!o?VD׮pIB=Y) mqd??iK\vb6_'|ZQu+OqfȺx]s^ 5r8ԑm`\[П]L#;rN(ߐ<"9q/E K`+o3])7]cӜ/p>Qxv*bdp+{5C/O;wp\ϓ<q) 8^>L_:hvM\+ޝa9k8#i`*y L%=Oz~|39oʻb;qzMVOqJ ȩ- W; u/[*KZ +k4{L6 }u4-l*߻ 򵹟U^l'3{%Su}`WrY^t*r$/^?gcaysKI]r裻ogRwInp;_57ʴO%MzHZ!k=·oB@\;^,gYp +uCPYq}"hS>D:aӠ=WC̭ik{}/"=E67za fO_Qhp]!DKyo| 1\ߏ=Ny-;kYߔjwr=> ߉2Ok؋z'Xai />叡wI|PǢqh/^ >~Kj xNڿ_?;g-15nÓ_nhPc(nג|_Ofo>'/ڍEԞ;(ĸ@{rц7SkD1+xvί%ޮP=}_5E>1&19i[>05=P&b9/Y }xtɈ\ԝ:]w{DCq73o d.PcCh}B \a|ܖWi|vmuH?&A{#EJ㏼dT&47$~.蓒_O7Y8b(?)d~{/6ٵw2asGPs/J]tpmīs݇l>SS⯭Do=gLpKeډq1aޔgS*q;GĜ9Qu>mg7+ ɳse~ʂ{w1e4ӟcE2vԯv{ YLtkrу[(˹Bs!OjG9+7DEʼnɋ=KK[=E鋢ͮeKp=Uђؚe=-<X"Wr"'p$OQG^7SXOWDm=WTL ~Ų+9Gooxtk-nh9hݰ`۬~b-)ڬyyy wA=`3ex*QhDJ7P+Чy߳^ؒH?oCv]'Bۓ y9U߇P r/(7Q?o uK[d}]Ӑ^s[I"C V4i+'rg=JO0ߙqbjB8_'Бc}Xq^'dy{uԸlU*Wy)<5Q̗%"OeIq-~ɵ Q5MvgՋkE7s="kAKO~BdL!֋ܪW2%gyE}!m{];N1bF:Vw_m'Az;GR8*N'Aro\䁿?MV1GS֔;uԺ\sNq %c.m,1?GCµ MR,M#.-̱;Y5HDZPVV+]DuSwsRމy4ycW>&NZs[$A1gX#jOr'#7ub:8S +x@G!nbe3v5qmjuGaAgr\|sO]/sXs0ǝwD-8l 毑Q4_C[d9u[$mu$ EQ1 =%|gXui㧘oI_9'ÛKږ ݬ΂gήsw%7 ϳE˫r5EN)dWvQ2=4LY (D!O*'ZN02•Vkb瀼),o3vRQ1s- 쓩:⿻LzG]ݡh1hl ݆m׻}^K !d{6$Sjɑ_U4SWQ$ޡv5druq\z@ܿK>U'_3' ՔY7̊K[%VC13k˖--DS&soE6UkZϾ}*5ߦHgͯAؿKzC(I\{ ȃy x2ecޜXԏy)=:fx Ѧhqf"߭4-Z*-[>qn Ds秊Ch.9ǧǶ*g3{QO+:?"[=Va?t1:J` :]ȃqY^𭋣*n ;%N~͓rQJy^xi+E]X_xƝ^@@kyOy2ߠQ&|_hțY)=г;#+P1͛D p.J]Y?9\c^RaG[5/CF_/Qdk%c!=<kك{ߦ{HO܄h L__o뎽Op+m^}yeɞؒM/juA27O؋G ^3(攘VGQ&|P+A+&1u0V9ߨw^/a'+8a~l ZZ*[1X[ms1dp{\[{$JO/9w wW`ζVuͯ^ou>w- +«}1 -}\P6 ;9Iu\$;>FD׸@O~w-05:&'L @BVun1vbi2b-Geޢq=->{J}OazFV-lZK`'셏-.ph,*LjyH"\;%-^8ǀ G1p~x%e-QBcI<½Vc|nbfʈ^k܂q*E]E(&9ȁhSSf? -2V +jIyu.wlʱ_دƅ?_:Oq>X)H;;N0ķɧ8%6E>5biyJ& +ӂ ]IVĝh때Զq[ioVe:p/eiLt۠|M31ΪR|ܭ򝘚Yqa\&#ɣZ)y~#^_qYo9׍Wsݞb"r +%@&hb\W//* +y?RS>8-GC+#𕵘J<+#Ef`k9ti6bGux_#^Glr|8e9#S*}jRjҏ6N2Ϡy:T7W3 +?lx?}dp~ɺ5wx5~?k?.spn#n ئw{px,~2ӾP#ڙ!@~[bL?xV㎰1,=R'Rdlov?=wߨߨkw7v߸|wǶ_w9r5w!#?w<&lzk*6} GJ, n5bLJlc-k\!a2Gr| |vm&F,my]npƸSc0߮?Խx1y<ؤrսKj~m#Zn3?ClDs,rU;GcUzb]\1{G+dT3bfc]7󘀦_9x$~'҇?-~zC9^XS36e[U(Cm_=㻆/%>^@ΗqzV>.yɍʙ&;=W yr=Ь3/LƳկZG@1 C\?_ j9h_i~"9p$秊;*UV>V[OvoT[e{w웱=Oc_,+ɮ_34E=xΓ;3(?'u:هwA&><}^gǃRA `+f.뛓vwe'Vrزhv Oɉ,g֡_:˖f:sO[oi{Qq=$3.qb!cK9s #oX[o;0oW'ΪL3]Et<鱄='C淝|Xl,{GEOw?k}%{ Xj;~;W&e!m} +9^!c moIc7FGmZEޙ"׽;Н(qwmN&}ic:nOJuMAA uex13>pzO7~}]oĔ N+}~,ǽ`:y;traW/oQ~)mQ/6VC'J {tdߗx8Webѓu57k9Aod)Z!СűjD,f]/抖o0O_y~w* lEp3kM s;7r}Et#9p5=q6C\Z#L$gc܂J]Vlg{A9 q^Ab}ٰ`OS{\/}}Skvbv L:A)%λ:QquX˛9tNl ĤWwb=}5I%v4SM7"^_%_ s|rk剌W@aw<| 15Bd!]O<'q/[o@śWAꃤKGIf}7!rq~Y. + +ZS1ۅ-'k,7#dkvd-\_V!/em jЏ늙)䵜6r>sciԽq_ M+W1`o+Ӥ|:7h6>!Cha76!~a9Yc!G`Bx¡mQo`v֛[v[սFsvەnB!vC!,mciCNokf.~@1 DzOcoˉy^y~n|t7vN,I}9ϲ>;O*;' ,oYнl調=BORiV8xqƱo^Pwyb"e4Ӯ]JOO: IO{,4ZOz:LzzZ]zz[NƂe苀k!C/A5rkĶu4ﶁn1r3uw-:_A~w'H}Nk:;!_iY/Ǖ5;d=tuҸս#c|MڗCʾI46翨pr9ڎvƴ'byv/?Eyv2?x99/~;3zݴs'p)9C:ccNhK7O7W-}I1xX.{(_Ox̟:VNKIM^h.J%Uy\*K?d?4"0F dk>, q2e:1勻Ns#IrXwX9+ e_q}W¾PG?Ͼ.i_kFsjMÏxIEO荻|ߤr~2I?sNձ>)ϘS:^uܵ6ȸ̳9Zs1r̺FU h ,lem.ý}UJYpOys9TjC.(hܪu.'}A[6ϐGyh;漯Nғz@}zKu'Tt;y=.m=*Sϸdw.Ҍy^{\opվ'B]!HE6ͽm; +uH][ vEE^C\oƲž/xgSNOŚ8kI_z[qIw"uڤ<#^I(7U}I:C\udYr0YD};{4hOkfM{AyM-n_7VݔKl{ݡi6 gfVL}-!ΓYӣ5f&з1V;翑:~#b\ b S2aM.{ؒs Fk@W3-}&g[ƉLyy.5r(QQCGk +93sqԇׁG86+Fpˎl`|T+[-,?||B?sEsl+UQwv A?}Iz5z r1-Ò,>Z +E OMFQ_mGegq+!)o{ -2{TQYCI E;O>{#Gϧx~)uxix6Ǩ"㇎ʿT.rRw%} xN_x^ϟub]6޽By뎲k ٛ |܌PU`o@ u9j{^nW%ǢS%1'\%'Sc΁,۰sq~VHvl)/y}ݵϹv>M®obPr8s:ڱ ÅX> G;mC#?Y*wAL3/kޓ L;:wr>;sHŻ7 F\0Oa< Pεue%NaQib"稴&WRL3%W7iyןe?Ɵױ` .]t3rlW&v:Aͫ0,ZН٥˵Dth&ld~mz`o^7z= YS?b6\OԻK[ @:K;;;?IwG|?+nI6U"4]O37|>g0 f1[Eh ׹~τ&~ &MnNFo|x`WM_x xk`G̻y 緞!Ώ"_g6CYK܌ŋGg#mWqJ.bk#ݘ6W@fka9 +yo)7*wPg6K'6xqSxدq{w9~A/Xn{py/ l'gxFsklfD:Ώ8qNS)>^im}O'_oGSk6 +^xOI~m(WS߿x3KߔxkKreB<9('jJ3ɭgkl{ϬTB_M;:M%y{-g-?x{g[[xk[o=s>;rxo>}֖!_^O9K~xՔoIEWrI+oQ{My^Sj&>ogiW,nw-s +3ўW] Ah<>c)x{WҮ'|Y56'3}},Z'MyJ8ud^qMah5B,9_$w.Mz(s:Ŝ +u\l;Nlpl"xz̧p8 |)Ns_S;?wj`G 8Xsg>jk9<7ȳ<78 "/)S'q%Qb}ԘE(K}[ivڅ1=ًdNJ1Dv2:0}KNGC?D2CgOU/~Ghzpߊ5-<אABv!z K*&v"399Rfs\'6b XqwzUisVROJ>M[SD`aI.魯u~C_V}8kw x6s`Qw3շǭ^:h!o1/%|D'En{rK.b!Q?yceLEcCу8ysp{oFIc]ccگuM6n헓{΋*.oyi&["?9߬{9jߞvp3q{xR8] >=P}W4{3{]7r~ 'oT<{h,F%AzZzl=e2o\hT55WBrz~ޭu/rQ<'>*aXK6F +#=6]zcľx h8iGd~+zu![e cVw#ٰ ; }DnyF5A{Mx qt>ӈqowLZ*eޘp/I'-IW/?. +0?AHy]͘ڑvވ1?k qyǕi®yU/7񾸋m^F rj jfU7?zWכy_U^1zaeU ~†O;PU5>gy3Zm>,BkWLgA'=+? ʸ-o$gn[m +C{MP`:K7_}sɵA1m=9eq^Z͹'m~Win5*y&o~ƥGp1kVvTizCc x`#.1v8>UD֟2R ٗh?Ɣ?T߬JÜX&*QbڎLJQFgQHSƆŸ7~Uq$S|5Йq0gv[-q}'E$/YI߂Ojý~A1gQ <߸Ͽo; %UWaPb|͋,b֏$ D@o9yԵR2P~"y5r09ϛ6}ͱ%bae[[ޫ-o_``6_Wn =>z>v4?0@k|.B'e3_@_ V}(NLߧ3 뚜1߷]߿:{`c~"~3kCuI3Go~S{;?xsDDy9k^m_= +`waw%kMJqVnT~.s?h>9pc>H>|Gʎ8N}4f|GcX[{^i{^o8eɹ7[[k}wq8/{18-ql|1==wy8b/JiVO]W`>-98XiYN|ٯ} +¦= <4zƃCeW<-qYQ\~1* hyyJ~~MZoS+!NjęnOTߡZzpI{_r%a{O`sZ*i@n9 Bn.g 1H1h:^< ^:W}*9f;Hcug͟$oP\R=֭z~O'?p-?F'Gn<^د~WÙz=EM\3sLs֖32t!ƖNJ;_cW r9|1^V='.Na)=cz%.ߓc6<{xpDqsᠫIGwq+y'A?bJ߻ q z[Xe@S{r9NЌw93?J8npy'{n=OhQpqh.GH{_#}G+LQ2GF>9>%߆|_A|6 Pʊ>g[bϟ?0pRiޓ.G!븈o_7BiysG@Q2}!<`Gx@a]OtfgxϚ]-׌1*cvd ,mtX12*k? _1z^GG̞u*SM6oCN\;"lAlsxbk>ބE|?iWh +Bm5KOLjSbT{[-y~>o|ol~7}{zFwsS|kO.ѷQo[\M.sui?=VEGMazK}|w>noDߖĴin[K񛘽sdo_r|/ԩFî; cl8=![O=,8mlܧk'/8sQqmzO.˜@@c_@v@v[84Uu3: +۶7TDE=g%|ZYew8$]͔S(z]zo%в:hW*s{Ìj|w)X3ZݥeO\rc Pؿ5k'ռ,֥<7{Eoء],!"_Y'%scs!n>1_2n(罞M"6>W3^QuWlmsϓ}G~SխOk=:%ϥRU^'?^x]\+xdYqg'y|#I#{ 3ZV7:xӤjzg/랓w8 IA_ %πWnnT߈^.cϙ{cq̽VѢ;~ |Ç]8xwI'bU1Ƙ#-UяU>cRww11!A}'c<#}g#|$Z +{sFF?<8Lp >nmc\gw릤󤓀_){tL#qἇgoʟB_k oYk_-Qi/yCo}N۵vF<["w}[m/!P .Ƒ\&7"HߋU{]!̉5;_GbA('a^V0;{Z͝/CXyӀք=Pty.+޽qwZ;a6߶Vs@qh@ni|t|W\}H +k=Z<G:Tk٨۬`}ݼ s_ICv~\,W=nk;JE껃+&;4Ʒɻ(2xSƽ?: 0Ç\}YǤrE;0< }+xI9q̽\}(:~ #k؅ei v.t{ڡ-w8gR-FϏVt}n]um;B=%j#{3k{i~S!tj7]Lr:$}-2K)S݁S~\z}p}WC5:/=j,GoiXzѱ1'8Rzbc* 4[|inƠl}^w8bп*bեYzF^N/n)/lcj!+k.Kh/7aN +}ـ?z/y[_6Z>>Oxc:o݊a^c6~x |Y2ý'p1S:g%t_G 2ML=<a) }҅WErUSNXY׍:jϵUD^^ϦcŸeO<5civ)˴o64?8xTؽqA'U]j?/w$s2sFvŚܨƅ>p@~:LC_K9xn^'u~ +<ͫ2oL > |Ojg4+86x=;vm8~ݕGS=NpIÞFXq?s6́|9}lwgغb-J}3E±lPGgɭe V7.o{CE?g;o<%=_TN~<Iro=t{-w~0;uC?4ލ=5oӃv<3~v}WK{~ +>]b <)-!6N{m"7?:!o+>ʙX+WG `.@ԅ΀]t! HB#Vgox +nHڳ3d2fy=%ŷ,ul^nӝ!v; +iy{y3l\W男޳y y[|)8d,bʙ2~vc {[?6EHg,Fz'һ.Ev.ȿ2o}tNȼ{twAޝwchބy3==ƞW.^ǘ Ҿ=7_7e|w~fxNЧV[sݘUxF@=/UiȓߚހY~o>w{Y>c0_W0 P)^AY-۽&VUY7GsqY/"qQmuA?߅> _y ~U_2r'qKU^v +:GO3W pzw[o~?v?菿k=^2CKF fѵ2/CN:{C6 }|R?0S'MxihsUzH'M[n7՚1o|*s—d-Ð@ӦP5|p܌%Ty"D],<'M}Y.!s~^:`(-'2?,AKD^ի5o4~d%!.Yf}$rA4'L0.@a`vBRm Ő`jt:H&X +%3ՋD_)3B/jj!l<%` 6|Zf簝s̕:bPfG̯+ꊕQ-C| *+!_`h21dQ6`Ǎg^ r8P +~-#ɰ)uevuܑևL_D+10,ϱH6Wύ3ɪȯ(.EC`"Q9fI~it|o(Wm$i2? M̮$t>BXF,Cu$I0 Eu~ѦM賁d~ʰKKd"Rv Ec";u<K$!'XQr1`&, @$& M!zۭJԘ1zZT醅A%Jںf72Omъ`"P(DPm:Ÿ"=_$6_XCmg.g/7Ai"ߢ +ߌIRb.nGzAW|U2Jѐ_pMDu;jt}ټd(Χ?:?NU՚a TKo*aP`vB>bTk@c +Q.B#/ +|u57)LTخ>_>]/y8CD~}0 ~ )hMK<  +* 9eqB ѾxάN +FgZGdux/X1D/v?_k/ | $HPDz>'ci0A3F?zV}gWjM=όuc~3XŶ`'Y.WH+ʥ_@"Ch0^zP<_6 9\ďʙVvˎ$(P +A[<(1ioF7gϝ? '}I}`"+\Vf~oQz̤` ZdE!3oMzD 1 ϟBUrOCg/+9՚Ӧɡ˴iEs {ZsX|N]˪`Ij &λ#pEIDڲ2M'&O\< -c+ $'M庤\(T͙elI|)eL%*M'$|Կs*JeWHp;UI8`WGLNJBAշx2@Y" +gOWm,rLUd\UpBu: &Ыae$tޖ:C:'e*RυpIAc"}f*lPpH.աQZaϖK1a *ӌB$rWAf!Tn0u\UpzpAq~\L$B3!qGiÅ)ᣖ\{r;x@o]Qg&+]i[ C0'BZEһLt; e#I3łr¬Ǘz|M^bD臆rC g%%0!wzH'*:]Q&`16ҮBpX0 &VjiP[S܋.b,*v~kUঢ়EdD$Df^ Sz3Vbr&7҅ +ALj J +U/xCN"KpyM1*_& %j/l{8׮㐟[k1?rNyiKMp51 '` diOVleϙ˂ %14 %4{bz<2;o |>F$sHx ȘqT,–SpBrT?VNӗ{GO.eA Db.Nj?D/gU18?NO~8GnV'@ƲHɪKi3˼rB&8Xd-ɑ*z/+ctrTTSxzM3 έNfЯZj,%MԘ+GbLn|rjxc%D*HmyClj9?"* +n̢KL&bɢ ts'W䲒Q†rnm&#d/z.~N;ѫ~$*V&XOz-^AmB}}0߹ y@ tuk8Xg[3c cSHg!wa<2H#}caeu^gt pEa;8>r Z ˚˴|D:!$HG!WFa5䁴HDEzZ'nE.k-랡hFGz'NA.YHaaHH' mBz+ ,[#pЉHHbt=#@_r*4}ڊt(GZ؈v}H"]C:j !} 5鉇7Hβ?ֲ*Ezazuxxv#n=^kf҆M^H#lz`'{"-nYF>Z9u>) Fzb7!m|Gڄ|rH釖uҭ?BB:,ih{t?@OO"@z +ıh)z}8|D:W+OHK>2ݏ|ȡ OY>,9:kB#*AWܜǼUߜeD^ɂ ~Ky¯yԩt[EK^ ;= [ѽTV {"`S|]noK6ol[걢g+ M/ْC^=~E}@xs珷 x63^zm!SR )NLZf&,i~ Ń+w5xKK7hdg[6/jq/sc:I IRͤvm0\N}05A\ + ˯cڮkpJҍoRw+{U5hzO"3qg.)SɽٵQeOD |.|.%Kmy=%-n׎hͨ_f7|y f .W͗lJEY~0*QߊBҔUl{R Y"p2G'o.pt`㐛4ql˵sܮ6iie[Flm-Wu! Ҽ]K_ҍXzw)In->.>QGȫ*$L GպeZ\\E WXl].,qN +YtމeH#3/8d%[ůثJ% "5@ +$XĊ : +3RF$ c~Yc8++**>qcIpueثP=娥kBc)O7x,]+?muɖ[ݾm7*i _,zۥu(+~[KZvxG_9ov}O>g&vlu*ٸռUikslvmm[]۷JZ6vlrye3q#g}WC俴 sߋgXYs8A;4`qxu\obWv@]ogK?$꾃Kieܷ+ѝȬMn.ph_E((iy[1 ӽ=c}vZх6%ݗt?~! %~v[Lus8!_6zROb3rt3i]~VIƱɑZJ ̘'[tٕEQ +.E5 Q}ȒJp3#,jl̃.`"h>؛sǭF9BH<V*PՅaq(]KʲAW:ӭ. y/lic⺲o2v&;ap-ac$ 5fF0xcohnQQ hHE-RD[kUrd`,?ZKkފn܏q>6V>q>{.?Y?ˑ0r.s?r|;m!7oy4}/dbKDK{>pbh~uw5aʴD04 ~f޳n Pfsm9ȧ13h q>&:-"l`?c7UJlTV e#2;8dES&4n}6x @gj\R+  X^D} *bwY;;Ʊ |/Dp?i%L',,/PH?P4]ENWvBT6g AOXv玖1}?2PzL譍++^ˋZ*E  bSp|U][_hnÝz#/ +({hxs蝘pnWn&Pgi5wo9'ffލJӗpx}i|R`=³Ǐ|lݢ>Mߞf*ލ68Fîx +޳q ''">FHmQZ..L~4n9l2aY +/N~k7ҳ"rܼ Q`]= "㣁ɦ~僱3 +|*G;ƝNs3].x᪆${B{vg \ ݶ}z-msw5$Yᆕ'm~bK//zHeBHe@_&G0 r70G31Sʢ1,$x:"w0?ƀw&9{ƿ<kO71Bh :4@r0a/6Dm[l7(7'  P ã p 15h보vz^Kw 5@ܿWF؏{h9d|C{y akLyq&s]5{Pt.߃1uU?fÓC`"nu *\ʋ=,Âvs(yHbqzYU>*Q+ۘ|'Ȣinyp0{c̿ 82d8ѹ&sb,k@; dU$2{m3Fgb<}T\]φx3voywSƁ4q\ZSBL2ĎQopp GyM} ?jhpgv%wtcLg +Y#pw<9m0ՠ^r}'3 A6Tm$2<qW~z[\[}XcW)*dJK |6-൅6`?r_k:?gp.K<ԇC'Pe,zA~nGmӃ +y{FkCA~C?D(Dn~DWk๱?0p؟gHcp?y!gR67m벸CQf1Z2b/ )47R)pWaX7ehy7NOV\l4/B_~c1t5hq4g:B$!RH%]N BTePh,*XX62d62n}62gabvȤ^i+]J +V:@h%Ԏ'PI}qTṔ zFl<45g!^ҽ4|F#Ie:,!I`ܴB'dEV*A+ZBe?ȦvWfI:s |ze'(ǫc' V-EN,hl. +: +Rrn&iѫ8P&Gpd˦EdzLAGNXH BPȭRBekCˡJ:)n!jE( $ +Kr2\I\HHiRy5Q {P`MitKh _&m/9~nDEmW^MӉ >>J+2nP[ VaIAKQ1PmEYb _0 )s`b٣ey9Ԧ;6IAY-Eofk|Y,$o jOGs s44s k[Vnp^#g_4 S)Dw'^u3*ٽXUC#N!L@Yxqnm%x):@jׁ})e)%'>ZuK\Cr]" &bCH#\uRr]`* A_;2'ʥLɼ\d:)Q~o?aėL:k֟E^25uL ֝mkE'V_xG'kEE,0NB_ZAQak8 ED37mxYS:Խ|B {1FuNY  +ymz|M6ŋLw|-: wg~aA~]N76睆"}~Ɩ⼶֖<)$܆NUm !7X.WLGUm +4dek@][ 4W\n{վrkl}cWhFSډLzJg櫗Tvfo|u̳ﰷHEEu]+. +vC~_3b}G9zJ5v㇝ 3NS6-^ˌ6k&;1qU3cpI*2!^+9ƸКҚP@@U, 4kNVGg&wq;Ȏ΢fr봎ereӜf R)m*1YBbLA)Z}2aq83 5MFavGZ^<%;FÛl1a} W\H3uP7%2)֎mc擶cصmaE bN3({0ˠ& +GM@00x%^d 6|m3@Mro.тMV8ks"Ǔi5`vXve-Bx!@5ch>`rɱy?(Z da U8.@l\H4N]dEr[άfUO&Y [„.?\ +V_^I~9f2l1R$HީJS 4|`H _y]ڋLu뗩QX%ݱ&*\It.EIf"qk%zgOVƉg\*^SxM Cup,}V+ႽbJDxJ*.]XV.Zt 71P ujX T! q|0T= +G$z&\_-*Y LW ڵ̇@sӅzCZn 7n  |!;triiVi_-ɴt5!4VǀSlru2V'7 35:.ZbCXz=ݬawJ[Ou90b+L#9VthTQv#rRRuu'XԵKz,k(::mPDbgeP'gv\ODQus6 u_w h^k9 -J.MdqiM-KԳAjVuu\;0Qykt2#k%[ɪޱ%XRH,%kW-vՒv&oKkmtKF͙؞X[h4У=qJtzBpurMEkށh FQv| a# -TM<Ҍ`D"KCflE()Wu4wR>O[)57_iBBG %0. H@]Eyt42]=V+=6^l5F;5*z(V -U 5G/;#>sJ>耊.cԝeˣVn:\laߖKy4*,Gm5/]cA~X#.NAul܆-Enj #0>Nl*lf4%, MZ>oxq[1YC*V?-r8fGBb4EWgR˯ 3 nŬP߬]]7Q5#3ב -`+`Q(+X+w?pj8 9) ( * |T׿>0`οTT)R5T׳5AyZa":?6 ZHu:Qтe*m]E!ʺkn룆е=yԇUQq^Dwq -wBٕ:s@ -zA+N2趦֘Q7xw_Ј3`w2;6Fj;-C-v7 OA׆,jU{2:,5"Mށ/lTZ7ƨan,z/*ֵjkLluT=:ށRWk[?uR *aA򑒩!5_TݦJƧQ `GW38!' 4̸:l -ޢc -E)ZN"qڥf&QMSpk qz6'Tr+[-&=7wuS26ҷ~]7@ngdR4Oo#jr -|}~zGyld ̤xDx=n^{t)ioYfw"_$}wM939RSR,c ~gQ0ӟb3YL~h>+_  N,Etz" -џCMg/FOD{C]~8"ϕG%i~ډk9C#3%.O9~D/Jt]b|*xpD?K|xpD]sKt -DD?Ox]L:'?|0<h7c6\ Sdqd>siv}{A뜎_I2!CZρŝw7GGAD][= ?̜~o -pڳ8 clAh Ǵ;ixF#Sƺ!?{s]gݮ~ 7l}Þl/؏5v 2}yEgl;7 ^Pnrű3O{}¢z|CƲajtE=/v>+ۡ(7uMǀL ޶I=s:!cqyNy^㻟b52ttsNnwo*9pCLmy(z~8,u{.0O\~o<2-y.̙PgB~`L9X^y͝)Ej[bjV^3yAUNir+b߀4^߄]X>H|' =OgEȅh;%| KlKz/HK/z6xC<4蚟otx{玆;#^r>:OoL<>lQꚿ?r9{ۂ?s;̻XHPV03OG#{MȂ䑆E7G$pNI8 '$|, 8 ?ST,SA4"'gS=p\^qagx);5f{3eQn88s\gl!8[{wqT3.q'ΰz> v -yq'/,g]id%$ۓD䡙&8s\UIYJ|6adT'G ә(ҵY &(Pgyb%: |8|PgeUW%I=x(]@)].=j!~l -TzCyeU$98$oDf?8\8W:c'Ü"R |GKluy~B^Q8# <+/'lM yEB%>cs 4?qqK"n'%9.(ey "ORAF8Z΁EhhsQw"a'L^a.'}. <~7|q!D9_!AyrH$ {h_Ov(>.7,τ$>Y.[64߿bxJ]ȋ~ o':tT7TR#O࿁9թ&cSbc#g Jj{Wqݏd'Vmɖ1:Q>y$E.QbLhG'nuI'rjԮ4ET([6M?&$Q -C{3vHHy{G ʛqP 0# Ǚ1e¹l2ĥPrep4y`zF B=X:p1,= {M14$g].i]aHS(-uvnj34tT%0ᣖc[Mk8͐.J h)]*;6,`.637ryZ,Ut()[Ҷ6WÅUpfk:ȯC\b9T ;D. -B]9b2pzHQۚPPkۖFKȢ>s;a/u+喲{1'v(4a#]m}{l{}n+U_ǥA|:hG"_\yXɿ, W\ႎLG -~!ni dݕ|_wGDէt׋.dS_amoh[@6|exaGy YP4@))_G1KƁg?韯A?K}=Ϗߏkk~A?kp~ՠ?_N tL'~ ~L'jО{_`u g>vׂ7gۅcs -E;;:㤬)ӥR\HOx@@T% 3J&AKNv-G7` 6.A1ÅApBL[*(TǪlO[I׃DiCުG$[CiVI/S}lrJ^twZiuKh RO9/H9kVIT@ű'FĠSql- dyPUUpa_WqgYQpBWnm*NNDɩ6'U}NɩT|S?yRqr(TMEt*NNՓT89w*NNwS8Qq"s_AnϝE_EVx<+bs_<bg<4A\>|ac-oӡ s/ -AEH·gzclyxkZϱI?pxM?PGv\,WͿx0 pqݭ;X}~ź&ܡ|g <q[{`+B/t#F7B>=|NR7G7F"?$p/ ?oϝ^"~¡8N+ %>=g~da ,gӊ9;45ḹe?GMyk8~N%/v.sw{_ҽ r{ҪEXQN40?c=0{'d~r.[c`e|^\͇V@4vϿsПq3lI8<0 p9S/ ~D)sIY~ e병U>vNs|l27)_QTq#̱3 -4^ &櫲, ڑУP`9#׮π?t}/ ?ɵkx4Xk?~x7Ti߾R]18u;r뀗ۯz)rϫwg}iW;^^T{ &?XcHʪW}3+{_\q)R~".Ueas{[2؟]k+k^]x!x_]ٸRiP[ g[wuWw(Gv9ÑݍlҜ]ɞFdGxQ<(eOv27?-Lv1 -=,(6P56S56M56Ptdc#d_dQKw%WLMm!7elK:k-QdO6uI -&, -ui|׳K-"[}9qc Cص7ۧLirdGvi :٥uWDZ800^űzH|Qc|ZObNDZzE~S|F!x^@? )=_-闂cϊcױqlǐVFOs@MO7~plm2<)O9j?ֳj}WDNLJmz?'3ZGDZd*qlwJ"7OJCckeKNNt\~T/FZcI'1DN/c{[E/ִQVws}!DU;'=c"[l;=X ~[ֶ*: -pZtC©RS+g"ʨ )Kuf9)` AJ鷋SҲ'#rl邹l!Znoٜ.Ŷ<:+ӣoKuu:I#@J7I3XsܩЏ?ɤ'<Εy.lV>\ & :4zhf,q`5'>d𤾔m{/TYTH}DŽn/w}XCg_YTH}DŽn/wjǠg;b-qxR1a}_@F}}bE\Y[ -y~޶amkVok7~Vv"1*nf ǛY[k[#Ldه-h &'c<Êcx"JL}0B fYidvDXY%vY&+;f`fOX~tO23ڿ K&4a8sQ8L-| ͗fE ^H;08"H %FGYpdj >6ؓd#cɑфѻY̛9Ö?ו{3B*Rjo3Jw?4.ֶ0q6˗,Lg&f 3'`؉`<2|5 еa"}.g+s5jr o{ݫID(xvZ;axW=,6\K^a:o)pm'(=v\RfrhF#=JN.MF'"3po`_jH3 OC{[T({5N\h`!ܶ]6\g`(ĢxrGHJ.L;ʵCႀk].vb5Y"܌*ܲ#/W|._5F(@oW dtqܶs;<趲.;q?^+V a?@|39l2alA"ENrlhECJ&]mkfg׺W~,1 -ɞw<^*+W4y%ZWb- 7yjol@EǠC[QȀ#4n!2S0Z?>:оZɒ-c - 2`1?cl"lVڕelZ\228J-9m mqz!mO\1c;|&-(k$ - ޙV,;~w;w>vյji[Q4R/WWDpfmY{.FޛLv֬pg-nӵ7__s޸3^B }oiſisp.ؒi!ՙT.If\4\$\ ED2;:L̦x"5YEL6:$j辟\=uŢHHy9r[_Z9~Bqc|ZgR8szzBy`Ûsm=;l'oqc$L AM ^ &Pa\.c|w]rMvyu -QKa~$ ޝumv4gL,tT2DbX쌤ӱTss,mFr]\"fؕJteN,1tB?%\7&Mnp vgsXƱ)t`ޘw}x -M w9DtDZ$%4n(5 -7b٧ #Mȿ&5;J927^?ngs'АjL=cco禳۟{hD41>%˰Diqzѓ@nQ\ -*P=Ǔrf_t`~`k>zn`|dr兇 DG>ji:ZwHA``j V5Jp됷70iVo>hIz#7YفnΠl~UO<ea{k~ FY6?GvGn?d2$]!9^9 -O|T02Z*ֻBTBi}q{@d=X)zMn -9JTB!ܝTzCdis!P[l^Ҷݧm#ĨMoV{||~a?O_d+a^}Tyվd*u6;2Lwk|.2=bXX>+о*B!SZɰI2v -j0~:Tu,,|.gl\jd B3Rha `%[ ebPoQh˞yX4YЇ." Zuiu*>sP?{}V9VFiwe 9eȯLy|'MGecO~)cv?6<X?5lG#=5XwRDy[;XDRG?ۻ,';^gD_Bڱ~~Nh/ұ~@K{ml$~{Nc݋|8VC~oc{Mnj#)j Fڄ|t6/7ѹ?RT^?Ve 9^B~cJ -,tPkZd])ʌcuWXBOsłXD5u^54rݱB׏佇]bߣT,czz/nڍa-71"&)4q\j7E#-/LyO{!"\7P=4Ph}(}~DCBONzIƧ/i¼ط}(H^>اBڴcHS6qf/I=mw{ۙus*şm&ln۱kGq/ |(wdVK'OʥߞS 5պU|#œͧߩf+OSN!b* W}09Γ.W)}pDi_NO_N6!=of9?>~{.U[o -p1zNqX7Gĸ?8Jd"ɤ;ّͬ0;|BH+$2H+OG:sX*&slg*ґwrh&#Q9ptb Q1MrW"G|"Q/O4G~_!S`b(.I|kA9),JO7hHÒjem*k[X * SˬɲkXT[;CG`HR~IՆ_VW#nBx7R0>pT-3B;xtYOJUܫ~;a1 S n R++c*V6UgR -"ߪgP50wtWc~wl"wfA5Cx_}30jtuRgo)5v44UÍAFE[ -J(zs M7!E繟$_UM긱-җ1 -b3-Ԁ.kR p}J92tU|z7GJeӘ<';nlH)DvoB*!+i ègc9RBH)&G~б^A^C%(`9UR3i\KsDkP>xwDhWPN1J\o#D^Gys zE5WQڱ9[ȫ!!GZNjmb[.C"^b[._X%ڜXЩsc__B{gҰk'ʩʩʩʩ|s.Ѹ#=C8jBjq$r>tlnֳq׎{7߽k37%:M16Ob|89E g)Dcx3{}`cg,9)^~,γMO?S (T>]i $4L|dƪ`]$O&Kts.DSήX*TLvbx#$T9Jh,4+2_~  eO1M2)f#{?fs҇x!gы_1At@cC$؝4̪[h>圮1<#Ob>#̀6huQCuK5usoQxZJo>*+@u*lˇU0te$]0,Ũ :{IEUxkY dJ 넡븑~5jP 4.#jwN}6}jНgj}Ey.ĝk:kwҜEY)vlGjp*\;2m_(旡%9y:'UhW>P>UC`.cP*a Y-,ba0lh`!́ϲy|\͇&V&[Qs1GGrH%z ?Vjd?Ћb>}ruo2a sGO?0G0G?\}cV!ag'9ëbf9ZWQ;пxCx.9h[-o.wmon{-O]sԏBM?7sDrQMo^w?R.(>#Q?I~7sDrQ?E樟_ s7QsDQ=9"\`H.0G$#sD/0G sDm -sD:sD s3t~;{G'{II/FD$v}Ptoy3_b09r Li1CuK/'}~TRx։I6:8?EkaU.uki|qcІvLfSf3LvtGg.HRt&²D"ҕh"elt<)hWy<m'69ʃ4ʃAr:i濿k?Mٌ/La`bo%Z)Śk?Dk?_ p+кh|}>0ͳ=CaZGЬAt*NZ}\^ZTfݪ\vONO -叭a~@nۣ'φa?RJ{NQXj8\َVc M߱fZձ tqp{kA<,}BgEzPXl|Asq^Gsouo?W6ںpW,CͻMR* ʮր*7V@נ/dsί5w-i9͹ xcS쳷 -Pܾv)C`ț>>x>>~ǟ" -^8_Q<磪UJ޼Ę,Ph]ta8d| ˫ǘ] pTU>I%(E|Dc?BtF@|t:7INw݉AȨ.-qg6hAє;ScS3LƱZz!KNV9aSavxX Իnyxv7yxz[B{kfG?I -B}Pp^^0.W q|OɎFoo{#!,x{ׂ`J:0a46&nbSF=+eGU7~c/;Pxb;Qg0՟ꚕ)ݴ 38/?Xd<9itGD)`Ogolc^Z"&gYK,x6/gl'EFr밙㻘9ekl!"_Yb.Ff_|9>5E]cVmQ-(O,6 9[[Bb^n!lz~EH B 9,g~?h;93;~"ZPeζ(,u>tZ}_#̼ܮiQ> ,UcТ|~a!nzxE_h"_["S,c 93-4a簾Y8x~`2ܮj0{ 簑*S,5_}t^?;aq ^c"="=~$GshJko簃o͢ VO]Q%wuEzdrBj~K(w.S1$Ko[R _TjN;蕻M(ď;K8v KtF6y|ڀW a6My[, 71cջ" -6"~m5 ]Zp[U<FΊ3e=$j2>5]Vg q!%'O1N{:KXQ=0^b("'B,D-DbkSGCTŰHA>@R48 ŧt3‰n  BՊwwah핢r,رF #a!p{CcHL Bjj1Y*xLGZeEf`xo:R:Yej9܈W+1"VԆ |+!c$)q(_6"Y>,t8>& SSg騖yjIuDiuPAk $D)TN^:Kh~H;[)*:a(SWp8wcSE<ЏAEQ7a% ?yqxUd#|qj[.AQӎ~;nxХR.B<*@X3v va)O:y WtyD AVk`-$kZTѤpltUXM@R ê(`$ΛQ)FOukH'"Nv< 2>?Kİ"L:AdޝuC18<;CKt%^_=5AhojB D#mg( -܂rHaove}% 8n26L4 -6y|@[S{QC`QXeR5dZК DamtLӧ -x,ah.@5 -q^ RgYj'H_mkm # fX)-j|Dy8"0ϡ'*"%8MnI -Emzj n9):^|V`LzOVFkq}E(o Sե*Lh_= .Wnmw&EZPSlO'6*= -d0J= a|ďeMknKn^ 5x>S0;P1a@袉8d2yep^JG]ù[gnUU&ampW_ …@!L|XWpuj: -7_H^Y#9K\%$rK끣QAI嵒%>Oe3ˁY6&tr \قʥp곍|USu'vz7x{ [l3Qo1[+|'4G; xX4ş.^#!^6τ /3 VA x.oGQfQ>|^֋5\yNpKO-]F| 6?,ů#Èkӈ$rCo#x"x(,(I#hrm!8]?JV x3 ] >DMpG^F=_NQ W~^ ?hnGHų ;H"8G3Dpd7OBs7Bpz%d$a&qt(O-+"/& N , >5|=/&x3/!x/%xE%|.|2?I OpCZs;^LA/ ._I!-B '{N(75w%?DN&&]8 \@p' NmܙN/&8'/'x+&x%kF[O%o&u RG &x/o! -o%8ů' {74Oj x  ^K]C#n$7|?H?Dps Dp&M7 4W@5/$8]L%xw|=㻛7GOs !x3o#x\Zd{]Կ$E? 'P?@~ -GϢR /~B 3ԯ_z ߌ{e}ۊ?zcv~7gg>}Sl;cL{nƜ/_swf 0e.s}0{,Cs?Ao){m |re.}s@㿀׽8qCRBu*H5=!S[2_9W ll2gRyؗ׿Tn^e癗xmyJվ\dπ}.^L^H/ʝSXyL{Ǫ0r6n_1 ?vA9jq?po?CCxoG8 -9p=B܁t}~mfߧ =(_e5"O^GlS|ˉQԝ3t//MU sٳHy_8gq<3S<})3*|/s>FS}Fyt[7OS(oh2 y4y+ 4^f́61lzyq9n\^^(lAO/O2eʛ(VwQ^Q+7OS5g)?GyeFyY f)/˻(([y^UދFyyl^~zy|^vt~RS~Td~ K|*~ץ%s*?_kԟSHo/+r1ݞϒzL @#DQSC] d?Me!ǩzZ'OP/4:|L8_@}]gXm7)~3Sΰ_q2k9';A~˓]/0J~MH2_2ѩ#R.HʴJQ+H'Ren*?_uPVTptyRf[5,wyrȶf ~$ڲd~o X%מT~-9730ߋZ>n!ϵƐ_q2'˳.]gnSmo f"i.ґH"i1ېN@i>HCH#tґHW!t H!cGzR!}-H#iHGZtҙH@Z-HEiH?Bmm4\帾טb^ᶯHqyuM>9y>SyVN>EvR负_Rd \yr<`g<-w#Kcn;s#Tvv 6 E{qugؠ 6 ?bZo*#Σ9i݁X-泧CK[X]{;! ~n1uֻ7PVOmʅ=Iݟ`V{9h#{Go"d gXo#OL >CoCf{[gX -S>۴iou r@7@^Ɠ.=,l]Ybƺ|ڇo{ȿwFgG}>Vj{ -CJ5wE9Ah僬I_'z~afrȼa urȌ9;Y "㠝?+" m0-, ~>>@^KI [A?o 2=ٻy}O'Es^DSZ%u^`cg\1}9ИcBKawCu_>!ˋ?lK 98 !.6Ҷ\ITWf -,MkX] Z07rw7b5:ckswy@sj\+|c,u+q-uygE7y?]y?CQ@Ɠ}@5SՅo@݄L'ߑqc|[ -))| N|;z|)|GiQ^:VvX|Q3:xo'ͫiNd!eLQvΊ>4/Ls_I/'E <6b_4mEc{ȧ",g/ -E:vX}X>ɱX cDS}akYȺeF}yXS1xHߝH>ҿѮ뷑fl \Q.^܎2s q-iDfa?Go9T+"2 ~'2c!4W{@{dk>呞n; yw[ao{ϓ. -4?7fY[1}(d|"ϓ{gl"N(+1M1;:9ck.Xm~{Y㗧YWnHhO:nվw%%g"o܏$5>;N'㋕܋lH@*?xkiS!d~/88fGuv'_(N7Da {&Xob8V%)nyԲݖj8\YɽrW;ӭ҆l\.y{b@kIKn*r)7ːz;|ב~o7?w??68ȋ ^KC#mF}dX䙟9x]pNfw8+/9sv>~%~ WyW ȾH-Hz"#~#r/"Q ^m)\upy". >'PNg n67W66[_tPX,DŽhHXkýfAe+QbCeklJbCFyXذh`;jV1RD/uGe";,fЭ]˲B~9?x12}{d\a%xA+|-5 -yne3>>*} f:h6mX6bxپVp[f#cD)g=41&𙬇ۺ^#jEWVA`54 2&F;pK:oM ZFQNA池a ^Zf*M!vC;Tβ%ЕFM^w\S>C.)0 5ς1Gs_g3L';7>qJYS9j5?Et?K^Q'q E!\cND"ʄ|㼞Bpgu㏡'4I_!yvg2[ eYSvX la%t:`s%MfȘ"خ&9=ivhce=o{ո/G^S4e#CrS 4V|E- _q?qH~ƃC -_ |Ɨ$#whOVY—>Yhz -M%حk(X-\56{]iħl@\wM^>ԋx§2į~q\C - -Wަpq}ό -<7O_!񋀟'pxE{0t-Ŀ&ƃ?q{P}$te~u'{4$ޢNoh|)K?]>Hxq_ۀC26dzI{VeFj`ro,h)?ȧ?oܗ!.zI|= e qXoO -X|O< -_ n#-]Wߡ.p X]ˁдAM{O\Vγy}em#yI{7r>dg⢿Ŀ od%ޢo O>) u/6rJz_+FN_>Í{ϐ4{> -x$񋀟a'S}[^7SÀzhx+6~H$}{P4ʙ-4jxH'{kOMxPH 57WO7CTU[%27r-G{ϑu/6rg¯#7n&.Γ4|PG5|{GH"g0qGq! xq!/ - C7H %]+dIJw_⾋$K5H N#ׁ?is_x\?[Cz_?Wq^;">_~OUqFRxCz?~(|i\?凁/|T z#6"Sq}+u^nw\ ;F~^OEsO\ǿ_k -/>I<ہO0".T{3qF~a|C9U _5+|"u\uF~- -4gT\|l7*.r~.^'UG4!?h?C<,4 -{U|CKT}s4J\x(4xXߣqWҫx}7)^j'V0x7f#?q7 *> _+#x79 ƻj1r)-#'q/M5_a -o}#xwSπ/1r+'=ȟq𦚕k[s}w7 |_+A#gf!ی^&#?M5Uo0S7~z)<OuS f'ަcqꦚ)/52NTs5 9?qSooQ :Nx6_ܟԳ \ǩgw%6oQ G4@ܧԾ?x+ӁK  -wH㘛CC*N= Tc^,ϑ>3*|C! ,d6}qE;/Ē=KWj~-:<.yJ?ɳ҇;<Eq>-e|oBYϨϫM q 48-Z?a]q/'`?ݰ&Gve5edB>CȲtڼY.ģ@='c?ϗt?J`-G[ֿ$Uv9ȝn,qjRmcYK]ɝ2 6wn^]}]+Yr#6Tc~G\Ͱ] 7m}=^B{ݹ;ЇKx yO3-|Jwp` -Ժׯϐ:l"eb}}U|&F{4`PZ%nܧ;B@fvxzvso{nq 0Yy:kb=SN'n9kc;{M:a73>uwoJ}{8hw;'^]뫞?՗{y7:{^J}=]i]NUzG]Rߎ>ᬯڎE?.$PK|^#NP/5)v K4vbn[w7KKo?2X7K'oM>{QOt;E4DSh-O/:\z߂koS wb|^*'u~͏Ś3q}|psg@;_s̗pbMn!>$HGK|hH^ 9m?M%񼨥Nہ3⹶C(1kv~/Rݵ!a5J}dFi }˻ivG83;,Ę\irP7q]., CnkB_Wd]/Wi*O#gO?m c>VB,^CSv5X9|Q_K|[1ʪ p%4]okc-1cÌcǎ?-mj]?SY~Vt;eăB=Xw84πW$|tgsG/1"FγɤqJGwoZr,1-:2<0|QE{l"7YקS;XBZ#hmUA7ےNH~҅=q!1q rؖ&60-Șb˜u#o?+1GA_m{BРC^/Sy3Jrm*顃[,cen 7vE8F֕AДw@T (zNbইvBM}7|=GªM\bP;ċW|_##/ [:}{( >:ͽ胻Ժ+ZߋY <7ūSD%8.$WwBYLԅ-&V.[+Ċ, eZ/>k/2Ay//xxo|-_B4rCGQǸ=r|61 Ĥ͈go_p u\7H-' Gyo1 ?R^v?ң;Hy9k\v&5cKSR'a|>% xd{|v@M@,u^^y*S՗DxMAH(dž -~gsl߰s_rO1"3J_)zt=6zIɔԅy.||@nT_V<֠!o4sG [zdl c@ƚþ^vky'џ|cc/`m0b}V=lD1"e狀&x.p@]S1gP|e2uE -;.O$H5.Dl pύ?o_nlM(G]n\+c}YVOHĞ!#Td% aqb)ëKEqV3֒wdEȡِO[ΰBh7 ~N\i+3+C9< -c<s2 wrdg<'1>!ώY̶3feH95gVƽVW;fE͸_<M ;?'}"DsCD;Q ef yT|0z?ÜiFA:Uxe6AX{W:u}4LQ/Gp_`E!;2YpƸQ~Co\?mKr~rs}6l -u{DׇHݏ> -\ܕ?1G{l2ǩVW\_ؘ~t$S؇w2͊w?*6i u67_ppƤUsK ?镞ah96ǶDl$Ogp> )m>O8)0cCU,!fM}.~'4Um&me5_;e"܄/HF~qU]O׺B$ۓqZWcHwM/)g9V: :9^}!w)/`e=_ċwhUso۹#兾mۅgv%}Chgc^"z̮-\)9ފ}qm۷u;Za:0K~ͨCș} $Qe m@S?1L|0.;njs-5 UkkY'ah:|L˾c|jy,u`}J 6m&.y|D %Ge(haL=+Lb3_@gqqpȴk"G֋م=D~Oh,c*dfξ/`CЧ1~wG5}(=A?;]V~8/:1k#+KKzS(Q5%hfy9v\k~ Gr |?P󱶞bTKt+Tz "vobps\};f_>~-N-֪Bm9;~VƔձ/W-ճY[AQJOqm}c%%TDyW8eyvypUV)V%ւgO1vo_섾{&B w)dSw^G" 1̴LC3rB>1r]V;QҒuJTa:~\ tyJ}>ey2_Sl!fiF?I8u0[ r:u|^ry_ -9֍Uc[Ŷ{E$zoq][?lW X[a3{gE<EZaW\w8\Dz;1]㇏kEX{lbIJ'Ppb\x~̕-wYS8`tJRVijRjm528V6tjߐgh^L%ڎ>^Q[3n*VoWz}-cʗ_ l];y Mf2O؋GYwZ6jF՗a;VF X$7xR}]<""s@[;šr@kp-D".qAH>¾=]cЉ=9+j,Zx|*;QDOxh}wszg`LxuXɵz2q1I]A6a^!6 PfS)Ҏ^Ϭޜ,ofb vW3Gg&ۅQ .HS^/֯s͙4ihޣcڃgUBEƯd:#q}BZ8,[ba{E)y;rĭxx~b~t#n|//nM Ȗҭs=U''d1kDV'~5-7mY˳-!!k7ÆQ۪iuv=[_4~(y噵-o#n+ln\Kt1&=ے!_"rsޑ&.\s' ^`<+!.ݲ?f o\!>އGzhV'bϳ87~ -|w~ IGhq6gSmQ-;NF-ߏr%WEx=="?_'ƾt8M__Mfi~g5yRsm4lX푟[4KM~~ \.+nY}!ƶO ቆF};&_}<ߵz3׻k wo2}F!C¨Z>|\DgهٗsN ާ迭=jDzϐ~gW?cܧ5Y>}Q83h~z8a1umqmS!G_Gt'i_Կ.ٿ.x*m՚3?G^8 icvGmSeS!Ö?wLձI:e|Θm\}/3z^˸"sVe}zj4 tGMl.kÞ=\̖zX0QC;9lO~:+_Z?6C~K4vk/ʥ-j[^xni(Vk̷(稜{97? eP}';.(H+.p,=XXP:=0k/hKAv銎?7oQgrv9#vԲ%׍}={'E7\g/D^A{1)--7~h)C[֢3;"a-ܟ0b\9K'cM|ki.պuA!%uQ`0|'}\ du곡gV2Qo+i +|6gK}eG/@iۗ+:v\+Q?;ǩmM_Վ҆X﷔k4CO -֑zd\&.(Ӷ̺ӾhoCakqrO|;4كdNw--qT8V#xa)7UdzYy[op11Eq9rY4?Ÿswv[˱f:R3-ǙMwN|YgqؼY*?}Ծ裊&FOسcq -JgE2\Vۏt·N)$V7OW  #/NaE Qy#)ru>lbT3&{ -]֖:oq@n3 |ΣFsir\$E86 }܊8{pτMj&zO=?e~2cm$a0ssvv(VBc}CΩ |un@o9팍jPqJ 8?!SV"Nh[S߈SVҮH}nc>9]dwB?u)bAoD_yz}'[utP{BS6!]8f֕7S5.x\_8ݸADž{do.p)95OJ-g*% 6n>5X&?f{#>Ž,0!9=;P~1XhשZ>S}foo!糮.+ևfc9C[\mqʹa,NCð_K"lkqY=QFGڠ2kc,g~&A]obT d?(ʖ#9Nʲ {O19v ĹM;Uٶ<q(tC'BVg(1T+Ԍ BՕS]ɯ;^#ovhdgz(OyjOP>4Vy>!{w|(R# GC*E1r|y看y:X]$NCxgg'")M.GL39QWoR]5Ч:lCǛhᳰԛ戮5ef|gw*rǛj/#.ExxiӥwNiׁ\k b_]ӳ ڮ=<4XwK<X_j)ƑȞ%ʽ4>^%g|ė9dnr7'>ә1|r>s4 Pgb筢h ׹ϸǗojPFN~/ަ!-coA?5q~)69}SQ5GǸB{eF_x>j+39k s?$"M;LeB<9xˏ_O[Mα -^-** z.~/6[/1y4Otd#ӿw}K%eO'-_oUNo%[/nS[QNo{jk만^8xkcju֗hw8lx1%ޒt⭏x4nr?Yr#9^y%;:X~pYLwbk=n0Fjfl b<}~`l(ȋ6cyHzj^f}|Rdؿw?ְ.{X3x;5賤]bwjԑ;qn'{ZajP< vPa9i>(cc"㎴ ;6D؃_{Z<E^Gw?c48z[veO! 34cMϩHs<;s/@!c!C\2A=>E'9&sE-ԥ.a~rMٟ Eg@?)=Ƙ=#Rg\ }bC_z" ="#[),=+RZ"ҏv=}~\C΍BwgIvvO>-M s8G -`Ԃvw -o~m] _INOa7TsZ{+I?P=8d{ЃB2NtNޮSLԵlt%Gs?øؘ1}ȭh_-| %_MKFv[sͼ|#O܇bj^$І-}(伿 -:sM` M@M\Ǻm;dqg ݚ\|??>ɯ&4a~P;'?x1v1gl YH[|oֿwx~ -w ܪH}6YCZCXF1yZ2*tYW;{24k'opoc6_zʭmwA|N -a{D -st¶vyGJ'|!y?A`ŶnpY7-׊mn5W42"|.;O4mYg48>(cWwGgyF;|}3m.,>\W^#& \;\}X;×,Fl԰^lD \1Ayݹ?r<ӹ,H%}n粳xy=En+přACS|vb3;8Z:tVR]A:sq/ -\~‚Odi,V'WUj+PFõr/uឮŲSq5AɎ{TWn LE 62yc -PCaw/80+x4-jmmG܇s&i,WYߟcSqmt}tvӃ}53Z|2hV羢t'_@j#٧9Nxco:WõB0]B~NXFHk{!O?bTW9~$xrT}Ɲ|Oe1/1 \OˆL3c; WO4^9&)ج9SVHSwz{6K;n6ګ|Ys/7 ({Dd;u]-'W q3Wx?ޗ0__D.#\H1t(%z%E[ZK6 :I&}>k%O=t{t&O=V/G)(=;=wgPĝ9 ̽7n}W՝so<eW<1[賂xuy>yNkϙw#<{yM.uFy6sK}y7O}y8y8ƼTG|(C!j6y[?ױ\kys$eH?IQr_N^.@[aW _Wqncnfs.sMr'+ؚ1yhSi)W K>[$oQآ]=v0Έ-"w"G;g_l}eؖyi3b87Β}1;տErEϴ}1K_̎nԴe+G_< -VQ_uD8c(;} &H]3͎^Rb>{j/C=S/TKS}@%_ﶂn=%Ee_1C>Ѓq-NX[Ϥ@+~X;W$>t$|7qdȬ 93sR?E+@+D+F])߹$Emb= $w4Raaٍ?P*>=gi>ߪ7cgw0&˵Q~s 菩ɛV)ϳMuu3nWr'w$=/>߱yw+;A[|(㈵01^<?5Cק4g:s41BC=qqbt?,1&!CWrΠwg)#wMt/#d))v+F-acR$%m9ƅis^Tq$]DxĚٱTVg[kI X_G;YgWףI#J<׼怴' yĿcqU.>qk`aB:pHϸz~#ՏZ㯝qφ5S|=&x]݉[εc>_x͘e^ڇsDR u[mzcqÅ]n?\!5^Nm~vVι~v Ŕ6 #p߼)O#YgmIXcyړ wwȵ)xCs<^9ǵ>zQ >dO֮!s׺{HGF_Q_I?7Q'.Hkldu^X'P$Bg|빢׎v*D 3kDP3| n®m@ZaOm滭M݆v,gd27W_sw,[ۚelW'֞V;V4پ[>u_< C:Dm}N=o30;ǹ~6>꜐#5y Dl[TB_S4nyyd,oĤO 5wrΡ^u~ =.{.?nLS_,x<:Y(ch9~0g#s+Lޟ;@g}t]twkŒ8hUuN)^ٴu7L9y<+$o=ooq31ήhϷUwwB26Xg/h&a{}O~:LO1tTMw]O|*2}Nߟ\z1ߟQ߾ZI_/-yjM-ٻٻ -0%-Mc;#\ois|wW(dʗ:^}:{A3;B٢d8`惋Cwoz=]br]=6p؊f\KK" _>{ehyNcu', 9tws S7D E)߭Z>9Зq sȊhbL?vSɧb;Q>AkVl4dK:z O@?z릯9~4[bݔrqI ;:=<"Uu5o!=J< n%'Ωi[,mX pa(ij1_?iEv]i߆W Q}8;5 &Gbn~/wcuag&=5>5w2oCZ@mx10 -D"W+h@/ܚѿC3-K|SxƇ8̬J#AM.Ⴔ9Z^BXW@B~GkPׯżnC7bwާdos@qown+13,\9 yW~'(cZr-y5-[˹'kCJ=Tlr}U}'-y5h^^_J^nhڐ(〿o+}Z>+4-fKɔ1RB $Xm8׃d0[}`|? gBؠyv.Ns@}< -&>}O-=Q~WgY[@;;Nƚy-xEؿs?9|ٝM{Šr]mwk{ }0_{:߁^]:L-y-|~zhG}Ʊ9q-e3_ۻe{ĺ[ݽg;;HMs&G -<\/\ `^8cmAȽ6`\` r7R6#86 qsb;P2~Wʹ"-!=x796·`Z^IG/a Ĝ<[۳?z/uZS@[}-;x.+tB<,~q!|kosp 7eTcNv53oVz֍[o򛸣vG{7h[8.ԳjDKͬD.f)OSfw0:kӊ}WΏ\w :8.6w5K'1'M]sivRFǺNw><2?˵;[huVxlO"%3wgj~"|Yvډogx`A8j5"^:Y 37_NG}'bwtǡ#'^:!j:a)ls]S}~/u°G?`yamƩMb?lN~ŇzG~]AkoYU k/#kOqiZ ҇u֗;ރf~G^䵣?} U=|뉿T>#ݟBRFM>wh*Eۇ{3і7"Eqוhn7m -C♃&u5kc<,?q*?>H\wv"[qV򢜇JB|<aM7Î CG!x.r.D9?sIT><(oQiVgChˎlώ֠/7vǽ!=|=8S}+b #aVWd,{L=jbH';+n?98|ƘSY]܇ pOf?lv"}w#OuE~(ݑGv0AC!Gi 1n WsYA_Zq!ׂ%aШ|EcYF'!,Va^bUSX70DK/ -E&L=#eϪ{ghiwGDv;ԏzEN]kæ)[ 6vf>mXҕ-@9a+ AFlןQVkQgmԽ>ZЦa}lgcEOծ|]7}X oC۠?8 c@hBy"V}nrd1BZ{vb`r?3@,Q.v<"𼈼z~dcD{=o ڛuEy6{6,ޭh0ؾlZv lg'laģ{ -? )-HoFz[kCڂ6oU ݂1f@0O#tRhۛߚgp/ܰ):<||78*ya7|ў|HG: S\3/GI3Z|4/3z;}+7=AX_o׫Cj=(cWt. >PNNzG glkUA[q` }g8(q$/Ϙ~^]Xb7,]HÈGbM#il1g7nm+c8b`KO xwzl37ߝ: ֖W̝>KG^zɼz}];[^SMu5ު`̊oݬ\;+F|EB]qEZUU]^Z9N߯ V]W1wfݬu}ܺ꺲bJI%UsgN VӋk|3+.XXQ~QPeyqUEpURϩS]yus* UV'jpzI9ų*+f\#5JH\R]3fb -+Hft\Oy]=L Ω>[Q:yNi奐^b~ܺ0LDʲUPREMiY}et}z 貢tN*bT.r's Qt3cl SOn_e55v5YqG|aE JeC-}"a)Mp4Z5<:Pmtl"~Τt.3M\8@gz8t'!jOo G閺U5M l8J' e\jsѦe*0BynſJյcƿ)TWy)sʠ6zۼ嘪ŜSY;1q{Gn3rau'Q哄wWT -A@ٹlnBk}j -a!rj&nfVM>Xx;{"IJf1AFhQb24mEU ,tf?*Eɛ"*=~2#QB~Ǹpt3i/劲% -v *]V˺/yjE4 G҈Zj$E$%T~ü*‘Ӥq]EIvvyzk+DZϺԪDEMRCvbB,j3(Y'bld\ͫ[d'諪kڂ !y%.S=ebKF_~9HRKRu3~b ^)Y69S6Yj=NtnRyu+AFKU|b$.ǐ'ѱ`lϖ疛إ*&:!r5C)ygb~'~i\}VQ#fJͨJL'i>< HnڷrKf˫$R;ZWy%뎟ɤ]uKBWUYTUu'MG'e0x*#)C]Mpn Q1㨚y\r@Wz3\~"ziL?X3L-/yi}Iui ]W7j*ʫkR2;ʺd&r[VRM.'qW3pkۅ,bz}|80t5)ykKR 'yՄL-qHYpS#U"r߹K|{m"] dOi#X{c|B57wC&Y_Q/SW'fFɩT[")X눸}Ɲqjd*T-rArxQ\jwIQIr_w#L3i/Ne_4#ʹz ̾;:#Q*?s[|(5_˙꬜0>)jda`Q -U!7 $1*]^_SCwQÞ3UU?-m&q|J1}j4歒gOdd)*(CbS -$E>RVYbա_?r/un-ntWt++=7"Ŧ#]AHFX }Hd~#DX,i @C0*Wb!|"tܟ]>H"!X >CaA .Czi'zW"}X.#bmH);7%҅H@:[VW;oHN,]}P\uサ, IBɶqm(dd(" K6*jزcC[lo|yQStJ:2S2,|H3?蔶ԯs{bwd27{9{ι{w/;8Fe= Vˀ]}!a8`Yè XX8 X8 l vb\5F0]s v9 -t{.UX^1W0dxz> `0a3Q@e#BC.u^nM x1èut5v1JCM3m=_U Q~ ;5B/C;FnG'}+a|/0tls8  -Xטg??fCxVht)ڟ\(Q|VU|OCC3quGtMnݜ&K2цi4䣋]Ž|,'p!ܓuqon:p%yIkYc"uܫ[pNc~qW)R0|sA501eܝۍ[ kz @k%Aet)/57}Syk8'ypIXbEj -Rgf\FX a@SSoxDG՘r&!]/}MY-o"5C'} AIޣ{Ux2V4FiGmQ+!eRnEQpa{W9yҒs&`m`ii }\}x.HDxr>0' `syw P.C,+U{"=Ɋ];oo78{d SjՑ}jT\$b &y>Lϣ[eΧ|jdQUHm<Ӑ9d֣*BWHC('lqeҙ%Q E?◧>#FE8AtBS^ G,x>ݐjRUyQH=JN)|f.0;Y? ç =-qlZHw8|._|9F?<:bde.P*ǝ lj[K}Z/Z--zHɃ>i><5_X\H![5~C**pJJ_)^%٣$oB+-歭dm{]R@[wOoi]nh@{;W܋Vw__X\M:{|AUyw:Y œ7;x^ha9T3+>M QcyO7>ag/$b -&Ml/ mE(jO#(^廒y.Prc1_'5g# rIy{~zk?3f^Ӿm9yI_S8jy̦'Մv<<'eW[(Ҩqwa=}˗">2Q?7BFU"9!dz x c_L6Dօ1~La N-hd:HGsuo{))wT]16%aWt[9D3o U@vs#wϛOާ$rcX8[bP8[_=bI7B6ݝwTmjfc̹6 ۩˃S9ӯ>wy: "y4ޔ;~bRR ->OΠCvr@&&d-yg}E}[f Wߴ Q>y0HV%(%y2jCMh1GKD/La7 I"E#}2kAT%917g3>b}1(Z-o|=_fQXnݔI|Fg!%6,ҕj j7Q<,'k–qz^O?^mT$@,dXb6Qۗlx:H:\~:P.dKE:<թ>%zVuawgҾn.-,fgɪC 陹 ;(:l1btg\Jv'O#KdhgbMmy1/@6ː_3 :o᯹";>RS'=ENi*rv|N6ZC[PkVjv% -9dN fkXe6w+S%_^ ܩD^{%x96* dBF0%;KiQۨdڜ6+Mutܕ(cL!Bont9̉^-VaIOҞ IӽǦ>zŅFдHp ܈7!wNܷxw :ci:/_=^G5[\svc hmBS ~<L:P"6? -erYA#or!t:&x*5sQAm<S8*tsYDz9>/xҪulԋ%)`P>">x&[{S? -I܎ ܦgt|u8c^v0n`O/ 9˨m*b,c/';,)kVvw&vUZL#4CFjZ3:#CRGrN*r曲 -l|R5v%wGsI:BZmX@o7-+"ѝ$'P&BѝD':_tD'ObXͦ9qd:^b;;}r_' !acUK׋>v,-ݴѫ#R^9y;K}6o93>/>r,uy3l[,Mwϛ9?V,J{J9"RyCe8|3<^t?g尶 @&5<ٮIZ(EXvOt't=Q؇\& (t -Kq'j6-?ۆ"w֞E3ɛzX)@sNVQ#GG;4"̬qM7hzR8?Y{=K`~9t<{b$!E }}IC}EǏ=#;@$ygf~}Ø$۽-dWӦQ*}d83 kCQM؋7W 2Wt2YSw'JumuE]^6]OJ(H)XYܭD(W> -b׋W0ߤO_F;ܙI;w~TG3  ]V5yKmUdc!_wٲB6>hg) ',ujO!;x5bco6.zry*vdM7}Ep:UUbJ*VvAECꘒI71m(<)S^,CJ"ko)WQwzu}1GXQ/+m)4 -06UMYƺșpI_L7p)GaClF0a [l'6To*tca 0-S<,myBaV !q6 + -ﶳ:\9le_RW)++ve7027qQGv u~H’raGYɫM ̤/kGv#؄䖿(2BH/3.eXZb4,&|X8P<DoK vq aSvT1_/ֺKxDˏQd :OTkl7 9ز9Aռ^프?f”޺60Vg&& .aNYüߖ|շe;hK^}XpvuMxIhmiuKqKٶ̶$,5ͥsٮ3l{Lx 8Egt-M3O"R/$iFW 5.HzfWk ?We{~̶՟ICDzf{lfZ/mu~ -aaW_+B}x{w._9rp\#>ڃ&$m8Aϗ=|@ocj㪮֒c CcpvW h` iZYkKJ8nq8L; Aq3@COLd -e;.f`syWLhssy{w߻*+Kv%STEcpنhx}Ƶ`᫝{DJ*{/ޝbe_y1\]7Hd4 \;OL&͂C< -(yqM/D+kO&ߐj"&zu6[WH\WjR)>#5>(DTy5t@t9Ty5wbjTXgETy5tTN>&ƶtcW?~qU^*U?u3Q~R5c]LD/FN~CZ^wDFv:XYtW2C^Z^T9Jt-Ud9 )ʬr*ŵTt;QN' 2YwJ*0RtO21UK_Y^J!"j~&˿DU.YK?)q%:L{U^sWF*;_͗wEYU1kTYD?#}&{("[9&^"^iW/K 6)ݕUUnS\./*'Vψ{H`N2ɥ_CUIb⟖?U>]GRCGUeUYIw%Of?IHg#l֖5-FQX -(bp$\rXwV(K T{ -.$s-F??ՅN:unʕmܨeSorai[ Ң¯Ct/|g'눓d }w/@彩roeCΔl-2m23>M%Vhax A.[*(%>sܺB_CثT3UysZ|R5OOe6/,& U)擭ҟ]\jd\Te3!WeODhqD:d ̫dl`ϒuvuc5홿)?>ȫhX{$~ᖜo̝g2q6(?ZX*yrUqv|eǿWgA_NLq^vlw{m\:>#1{9X&klsM>U6e'wBTA1 =_oh^֬Ek;= WfA~ | ]~MtYO$4NIp -m2B] D b<Յ  HV~k28>ef_@9x—OasF0tGo$BL;u-pw8ମO [ÝEȊ-{CQj3 _V*-AΞl5FlnHUqg՞ aGA/]wʦQj⁹+CVg8w#6>:JNWlH-qa`_J+V! ֢hA/;#h`l#x8υ: p8؝x7pF*CC %~ wuHS3=vÝznxiwdCti1QM|(UpGK|uh'Na]FֱcW # ;y_`LXSR4`wo8ܴHxb*.q>&f0aT.,'"=afMOq 8UBmOԮ #ׂ-.>9›,gP`7Íue;&S @)BLF-$kf&?mƕ O|5*X Ux2V׭2w UK5 -aJsT`2?q\'SzGoh`HT^|$Z4/RPnMI"t2 xiI ~we29x%~ ﲽ!~jS.[ݟ(]"="=n |P'u~Q3J=_i, H:.kk4|T^ /HtySRoi 4|tBkAe5| "=M{~HgI,3ީ:4/ %& K{ϗo[q&n dPÇwY ?i~Kц,s]8x}]b({Q}%^]:گj:,$1}}% !x3VkP.<. ꂲLa5e# .ErU?L%%x' .f.ga<ގo -פ{%T>WsCWkQ> >; ^JG}Og ~5G~ | .V\F Nӓ^F3@pvWP "x =EpiIpu/ e>EpO^,%M%u_GEo#"b %x?|IMpvcL}o$0, >B~+~~-%x' ')o$Hp&G[ OKk"8>ӤI>7Ep:^{ M~J\Di#W Ep\Kr㭳[~_v?y)75Μ2筇Do(Aϩ蝠%FЗ= -z;o%zօwߍWf{?wߏ'C菠?/菣'ϡ询:'o.'Q_O[OߡFD''9&>腠/#z1DD %9G>fyנ{?ѫ??/CuO7GDމ=@DCD nO~/'O?@DOG?3C?BD?49Wޘ\6ҳ[i 0eޚd̄ڡMS_̷sfLu\2Tb\?zOxx㢡).e3:.:Cs|#!jܾ}`_23e}UT5Q2hc@~ն\ iݶ؛gb=qfcy uQiC[؉zblN@=cg: s| Aܡ`ܡ~lg1471'xe׻\v\6fl㗋؍.n6{U::@:ƊczN 瞕Xb9=mȹ]bqL7`>.UvaF|VoMb~ XuʷMb6+f'o/ysL<5/[:@/7fU1_C>GF0GT Fa>|VuA$Bu{x|W|Ωn?+:T~?+E:T/y|E:7׼ǯ7E5<~N}tV?\܎oyoL3[y|iftib?+/tif%g:7+XN?e'N7gYVct?+߃:ݧ gb||ob|:<|cVM:`9,|AYdBRe'nڊWʷJ)2G^cȷWM7Yu<~V+u>6gT0wM 0x0x|g?GgQlYC,6Yyj?+[:_yr?+/u:u>oSvoĜg!m|4{)y7uUq&!/r&Tn"VnPlG[Ik?j.jEeCZ5#(-ehuZ)$Ze / -*V6 ksrJ[}~5;33<39 |nncp9@3}N~eg6݅N~C#g6Z'M&'pV\c:\vnfa>E y'hegmI v#ݖU!; }0hS5B6| D_NκQ[ys'֖ṽ5g:,pyʶbC[eoNr/Q~˼l4=A܉5W0wCL swR?#MX{D߯ӺvVtkIy 46w]Gw)~{ jȢ6>Bv<.ZW0xKʳ|] E[\fk_>|{F?,+Pv:aehS _a[x,V.`YraZ&4Ї[ .W -UCSi8Iv6 w/)<7 {6x]$q)Ge}^!x/Q/2k@0[!LW$9.72l$ ]iao6ƥrU1DoWEhN;i@zrbB;a sjP>SM&ncw ^_.⺯3P[~bA!.ʋWD\]A }fQVAQ--?UeC^yǮg\ír^y-^02]o6'|M>"0\ݴ{WyG)`[t› ;/F4:'>az]a?gߣ8y8,vy20`N9)W'ϴ>. 16~HkȗPqE. k91mqhX"mm@Y24YvgK'gg>,W3y&L7}sQIٺ^~<<m[芀<mY'nf~0?2-'I,ګmNݢJ;H v6)〹=UklVǶ?e{BwWlO"5Δgv'0ݱrXs›υΝkNy|ޙ=w{ngǘs/?r9bqh GɒIW;jI~WȀ5ysQo~3nDYUF˜e(cӘ~~~N4ԩgſ.,_ˏ5?ۡ*gǿ -S70絻}-_EJN_@iw~KǿTus?Rqǭ1'7:[vɌU=c\_[T%Xר&ƱU>6UV]mǫ:Vc}ێcYe3XOYV،n;eψcϲXV8C|U;Mq,\w)_ǪPeDzwؑԹc UDz%Ηw;:'qv˖q:u3pl˭hsl Oץ_c%lګʥhc;4]1UEzC%BzOם".i^]N{>&Ʊ&^e65ܒyNu6Nza,'lzQ'[*e[J~s zd_6Nzr_6ǝ}H%lz9B%lz8>J~qr'IwI/OvuQ~nqҋvQ~jDFz-Kf;WI/u@^|R4䓤?rK8E?(e;IO U˦W(U˦7I/>PީMo1HުM/I>\Rq"ǺF1;^dDZT*%8|~)yf}[;D^M5'yg6:%ȉJrqJ,^%lz; dcvwNzBO/;I/X(J~~/(lzE_6Er'hzsD|R 4Q,7^>wϑ^>_NzslDr<3Mu(]}NZR{Op^T.&=}Nzޡ.s'줇}e zCo1TRt?yez!C H.D0{nD -kHW"@^ D AK&>>/ǑDi G ݀t ʿ1.Cہt-H+bꝉt;K#tK:\:&i5N[b瑿F05']橏~%Z$Om)~F7y0zOA8VW@$1nsttIAj&cYV -Up0xxXs0foώcmJű&00Ƕ :ՕcmJű>}0ҟr.Ʊq,ϐ(˽羽X*Iu۟XcX~sBsL^XOYq;*a.+Hzv 뎁Z+oQŞ!V kúǟa~x@tףC,wa%W1M*U#Ίa-gŰv^+=t̮Iӊa/R1 ã *қcX׬A0.L7Vb LݽGwLM*Ɏa-Y2ۮ16+cu9xOYwa%[1t {Gמ徧bX;:u Ux& ê&6w]iŰbXgBn -0#U,wa ^Ű1)^ѝIa~eg?&LvYIR673>ӘcXgKX:u:M3bXcS1QbX^U[ǰF0+*%t k9cX,OŰL:1>,30c$r#|g{v B8%6 ?UB=İ2u 02NVQWui?mAR ̎_\0AK<, oSUj-yװ *mj^y5אuj61P߼yBb~s{y?KcLm߼y5ڴЫ~s&ca0bnw$I[E;u^VNM1Ʈ`;`hBR1wlSz #lNO|%]ujC{X`wNcJ``]-,K9܉%åY¬ _cL/vųزOUa*lr/i2mC9z=Rg\G -o3tsRl#k_us+Q֛#xfΓ{9RgFg^$_!=uC'=[YzNzFoYzNzESgiz_sKkIO]g-sҋ*e;IW6(e+(8Mo^]N+td_6>Nz~J~^V/^^U˦a=J~ڜו/g*eۿW3%%yl6z|&(e{I/2@Mo(˔I/8P)e^|M^'=ct)eӻsګԳR~<#Nӻu]jj}X^.^oѵc>=l/ l7>XI,=M*gCFSgiz9酇u.rK HO-:KOӛ,MJ/%~*^{6Nzأ{HXN]&M`+SA k + UA/tnѳ[ig#e|J*f3ӘKc~git4hՆF<,? =):x@دb6 ;GF[eїg薾I4iP>1q[S:QC8I65v#eGy>Q~7~yd)y~Y<#/~'G| duG?};'<sbN<`id4q|i{` Gc#fb䱷 .ȑo"߈}1GNM,o6b\#_f챃mV`|efAw7!_+"m"ε!1Bx%\bYY5=n>OGA(yY{tąz S}Qa$UmYgult!r4<|4 )}Yd/2m;t[rHx]Շ]˰'k^nh7k+{qHcm|_,L3Q P>բ\].Y-Z|!} +{~w̷e>0N+&|cm'̿W6} m2?9la#?~eYU%+4Xf_ٽƙ9e.6S|岂evk0˘| ?03_ٵ O( 4 s Cv5Vf_f5~0{1Ma<]k E;uo0)'M;E{te⑍ s̷ A, >n 'ԻK =ֹu`_"m"J#lћ?0#)ZzXrEKUS:Y#}bk^*e$r q#o>r;_ݽTގcX|Ɩ[`O.w|0&7YxDs_g!b¯>k5Mߵq l _ڝo oUj|Y.W2bӁ]ba<;䳼fNi@El<[+OUir h~cs>Ƈ?%%_+R.)|Rx>!Oh |7)HS5<[ǿ}yw+অ5x>]Gſ#=.oj>q | -6}GqYx-qoŸ7Oh?N??#y9~KvsGj-NA,|po w> -})5~O? -_Sr#RiG}COEg W|$OE@Kl9h |Ϳ(Tޘ6kO<}č"ܴZi ?,|`[UyojYopqQ瀿i~AǁfU_'x3 6Ľ'O+~4U6og\柸?dO )6#/^aO:c>I6^bM<|t]hwctG4<צC\}96Ѯ?nZx4i~ -?,4%򯯿C)/Kɇ}ߤ<ۀ/JWѷeJ># ;R.}=ڔ|X^|^J>GƔ|HGAצC:m>VEŽ(O|ܿKOa+BO 6#6</|*x'q/l9H_=_x?0ןK6n~bO1'+;ŌP=}NYL3}.YBK乚uvޝYWHN-:~L.ԭ)ϕSzWsfq={mg#ͼ|:o,ͺGg*Lbv}o -)NBLȧ/3 mqńl??>!6߯v:oCUם}Fݕ+KLRi2`@۵C0};E.P' --G-:6Ⱥ~NױS>iQޓLy/ynVK4 &Jaqf#Zqt>_ϽpYG |K9ndwW2U+ēX cnlC9[M6s|߇'NjGi},Y?8l}= 6vew$w892\۸+Go/GfײߖbjXIv<#\V,E BfG>ޙ,>04mʇt0iОoAmѶ;z#?j}^/ƾt|Ѭh?%E<< |XR.OOo'6ǑN=Vyq2~S+"<P0o>ACc׀O埧Rxi |-pP։oij7Si8:QcרQnא|a8g/%2xt brDf$yhÛLNsբ?LNV.ݩUN6/53c}a-7ۧӃy=t3/2Enng>|Y.틆Q&D9Ϸ󮅈ABo.8~@=h;ʵRs \m՝a=`}C~;07o cNcDD}De>O>bNf[s)?EW=mț2'm_|=w?ƶ2ߩS7L^ .蓖_iy,qqSOssd;rikǔ쵣A赃y+]5Tw!Vq؛y?ϩާ_k.Ӥ*=t>];Wc -~Jb-+*`q|؅ȳ…A79~0U7֤AϲxFz8G^!74kCʵӵ}B\{J+5Im(u%'wFqd"q2FQucEFWᲥBu狪xh) o.ϥ5 /c"?鞒|v7SBby!Xvl1Ç= 7\>o|b|Ojb|[5&`aAABloq݈nnY/^DJԣ,Qu и7^-5n¿%ܤdXz%"Fd;[ !Bqr mPԸŧCm~lG=W.r>17G^l%ɰ0BvboړRHu>Φ"uKuAf;/mǀvkԸlzDΖɳJ&$^%wu?Cdٰ 5.T/C[bu-&~+jIl0 ڋX|瀋fѧφXcաRA역\~}<@0o/jfB}{t3#>~ K uYAOP~xKTzƳ(Avh7e(;/M.˵e"5TAS2ʉQɅ iR|H[=fa6D~KkrrDr ݂Tpn*KؗzKgs?fsk{B0Xwzx0֌F5yXVxμmg.N:<_έ)_wuNz+e^W<^cmZz뤑)Z_#^/bDD/cM e@ _ؚ(S;5L|.9}csq!Z5n\wB,--eF\صw#Z9w]jwǶ3[&ǔ^O[ze#bAbb>o+Mҭu q eq[w7/Nh1/(d2O|(4Oދ¾Tn{nY \,,`5eA1wY9yn˫ʱ -5}D\Qɍ́%݅ӂ_3 |(!wǪtݍzv4v=k'K*h%PہvWTi[5%d ϐM;򕇓-;'-}/IÙMM٫]9s~GxsqueɎ jX5d`Ś:vVkJh-kK#&w -c|X++6j1[d/z)zĘWqJ8a}lYg`ldlu9$y~Rk,Zv}Gy>dŒ>n y` -; <;,z@P5a&7;x!&f V? {gW~ѲjxO8{7~l{Dl~[enBhgv*}eYwlg:o\|#vx};&ިߊ7xr{ƎMelu#_.mG+|?u:{)mYM_@@a~gàHbcҀ9U1c.q.VO<!ƶjL{0^m>8SeSW%P>Ys;oo1M YzFk-#o8|P_m^_xHVHO~nE;qCm,vLVQ{  #_>[1=oKZ~Jˠ˱*%}#oCo(EL6rJt%' u -e8wאpH_g]ޏga[? נ!K?VLgzŠ`o41hMezc3}l&!KGA>!Kzfe{@ov??{`1dڕ%0N!|繊zU-\u;W}\]ʞlo5_w͞k?@=Xy_?Ow{<ߙG9w<ә6$ 2ߊ|pxxxz~PmǙ+9]>7o -Kfrشhizrȏ sCh˖;yc3^awga 8r/}K5}y`-[X;\Ϛ*3 cHTw:=s̾sd~;J&'Awqds 뾚LV }WϟDΕIY96gw/P>ϝMhcDuҞ7u۱qQ "TԝuНqqOm>ͨL֟Pj>i] 7Sy2(=:[1T>?A|J#徕'= gs繣 ~^:EC3ͫG7˼:$'-{[EeGǼ,0a:꼆ƗmP`~:%tmq 6gKe6Q?5Û{s[חHu>MKKxh/'戳|>bd DM`/[%I.yH6h7G7nE+vkʑ v?|Y8CgI$7|&zPgg;ꨅ~bG J36Ç-o[yAط5]蟚kϸ2..Ajދ2YM -7^_G/ք9~}HΝB17|j:C??1pTo EsQm(/m2̀`n޷@C';aMr+h%&'ֵ 'F'Jl@Nn͍(d-sE+\fY@we1e?#gKv`̶W(}dzɴs -z\N9tރ|B(GsgoJ}A44wFͶM|0s}5([70;*BLcN ቅ -s;v(s>α֛Fcm(yOƷ}Q2?]"99̹A!9G;o<fʎ);FXca&[^7=#h/ryaEaӞ>yUSI}=Ϛw>w}ַ<,=}r8z;l] cQW_Sᣞ"Wo herG>u7Q &om+ӫs.C_d^){%S]c gy qq+k oro5'Ye?=ǁ=Q.FۉumT˴Gޝt/ڼ+Wds+N8^}1[Nή#eڛ?;oyǺ$Wc ףmKIM#˪v {*sfOlPO'Q ?ZMӼ]w?a1o3|D8r8W6=6"Vz~-~ -9Ú_Ƅg~sOY#IK]oZ7uVr\츼ρ}.z|wy`NBȲfXj> -`e#g=D^]JNh r+ڥ.t6?}[Qro~m#nnK/ =q.<qP{D׍C3j#ghO?c|>؄0I8߱]c슱F(ޥ΍'ozAtHU՞60̓S~s$vg~=X`ֺ :C sN@:{}S,om&[g.%|9Q5u畡qʨG^[t؂>,.Ā۸V2.];mX407t%,OS/!ɃyHjJD:{=DS΍ojxѥM>PGԑ^ 6KME=Epo8}]Ck~7`~RͿaj={my]a\M~z)< -~ihROBy,kxÞ3;'}XMɀ%Vo=9=')vهӲ>W_mya8fw>/K[Y|Q-&/DG{ۏ9>'$g;e~jS`}SƳKg\#az?2H5G ӎQEROL:^zYҶc 2N}N5~G?Mrfyi}&7rEr~KVsVƼ ]}wKb&4?㞰*cj6%ŝ o`8x@by&d;_S\>}Ciˇkz!ڤ'm5%ra6V+aJRmfJ7JM,^72|bwkۓI s%}Ck/#״܎5b*uZНۭo;Nh" L}Vz*^*z= &zSb˫9/{?Gߍ]j ^x/zeGxa=!O+[.&4Og.=H}%y&snw3uU Ѹ-o۞߼{Xw@ )KaA3n,??nimU>e}5~iD{9e/-ݿOւ9 - -p09Ι}0%].߿+[,kSeۅs-Q|րo]9o -׹%S΋fo>j|9r/Ⱦ{M|}mWxϴfR۳-?LZM_DK7 -Snom:5K[{_?Nk3OP~=o-w[j^ X|;uD1>xcH|Qq&C^!UV/ۤcMtuCj!ք>ko L?qA؁&6O~4ւ5> x5wornA__bJ)?絆}b&[xǓwj@iጺ>wSXLGa=!yvziw.Mz(]M b`Nv\Vw4'0a}cF_7}<ɓ{s 84vŎf@a񩭟:sN(>kzzrh@AޝRf(߯asEaf|]v<(3F9೨ dd?NY998^oaL8#s1O|xFW2l3u~?m#9ˍ^=CFxzUœ}_0d3 $ d|DGE"uob+`)=Rr`o~c^Uq/aL߹L{ByCPl%[fV1,_hAV:JeUVzbTZQ^j#r<`IXwӧǍٶ:h+~CdڏII칈[(%s%1~f㑤 aIOqbqRr8>7MQ=&?ryBX<7}Ҧot_foh|<ݰ?]8~=Sjk.oT~b]#α_M%7r*~O ˀSl]̲HJNډC|7ߊ=T`V70kk7 {EQt0_4?QVw4f>[Ft^_,_]4ba[Jo,wUӸ'/uwEXGzd>_ނfM mzc:gHaAsEڇGtHqb摪% F2n[ou0׃䞫2Z]^W0_]5sBxρi&UZϼZM#);γ -< aJŇAmukm]?h~!1w7wHkIu61~'{l;xtG_yb酮E06Ew爳92.;Ɇuͽ$/=tƬbKeR<;S;c {0Gbiϋ񯪘Ȅ}+OToC(/[V=)ڏɉ>1LͪW2dRǪD9y8,3LcgPHS6ez/j㙹 7ΜOKxGm/̸{rB9OD{ڬ||~$o&"]Pe9{ׅgwWmg|L;8Pz~n-c+|\|pz"|;siwI_`OoسTr&(Z|eY9hN`.+)}'ۻvy޻{ I}f׆&mV܃=7s/;V] :[bch墄^FyYq{R? (-,<1/mVj >Í 3z;ǹf!j]iS,]|_x[O'<k<bz>y^[Ck^!' ۾B~awٳc z;1>O0.뿄M73g}f)mژ\r(-1> |<;D*r^Pf]ECwZӇΏ"e+_K݈[sMň6^bQlF=nE 1uEŢXUe91;>"+r(xw å๮[8FbRrxF}!>IGywNԋxI[-թC%7rtmly_O{;Qѣpϑ3my[=?XOy"}^@u.lP̃ՕP(cC'!Bo!G-GwoߓQ1Jd;]9]%S5f\iЧb?1T9kޑo~V%C%ϒŶP%aioSuu%f|Gk:jy vV:y~R9*tߞ/?^uxq^qc'q;q,z)==wy8IG,> T~O;7': cm#"xږYx y v0yoZkaoܩ PxgP*_oxޓބJzцk$Zk|5΁nۇeC;=}Z6SC0C-m@n@a=o6CЯn\ box\i[j0WPzC>*割h@{ _2Poe؃pu\YҼͯdu;#JC=2>}r7MbFC˝OpaΒGGRU.Vq1$ͥtU'r›;دy"J{ lv}~}=Y*꿃q;쏷Տ~bv㠳`i۪,~N~QWkO)Xxc-kKqaKoUug&D~X'(m?Az%Io"HLfv)< 5A0wP{I{hh^9{b{ {L&'_ַ~%׮_f_ͳx־Z3O\}wiwk>MXkF\{y.AS~`+ұ\ZnOy'A?bZ85q 5v}ƀ9>q|NV'ht{93?p~{&)v Oø{󄱿I9߂"-1:y{ԯ[n9-N1˔Lf*LG~F>9{J5x7+lm[}x$[ssF[!=ѧ>]5 そZSD< xxW-h^w5;>@GL>]R|ViPv@|M#zvAh_Dž?Lߧ_,u SXϸ}F#|Lqߍz^k6Ӈy@kJ8甮Ixy!uٌa+'i5‡<85I賢űpN:]P~| |[Ͽ}eW*ϾAS[ -o([>41̕ –Ctu{Z1޻4:ĽV4_@u'ƼL1s3k1Gi5 ?G^ӆq&[jnrh=7k2q7?.m}9eϲ< 7`8'|~M,: NWnt&>xV#}!x6G19Owk51 bn_1@Ǯupgn-EQ©m5s[AAtB2_1u3u{oد~f)^흿5F/ry~Y0zj_ⷔm|-ψTpu2'TRYkځѶ>~Ϙnj<'|]: 3v3Ews{E'9;zN g&BgWf y'eu]շ<I+_}nQ_L+T{jR~1ߓ^I?_ Züw6=S}%J ޒ{jh9ts_6(45ǥ^?~=l<<:>>:Vفy#xs۾38'ؙ{#=Ctl#dsX{qʨ)!Zlޫr+kaKҷ;5vi{'=y#q%sSM&BI -EX-Зq \>iQ72&}?x(dL|H_Gm> V&mdт@ՐG\!?:~"M߸|z/蘒hY)btk~O쩄}?~#;=dzv{w˼ۘK?h{dy=FbNMRggP-#Y׶J|}<~͟}F7aʟc /҆oTj=+D螛_4Zvvtu)|ygs[ݛx OH m%ұ|+E4>T}ww_8'șy&D/Ef -vu.qr_SHKS>V~Gi.~P>tu>+ܳy5ʆ |߰[qhw5mv[*.V~GÑ^6+X)r:۷~+]z/;Nkvoe5Z*94X~{9R.g9MݸGU˳Ma=/kc2vŬ{`(9yǦlPKʉk}Coޏs}wWp9b]Q`g| w|F<|!̯NsnDzZ^N_tua\Sj̳?hurR{Ӱ!~|3?n\3p#lT~uig'jx*,RLWxg\wv-t_o^1y~ɵcV{zx -c^'o.{sWp\3J%G{} {z瓐ruE>ܕ$nZw:E g[r_Qw̹eBr_^7joX73l/wxqN]@_=gؓӲ_왤m[e7toN1mЏb]GnVycDr*ёT܋94s3k'YOwݤ2G [7>!wLv)kC1' po=ˤwa1$W3y֞˖ ,y֞M=x! ̵nx`Oaw&ymGyn!ǣ-/mQyyߪoFzeO+ewhڡ~e#s w@<Yr|Z/ޓu3nq;v In2{:t?^x@D<{ Hg 23C|O,b q \;oF\H'NIw -t=TS/B_{oO!~xs%""̄;s[/hWxzm*t}g2AwfZ7e~yG?~aW9ɠg y2rȁy|JK>okƻhb/rskrz.mYV;)~~=hF87.׹fvvBW L7o\=%gZ\=W|&G3fЂ9g}݇*>].nK<3r{ >ٛ9%c}?Ǎa 2y@Y[B{ueq2|QΔϱjå\x?:lXC|ְ~ui@e|{*b]-XOA©RQrR<./|-qҺ{s v; -iy}y3lWgyfs>Yw\(geRƏ)=kʸ :wR{ _p(oGy(/̻d' !wkhނ<9zx!ŋ<#ɐ)1>+awrZlL}Wv{0`n7SW̩ 6dz]Տx&z wMfEIٳ}}GP$Ǔ=MËHCjSH>.Ca}IIڮP8i('>}-A=7HFT:Y\GU( HU4 -joқKcPSh?fYp$&ocH/8 ;Uz\_ -^Vj0Yo5-|4єdZ$WO0NTRa0IRpPGK aH1,ؠ#]O 5~@M1D -M5`õ?P GubEGX]@|m,dUs9Y5gB}YA|j(R5`uژY-áSP/yiLTpީd,\([ 'sA/5P({<VHTD2?'a5ɸ?xʺR|$ܦU+k*|p!H|o'q_z| )j/4dUaMdYO0sn4(PsAG$DTڈ E0lu_i, Y\PpiɣޟJFknh_4p9}^œ)'f% (xM0R6&P K…30ǭKqzlnĽpaVWiz1iY%)`ͪM|^Jb+M"OQ[ΙS z]4¼aдߨfTV[W]Q[5[>VNXH/`W珬ik( *G1: -Sɐ4V=Q4o4T5_ѡ`OPzS ;L4f*|Des~aI]kA9t;d(M~␇M;$t7"+/ǒL5nZg=T u!B)Sb%z0%| BOW"kmq ~!$~ie~/M=G}y)\`Dbㅣ >ACq(1cmcj=SRkB0]U/25Z Z,bB d?]حq6VK8lD!Т`0D´9 /j?*g[#K[ HP,kA["V>ݷz M-5DR@s>,f0lŲ?W^ҩ6qe@4atQ4q_,'~,KfRӯOǡ}{\ڸ̞YHKf43+hl*_S Oo@ bv.M>j+*|KnDpqWpzx_K >}l7[EBߘ^ͧ$ȗrKƄ^qϼh")䵡~ΩsUVϓLB]gӭo70ͬ5Qsff{MsSM1>PD_{]@ԻN̾:)7sWlթiW'~8;u'N[HtC _T/4G#AsN(]$L~eJX"o@j,AU:z+ܞ%ř6̏Eحs&lxd _BXړU R`"Fw(EO=8Gֺ; \,z0Bt W*HbHuRo++GBɐu_Y11cV- TXW`V)3a0ۃzf~SCsPK$ -l"cjK+^ (e&-lV}w,(wpoR٨MX-(7 -$MҲ=VEWӳEc(rhDFH">* -B]U.![ᮇn" 50(h8>7GdY3 X+܍ICfMj\$H䅀]dV}0KmsC M/wYʌ%Q2DO[jٚ暪l -%[c>f}uL}yH$j{%-u(L!H _E8g)̄],Xx.CᘛHzn5bcZeϒ[1a :ӌB$rAzX7CpUp~X0H$23!lqGimͅW(3GS^rgNvMnP LUoi,!w4U#'B̽p) 9e@q2ƖGIbC9,=DI.1nn*@JJP!ٜNutp9L:5bld h<\k"NÇ~ؚAHE\wY/6SdTkKF_~s^(F]oKeOXPY,·G8꿙f6cʻdmP` ̯2uˊ/Q_N{)^Jg@\9f25U3Ԑ+s#K NLvdB3(-j-'Ӣ' T"R;gmHUWo Fy^"vPơK8dm.[r_AT"p(JXd%LM1[ oPvTzf;C 3&Bjb`cBaD4IR8ݱu>H~9k+gb?fg섘*T5wXܛA#{.ʨ2$8gэ%.wYSbd$W'w䶒Q†vm&#ʚ z.I '14&v&cHf-^AB}s0y %eC -\>]WK}Gq /kb t:&nZiy5mGS(硜r=RhIP5I -mִ (?Be86܀e;QN 8P>2 ׳ Q~fcPn@9 e'ʛQ6FQ~ɛP <(O2bP>90PByeʛ 0b(| -hGى2oVF9S Ia//6 w!0PBي0^C90n,¼j  cطpwb|(ODJקPNc=v>wF1|e-rtU4)}(?B%0QiZi@Yr'ZO(?$|aqPD5e(C9(ƀ(Ǡ(2PvF!JPP6ǁ&}@_Ljщr}hGYڂq}(\C9~CJ  c&ʾ7(0?0jQ67EÆq再TxQ\y%|@ٸ x4w;e؄r?(_FY ;z`'Qv,n/|G(vrȩ'ANݐ7ʾ=GÄ0>VCcƃOOƽ(;y 6嵻[[ն.? 1N#\N -f{my]Nt~'L vEpq>GP+<#Kw^֖>̻%o鸻R1T/Zt97#4ep.>Qncd)[$b.A[x͹kZ6+e[qB_]^}WdfZ?Lm~UW!E,6F.KXCv7Ww{krTh+vw="ȱJ- "Y(Đywq[ +vu9vqxv;w9[v:pTtlwtnsltlpxwlupݓ_; gby'<זfQBà>u2gX L+1րk% ݡ-D$x_lXN[\pkNzVmquy1OBa[ntȣub˹=k}v r2iKz~K?}wdG 2ڭsͩjѫ=gS}O.I]Ko˥ԟ ,Egc '¹_-Wޫ[NXo`b9_%{ڜ, -. E Q#Ȓʔ%G*++ FسK/z,h+92wSTqG9,Qv#6(+ZCwn'HҐUm'y ӡ>f mN&o{U]r۾6~00D;݀Xx0nuwYa dRR R"F13?Ɋb)l(d:ԣny$D>9uԩsNm]LQQg\!^mYtT'??>ŏ!Yq1vPtx&mJc*E]d`2D3{ #?~OI|-5OxaLb|bgO&qtF,'EΣV1? E#>Ӽx Չgi@Y,gйP&?=F@\у -b6^*T[ì`O6c.HS7ˀs+[ZۨB<1<-cnX4'`M,Bl+0ˉ6 4qtťf\i8'8yb789V{O'*\Y]I03U-k;2qq m"ϥ _f)~I?P4aP)cЁ݀;ۖL`OԌ>dq')/Ӹ&,8V|8+q3]kuv)p>ÛVn|s3Cܔx?\w`ޡFA^(\ -8X:T2\{]xHя}1P0X:aaa7R?>lx}u)U2sºNۗ|ϋ7)t m}Tt)Fi%kЯĝwb'h!NT!|Gz?gDK֚fA0Eko;#9/r<>⹺`Yz%8w߁Ii2נwm^T>?*OzbV5g~)-FAp$c>Aصw -E {}vƱydj&ƻ8N#h! q' ބrpho -p@o1olzz_#pψ{ h+l%H -\JɖAB--ʂ>UdC7%ʸ4\gykvvz<} u%QAJ˘=NWv_F ʼz'",-KEd>-QR܈X3p TVpgOiBJUzWi>T8^@XB^GZ=ez9<'sɢaͷ O#y]"]?Y@\;"OT¢++/X%9̊tx}/yU{i7}SqHX5s2D~_BDrU--| cE>Dc*W8?r&Q/q/aV/-<& } *_-"ş! _RzCl^i7x*"ɗyHeHH~!W"/O -o-󽞮fONWaR >`ϷK+TO(ޣy<aYO -Q,;~YhUnNwg,Gm3~}\-$xrYƣF^%ϴ@ho8qߙg< xQԅϨ3la;moo͋[GFK[4vӐߑv$7*<o 5@6^Ƭ02--ߒi(~H /Lw -")%`ė~R/J0F\}ė~GD_}K&Q%2~,?9 2~7L 2qŸ2$翝vg\0N$cL#D3>=d* f4RY 1oalNo`{[9Lom_'FO8L`"<ƕ%Y9PyGGݡKaêrT !a/3tdOqrubV[56D -.# -dOGfwXg^RwƧo:5:STn6 A@GZR۳LK3Lڛ 'x}oѣvҼ{]uXuXuXuX -A \ No newline at end of file +Qf< u+`1}s !qpN* ;J$y47;w;jfVw,#QEU3߄O(B P#CTJ6B\aaU eU 7=3 0~9%Sj.tiiMKͤuYskK˲kI9Mh:E ؖd8]}sߐ4Ԡdc;u3cي6 b卛gXw3ݖ*:v*gij.h +^0t,XE[QRUۮWtI5J-b7m\=b#Y#S.걌贱&;.8Yc+ ꉂf׮XNXָPײ]41Ԝ&KF,NelYT7hvNwT arEtG֊Q]m~ӫ < X ֬XpmL;lM[F!bc1cn @v֕ȵ6Tjt̋B}}":X"@,;42&T1ni,QåM:dV !\TFߙ2m*x8B2mi0PЗ~:Δ uwustwu_tmp T(SPCwZWWUT) *Cت;iHSsl,Zpdžc|[vH,yӨXՌpQEyay;ar׮_a+dz庩Up088ۺ[M(k޷Ӥpd4}q:ZModE)[DȪ@SЛm "2^K-^IyEQl?K!؂95<^0ȃT] 5 mh;OH)w z&vFzumi.!wW눗Y`e-aD$,iƀ|E;.m1{3^ q+4j2tn;eRGK2ucV+|hɩct-KƪBN$d^t˩N-]s-{^QlWSdZ Km6’/K:mFe`V1/ ឆaZ :pPGO_c{_%Go{}/ʉ4 0Ӧ9wbN$Uĝ'D,-K"*{=u#$T 8U&< 3 niǡ̿=b\#gò$Gf#x~lvށƒM\gQ sjk\Xd/ +Q͛)P4S + +J*g ,@ks2lI~?F_Wfyd>}\)s,8Us!v! O?J{"DJb1aY򻈭b,.C-'iI̧bXR͝I|ӁYRй-Bw ]=AU48N6궘h]q2]nHVlzd.=#,y[PbJ+E)h!OT`jhmkZ١de}d]t`=BLQ4loŜM9ʲl1dpChz $꣺wrϫf|\Ugja]Ājؖ6zW{fC .ƒx1@d >mcʕdgklɯdcYkU9K@d1,ѱ6ֽ7_*gJٴf@esc8Sc* BvR>?M28.K@70o3v :<0s@:O!צ_y +~A eL" +ԲֲWXܲlYZzk)I7_Ӵ_ҽnu]$Q=RieA-'ge92X27Xg2곟etQn2Sruɑ+8 +n-/ 3YA.Yȋ{%2<\na_ +@γs0}j~Y!J1V(3ҳ~#~g +Qr"BhP|. +P/)U*)RU>4*5|a"FRL)ls2h]e;gC7!U=KDIe~m&,!DQ`u(knT27v,S3VWFFUzjQ"݉GGd" +1eg̑?Eͫ?G7}vuێLjX?~35ckw/}Z~ 2?2~7=OF/$F|ܹkS՛ wt-\׭x.tl'eva 6@y!opLTx42A`+7q;+v39l[c'fɻ@Ƕk#dgI(ڀ/ukO>?Y~5˺A!0BZz$;A Q=-2-:}2!OcqyFn8$bl]ϱq8E\'|%F&13Jxց.&VG&*#8ߛ8Lqj?ym^ s:6(ֵO-8cs'mqQ㥦ڊ;׌ilfUQŁ'P#γJWVڼn[ ryt&m0:55U܅$ R/l|\OC)}~sϿңa.wҼiu hq%f CG;[/zisx +|]q뛰 G o4wg|m3!|I9=~e&|SȃxλvSwo?˿:/gY=o&>srj a=R}.z{f{A}?cu} RIT?['p%@ȜG䉺yG#,pY8 g,|, 8 ?ST,SA42'gS=q\^qagx);5f{Seqn88sgl!8[{wqT3.q'ΰNC=A +;8}c\8ǟ?q=?յ.8X4"mjJ&Ӊ6}9n]Ʉ$ڮ:Hl'brh2 #C<,:Y̌Xj5D:[ϩr.Go:+*IY{GEfJ5MG5*wqPTVǘ`S3P[."A!I|#R7k1M¹*Y;q漐q@"^u-5 8 E&^bCȋH"RY5-:e3 5O1B"N-?B^-Q丈&,%'"NK}|ް?f\׷ a}?'li +ޕ5 /+~o'ɶjK\#/JrIcG;,=rN"%P6? XSv,*DImՏin]4&AhlRߛ;7GR7o|ϼycaM8H( ̘2\6RQad +A8< CZ=,w[bwQm=́nP~hubxun3Z.4 +nHz0)KQ:cVk FT*Zcia˱,5fHsPsssp.Ej0ș98-*L :RĔ|iKQb+Z@DBB*q#յyB!ph1yʜ‹` *u yP؜RLO1^VI=$zm+m5mKew#QdQXlrsܝ0rKŽg_۪⿀ -v.WiK-D|rQA'4 \v :0+<|:=PvW~Aߑ>U(VO}Am_ៗյxgㅭ{pfAMRv!tyK1KƁg?韯A?K}#Ϗߏkk~a?kp~נ58nN8:N ƍ= 9ANy}_X#n%laE76 civvdIYSKι47{֏zJg2"LrP,[Jn"kwgm]b +DBL[*TǪlZI7<][8ߦCً_Kѹ, ̞o'O!p=Ըc~b~m͡ L_X~')o#{_lx8𗄟SN.?wXs'9XAUXs3 0ois8n.C5107u{V1~A~ى$eRa{hUo?pe(/ {0//2 ك?y酆ٻ! @ݖQƇ`< paGp|%WID_,cYs/@zX`#_I{Dz8g-0.XlOs9V9 .6>y?AdnV߅O{?0{+vCzW Ύ7#g%8w!_/?$y~E^ ͞ {z-3_Xч? a\S.A 1o6mfq=YhEU yKWļ^++7zdvϕj~Qio+M,p }z8O< /K+a \e֥DẊOUF|&E+*?Az9vFf^@;ka$|U6"v8 >Xիys#>݃c=A |EO~r* V}z?A75xxw.WiӶ~agQ.} rU}W{WZR==/=+˗= @bކɏw⵻{^򞗚N7_^6H}bY򖌹}W|pj=V&^ 'Ҋw|ז/4_#Fv6iskϮFdOxQ<(fO2';&Fa?FFFF(:a/ K(Z Evϥޖ+&٦[2L%ߵ(2|Y' }XYua|K-2۲?WKvr±![H&49K{ +#Һl[Xiqh=$Mc(±J>d\h"SҩGc|PM'[ O~Aڏ|&ZI~ql9akpǁJMfFЊı2I'ql:KY?Qzc#jı˿K_DZ#ӿDx"_ Fָ^VwBvOzZE6yMvلw*{@m[5_{[G-N\nSP8Uq{`L3X3esPgj=>8.]wd:HZ[d`^iJ7ClNb[B^ + Q:C:canw$ȑ`U yLtURZY9_]ßdNbZ,ef&vΞL6P\d+YfvLLU +ދw&H3dҹ~%JQ2XjYڝҹr6ka 0eiaXֶN>Vil/@۲ys;Fͺk>\3ㄵRn~fwvؙt'Mst$ +ΨQfn)"˫)r=%2T/ aιa)Ï;o5]|ѣwK݉kp۝X(A |9(ъ _!+ÝO;Ǖ[G޸5z=A"^R웠>Ƹvט1hz"7ז)sۊ%iB<<(G+ah]ZeK{۹sW(*(ȓO>5" oWw?+-ԇjvW6ЋpfCzơ`On-yLapE{x";-%<ǢlfpL3JpF_: +(qd 蒐 iȤ!$nRK0tM慎%(† +xaU8+P/6x! "!}^ Fz<]]҃hj%e)f^lx_1ܝ{D dt*Q LaXr + 'Ð0;:PoN"xzX(]ʅ +-eŒxSېA,*'xN\\ \[:..&%16 +2#=nLUіn2QtxOH* +N9V|h@ cmnI$;R|ZeE.o >|^#FOXz'r v5MPyEZl}HePM7uiKEO(&ё4C +2{TQs`i0"5 )/`2/{BM(ҡ6n: +&htyP"W`x^nCq=YháMb=?Xx(*DPre.Oo;мСd?dZ]Sv²{S\.=fgw񦒂f G)Kt21a6p+X*x#hw`ĕFx/K;"0z)-dIA)' C6T=nN2#ϕ96sʙ Ipu&aF]Cʠ D&'[[Ve1'k*!>Io =0027 7)UI -hHפd(b+t?r +ؠWSY>1aa!2l2G-I#o3۵Vs߇eųJHiWY9 ͿQ~[-4_bjݝv$R(=۰9I)C)JT2h2 01jh4=H&f>mkffgv$#XbLqgW(${k"2x\Qk]0t穽uԁO@6MG xʈ?lh߆x<R<}ɏ$ ^&I_Q}w;*=É$W]19|?Lo 6 B2gpqy)++ᙇ[(D*$7z[m;.!-wG.0dv +P9y&Ěz8Ty %l#(DR}†/*ҳI#b58kњZlF)f X/c᯦+xxe[ljW0w2sjNÈwl f\-'4%˷N,0W{ސo)DhC=QIX +M"B~ "4l%6v{9%sۖ:7o$wd̳L X+ m>ZiW9FVⓦv"N%-uHې+6KBE*= Ai0!;w;锣BNUvtwoh:$}(][=WDQf۲%Ly[f#حz-_qÆ+V]Ӷ W]k8_3n{-ZێQ(MI2]\mS&HkM]X*jS9n'әd+onjj岙Lc;J&vݕNtc\"5/Bǡ9=;ȴҲAA4&(6Q6B4D]{\\[>:9~Bic`N?ƙ-j ޘлͱild줚.OWqЋ,P>F'@ݛsչR>Q$뎛RޥeK*¸cTqNx2ۙ62L"eS͙L,H6&vW,N$Sd"mǺsݩ\SnJu.Lh1ԡϟ[67{9(2XʏQyk2bO/BǓlJx(!%QaQ|8xTcKtׄPꎥ}0xʙפbObm~o`JG"_3'А=kLc@8+賎Jf,>Qإ.}*$<.UTzcKG½EU5.`{ ]/y#*X;-Q:l+9fB@ `4 {`8\bW' +{0lp( N aOǞEľB8cpXSCRk€!+̞v$+Qm +x(lu$mC^I]I%+>I$%aYC~Nl`ÌpY?ر͕({݅lJwMc{O9Q~´oFVㅃ<ChhAa+Q+sޭ;!T#FQ'C!+ْwq eT)mka-pU-+ ΰDXdxD]}xr8G!,8DtR,ۤSOגxzN&D{>-l +   u8أ?^x^wʯG`6l){a>vz悮k&3csj!ߌuZ \YAZ,gag0c NyHgfXw7YyA D{><*]shhSqWߗ\\]|Wysxt~W&? 鹧9,).#Wd9*+8і-|AAf95zoAbN> ? QfJ…b6,p 9 )I)q.9*΃P-,|`vtΞϖsѠ/(K;>׀˘}6Qz=R&\p?A-foM| oqłQٖU-|*5Tv"o?24xi=ԋ>YX,8_󜿠r\ 4~z @!A*s+(}{- (=9#?Ceҕ+*#]F;eŞtxP:ґϾWTxmGk(]>M2]#92V3T,~h`SF,c)v\@=R.EXʫG-U=EzNNIyAk2y'@Ff|U $1yz/_xbJ\w7GV6vhh:Q)OYf|(iQXWzA _OH %!vOע|9g!!*u#mE:M}O&(i۫DLGڄ4,TEU7=gW9*9q=N%G?Tr|}/9_~9/L8O +c7&O6gcKO9-TяK$؝40 ڻtK%%<Л^"&zӮay@3 l p+Vo:uCOгPg6EeuK3LR`[; +(CaAx5^-4h} +K0nfWcJ  u+ޮ@E"?,¢mp)n`4¸1c;ƛ0v`܄]0c|^c܇085G1x``41*xDžg‹po g a= n5Y4aV1s0l-TqQё jD!L|F~pW, ӞA]U~_ʐoBv4/M, `u,FwfVˠvL7]e|F\p@5scN68X>cœZXo.?Z:CYta/@X :S 'ax(9q? >yB33ĩ.m--Wֵ7WEgytVƇnx@,ziQtGs@*:t:@gxŁ@\Put` L @g(n)휆f>ĶT{V#Bԉ +#y(Xbԋ\(fEyv,T̆Qq1XWGϤY/WĩM4c3zN(GTg&="\aHG$W#C{DG+ +{De* +{D: +{D أooT/= _$פ⟆cd s5_p"V\dSh5?Y +O:N;g-GGbX*Ly}xRr8y87%lw;} >UAv2\~U; +?{WGq{le[Zq 1V/k+k#-ZCV#ip  :H6Wp$gL $ݥIq")(]1&Bsy;e#oKyt7{ +z>O}>Y[^_kS믭k:h r] 8<,yJF6o_P2hR*yJFM1M~=QM?\J'kag2uw9m=UogGӳ!KۏFۏ{؎~d?Sۏ&,zJTD%*QJTc!ũf'v/8ou0FP7u0{D>WaV+L5|,5Y9v0Ijl ITԢl2O~9t%|7u Ha蘄KRqsY¼ =5.~u=~/2yOsG[O#ҷ~suJ2Ixiqr êxÌ81fq^ϊqO54uBG7jEp/Dkׂ[J:0ܢW6&b) ӅP%S>^9).+G_5U~`*~iBI%eF\>ui &Т'T1 'O:urD"ZkR? ÜAc>qish; 4R O? kSU>M? ÜASx ǥ.Mo?}~4 'fBH>p/Nx焧{H&Qry9+ewM1 l o_ 1wD2x&,ƻzYSHlŢ=*A6ߤxO?8]Nu0L +L(xTwTl#Ѩ.ފ(|Gxu>o d ";z +ţ޽@xT]5ܱSngV.E*9){\.ʾ?aw9G7隮v2q=.Ofl{/0tm95ޮ}c~>᪷^yݦk3;]{f7 cE|.c]]g~4ɌgN|]z蹙FlqVc4o7y.WOIkˍs cWe\N\zh،]5WAL0׽&?0Zfz1^i7cRoW$#$&OMG;MĤJ& +r`OLibjRo0 &?L~fI<1yMIФ]<Ō?0x~kҏMY=1M&kI9~/|]g r'pU/cdņx5_QJ<(z6;(A}7S +>JRWo:%[^^^RꐳrW_wWlLSX{RVߑ13%D iMG2N^%4Hь['KXVZ) +tP,x]5rl7ztnNK9O뤮?_ڥ*&e)ߝcr69u\7d |: !㖰@fz0Զ< CE:c$f3粥Xr ,"Y9)rXD-t&WۚY"w6zCb[Mq?6 j DV~5ρgX>=FuSoLX8B.lՅTR^ʭEe(iwټ'ŢS.$\ u1nQ1CX3zZ3 +E + 4a>cqPS3ċMݜHu@b2r6'F38 +ّަor+-l:D ^jkYY*xLN;d]fE7os1 J!@c_(J-Ju,SJ25|X +D{,KvdER[T2FcNLM?Or#2O ۣԂh .3D6'@Zk-[d.^_tPPM1<y Cb+:@m[.҄5H cFO|!NH&*IǟmNީIn~w˹\"PYK5=uaE5,q/I}tJ`Z&J~j+wfZb\dS7OnA/T&T{ +8E~_%XTٴ +x|1cny)ߤŸ?oO8#D j7Mă*CJQ)D,{hWr2GԚ f_&rcv(>9o?D_`s…!L V0+z5\HS;O#8oQEs &8=SgLo|EgHIE t>Jpzf>vyCWmrR&^; Nuy]Wn^Oz @fTWi5$Z_En_M  "_BMdzUJp\6/%7|'EeMC%P9#x MN?GymgbDa$8]Ri#xJ_Mp7Kz=H Lp\R7|5_K Mp}.>d/m86ikԹeUv?B?@v>=/&| +vg1-GvO (߯w|ߋ ?'OP>A1'v_O|? ,'(/| 'P>GP~ƿ UOߣ|¿ (o|@}OFOOP> OxR_Ӂ"|9 _|;~?BoU(A/Dދ _ 9'(Q߄  :O5(_vh΍(( +DAO|gQ>Q>oA~ʿRF~O-(|? cO(*iOgQ>G+Ƴ^wCsƆV/è婏֧޶oWlKԃm?NY`@fcSz .FgK8  38 4`"> WAPi$tg#:(D0 Ơâ +´"~UoߙA|~O{O:uԩSUF<4:^/kRM[J[x:EHo>#(L5"@ʍu+/bRM'(߲]A+}Ƶ(sHIi\yQ1wקB~a7 7>[qTcv㣁"= +记O1ʕj>bcw.K X(r/`ER ʹ̘(*Ju u"xl`>,zG65!$h#-O| >%/a׀9A(9xh;SSҽ)iz$hBHveCtZnba} 8T;MfI-k&m/hJH:K5}`JK˟y5AwKMk d~F ~# A~~hi.J@2HWogW['+ "$CJғdq/_M]ow#d~>;H~59I%i k'RRbטb KH5Ie$dM5.t/BFwd~kDY/ +;?o*i鯨d~ҌϾkM7ߡd~Uv~t=sOWfig&>N+&_c;JÜ-Jm;?Kd~3uR.퍕Rzy?//xHO)~I%sy::m4d~H: Pd~DGc_27RnѸVc?y3ARN{/i\&﷠+RO'1}#zc2ߟ S"z8]>?n.'vy=3d~߷ v6N>ͳklqww(v~ud~ /tߟ!3_a2߷ոt6;}t/QΨ/rYHDt HoAZv#ރyH/A:H!t ҁH!tHW#zCA:i ۑ/!HKi)]H#}i =H"H;>o2_""7gfz'1>lEþǺ +ʍn_mš[1՘WO/{o5n,輫mjءBD^=fz_DULq.է݌#E4zHD_byrx|MXrw#X=Ge=&-kq|:* knt7~, +uB;]ä{ +} +166~sῃEx#ڔ.!N?0緦{ӎo~AW@]LY~<{1g +v6YD?+<0|y#ە7 _^AH!Z{Al _?|p/<7|EFB GR^YzD?*<9h JsDKAtg*m!``FKި :;/x ML |'ߞ̈|@3>, +_KFu{{g ~=>2 tbfBRȺBD$l+Xߚ E@\|`:= xvo{kC=nJLl 0OO#r{J/v`}qWE4eK!. K!3P~~N~u2D7 %>=蹪 9U/A )5ܗC'߃"c#Ćzh~qy!ރt)~_5b"Vjee'fo0 y͚J빦EYj|󍿐J`=ش>#iln7I4X62^d~=h'uyo/=Xߘ#S1c'=1R}r#)Bd{wf;Eq/^/qbMN 1,r K-=rh>s0/;s !1'0xQ q +z=>F5s"?V?7S/rN3>ҽO<!b=#IѻYnۦзQAl{ӉFnt_Mvma0p:o|-f3h ڽ h3ˠl7Vx;1O\\:xЖkͶ} +W[52` G?ߥ -w!r Y?X _~~`'_'i_[D2gS|"oh'ýZUDӘ \]u<}]_[Awom +_2F_ zy-SQSn>_ߢϢ賚 ~>)0sa\ADưg/˙'pA Mx (=<_q~' G_k87J`w=̱|1{LT]`2vctuc橱4vɱ{ cإ}ӆ-rlYMÍ~AIw% +YA=]xx#/r52#ꉽ[ + S,x7zewoρR`;PY.kOqo3ywvdW|h r0:Yxͪ|&go;P=l;woc1:Hfcm d兎Ao)a}w vnoAL,qОM>_~Ύ䳟#ʴkE,ϓv1'QxQy'Ÿ^>UZ, +Y3*+6xEG.`_wqby  M.Gd/FVtmˊx[)LS'gb /1/~n~oFؿhׇHO0vef-I:秊rz!/iD9F_gu}{<3-ϧ/O9ní]w<ܺaPMl +- [4o6wgPf!A:e+9ʹQT|I7tCJ]&ǜB䌭e0?Ĵ%MNZM+t#kֻS[un]s(IGRE~tC'q;˜Lk:-;8;o>#N' ?IL~}4_r+MLkxR?zmh:USq.m#-t<̉z~pnv-Ns"y5q% +:W6b|Nd^H`W{ +^B#YdL/^naWөoOS]ȢI$gFB/#3A.aBOw!3D{{麛9%l!^Wi=NC4HtRNv?t'4rf)KAB^տö]]SK˘l+q:(E'7rs3vy;|N}&󭵷8D~,=.;`gMg ~~;O'l9#ɳ/B܃"]vGJWgrp3F Yo*H/-E.>?v_yg?X5|1x-v {=;8?| ޝ|}Qd_,_{/x <_/z__e|KW܏DG89gï]O/;?|ςoaZ{ +N S]29|<[^kAg4v'nZ&x.c8\_0!.\qmØ2PF7(36QMKd0*2~ pӘF`ⷳ NϺ0B%l.A#L)4&1Og;ƍZic؇u0@VmNIjh=kN}|i4ۄh~Ų{2Slc\e{q?l˸%l/b\/gLlJJ}L| et9qEOvudf n#J|DAtz9c?m|cm_6>A~un;qq4osI5I?x4kh3xۑ_|cC]KSC/ LQ/b<(5u9#<;_pH"U=:}guQb~z/}gcګ(Y{PA,-+[e7J!t;T.0~N.0֑Wy),|]/q` 2k{Ǥς \gEByڥOh7Z'Bݎ:6Mk9G}|m =8kN/jɶSu?mfۧ1LwM&4O~Odob5֡wR }:FIn7:*4uFXD>֍5\N#HOuѡr ?|үϨ oIʁ| "Hߵ|MF{13Qfz=(S)7|T.:=&?EԁQ'.cEl!ާ9P&7)Kѓȯ "W}?BSvTvXءgGasMȘl&9j=ɐf`sG㻨eclc{Q,M-ecMp8#~G&r_d>➁_*=&$*|1&U֫Lw^Gr86RX5`1Y&.\n?DSz .JN>ݮWGvoR$\IW I?/O փx{O^#csGM< (3&J<'&O;Rn*{?!xx›m  _KnqIC1|^ěoܓ">6{ mnˊ,0A_ķi-| +q{%|E;?|y\R_[Oa2qһ񣸜W|B(.'Q* G  n|G*쒶]|I0i(1,`OYfW/y)|6Z~ގ ZN'§L\dJN>-+F +|;I|ZNɧo~S+|4K½h='񫁟w*|<-?qE'Ux_x'K=RL OOBM + R-7q&..|èWჀi>=}%y):Tx_M!AJ7'L=ܚFxrw~HzgJ+$o%Rt? %foA + '']O?-?q_Mk%X +>$qoTkU|/!·i\?*~~QqFTxCz? qP?|A\?C>*}xSQ#t{UZ~f^w^{Z~EOQ'nƿ3_ +|_ſwE\8fõC +|E9U{oi^-?q3.xx‡6,qck _o*bLW.wY»e~Gg?e>ILxGA;`k{U}kM|+q4C +?|;RHxPᇁY/UZ~!Goߤ'nͯ_Kz7_13տ`LuZNA$aLK^_)3} C + ZgLR5Z~ +,-?q/g>]/ _3}z.۵ě^ &-?q?g+OS|v)POj7|[OIj%=g'aLXkE?qSK'ި!i8?,M + xx nƩw%»ҩި.?7Ľ*N&xHa  +L ¿]'Tq LGܯĽ*<-?q;_֫wU|-?q3 Y-'R'QqxF} 74aN=k +Bx!tM{c<3F5XSV|γs21ľdQr_2z!'ΉO*+yfH4=짼wDٚ)VD _V'"۠_WzaӾe[Ae NNeJ?{,x{bȘhed?=c/ÏFM'PlZ50b}%|yHyvalӘhc<gz@]?9p +yxȺLl?m/&݇s%ӯQ)yT>Q,q?~ ^9奬GMZ lԉPx8:ē-\BlѺZ +N"?ͳ Xq;7?Gn@ڝ(p1y ؘh/ z,v + n`[URMd.;f]S\t hpvp. l2U8|+8.<[z|i~0y/;k`)'lusg>:b7+>w)9}əoﴖU˳鮑&[{]-ۻڻlζ[g_{{/?5?gcoxPLKvyk2EtMP;C@נ۶^ś!ɧ;4x7y"4y=ne~i _mZ/¶4t ޛ&Fz_hYh %"7u^!mhDaKF/@9ئ2gNyOz.?z-h~kx!\_.eGs87Y| @=$#$x +53 +?oIk0f/gڎkpmSLym8 nGV}yA5i+gd=5 wC MRf^EXl\?|jȸ 74Fvp 쟪yjY<[8JQ`hc룇 7PyoGUM, +sޛ!"zaga8$3`|q‡@ P FlYB>gy G;/`.7c~量 ur&';BXe|WdQ6Y4'm~7/1kl! N]+=`O?igUlV^E> c;8b t;f{=C1_ 1'=w M; +5w}5Vǚc#/Q&N< 3mha}'bL ^~W1I?4G3^Ĥs'1"FIO18?Ex~8'O.ʜrD?⿺ kwfG&K{lw1F諥iQ'ےHZ N5A9qr Clw>о-Șbz bN8Q6,Ċ5@o`QlW=]߅wos9S{Ӂjk}&C5YK;+h Q娿u([|7lT7|۹w8KGy^d= +Exf䉏=#W7Cٰ,-&.\%bI6Xv8BC@|Fݱ)r]u{[ʛmw×G,cGq{cryJϋB!Ǐ5}؊tY$ʓ_c|.?7)ž01 zq>|P%)~^(SGWgu+~w1WW~_/؊P⯥O/f4KKCdG/I ,{`53J6."/k[HO/yx;%ϗdτ|&t#v7tpӔri0wC~ޭ-cu]eOC0k*?'{%xQ{>}6%9>ѾMY6yo++ʝGu~#zޯJ;$^匝_1u:k㰉FѦu0 e yy>8` hC>6[|5-F.F.x*6(:qqNMDcX[ٯ~9H:9DQ/|ӎ-BgPe,sσw`l`mFtϱ;˚nqxyuÓ'lf{kp`y#&3hϔMW}Y? Gg}#?=aT}<]ݛK]rcRAz(vxڒ{g8G/дKMд~Dl$:O/Љ P +tH`8WԫE 0֎]r>D{X~GۥHIo~Cҥ|x>Cr6]dP%'@ܿK9U|1ms.ۉ/rܡ?/-zN.p,Ъ^qG|2U}UKLVtHoW\;[6X|55om~ a{<܌63aN^u@ e6e$hzÏ9:p:IJU~K|yѥx6ytto y*y*sk!6{oq:ou lO3!ަG-+݈tݎ1SCAOwΗ[e}UܘF,U|$O3K|rXq-saeay? 4臘xLῊV_/Fd"R"S`g1g*Ӭp3>3RjS}awLa@?rh%sS+(V7kK_6qϋBئ']&@ckJ%jv8}RĮM<'[ΉB  +cYoe ^&)1<5T^dGn}(W+!k?Q*~+o3S!aҮmyf%ksq[qK@19:{/^?VImY_0h?ߋT*A?}yQ|r[D]xg3c]j=\:ՙ +e#E+`#EףE`eԈ2z2)[<]-p#܊~WLxsM~Ǻ\gx[G,Z\6|)Ƅ_tr-+`&޼G[51ߙgclec71uKw>)7bb+!=vu[b|``huZ yʶsyJSU?:'wָz]l z$>A<vv\B /* _ks=w=D>bq^_?|y#ec>=#}I3 ud܋K߹la7cn +37Eb2TeH\gDXVq)׀71W^?ԑEt,tu]_|Hsn,^C4Z˜rdqͩS4=NggB\wu !+pBO:.f,xR1AUsi{~z +X{wV&Աy[1ވцԝV/xԯuϙ4ih٣.ڋͽx>=w#:i5Nw.)a?sZuO,ЯbLt*i|7c//> ,%/ְz>EV|,-7i\{[BD6 u!>]dNx/C^ys;.yVemy1>ibHCyt@] 'n1kbڏxg#Y~ qsc+C<݈mԱ2],ıh{{-!Sk0wT(h`R:yL+qs]a`s/o" b7O16~XZ U/dI8R/ ?,]{:)Ӄ5\-)э7Sqozeֺn +9ql21r>u=|g{!6]hnl9n=qh9nۦĸq@7~:}!sm>Y*q5'[ߌ6֔[/Xcҏchlfjel>q~CT6"[|q^ Ľ,}]_앿`C}9jΏ'Y08˜\۸}%M<{I1ϊ\oq_6^C6 {y6Ʉ='#cXvy*y^BU5YwMm؋zi[M[^nynV{,ר\{6oc߄:(ÁC.(@pY,p?Ժ>u=> }< .'U?}ڿ>L..s$9侑ߵwTX >@BwE-hC^e %g&.a,<0b\53}_6M.0unЏC|sEqժϵ>#z\/ch_axO?otKoN+'r9 rM nvh+QkzҶ 4<7dMiM;X;?#+Fq,VFVmktM7_\dWx~Ptfjz緻Ü'ו{&N!ob9,y㷱 1EqErY4d1\h;ƍVlނ~^=\GT3)Ù:(>,Chڋ`z_\BUU>U:*9Zν_<'].c3d\ʾ u:woo$c%34g ކCLѰ ̇/Zۊ}Pv^/m>}KYh;Q>)mBV,[To\f|+y&41eM4kifC^_rukVKU]ZQ,EQ),]1N1&gF_ۘ|Z>qu<=Mpqz1 2t2OG̶R>]-$}f\W$tϿڨjdgϧ#uzT5Mkk#ĵlԻvdrY?]ƉJ87lF)d{) +[װzpNG=%"!;W1<וT+Tϕkj+!/}T_khORncQJ՟"]P٭G[doaakH%4"F_0\/Q\s.㈜k#69?7ma$Yv4cmƶl'|OXk ƻ{F¦RoxoK֐),׵;YQgvXK.B6]rTnv3^ h.97iڵ r*|WhOT/.zȞ{9}`۔{S3ͽ>F=͐OgnQ뙵 gBb׭"M4pONko>kըcv~/zHN98M1mMXs[ zW8w0 o|G cB&bc6WnΞǸN@BYPu,l"nL^Wu ":x_w~}}hk.1cP_CzL5N*á-Xomc}$C]ֲ9Z8z= ⽞V}{[gX1˳aj @l4fhi[1U~e:N4^b+s0zu>  cy+Qmypn] ;} +-ޒd xk[">ުz+o5VgTbo9VV15֟j'w~Mof\Ps"ΩiSVR[J[|5ުbo[;5ZVVz;{xFf㭍x]m7F[%[V9ʽɔn2[~?>C)(^~e9!狮a&?z~7YS3q7VΚ0Ϛt~Y|4zvAikd朞8oF YΗBxv%/mm=s潤-bs8w%ɷ;qj+g*p@y ,vP{=7/ڇv(dlysvAGtTun|@#b3ޏG;ݿ᷐=11цN"%?y>kϧ] >=t>k>ݿ Q7{y`˩3ЧDiRD|]|\c;'x\Kvv[}|i7R%"./9.\R,%woi%:4OqhwI3:r9/ ]ۣ%9i|?G7k0vr@y_ sqkrŹi"izT_s:[Ijѭ9$C?mL..{u0fLo5b3L2VyDž&L{j:9`^ ̻ɾ6wp]2sb]\I^O!Q%q!%[wlu@6"?xz}/,''>Zd nOb }2%ߒS^y?s<.|w=E:8~"A>z3 +!ƚ=gwT>O%g{zW0/ N1߆{~f|]8:o3IK}6KZYG!gSF&}4L_3j>56ZKa;$\NĽ&򝂈Yܢu}7oLf?\syFw|!y?bfb;˗j'⚗|.;Q4<)砌Igl؍(GgyuwM|wS\7f):bHē|=u`~e#}G07={סOtn^9hʣH3i^>+7#F{gW17>}2&zh֕L1IZz䵮OUkQݏCR8V"ׂϔb+x2ިV빢t/uLӜ'<ǜ-c>U_2pq3rd/ߵ(dgSc5uZbS9~rrgs謁,:?&" a-S'+1D\VߜG#m|q}|##eL߅y?~,\o8rʗ5r9\#~A~ |:+g +5 q3c{<0%Kgs ++ :W%zj--%KAV~=uV?C*?Խjmxk?}kќ3u|.?:άȅ0sq5zVWS>s-ÐF#u0ύ:7bbgo -a?:w β?* kor{DZf-w_w]Է^>bǜg{.)9䚻ZsxxvT},5ukF$eH?I Qr_LޓG_^/_6>=Yk އ #vV|m}?k cdb}Ē-okIآ=1Nz@9{=c{`[0C68CŜȾ]j|Չ%|VŜc1'Ѥ--\)I؎@쵌 +0#:#(G38eXþgzwb={,CΓl]N,2 dz4^W^:w};g}'>y@_V=ަ)_vi}C=Ѓ:;aDbo=:_)}f7ͅ}?ߙųߣSqhQS&>7m?{|~9yviccƸ+xcsIC5.7Ɲ3妬l$=,=G=,5lzwrzx.Aŧ'qmd{bgw0'˽Qƛo=XSbNk^ ߇e{*WŮ zkQW}jכ ǘ$<-%vyI(ϓmxȹ:0};yRzoX9 v@}Is4[cTQ,u>ˠ 㗱(2^>}>yV3|. +vO_8 ]3K~H7+1vrSݎ:0f)#w .#d)-V~>@Ck 7fk~3|kX5>儺F]6"'UQ-uf{<vt[f=6> X}[)ϸv AXܶ|{tx5 cI'W3e-ǯ#BQHf~'19)73c<ʹ%sKdǭkjxs~|?ۜn:qΝp0Ϭ"nyGbNuބt'꼂4[0a<<[qgo )\gx~#n~7!?b?|N!GaF@%p-2ZcM8>?7I wv}ܜ?K#;'3o޵ eߕm̑@9րG)$u#ϹS|'w}r'Wѭu-}B=w}7}cy?jwwvJ +FWO\ X:PV'm +!K<-HN |G0HG3?`<`Ek%eS.52Ȋz]{ܿ;p=u=K> RBߠ?&H|!dڎ),o$gG߿a#4ָ5S|=MwDd;/mؠABAwn\Ƴe3Ĕ-ƝIe +=ڎjR.hxo +x/n~r_~_v(w5t_^g-IXc{by\_|I߄ +3dY7|M?ue Gıԃ}-![_2w9M k?"6O2&C2?D?M>ۿb=~O8!lgޢxe*K&+D}CyNO(k\״e'c)wŋYʺfek6D?gLfk\>mۍ~n|'g[YQgʳyA KcήG9'g-JW}w[8(.~>W2сGxDClۊٯKħ[i0Er)ruGn iot¾*-lN_vuA̍R{Mm|h;9spǽ;<{dLu +τ"Mb3N[%yޛRlʿ͎}嚳O򽬔)ܿG}>7GN3%x.}kj7vh(}6z<1y&^'$ڋ-b n{-,v DC~vٞnw;&}Zt @5k3MͰ#X: ŸX|~\t_o.ygD5Gg' t2Il90,s}o6´_LոuiSٴu7t9u,2K$w=o q31fG$7 UAu Gg/0uk}h̲?N_^ooQм^k^mq߾^I_{З~üݵ5g$_Ry%sob0y.==&G_~79_xs^ћ`R|&ȵ1h0GFig=^ݴy]|Ft:70ʹGO뱤gK6!Z^k:^ )߾i؞G楁'dX8܍3.B)m|c~d|B_96w{Z%=:Ximɧb;Q>Aƛ6ԥ!#>i:z XOI?zo}qt-hľ):M+[d:Tjw?\7p׬%wuP ex/56쟸niխGY-s-)csy| bk+֟c8'؊b &yPbY;ǵ^t"M8/gj|6{R|d̩mcԫG7Vg' .uEc|? g[|mP?AA'ιs=y? +>}j+ؗ~WZ8k6^S-"žC]|Xڴ+R^"U }U.Tbo/+LW+}W >s|~zO= Uω{Uu_6Un%Vr]#[4܋oy$Š S/'8ҷ:WGy6wb^` zyEٌZ<'>3XmC_=ľpXx-&MΩkzC|V}P/K8^B&=4Yq:@[}zC>ho3Af.&yqo z|\oWZد݁ y~Եz\O3}3퐿;yȑb+Ani _H<+zXspڂhtȽ%(cgh3z-a}}v?$=qsW?>w :8/6w&_'7M 6*+__]ޭ\E)c^Op -y|sa03<1>O +[;g?}LmGcgD}uNdܓ?gtYfs3j}"|Yvڌ?r^U97Y.}Wt37_OV^bqmLCGXO>!j>6lkl >=>aȴٵq9FnUm?q;ǡ.>s7G=M-ʳMB=z-,8v {6>ksT<{mdlG^g2չce9C>_yO(~99RF|ߡBpG}jx}y1Tfq$%5)MyaC 1xAZ5kc>ʙ~ǩtә^/ WmG\Zp.*̭E9;܏C)?0Ep37|H#υ,B+˙w/'9Usr?=_~oDbHS䯓}ydlrCHiy\ng?ݟYSViĮi1QZ&cp+ >{pLy!ۅ秲]Y&xhYo!g2a;Wra|*GG |>paxîȑ"r<kXSp]s oAF ٳ,sgo6ssg7m6~־~v -@W#K:rĦΰ4 [;Ժe+u-Qx]ۥu}4O!}g cEW>.ߛ1,7aL MП@ԄN`\4u H/@{#V}mLk1BxoىY"?T(Bky/bEx?DŽ8mJK1VH7ߓZ棿k·Wgo}fSʖ}Z> 1}$FzC hx2RЉ[ތv!=T0 ߈>=}z&s8~}srb΀˱Ny~Klڛߚ:d)7c|>ߗ&$k|g/\ht)6~<+]?[9UُrMfgџ|H_Biʿ7L}_9 }ӤgfIg4irY[iywf93_,HU8"ͺpm>~ m_jV(=6% m] UUSώ38'q$Ϙ_.t*p%7 -?>5w} ]{6b9{l!yDf1ys;- 9ww |?|3@MiY'?ۖb7ʪZOiuYSS;甕VU{*˪=3Y%5TB]}uɍ%(ZQQUZR^YSV]k^ TPV9vıוWD_^Wu$%/++j +OoºڪYfe斕 */-( TN(/v}V٬{'̮-U~_*,NWS7Jj+*Q^6mt"?JHoYV]T6$ Z`fSYe7^jURsoei d.S,SVY&(T>ljIiTV]2byj4責dVԲ +bTY2˔VUN+u8k6fNҒفj +* LAovYЎ +3_VYZ}!8z^ _uTjSe TU %vή7PAuYMt)/Hiy XJvK\#U)[7Ƃ+JAWJU.3H5O + =k* +`T슺s/*dNY5S*Kc^͎dW!YP,ٓ*&͚]qU:GWU']Tg@ +)GE*.RcĤ+Dgdq9 _HS =.G@r!>UKMS6TPzVY1˸7~M%'\2yTqHE\@y}Ԋ)ʙkUZ^3"p+U϶[u-$n-W&UU +T*ߨZ2&3UySEwݡ9TM-8]0S2c@A$(-> + |}R8bJegWBR uL)SfNiZdJyFS)tF:,rЖHJQT^r]:P9]0!Hո.~ +L/k/*UTVA$gyU_E|ROǢj(f7cn %S͋m]O_e5vM\1Ձ3t+X%>kJS¸-qO Dp]6ErtZ<PM Eh:{uI@<ޞrJ?Sf# +D//aVSWZ +6*YRS7{6¨9XlF-5EG5A0v1>Ԕau%s$F]5j^2y6mfͱý!!K*X3YUfV*?ߎ7y@ɨs`g W03peʦ3$u}Q,냒h5(އo Wij3VQ|1ӯt +|2t|?e70KhD]/-ǔժK*K9_9PɊ_r_TsESwQEBEfנbSEb<JKSb!w ݁t?wX1HݠK/ź" +}zDZtla,v"੸> +r!:|EI7 66{\;#=t8ObZcoH!>!HAcb,v?Ҿb&o.̀b"t1Ҿbn,n^,i_?vyH7f^v[; q+Z3.F:H"݈4ecbC=tvFH7""}D~t.RBXi +̂H!݁t,`5 ]tc6E=@,6qwڇԳGEX hA,"R8;t3aGtñ/.]}!z@_KiXgoT<J;=G؀;NE\U_G@:{u,&KB?ߚG_ a B:ҍOb9hON?=ұHB+7@y(Kԋtد?7B;>4nX@A{i?`!xc,VHO#2ȉtQJI=G$1DۼN +-vyߋC'O +9ǿ.jR@- #q!tM{i5_(Ol3N`^1`ML a!_/z:| m+ZNl}HƂo/Yh 9oӴŀ+@#ж#fO+Z^6汔+]+7vgW>½E {#XO{|{:|kwYW׃K dԾ@}Q{Ak2g$&-e!fdT+S +eԷ+\z=ɐK[go6ۯd/`>,uzPΧArR;AhJwXc}o?mwpagݫ{'3XC}su^WpK<uYOAMzWrcɖ"ceKї/_f!:_Ft Oo|otAݫ\P7ڷ_ʱebAR'z`'ӟJ+XZRks 39~`>P2ʏZq_Q^^QIxQ\Yއ~}쟚dϧz]ֽZ2UY87]ۍ1p}eO]Zo%/vQEƆ̆_ted K%H?1oPLM>6yA?1[ҝ~n w鯲/@aol#c-(\"Y{r:{S4ЊH Ik?onx b,ϗOΰؠt r0M G5;❤ =Ǿ)yHX@Ws.o}E{`Կ2$HZT{@1[KJ)] +ͥ -'x}Vt+W]*Ԣ:>Z.zשZgyO]\ko}# ?Ď tcK3F=ZGᲐ~pSǞtZcjw^xb^jƻθ4&ƔqI6G8in)pם<'iDr! +l1:[wt\{l>ANG*<qѰ7ջ1Feg$k?uƸza^,낃^WYH&+}Z|+p[1)wu8V:Xj#Xc UJsKs3ؔ*'|gd3kK{Dwg)?ԢR +wtO}so^Q*!n8oF!DKipE˝)L4?NܙZ`čh etr֥2}wlTd۰ƱGlt{:]=MR6 +: +]eŻƽ=ߖ4+RLɀ 4!z>u`ާ6]bО<昴̛mݜ~s ǂ=bƸ>a \0_Otޱqh>R%eM)eTnbR,wA +~bߊݭ-˸_l;9X9*؅K9["s;m3ߑvn3u.<~Ywv]B̸ {⚹3.ʔgїu OÝf2;?|{,_jӥ|rn黊8[6{ݔo; ^3l~þz~l3Iߪ럥'ߋv KQ%y*ůǩ\Jv ` ?^RTFxݾ\iϚdUYx:DX??[|+Q 3Q{|ίwa5waqRsBL+_X fܥ3 +KeSG1,|Y_~ < +0="rj*U:!2܏L]BjgK,)g +0>-X֡ רXHw޳۷o{K6ڊ{3H}ܣro>'ι'XNKD~pũ7&X,L[G1 ( )l![*+Kәw w;[k-CR0욕ʧǰz0řX- ۝&u4ɅoսE˂|쁱+_9h'qHM y؅9qnsxi.Ly݌$qgcՕSV]F*W?zg[.{opOiV><:e{U.BgvOxq o?t qȨjm׿W8̍kb/DҿVU'Υ~ }fBU..no 8|B|-2agEa=ֺte~ )*WQ+ +7 (ߔ\^i&HM bUP(1ʇZ̨1GAfD2ޓ9u{0m-g:zP?g[=e',ۚ~YDk.7m2Ym9Ӵu͖vLq)odK,N=[[鳯A;?oY$ny{O0{XEh _kCb"m9-~+ By8,dClb=-hm4"}V(?uV,q}EEw߀v5ou9ǶR,J6r3XZ ͶJ(L(Elgl5OzPPXћpht| 2XEר};S_qQEQ\3r=^ za~JD%V,䢱`ɳ =~qlϫ(ІX/{dِ짲dΏu*XDﰪ.\UFXW]{@gifBɬ!N+2 eʎ-yO1+K:7 ڗ vwHw&cJi@8Z{XA~b1Ǵ`6)}$E~'E,uJ`hriTrH NTOA>r/M.T>"])".Ն)c_:TWS;*#ھS!"}Pμhѱ;E&Kʿ:ߑntf{˱Ӆ MŐHǎه"Խc]po.k%.DN G?& yd8 qi1;DVv&B{&$rl{0<0"/yl8!-vH׉-Zz)m@f Q/74R7~Q͎b+Swz]ܘ.6 =MNt?"VƲsB-OQ1cC͞Hsɛ&^wVJ[}/Sܻ^Li4frnEt]\b)Yx~:MNNS4S K?w.F~#5?x'.voU]_;x8v)~oo!r}aG:^L#a;:ܑhphttuJwdSkHs4_N;*n}M1X^r!;#. K,fgRar0586vxp 6K;F`G#P-;ҋ;ƌSu \>Ouci0M sұ)dEZwݺXJxQ[0wS#X4vI+/Wn^d_q8ќ>f)/+Ҿc +vBib#O+80Ycqmv_ts`M0v. FnaW۹v7wԧ7wIv?np-p7d3` P{G:vpYmނ:~z(Mv߰!M4}%[cT&4d^ןr<"tt|H;3.U*?L;ZKT7xcg h;rN.u~'[~-? Qf潦{yv7Sy]sgbULy ?ܛɬXPToaHrOW3u +U@kVB+?yf:O2evf^g龌h1;W13TLk?i4MߜN϶>~o?SXxMS*k<ԯ_AI:fMzojfV~UeW֩'|vwJk*{kC$4ͮW[6E>VǼD%wJfLNή-/gR>Vj;;-; +Ul]Qhrjkd?nuߕ3jSV9\i<@y )S/|~}HhC{*4A?pC*ԀZ*^ bj.ELrk JuUYgnk~ˮ,,gqFcȠA-Td8*+JS>rj4τ%'M(P2$(Ŋe Moq$9#xhsc9O ?h7>G0HD.|Rl5ӱFbnֶHϓxK#xqX-yM~:>WYևUևNuSu}]m__Tǩ?*,oaTB~t<9ɬ- 3SU17'~ֵ+ ?~_H%B,#F?z#D0q-9 sgE/sСay jJpO>?}SşVbzqv"dK\ޖu]$u<"Zǟh:~qoO;3Z 9:]kS yv)[?,Z:2ZlCmmqz i]|ZǟjW{ >i?kOuzx >]2[&:Zy;Mkm ylC~^ m~d\܎Ogh[ކ'A6eac6dhhρ6Ҹ6Vяsj 1?hmxy\ħKr Z6伫 }l?oj }۰ߵ! ? >!Of|/oc{ y(6 W$㽽}0 +aWgЏT\&^4};ST*/т3a⡘krڋvJ<?V|&2y~HA&OpwSR2}VUe|9|I(W|c2P|caEUeYB1 ۏ:5Ɂqj'(-. ]W^U;u*5TX0lZU&^_ e0[b_2j!wnق{fF?oĖk)/2 7y`({!Q[I%W-6`dBִjk&kCpaU%\ х'_?J,VUe0[aT,_a +6PA-8&֕.TyOyTXM,sKfUTq]ξ'9%ު{JwKe*%J&M).+V_ o/+>#-vBܰ|zr꘲ʉ'diy6\96" +$Pɑ1%P҆XL\FW߬5q()׮LW7ɵfʫ]X<\djjMРqwI0A)e5uwו̮5i)5(LF^VqВZS,H1`HRgKԯ5+xya0 h5W;dTwl_!{Z<D/f } RNg2]v%% +.#̕|ͫj`it0 +tt^i ] + ?ƜA7q4-Ȝ(g5O.I(Lj˫j0X$<5wUX=?Լ<,$V !&I!o(2y</0`(S%|ô tIEY񯗛w%KE_Sޚ`{\)MV}e^6<#BT1zXC2(ve 5ZP RSzdW KRUT;LB+ηU) a(qSU_Okc*`&26#) +=DJj%EW#XZEg}jNW GtV5XJ&FcU jXb@/Ӕc[2eUl שEZJܿwnQ:Op$so̩gf U{s,09"+`-0hlfꏖNp(A(WYefxǦ'p",+cD6u?` е7)(/gM=nx$Fx}&jT2^3J` + Ti<Dvj#o糆̕oUD[fzǚcnWPXrUCyk@kBJ|z+(0̚H}Jh.v)\??s%)%R,לOS͔^⬍4.f2[$e:? +T>M߱\xytK׽{FO4Oϛye5~f4pp^h:O^7~33s|*i'ޠ6id=Tzď&wt>{J;&ՆWǎ}mFfÛ̼׆wޢұvEjÏyw*aǹ\5Ϗ6|Cem_j7VPN>;bwx]o&.LylÛMz &>̆w5cml~ k$fANB6|Jnx+?yq!W$Ƶ֓O7v|GJ4v\ۯNf &O繾|g>-'hM'?- F n}т_hwXpVtiX|o ~ĂY~YقjM>y?Q8I߻ق-xWÂ[+i{,V#?f4[p W7ٔt n=l.]-8_? n}߂g+fVx->Zp )?-~֔[-~Ɣ7M\?l n}aXϷ-xo Ԃ+-EԂ{-8ҟ|hZomgXk-l s-ς-x_l -R ^dWZp! {:gc7Z|g-u|ނ7Z|oehY,xH|N-xg g=M7[ ߂[akoc-|s^߳3,8%ԟ^מ%v_ۺUW_?kby7v^wq2O^ ׶k2'-);&Ӑm߅|%_Kb-Y%J-Y%co?-X%[O~K~[o[ϰ~K9o[`6?$-X%~K-oɿ-h"!-~K3oɟdߒ?-y?,OE%|%K -\Yݑf_AK7_-X%ߏ[W~K~fߒ/`W'Y%dz~K~ofmߒϛG$X%+Y%_-9ߒ[~K~!&fY%(c*o?-uۉX%aY% c*seB=E j}R\ŇR qxLTkhwR΃|=?vUu33Aȏ!I&?aPjmhrgJ+RGf:Z6VV<.BewY%ևX|v:PѲZ-L~ !?{9>#9罟{{@6N 42ޘ.(>6/Ln{NaZsr1 9l6) 9lOQ~~r?('`~)'5c+5]?\Ξ `9/E'"n:c2kD!W;g4 y"7ИG>~/`@g^mfZ g-rrh%B|= >u01`發9Uyɼ*/\B?+*[~2oc3FLg&L.5~2UNJD'<B?C++ۤ"8wyWyL ^ZWy]3wsKӊx;Qybxx2*wy*OyKU^~"yU^^ɼU+mB?WRxAW"U^bB?;T)57E=calXq Vk1`܀F 0n¸ccf bløcW`؈q'ƕa\q?5øA0x cO`lxca0`܈Wa0> |5C2~f_Eb)iys ] X)FW`r7[u׭H4Vlߥs,]xb[J'4[Ǒ߭Sl|qGdP?Jm;uzRZnisM܎Kk *~DCquhoEm>>L4`;^N\Q?1oFCc!~Xcy;zIS]I5uPn{'?:' 1z+*DZ%#]G֌4V[3#{:cPb=@rpiĭp=짜PM(ŲC7ձm9K3q|{lűyؑNHVgޏ8u4̎*GՆS_-dju?s屯b?g_m<7y;机2.z_ 3u124zaK̓c0ڎ<᱑!feiAFki=<)h}аߣK;:+Ov;s7sz s~ \_F<:cnZº-$Hp%8kٶ HY9ҁcL1B8i49sB\NOewCTwۨOȝ!!Wcq~5Sњk}E/a,s֞ !'JHKM̃TGhq݉),c7; eֽ<{pνzWwu45ӼwxΓjqK8tҵ밮azν_Z5V-uug)߭'"뜝xNf$]+WhWgsG; Tޢ6s0f4O`_5i}ZhYKc_=_ݦ54^9Wp/o֛ڗ :M.!kzjC+<0?Ղr"jY KN q1wߗ>cuk}SoWYX>ևi Dzrs|_P_\>aXV~I%eX?6)ߕ/Xva9ckrcՈ<<Ǻ{rO>l{l[Z~_>̝4K˲.<7(.xiw&%񎨼. y&#kyPǫ;sITUy1'#^\%Tj۩4 dޏT^yB?Yu8'Qy .~v۠<"^ʋyQgQe*Oχ-VX>K^w3me^ + )˗x7Xt <@BxE'樼p!(y*g~2HwB?75my9O捨{Tw|'@ܘh>s5|:=b׫T5l#=Aj){yo0}i/c}^G)Oʺ~f#+},WENc|X[ub9>7c|Ln6=ԗ-:d|:!l=agyX!{x-Ю۔izXAa 7-nyX[5qӳ<Β%<_36qQ?K3Ծcu5Ù0SNG=g>sv2[I5Ɵcכq<ֹ=E{s7 +Ju묺azZֱa nՔ=F_UE61?T55ǟ*0mX{}$j=[0útZu`úQYަ5ʅV51=<zXnʙzÚI9iʾiˉe qzGl^-Wc5yYK/yX3ߥ,`]pb_c8q_ZK'`]k!CQGk{ȿ: V' RX6vӻ._2~C;y5>kOnzL*& Og˅wKk$_͐oVX)F(G㥱Χ?uUug&/^ɓd >r&A^m!jj˄[޶EaVؚ(-e2cM!aLK|$*ϐk~~̋>9߳kkcj.aRޫ9b!_~s~~O}ν e=|]l{D}|L[3_d\$6s;ҧV/95Ew5fs{uϹտ97~>:s~>w>zqOmϹkiկ) =}&US ~jw_=KH #saCcNiS} 9=+rCp/Ƚ+erjAX\mSSiEfǚ9ׂ jɺ\VMf*|XoC,QrCWcEOp⊐ߝ'ߕ>v{;(?@,fL.Hg>-=hk ϔ.vD+ЊJަHy\1J|}%|yĊb^\cPB{ g&dPl/x^ +bE@nnvgH=չbq˫Scox27qۤ׺^/wܡ u1+ʵ+,7 +5qcP[v9}`?_egtYe=q~} vubz]-r_k ;TU(7N'x%u= sOSNۘN/r})ɵuė'~N}.ɵ_HO'-s]=~z\ NO}zIv L9rG={p4q*/'ύsϧDr +³R5qϧ rJ9'NO%=w[:=Zz=?\KOZ:h{ɵY=ғk zW Ktz^v_*%R~\#NN/)R~z$JOӋ'Jc[/rf|طHkOc]/ޮtz>)Tj*z\)jϧҫh)TzϤ KkJ'%R~~N.Ktzv/)Tz Yl_*?J=wSʏk zs>{>w/HQSєWtgif'MүLoFαw\KOн5fғk zSۭ'Io%=tzyr\߰7,,(O?MW.ufաKqr+|̽J 4z~~->g-, ~AW sCÁ9Ͱ-4l6-@|O^Z<[\oY$>1 5BWksBq_!%Bί3\^%60쟧 {&aFSw`/9R .G3~˞NP( \oF}9e W62><A%xid]u@ߠ7웉'O#.x/*+7we4~ දaۈm[N9uj=Me ;+c7HwU}\otۥs QAǍnYND-u\{'zz%Zr}>(n屋 K/ݟx p>yćO>y,O}؂(_qF;0.D}F}ς2 9>c<{BCrX$9#h=>N#r=E.9F&=rK {3De>9ȿ3WX9]/4Awgڛx ,ހ{L^׷K4@B-9Q YBss QX"ÊŪbE\*kurmt(es>h5, ٗho;T#,߈zH'i)q3D]~CRRg_؊e\go^8ؘ'6-.qC.Om>õNTח :|jɅ\E@:} ~O2|>|uw'/WL(?>+y*P~qUH_؈V􁍓,RʪR +>>B~q`k-$V]2krJx4O|ү5d9E?HY}'tw5XN/ޗUHji9=7|)ȿVcSOh ~0bc7ζ,3gu1?^yBxy:S~en~hWjݗw"\α}hlQo1~K,~@aMZ`LO.{5VzXn>&.IV35^G<[ # +o펗?o*|2i+0$`iգˁA>M3r)U/t>2_|‡k՛/(/~~~\ \Lx.sWx"B#U9o寐bq/ +6+%x,K.pR~H>OnK:B⻀quI|+6(okG< w-#_xqoğg7*8?N8?# +_ |ml7}uR_ܯVby:ؓq>H7G_A=$0=zJ~Qx#qzI$߃Oa)}oOЉ*:|*V3 .#[]Rm.ʲYey=MשceJ:G^4^M<7|J:%)+<OI?O9~\KDؿx@3 # +<'nH#!7*|7iP⻀6Y^[iܕA>$ +5^J\K;4#WxkY~ğg?›o2?k(|%Q7?I2%' ă +/˟+/+> ģ +I?qDⳀX^ |៸+~x@~3GNfn^/˗I:4(7eu6+_k'n 8W$~ Id+_s5Va%a(7qp~xP 93B5|*<xx|c與Hȁ:ă +iH|?X0UG^(}iGܺH⻁M# +K|+67 +o%%x, .ҿDxD7G/?k'W_kGKSqd|=1O +,.WC(.^GӸ|C\8z|X^ |v\>G|HG~ߋˇt~37|J:*^cE<O\ǿf*u?¯~៸q2%'ey>I}s q?(j`yvx瘻8 KtwcbX9`NY'.YBKẚ^t3O+lN-u }Ŋ{'֖e㻭Wvfax7é߳V?e7gK~ӦuL`vMq,!o?VD׮pIB=Y) mqd??iK\vb6_'|ZQu+OqfȺx]s^ 5r8ԑm`\[П]L#;rN(ߐ<"9q/E K`+o3])7]cӜ/p>Qxv*bdp+{5C/O;wp\ϓ<q) 8^>L_:hvM\+ޝa9k8#i`*y L%=Oz~|39oʻb;qzMVOqJ ȩ- W; u/[*KZ +k4{L6 }u4-l*߻ 򵹟U^l'3{%Su}`WrY^t*r$/^?gcaysKI]r裻ogRwInp;_57ʴO%MzHZ!k=·oB@\;^,gYp +uCPYq}"hS>D:aӠ=WC̭ik{}/"=E67za fO_Qhp]!DKyo| 1\ߏ=Ny-;kYߔjwr=> ߉2Ok؋z'Xai />叡wI|PǢqh/^ >~Kj xNڿ_?;g-15nÓ_nhPc(nג|_Ofo>'/ڍEԞ;(ĸ@{rц7SkD1+xvί%ޮP=}_5E>1&19i[>05=P&b9/Y }xtɈ\ԝ:]w{DCq73o d.PcCh}B \a|ܖWi|vmuH?&A{#EJ㏼dT&47$~.蓒_O7Y8b(?)d~{/6ٵw2asGPs/J]tpmīs݇l>SS⯭Do=gLpKeډq1aޔgS*q;GĜ9Qu>mg7+ ɳse~ʂ{w1e4ӟcE2vԯv{ YLtkrу[(˹Bs!OjG9+7DEʼnɋ=KK[=E鋢ͮeKp=Uђؚe=-<X"Wr"'p$OQG^7SXOWDm=WTL ~Ų+9Gooxtk-nh9hݰ`۬~b-)ڬyyy wA=`3ex*QhDJ7P+Чy߳^ؒH?oCv]'Bۓ y9U߇P r/(7Q?o uK[d}]Ӑ^s[I"C V4i+'rg=JO0ߙqbjB8_'Бc}Xq^'dy{uԸlU*Wy)<5Q̗%"OeIq-~ɵ Q5MvgՋkE7s="kAKO~BdL!֋ܪW2%gyE}!m{];N1bF:Vw_m'Az;GR8*N'Aro\䁿?MV1GS֔;uԺ\sNq %c.m,1?GCµ MR,M#.-̱;Y5HDZPVV+]DuSwsRމy4ycW>&NZs[$A1gX#jOr'#7ub:8S +x@G!nbe3v5qmjuGaAgr\|sO]/sXs0ǝwD-8l 毑Q4_C[d9u[$mu$ EQ1 =%|gXui㧘oI_9'ÛKږ ݬ΂gήsw%7 ϳE˫r5EN)dWvQ2=4LY (D!O*'ZN02•Vkb瀼),o3vRQ1s- 쓩:⿻LzG]ݡh1hl ݆m׻}^K !d{6$Sjɑ_U4SWQ$ޡv5druq\z@ܿK>U'_3' ՔY7̊K[%VC13k˖--DS&soE6UkZϾ}*5ߦHgͯAؿKzC(I\{ ȃy x2ecޜXԏy)=:fx Ѧhqf"߭4-Z*-[>qn Ds秊Ch.9ǧǶ*g3{QO+:?"[=Va?t1:J` :]ȃqY^𭋣*n ;%N~͓rQJy^xi+E]X_xƝ^@@kyOy2ߠQ&|_hțY)=г;#+P1͛D p.J]Y?9\c^RaG[5/CF_/Qdk%c!=<kك{ߦ{HO܄h L__o뎽Op+m^}yeɞؒM/juA27O؋G ^3(攘VGQ&|P+A+&1u0V9ߨw^/a'+8a~l ZZ*[1X[ms1dp{\[{$JO/9w wW`ζVuͯ^ou>w- +«}1 -}\P6 ;9Iu\$;>FD׸@O~w-05:&'L @BVun1vbi2b-Geޢq=->{J}OazFV-lZK`'셏-.ph,*LjyH"\;%-^8ǀ G1p~x%e-QBcI<½Vc|nbfʈ^k܂q*E]E(&9ȁhSSf? -2V +jIyu.wlʱ_دƅ?_:Oq>X)H;;N0ķɧ8%6E>5biyJ& +ӂ ]IVĝh때Զq[ioVe:p/eiLt۠|M31ΪR|ܭ򝘚Yqa\&#ɣZ)y~#^_qYo9׍Wsݞb"r +%@&hb\W//* +y?RS>8-GC+#𕵘J<+#Ef`k9ti6bGux_#^Glr|8e9#S*}jRjҏ6N2Ϡy:T7W3 +?lx?}dp~ɺ5wx5~?k?.spn#n ئw{px,~2ӾP#ڙ!@~[bL?xV㎰1,=R'Rdlov?=wߨߨkw7v߸|wǶ_w9r5w!#?w<&lzk*6} GJ, n5bLJlc-k\!a2Gr| |vm&F,my]npƸSc0߮?Խx1y<ؤrսKj~m#Zn3?ClDs,rU;GcUzb]\1{G+dT3bfc]7󘀦_9x$~'҇?-~zC9^XS36e[U(Cm_=㻆/%>^@ΗqzV>.yɍʙ&;=W yr=Ь3/LƳկZG@1 C\?_ j9h_i~"9p$秊;*UV>V[OvoT[e{w웱=Oc_,+ɮ_34E=xΓ;3(?'u:هwA&><}^gǃRA `+f.뛓vwe'Vrزhv Oɉ,g֡_:˖f:sO[oi{Qq=$3.qb!cK9s #oX[o;0oW'ΪL3]Et<鱄='C淝|Xl,{GEOw?k}%{ Xj;~;W&e!m} +9^!c moIc7FGmZEޙ"׽;Н(qwmN&}ic:nOJuMAA uex13>pzO7~}]oĔ N+}~,ǽ`:y;traW/oQ~)mQ/6VC'J {tdߗx8Webѓu57k9Aod)Z!СűjD,f]/抖o0O_y~w* lEp3kM s;7r}Et#9p5=q6C\Z#L$gc܂J]Vlg{A9 q^Ab}ٰ`OS{\/}}Skvbv L:A)%λ:QquX˛9tNl ĤWwb=}5I%v4SM7"^_%_ s|rk剌W@aw<| 15Bd!]O<'q/[o@śWAꃤKGIf}7!rq~Y. + +ZS1ۅ-'k,7#dkvd-\_V!/em jЏ늙)䵜6r>sciԽq_ M+W1`o+Ӥ|:7h6>!Cha76!~a9Yc!G`Bx¡mQo`v֛[v[սFsvەnB!vC!,mciCNokf.~@1 DzOcoˉy^y~n|t7vN,I}9ϲ>;O*;' ,oYнl調=BORiV8xqƱo^Pwyb"e4Ӯ]JOO: IO{,4ZOz:LzzZ]zz[NƂe苀k!C/A5rkĶu4ﶁn1r3uw-:_A~w'H}Nk:;!_iY/Ǖ5;d=tuҸս#c|MڗCʾI46翨pr9ڎvƴ'byv/?Eyv2?x99/~;3zݴs'p)9C:ccNhK7O7W-}I1xX.{(_Ox̟:VNKIM^h.J%Uy\*K?d?4"0F dk>, q2e:1勻Ns#IrXwX9+ e_q}W¾PG?Ͼ.i_kFsjMÏxIEO荻|ߤr~2I?sNձ>)ϘS:^uܵ6ȸ̳9Zs1r̺FU h ,lem.ý}UJYpOys9TjC.(hܪu.'}A[6ϐGyh;漯Nғz@}zKu'Tt;y=.m=*Sϸdw.Ҍy^{\opվ'B]!HE6ͽm; +uH][ vEE^C\oƲž/xgSNOŚ8kI_z[qIw"uڤ<#^I(7U}I:C\udYr0YD};{4hOkfM{AyM-n_7VݔKl{ݡi6 gfVL}-!ΓYӣ5f&з1V;翑:~#b\ b S2aM.{ؒs Fk@W3-}&g[ƉLyy.5r(QQCGk +93sqԇׁG86+Fpˎl`|T+[-,?||B?sEsl+UQwv A?}Iz5z r1-Ò,>Z +E OMFQ_mGegq+!)o{ -2{TQYCI E;O>{#Gϧx~)uxix6Ǩ"㇎ʿT.rRw%} xN_x^ϟub]6޽By뎲k ٛ |܌PU`o@ u9j{^nW%ǢS%1'\%'Sc΁,۰sq~VHvl)/y}ݵϹv>M®obPr8s:ڱ ÅX> G;mC#?Y*wAL3/kޓ L;:wr>;sHŻ7 F\0Oa< Pεue%NaQib"稴&WRL3%W7iyןe?Ɵױ` .]t3rlW&v:Aͫ0,ZН٥˵Dth&ld~mz`o^7z= YS?b6\OԻK[ @:K;;;?IwG|?+nI6U"4]O37|>g0 f1[Eh ׹~τ&~ &MnNFo|x`WM_x xk`G̻y 緞!Ώ"_g6CYK܌ŋGg#mWqJ.bk#ݘ6W@fka9 +yo)7*wPg6K'6xqSxدq{w9~A/Xn{py/ l'gxFsklfD:Ώ8qNS)>^im}O'_oGSk6 +^xOI~m(WS߿x3KߔxkKreB<9('jJ3ɭgkl{ϬTB_M;:M%y{-g-?x{g[[xk[o=s>;rxo>}֖!_^O9K~xՔoIEWrI+oQ{My^Sj&>ogiW,nw-s +3ўW] Ah<>c)x{WҮ'|Y56'3}},Z'MyJ8ud^qMah5B,9_$w.Mz(s:Ŝ +u\l;Nlpl"xz̧p8 |)Ns_S;?wj`G 8Xsg>jk9<7ȳ<78 "/)S'q%Qb}ԘE(K}[ivڅ1=ًdNJ1Dv2:0}KNGC?D2CgOU/~Ghzpߊ5-<אABv!z K*&v"399Rfs\'6b XqwzUisVROJ>M[SD`aI.魯u~C_V}8kw x6s`Qw3շǭ^:h!o1/%|D'En{rK.b!Q?yceLEcCу8ysp{oFIc]ccگuM6n헓{΋*.oyi&["?9߬{9jߞvp3q{xR8] >=P}W4{3{]7r~ 'oT<{h,F%AzZzl=e2o\hT55WBrz~ޭu/rQ<'>*aXK6F +#=6]zcľx h8iGd~+zu![e cVw#ٰ ; }DnyF5A{Mx qt>ӈqowLZ*eޘp/I'-IW/?. +0?AHy]͘ڑvވ1?k qyǕi®yU/7񾸋m^F rj jfU7?zWכy_U^1zaeU ~†O;PU5>gy3Zm>,BkWLgA'=+? ʸ-o$gn[m +C{MP`:K7_}sɵA1m=9eq^Z͹'m~Win5*y&o~ƥGp1kVvTizCc x`#.1v8>UD֟2R ٗh?Ɣ?T߬JÜX&*QbڎLJQFgQHSƆŸ7~Uq$S|5Йq0gv[-q}'E$/YI߂Ojý~A1gQ <߸Ͽo; %UWaPb|͋,b֏$ D@o9yԵR2P~"y5r09ϛ6}ͱ%bae[[ޫ-o_``6_Wn =>z>v4?0@k|.B'e3_@_ V}(NLߧ3 뚜1߷]߿:{`c~"~3kCuI3Go~S{;?xsDDy9k^m_= +`waw%kMJqVnT~.s?h>9pc>H>|Gʎ8N}4f|GcX[{^i{^o8eɹ7[[k}wq8/{18-ql|1==wy8b/JiVO]W`>-98XiYN|ٯ} +¦= <4zƃCeW<-qYQ\~1* hyyJ~~MZoS+!NjęnOTߡZzpI{_r%a{O`sZ*i@n9 Bn.g 1H1h:^< ^:W}*9f;Hcug͟$oP\R=֭z~O'?p-?F'Gn<^د~WÙz=EM\3sLs֖32t!ƖNJ;_cW r9|1^V='.Na)=cz%.ߓc6<{xpDqsᠫIGwq+y'A?bJ߻ q z[Xe@S{r9NЌw93?J8npy'{n=OhQpqh.GH{_#}G+LQ2GF>9>%߆|_A|6 Pʊ>g[bϟ?0pRiޓ.G!븈o_7BiysG@Q2}!<`Gx@a]OtfgxϚ]-׌1*cvd ,mtX12*k? _1z^GG̞u*SM6oCN\;"lAlsxbk>ބE|?iWh +Bm5KOLjSbT{[-y~>o|ol~7}{zFwsS|kO.ѷQo[\M.sui?=VEGMazK}|w>noDߖĴin[K񛘽sdo_r|/ԩFî; cl8=![O=,8mlܧk'/8sQqmzO.˜@@c_@v@v[84Uu3: +۶7TDE=g%|ZYew8$]͔S(z]zo%в:hW*s{Ìj|w)X3ZݥeO\rc Pؿ5k'ռ,֥<7{Eoء],!"_Y'%scs!n>1_2n(罞M"6>W3^QuWlmsϓ}G~SխOk=:%ϥRU^'?^x]\+xdYqg'y|#I#{ 3ZV7:xӤjzg/랓w8 IA_ %πWnnT߈^.cϙ{cq̽VѢ;~ |Ç]8xwI'bU1Ƙ#-UяU>cRww11!A}'c<#}g#|$Z +{sFF?<8Lp >nmc\gw릤󤓀_){tL#qἇgoʟB_k oYk_-Qi/yCo}N۵vF<["w}[m/!P .Ƒ\&7"HߋU{]!̉5;_GbA('a^V0;{Z͝/CXyӀք=Pty.+޽qwZ;a6߶Vs@qh@ni|t|W\}H +k=Z<G:Tk٨۬`}ݼ s_ICv~\,W=nk;JE껃+&;4Ʒɻ(2xSƽ?: 0Ç\}YǤrE;0< }+xI9q̽\}(:~ #k؅ei v.t{ڡ-w8gR-FϏVt}n]um;B=%j#{3k{i~S!tj7]Lr:$}-2K)S݁S~\z}p}WC5:/=j,GoiXzѱ1'8Rzbc* 4[|inƠl}^w8bп*bեYzF^N/n)/lcj!+k.Kh/7aN +}ـ?z/y[_6Z>>Oxc:o݊a^c6~x |Y2ý'p1S:g%t_G 2ML=<a) }҅WErUSNXY׍:jϵUD^^ϦcŸeO<5civ)˴o64?8xTؽqA'U]j?/w$s2sFvŚܨƅ>p@~:LC_K9xn^'u~ +<ͫ2oL > |Ojg4+86x=;vm8~ݕGS=NpIÞFXq?s6́|9}lwgغb-J}3E±lPGgɭe V7.o{CE?g;o<%=_TN~<Iro=t{-w~0;uC?4ލ=5oӃv<3~v}WK{~ +>]b <)-!6N{m"7?:!o+>ʙX+WG `.@ԅ΀]t! HB#Vgox +nHڳ3d2fy=%ŷ,ul^nӝ!v; +iy{y3l\W男޳y y[|)8d,bʙ2~vc {[?6EHg,Fz'һ.Ev.ȿ2o}tNȼ{twAޝwchބy3==ƞW.^ǘ Ҿ=7_7e|w~fxNЧV[sݘUxF@=/UiȓߚހY~o>w{Y>c0_W0 P)^AY-۽&VUY7GsqY/"qQmuA?߅> _y ~U_2r'qKU^v +:GO3W pzw[o~?v?菿k=^2CKF fѵ2/CN:{C6 }|R?0S'MxihsUzH'M[n7՚1o|*s—d-Ð@ӦP5|p܌%Ty"D],<'M}Y.!s~^:`(-'2?,AKD^ի5o4~d%!.Yf}$rA4'L0.@a`vBRm Ő`jt:H&X +%3ՋD_)3B/jj!l<%` 6|Zf簝s̕:bPfG̯+ꊕQ-C| *+!_`h21dQ6`Ǎg^ r8P +~-#ɰ)uevuܑևL_D+10,ϱH6Wύ3ɪȯ(.EC`"Q9fI~it|o(Wm$i2? M̮$t>BXF,Cu$I0 Eu~ѦM賁d~ʰKKd"Rv Ec";u<K$!'XQr1`&, @$& M!zۭJԘ1zZT醅A%Jںf72Omъ`"P(DPm:Ÿ"=_$6_XCmg.g/7Ai"ߢ +ߌIRb.nGzAW|U2Jѐ_pMDu;jt}ټd(Χ?:?NU՚a TKo*aP`vB>bTk@c +Q.B#/ +|u57)LTخ>_>]/y8CD~}0 ~ )hMK<  +* 9eqB ѾxάN +FgZGdux/X1D/v?_k/ | $HPDz>'ci0A3F?zV}gWjM=όuc~3XŶ`'Y.WH+ʥ_@"Ch0^zP<_6 9\ďʙVvˎ$(P +A[<(1ioF7gϝ? '}I}`"+\Vf~oQz̤` ZdE!3oMzD 1 ϟBUrOCg/+9՚Ӧɡ˴iEs {ZsX|N]˪`Ij &λ#pEIDڲ2M'&O\< -c+ $'M庤\(T͙elI|)eL%*M'$|Կs*JeWHp;UI8`WGLNJBAշx2@Y" +gOWm,rLUd\UpBu: &Ыae$tޖ:C:'e*RυpIAc"}f*lPpH.աQZaϖK1a *ӌB$rWAf!Tn0u\UpzpAq~\L$B3!qGiÅ)ᣖ\{r;x@o]Qg&+]i[ C0'BZEһLt; e#I3łr¬Ǘz|M^bD臆rC g%%0!wzH'*:]Q&`16ҮBpX0 &VjiP[S܋.b,*v~kUঢ়EdD$Df^ Sz3Vbr&7҅ +ALj J +U/xCN"KpyM1*_& %j/l{8׮㐟[k1?rNyiKMp51 '` diOVleϙ˂ %14 %4{bz<2;o |>F$sHx ȘqT,–SpBrT?VNӗ{GO.eA Db.Nj?D/gU18?NO~8GnV'@ƲHɪKi3˼rB&8Xd-ɑ*z/+ctrTTSxzM3 έNfЯZj,%MԘ+GbLn|rjxc%D*HmyClj9?"* +n̢KL&bɢ ts'W䲒Q†rnm&#d/z.~N;ѫ~$*V&XOz-^AmB}}0߹ y@ tuk8Xg[3c cSHg!wa<2H#}caeu^gt pEa;8>r Z ˚˴|D:!$HG!WFa5䁴HDEzZ'nE.k-랡hFGz'NA.YHaaHH' mBz+ ,[#pЉHHbt=#@_r*4}ڊt(GZ؈v}H"]C:j !} 5鉇7Hβ?ֲ*Ezazuxxv#n=^kf҆M^H#lz`'{"-nYF>Z9u>) Fzb7!m|Gڄ|rH釖uҭ?BB:,ih{t?@OO"@z +ıh)z}8|D:W+OHK>2ݏ|ȡ OY>,9:kB#*AWܜǼUߜeD^ɂ ~Ky¯yԩt[EK^ ;= [ѽTV {"`S|]noK6ol[걢g+ M/ْC^=~E}@xs珷 x63^zm!SR )NLZf&,i~ Ń+w5xKK7hdg[6/jq/sc:I IRͤvm0\N}05A\ + ˯cڮkpJҍoRw+{U5hzO"3qg.)SɽٵQeOD |.|.%Kmy=%-n׎hͨ_f7|y f .W͗lJEY~0*QߊBҔUl{R Y"p2G'o.pt`㐛4ql˵sܮ6iie[Flm-Wu! Ҽ]K_ҍXzw)In->.>QGȫ*$L GպeZ\\E WXl].,qN +YtމeH#3/8d%[ůثJ% "5@ +$XĊ : +3RF$ c~Yc8++**>qcIpueثP=娥kBc)O7x,]+?muɖ[ݾm7*i _,zۥu(+~[KZvxG_9ov}O>g&vlu*ٸռUikslvmm[]۷JZ6vlrye3q#g}WC俴 sߋgXYs8A;4`qxu\obWv@]ogK?$꾃Kieܷ+ѝȬMn.ph_E((iy[1 ӽ=c}vZх6%ݗt?~! %~v[Lus8!_6zROb3rt3i]~VIƱɑZJ ̘'[tٕEQ +.E5 Q}ȒJp3#,jl̃.`"h>؛sǭF9BH<V*PՅaq(]KʲAW:ӭ. y/lic⺲o2v&;ap-ac$ 5fF0xcohnQQ hHE-RD[kUrd`,?ZKkފn܏q>6V>q>{.?Y?ˑ0r.s?r|;m!7oy4}/dbKDK{>pbh~uw5aʴD04 ~f޳n Pfsm9ȧ13h q>&:-"l`?c7UJlTV e#2;8dES&4n}6x @gj\R+  X^D} *bwY;;Ʊ |/Dp?i%L',,/PH?P4]ENWvBT6g AOXv玖1}?2PzL譍++^ˋZ*E  bSp|U][_hnÝz#/ +({hxs蝘pnWn&Pgi5wo9'ffލJӗpx}i|R`=³Ǐ|lݢ>Mߞf*ލ68Fîx +޳q ''">FHmQZ..L~4n9l2aY +/N~k7ҳ"rܼ Q`]= "㣁ɦ~僱3 +|*G;ƝNs3].x᪆${B{vg \ ݶ}z-msw5$Yᆕ'm~bK//zHeBHe@_&G0 r70G31Sʢ1,$x:"w0?ƀw&9{ƿ<kO71Bh :4@r0a/6Dm[l7(7'  P ã p 15h보vz^Kw 5@ܿWF؏{h9d|C{y akLyq&s]5{Pt.߃1uU?fÓC`"nu *\ʋ=,Âvs(yHbqzYU>*Q+ۘ|'Ȣinyp0{c̿ 82d8ѹ&sb,k@; dU$2{m3Fgb<}T\]φx3voywSƁ4q\ZSBL2ĎQopp GyM} ?jhpgv%wtcLg +Y#pw<9m0ՠ^r}'3 A6Tm$2<qW~z[\[}XcW)*dJK |6-൅6`?r_k:?gp.K<ԇC'Pe,zA~nGmӃ +y{FkCA~C?D(Dn~DWk๱?0p؟gHcp?y!gR67m벸CQf1Z2b/ )47R)pWaX7ehy7NOV\l4/B_~c1t5hq4g:B$!RH%]N BTePh,*XX62d62n}62gabvȤ^i+]J +V:@h%Ԏ'PI}qTṔ zFl<45g!^ҽ4|F#Ie:,!I`ܴB'dEV*A+ZBe?ȦvWfI:s |ze'(ǫc' V-EN,hl. +: +Rrn&iѫ8P&Gpd˦EdzLAGNXH BPȭRBekCˡJ:)n!jE( $ +Kr2\I\HHiRy5Q {P`MitKh _&m/9~nDEmW^MӉ >>J+2nP[ VaIAKQ1PmEYb _0 )s`b٣ey9Ԧ;6IAY-Eofk|Y,$o jOGs s44s k[Vnp^#g_4 S)Dw'^u3*ٽXUC#N!L@Yxqnm%x):@jׁ})e)%'>ZuK\Cr]" &bCH#\uRr]`* A_;2'ʥLɼ\d:)Q~o?aėL:k֟E^25uL ֝mkE'V_xG'kEE,0NB_ZAQak8 ED37mxYS:Խ|B {1FuNY  +ymz|M6ŋLw|-: wg~aA~]N76睆"}~Ɩ⼶֖<)$܆NUm !7X.WLGUm +4dek@][ 4W\n{վrkl}cWhFSډLzJg櫗Tvfo|u̳ﰷHEEu]+. +vC~_3b}G9zJ5v㇝ 3NS6-^ˌ6k&;1qU3cpI*2!^+9ƸКҚP@@U, 4kNVGg&wq;Ȏ΢fr봎ereӜf R)m*1YBbLA)Z}2aq83 5MFavGZ^<%;FÛl1a} W\H3uP7%2)֎mc擶cصmaE bN3({0ˠ& +GM@00x%^d 6|m3@Mro.тMV8ks"Ǔi5`vXve-Bx!@5ch>`rɱy?(Z da U8.@l\H4N]dEr[άfUO&Y [„.?\ +V_^I~9f2l1R$HީJS 4|`H _y]ڋLu뗩QX%ݱ&*\It.EIf"qk%zgOVƉg\*^SxM Cup,}V+ႽbJDxJ*.]XV.Zt 71P ujX T! q|0T= +G$z&\_-*Y LW ڵ̇@sӅzCZn 7n  |!; CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc > CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_plugin.cc.s" - cd /_Increase/AddCustom/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/AddCustom/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s # Object files for target cust_tf_parsers cust_tf_parsers_OBJECTS = \ @@ -93,18 +93,18 @@ cust_tf_parsers_EXTERNAL_OBJECTS = framework/tf_plugin/libcust_tf_parsers.so: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" - cd /_Increase/AddCustom/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_tf_parsers.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/framework/tf_plugin && $(CMAKE_COMMAND) -P CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/framework/tf_plugin /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/framework/tf_plugin /_Increase/AddCustom/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/framework/tf_plugin /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal index d8d1048b3fbcd2c0e95f1a123f8ad5da8710c1a4..215fc94cd836bf941dd3071479092e435cea2e6f 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal @@ -2,7 +2,7 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o - /_Increase/AddCustom/framework/tf_plugin/tensorflow_add_custom_plugin.cc + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc /usr/include/stdc-predef.h /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h /usr/include/c++/11/functional diff --git a/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d index 0bad1e49b22cb3b36c9d4109978826f17072fe3c..3891d25f81bce987b1ca86f59baf2b6038ee45fe 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d +++ b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d @@ -1,5 +1,5 @@ framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: \ - /_Increase/AddCustom/framework/tf_plugin/tensorflow_add_custom_plugin.cc \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc \ /usr/include/stdc-predef.h \ /usr/local/Ascend/ascend-toolkit/latest/include/register/register.h \ /usr/include/c++/11/functional \ diff --git a/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/Makefile b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/Makefile index bdb40a99fb22f24db4e10d3a310c1cf394eda735..92715e7452088e3f7d3bc3aa70b8d9bfd889ccef 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/Makefile +++ b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out # Special rule for the target package package: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /_Increase/AddCustom/build_out && /usr/bin/cpack --config ./CPackConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && /usr/bin/cpack --config ./CPackConfig.cmake .PHONY : package # Special rule for the target package @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/AddCustom/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /_Increase/AddCustom/build_out/CPackSourceConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,14 +152,14 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles /_Increase/AddCustom/build_out/framework/tf_plugin//CMakeFiles/progress.marks - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target clean: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/clean + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/clean .PHONY : clean # The main clean target @@ -168,22 +168,22 @@ clean/fast: clean # Prepare targets for installation. preinstall: all - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall .PHONY : preinstall/fast # clear depends depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -192,7 +192,7 @@ cust_tf_parsers: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/rule # fast build rule for target. cust_tf_parsers/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o @@ -200,7 +200,7 @@ tensorflow_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o # target to build an object file tensorflow_add_custom_plugin.cc.o: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o .PHONY : tensorflow_add_custom_plugin.cc.o tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i @@ -208,7 +208,7 @@ tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i # target to preprocess a source file tensorflow_add_custom_plugin.cc.i: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i .PHONY : tensorflow_add_custom_plugin.cc.i tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s @@ -216,7 +216,7 @@ tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s # target to generate assembly for a file tensorflow_add_custom_plugin.cc.s: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s .PHONY : tensorflow_add_custom_plugin.cc.s # Help Target @@ -248,6 +248,6 @@ help: # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/cmake_install.cmake b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/cmake_install.cmake index 83ae20f5cffa2542e29ffad291cf928ab6fc4837..f26c240a074e1bc6fcd4cf9f17498109c78bc656 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/cmake_install.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/framework/tf_plugin/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: /_Increase/AddCustom/framework/tf_plugin +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/framework/tf_plugin # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/_Increase/AddCustom/build_out") + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -49,7 +49,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/AddCustom/build_out/framework/tf_plugin/libcust_tf_parsers.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 diff --git a/Increase_DataCopy_case/No_Increase/build_out/install_manifest.txt b/Increase_DataCopy_case/No_Increase/build_out/install_manifest.txt index c4a89bf28636b8bb78af8d6f1c4d4328fa16eba6..1be0fb8200a9ca6031a48cd31f00edc68ae02313 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/install_manifest.txt +++ b/Increase_DataCopy_case/No_Increase/build_out/install_manifest.txt @@ -1,33 +1,33 @@ -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h -/_Increase/AddCustom/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 -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json -/_Increase/AddCustom/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 -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json -/_Increase/AddCustom/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 -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh -/_Increase/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info \ No newline at end of file +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake index 2c97f3c8ac82ae3d3985b287fb2b9c5172867e65..129efee7bfeb0be6642b067160c6e56dfeae5f70 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/_Increase/AddCustom") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/_Increase/AddCustom/build_out") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake index 7d8cc97ce432756f7c45dbaec39512eb1927b7e0..77c1b4418c7f34e1cad8c3e0686ad064321c4864 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake @@ -8,8 +8,8 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/_Increase/AddCustom/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" - "/_Increase/AddCustom/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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" + "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d" ) # Targets to which this target links. diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d index 6cca3f5d610f7ce1156ebef682f0f47d5c8edfb9..33852e3dab5a4c02f046c771b7e0143a960351fc 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d @@ -1,7 +1,7 @@ op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o: \ - /_Increase/AddCustom/build_out/autogen/op_proto.cc \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/op_proto.cc \ /usr/include/stdc-predef.h \ - /_Increase/AddCustom/build_out/autogen/op_proto.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 \ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d index baa1b0563ff9f79ad1ae52d0c2e7deed2fa5cf08..eea91459f1067e781f42e1f1f60c93c98a6b7cf9 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d @@ -1,6 +1,7 @@ op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: \ - /_Increase/AddCustom/op_host/add_custom.cpp /usr/include/stdc-predef.h \ - /_Increase/AddCustom/op_host/add_custom_tiling.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom_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 \ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make index cb4aceedd4577ba220ae197c9c1a6bdfa3ff1ab9..43b86d081de8bf2b67c8836d8d791c0943e51fd5 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Include any dependencies generated for this target. include op_host/CMakeFiles/cust_op_proto.dir/depend.make @@ -72,30 +72,30 @@ include op_host/CMakeFiles/cust_op_proto.dir/flags.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: ../op_host/add_custom.cpp op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /_Increase/AddCustom/op_host/add_custom.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/add_custom.cpp.i" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/AddCustom/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/add_custom.cpp.s" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/AddCustom/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" - cd /_Increase/AddCustom/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 /_Increase/AddCustom/build_out/autogen/op_proto.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/AddCustom/build_out/autogen/op_proto.cc > CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/AddCustom/build_out/autogen/op_proto.cc -o CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 = \ @@ -109,18 +109,18 @@ op_host/libcust_opsproto_rt2.0.so: op_host/CMakeFiles/cust_op_proto.dir/add_cust 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" - cd /_Increase/AddCustom/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_op_proto.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_op_proto.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_host /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_host /_Increase/AddCustom/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal index 8331296a97997cdafe989f993e0e360b2125c943..293cb82e03c8ac8aecc2fe24d921ae5d017adc09 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -2,9 +2,9 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o - /_Increase/AddCustom/build_out/autogen/op_proto.cc + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/op_proto.cc /usr/include/stdc-predef.h - /_Increase/AddCustom/build_out/autogen/op_proto.h + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -300,9 +300,9 @@ op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o /usr/local/Ascend/ascend-toolkit/latest/include/graph/ascend_string.h op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o - /_Increase/AddCustom/op_host/add_custom.cpp + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp /usr/include/stdc-predef.h - /_Increase/AddCustom/op_host/add_custom_tiling.h + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom_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 diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake index 93d2c4098d5209446605f42f035eec4e7537be03..1238b9402ad9b5468ab0a5f9fc2930540b942a05 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake @@ -8,7 +8,7 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/_Increase/AddCustom/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d" ) # Targets to which this target links. diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d index 99a6823414dda54cede32269d3d225314d898365..3e6a3e6ff6e5da17e2a219a00dbb1304f7851aa7 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d @@ -1,5 +1,5 @@ op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ - /_Increase/AddCustom/build_out/autogen/aclnn_add_custom.cpp \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.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 \ @@ -121,7 +121,7 @@ op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ /usr/include/c++/11/bits/stl_vector.h \ /usr/include/c++/11/bits/stl_bvector.h \ /usr/include/c++/11/bits/vector.tcc \ - /_Increase/AddCustom/build_out/autogen/aclnn_add_custom.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.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 \ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make index 42f081077328867b3b76a993c216b4773e666614..8df0b06dda5108e3fb5422b66233d41c250bad6d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Include any dependencies generated for this target. include op_host/CMakeFiles/cust_opapi.dir/depend.make @@ -72,16 +72,16 @@ include op_host/CMakeFiles/cust_opapi.dir/flags.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: autogen/aclnn_add_custom.cpp op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /_Increase/AddCustom/build_out/autogen/aclnn_add_custom.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.cpp op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/AddCustom/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/AddCustom/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s # Object files for target cust_opapi cust_opapi_OBJECTS = \ @@ -93,18 +93,18 @@ cust_opapi_EXTERNAL_OBJECTS = op_host/libcust_opapi.so: op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" - cd /_Increase/AddCustom/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_opapi.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_opapi.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_host /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_host /_Increase/AddCustom/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_host/CMakeFiles/cust_opapi.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal index db9ed2c6682c4d920070cb0bd7c093176029ebe7..a9c744e82ead29cb56fdcae86858c046e716a08b 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal @@ -2,7 +2,7 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o - /_Increase/AddCustom/build_out/autogen/aclnn_add_custom.cpp + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.cpp /usr/include/stdc-predef.h /usr/include/string.h /usr/include/aarch64-linux-gnu/bits/libc-header-start.h @@ -144,7 +144,7 @@ op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o /usr/include/c++/11/bits/stl_vector.h /usr/include/c++/11/bits/stl_bvector.h /usr/include/c++/11/bits/vector.tcc - /_Increase/AddCustom/build_out/autogen/aclnn_add_custom.h + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.h /usr/local/Ascend/ascend-toolkit/latest/include/aclnn/acl_meta.h /usr/include/c++/11/cstdint /usr/include/c++/11/cstdlib diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake index 811b5beb0257be499bea07cae803fdf0a3ca8d17..b290aac63cf621cbeb0c02fdf8a9bfb8430fce4c 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake @@ -8,7 +8,7 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/_Increase/AddCustom/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d" ) # Targets to which this target links. diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d index df8a51f8a223a7b4e6403b82740cae807a250d6d..6150d54244949d2c9e25d9535fde989fcf6be8da 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d @@ -1,6 +1,7 @@ op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: \ - /_Increase/AddCustom/op_host/add_custom.cpp /usr/include/stdc-predef.h \ - /_Increase/AddCustom/op_host/add_custom_tiling.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom_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 \ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make index f3510b76f20799c32f0789bc166eaf3943bbba2e..91ccfc019fa45e03256b50b16b419151db4a5584 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Include any dependencies generated for this target. include op_host/CMakeFiles/cust_optiling.dir/depend.make @@ -72,16 +72,16 @@ include op_host/CMakeFiles/cust_optiling.dir/flags.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /_Increase/AddCustom/op_host/add_custom.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/add_custom.cpp.i" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /_Increase/AddCustom/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/add_custom.cpp.s" - cd /_Increase/AddCustom/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /_Increase/AddCustom/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s # Object files for target cust_optiling cust_optiling_OBJECTS = \ @@ -93,18 +93,18 @@ cust_optiling_EXTERNAL_OBJECTS = op_host/libcust_opmaster_rt2.0.so: op_host/CMakeFiles/cust_optiling.dir/add_custom.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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" - cd /_Increase/AddCustom/build_out/op_host && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cust_optiling.dir/link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/cust_optiling.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_host /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_host /_Increase/AddCustom/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_host/CMakeFiles/cust_optiling.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal index e5c0b47c5bcf168edc8d582a7a2d77ab1bc72867..1b0035e9c1bd6bf4ec63e6b98132f055b4dd395d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -2,9 +2,9 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o - /_Increase/AddCustom/op_host/add_custom.cpp + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom.cpp /usr/include/stdc-predef.h - /_Increase/AddCustom/op_host/add_custom_tiling.h + /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host/add_custom_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 diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make index 7a4e28bc7b45f994f141278233e6a6c9fa1e71b2..663560f6a54809afe693bdb8e685f05bcbb9dd4e 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for optiling_compat. @@ -67,7 +67,7 @@ include op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make include op_host/CMakeFiles/optiling_compat.dir/progress.make op_host/CMakeFiles/optiling_compat: - cd /_Increase/AddCustom/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /_Increase/AddCustom/build_out/op_host/liboptiling.so + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/liboptiling.so optiling_compat: op_host/CMakeFiles/optiling_compat optiling_compat: op_host/CMakeFiles/optiling_compat.dir/build.make @@ -78,10 +78,10 @@ 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 /_Increase/AddCustom/build_out/op_host && $(CMAKE_COMMAND) -P CMakeFiles/optiling_compat.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_host /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_host /_Increase/AddCustom/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_host/CMakeFiles/optiling_compat.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_host/Makefile b/Increase_DataCopy_case/No_Increase/build_out/op_host/Makefile index bf68fbcabcad09840bc07f23419fec0ed1087cfc..292238fc9a9c356d001cf1eb36bc1eb0894b936d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/Makefile +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out # Special rule for the target package package: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /_Increase/AddCustom/build_out && /usr/bin/cpack --config ./CPackConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && /usr/bin/cpack --config ./CPackConfig.cmake .PHONY : package # Special rule for the target package @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/AddCustom/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /_Increase/AddCustom/build_out/CPackSourceConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,14 +152,14 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles /_Increase/AddCustom/build_out/op_host//CMakeFiles/progress.marks - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target clean: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/clean + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/clean .PHONY : clean # The main clean target @@ -168,22 +168,22 @@ clean/fast: clean # Prepare targets for installation. preinstall: all - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall .PHONY : preinstall/fast # clear depends depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -192,12 +192,12 @@ cust_op_proto: op_host/CMakeFiles/cust_op_proto.dir/rule # fast build rule for target. cust_op_proto/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -206,12 +206,12 @@ cust_optiling: op_host/CMakeFiles/cust_optiling.dir/rule # fast build rule for target. cust_optiling/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -220,12 +220,12 @@ cust_opapi: op_host/CMakeFiles/cust_opapi.dir/rule # fast build rule for target. cust_opapi/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -234,7 +234,7 @@ optiling_compat: op_host/CMakeFiles/optiling_compat.dir/rule # fast build rule for target. optiling_compat/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/optiling_compat.dir/build.make op_host/CMakeFiles/optiling_compat.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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_add_custom.o: __/autogen/aclnn_add_custom.cpp.o @@ -242,7 +242,7 @@ __/autogen/aclnn_add_custom.o: __/autogen/aclnn_add_custom.cpp.o # target to build an object file __/autogen/aclnn_add_custom.cpp.o: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o .PHONY : __/autogen/aclnn_add_custom.cpp.o __/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i @@ -250,7 +250,7 @@ __/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i # target to preprocess a source file __/autogen/aclnn_add_custom.cpp.i: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i .PHONY : __/autogen/aclnn_add_custom.cpp.i __/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s @@ -258,7 +258,7 @@ __/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s # target to generate assembly for a file __/autogen/aclnn_add_custom.cpp.s: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s .PHONY : __/autogen/aclnn_add_custom.cpp.s __/autogen/op_proto.o: __/autogen/op_proto.cc.o @@ -266,7 +266,7 @@ __/autogen/op_proto.o: __/autogen/op_proto.cc.o # target to build an object file __/autogen/op_proto.cc.o: - cd /_Increase/AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -274,7 +274,7 @@ __/autogen/op_proto.i: __/autogen/op_proto.cc.i # target to preprocess a source file __/autogen/op_proto.cc.i: - cd /_Increase/AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -282,7 +282,7 @@ __/autogen/op_proto.s: __/autogen/op_proto.cc.s # target to generate assembly for a file __/autogen/op_proto.cc.s: - cd /_Increase/AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 add_custom.o: add_custom.cpp.o @@ -290,8 +290,8 @@ add_custom.o: add_custom.cpp.o # target to build an object file add_custom.cpp.o: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o .PHONY : add_custom.cpp.o add_custom.i: add_custom.cpp.i @@ -299,8 +299,8 @@ add_custom.i: add_custom.cpp.i # target to preprocess a source file add_custom.cpp.i: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i .PHONY : add_custom.cpp.i add_custom.s: add_custom.cpp.s @@ -308,8 +308,8 @@ add_custom.s: add_custom.cpp.s # target to generate assembly for a file add_custom.cpp.s: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s .PHONY : add_custom.cpp.s # Help Target @@ -350,6 +350,6 @@ help: # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_host/cmake_install.cmake b/Increase_DataCopy_case/No_Increase/build_out/op_host/cmake_install.cmake index 5a4d89aa8e8d8982bbc791cc13dca61854c27167..3d780148769561aa88b118df5f4ba204d87f8ea2 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_host/cmake_install.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/op_host/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: /_Increase/AddCustom/op_host +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_host # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/_Increase/AddCustom/build_out") + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -49,7 +49,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/AddCustom/build_out/op_host/libcust_opsproto_rt2.0.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -66,7 +66,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/AddCustom/build_out/autogen/op_proto.h") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_proto/inc" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/op_proto.h") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) @@ -76,7 +76,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/AddCustom/build_out/op_host/libcust_opmaster_rt2.0.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -93,7 +93,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/AddCustom/build_out/op_host/liboptiling.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_host/liboptiling.so") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) @@ -103,7 +103,7 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/AddCustom/build_out/op_host/libcust_opapi.so") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/lib" TYPE SHARED_LIBRARY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -120,6 +120,6 @@ if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_ 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 "/_Increase/AddCustom/build_out/autogen/aclnn_add_custom.h") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_api/include" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aclnn_add_custom.h") endif() diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake index 2c97f3c8ac82ae3d3985b287fb2b9c5172867e65..129efee7bfeb0be6642b067160c6e56dfeae5f70 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "Unix Makefiles" Generator, CMake Version 3.22 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/_Increase/AddCustom") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/_Increase/AddCustom/build_out") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make index 0e74bbfb224ba8c8c9bd4bd0d9e089633de76f19..86961feb64327d3bef79e9742d23af4f381a1802 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310b. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b: - cd /_Increase/AddCustom/build_out/op_kernel && cp -r /_Increase/AddCustom/op_kernel/*.* /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -78,10 +78,10 @@ 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 /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make index c5d19fb310da8cf7afdc62b9545b77b8fb94a09c..5df86702f63a33581a002b78527eed83885027a1 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310b_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_de include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0: - cd /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build: ascendc_bin_ .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make index 5454d5a4632f65f2d26e99e8d9ce5b5034f33e2a..99800f5fa852b6d7a38e67fdcd78c7b2749c1b3e 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310b_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy: - cd /_Increase/AddCustom/build_out/op_kernel && cp /_Increase/AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build: ascendc_b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make index 260f75e60d1b689f22ef2693d099a0f1db27c211..8f2fc8e0b35515d1104f705839ed8afb3164f733 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310b_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config: - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/bin - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/bin -s ascend310b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make index 1b87fdb46c166fa1a6c6218c5efb63924a07b19e..09d39dd340d2e4bc4f932c7958923f4a4f6acf9c 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310p. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p: - cd /_Increase/AddCustom/build_out/op_kernel && cp -r /_Increase/AddCustom/op_kernel/*.* /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build: ascendc_bin_ascend310p .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make index baf7e8e7af290c4be9e173d1b07b8f283192a9c5..f49f3274107810b1f8b8543ef8e47c56fb83e6ef 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310p_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_de include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0: - cd /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build: ascendc_bin_ .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make index e92d4f0b25192f98c985da364199945fbdc04995..16ba2239c02575489f583bea280cdc1c01cf6f94 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310p_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy: - cd /_Increase/AddCustom/build_out/op_kernel && cp /_Increase/AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build: ascendc_b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make index 06090893089645053ec5d2bde8ca93cdfe150a05..ad1b4ad3940fef0f5bde987b0274eea4e3051dfd 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend310p_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config: - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/bin - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/bin -s ascend310p + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin -s ascend310p ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make index 6b391109fa1325cb5552f77bc9318cdd8c4f6cff..4f59716eddb6c9f0fa7e64ee5604f45386d532dd 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910: - cd /_Increase/AddCustom/build_out/op_kernel && cp -r /_Increase/AddCustom/op_kernel/*.* /_Increase/AddCustom/build_out/op_kernel/binary/ascend910/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910 ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build: ascendc_bin_ascend910 .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make index 9da8cb5f3f9fb1272eef369c63b91da70a046051..4d6840e9c63e0b5ebef72754debb19c668d9faea 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_dep include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0: - cd /_Increase/AddCustom/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /_Increase/AddCustom/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /_Increase/AddCustom/build_out/op_kernel/binary/ascend910/src/AddCustom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend910/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build: ascendc_bin_a .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make index 38b62368ba7150dc161b2d978fdb3046da028672..b9ac3ea3e651ef4bb035a5f0624e05a9efe6fff2 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy: - cd /_Increase/AddCustom/build_out/op_kernel && cp /_Increase/AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend910/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make index 2e8826af91c01760883be39c8a03c4c663cf5bbb..ab8b1584566a54516a2bbe7b065f554ad4aaccca 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_d include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config: - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend910/bin - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend910/bin -s ascend910 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin -s ascend910 ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build: ascendc_bin .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make index f044a43f7895f176fef0ad9018608e08e6b7fcd3..da91439bd2926f465fdaf3cc9526ec68c5ab5014 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910b. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b: - cd /_Increase/AddCustom/build_out/op_kernel && cp -r /_Increase/AddCustom/op_kernel/*.* /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/src + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build: ascendc_bin_ascend910b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make index 0b86a8772f5cff33abfe7f5772b9548bee54e810..7bb9fbab6432561e20964fad8c29a05dd1189285 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910b_add_custom_0. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_de include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0: - cd /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/bin/add_custom + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build: ascendc_bin_ .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make index 564e42a7b90e8641ad0c3e0a66cd2f7d6fb6f548..4e41e2df66e8af675705587f3f25a75bcffbc594 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910b_add_custom_copy. @@ -67,7 +67,7 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy: - cd /_Increase/AddCustom/build_out/op_kernel && cp /_Increase/AddCustom/build_out/op_kernel/tbe/dynamic/add_custom.py /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/src/AddCustom.py + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make @@ -78,10 +78,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build: ascendc_b .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make index d344f16c3a1a4069600822f6ba1f546c68b6b461..1f4a9417b9227981d7681a90ff62f4484fe09718 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_bin_ascend910b_gen_ops_config. @@ -67,8 +67,8 @@ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_ include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config: - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/insert_simplified_keys.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/bin - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/ascendc_ops_config.py -p /_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/bin -s ascend910b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin -s ascend910b ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make @@ -79,10 +79,10 @@ op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build: ascendc_bi .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make index 062b2a7934186f7372cee4aed6d92066da7c7f92..914afc690e6aa8c9b5aead6dc2d3716d9782f5b7 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ascendc_impl_gen. @@ -70,11 +70,11 @@ op_kernel/CMakeFiles/ascendc_impl_gen: op_kernel/tbe/.impl_timestamp op_kernel/tbe/.impl_timestamp: autogen/aic-ascend310p-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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" - cd /_Increase/AddCustom/build_out/op_kernel && mkdir -m 700 -p /_Increase/AddCustom/build_out/op_kernel/tbe/dynamic - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/ascendc_impl_build.py /_Increase/AddCustom/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out/op_kernel/tbe/dynamic /_Increase/AddCustom/build_out/autogen - cd /_Increase/AddCustom/build_out/op_kernel && rm -rf /_Increase/AddCustom/build_out/op_kernel/tbe/.impl_timestamp - cd /_Increase/AddCustom/build_out/op_kernel && touch /_Increase/AddCustom/build_out/op_kernel/tbe/.impl_timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && mkdir -m 700 -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/dynamic + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/ascendc_impl_build.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/dynamic /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && rm -rf /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/.impl_timestamp + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && touch /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/.impl_timestamp ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen ascendc_impl_gen: op_kernel/tbe/.impl_timestamp @@ -86,10 +86,10 @@ 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 /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make index f3bac66cbe3250c7249a557f3806302105299e30..0333aaa086b544b002dd510a98a15b43d10ca822 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for binary. @@ -74,10 +74,10 @@ op_kernel/CMakeFiles/binary.dir/build: binary .PHONY : op_kernel/CMakeFiles/binary.dir/build op_kernel/CMakeFiles/binary.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/binary.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/binary.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make index 6d3990dad395368163a50f94f45ae8325877d011..7263d7b0cfaf54f76791b43f39093739751eb7cd 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for npu_supported_ops. @@ -69,9 +69,9 @@ 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" - cd /_Increase/AddCustom/build_out/op_kernel && mkdir -p /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core - cd /_Increase/AddCustom/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /_Increase/AddCustom/build_out/autogen /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -83,10 +83,10 @@ 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 /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make index 73be7e2d5dec36211cb58d15920a4a586ca935e3..b5fedd483199f5316fc911030b63c94c666c5a14 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ops_info_gen_ascend310b. @@ -69,9 +69,9 @@ 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=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" - cd /_Increase/AddCustom/build_out/op_kernel && mkdir -p /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/parse_ini_to_json.py /_Increase/AddCustom/build_out/autogen/aic-ascend310b-ops-info.ini /_Increase/AddCustom/build_out/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=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aic-ascend310b-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -83,10 +83,10 @@ 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 /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make index 8152613a102642b85eb739f460e551cf5e4bcb61..70eb68d3f3490e2fd6145396348779faa6e3940e 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ops_info_gen_ascend310p. @@ -69,9 +69,9 @@ include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make op_kernel/CMakeFiles/ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" - cd /_Increase/AddCustom/build_out/op_kernel && mkdir -p /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/parse_ini_to_json.py /_Increase/AddCustom/build_out/autogen/aic-ascend310p-ops-info.ini /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aic-ascend310p-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json @@ -83,10 +83,10 @@ op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build: ops_info_gen_ascend310p .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make index d81a0c6fa24a9564cac95f7fcd7cc5d6bb28edf4..a20e0f47f0937ef641b508ba337ca9ff257de5d2 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ops_info_gen_ascend910. @@ -69,9 +69,9 @@ include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make op_kernel/CMakeFiles/ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" - cd /_Increase/AddCustom/build_out/op_kernel && mkdir -p /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/parse_ini_to_json.py /_Increase/AddCustom/build_out/autogen/aic-ascend910-ops-info.ini /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aic-ascend910-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910 ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json @@ -83,10 +83,10 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build: ops_info_gen_ascend910 .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make index 7dabfde138ae04b81376f8e424eb985524910ad2..d2023e4904d4f32ee696928b20f465a1d43dd056 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make @@ -53,10 +53,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out # Utility rule file for ops_info_gen_ascend910b. @@ -69,9 +69,9 @@ include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make op_kernel/CMakeFiles/ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/_Increase/AddCustom/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" - cd /_Increase/AddCustom/build_out/op_kernel && mkdir -p /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b - cd /_Increase/AddCustom/build_out/op_kernel && python3 /_Increase/AddCustom/cmake/util/parse_ini_to_json.py /_Increase/AddCustom/build_out/autogen/aic-ascend910b-ops-info.ini /_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/autogen/aic-ascend910b-ops-info.ini /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json @@ -83,10 +83,10 @@ op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build: ops_info_gen_ascend910b .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: - cd /_Increase/AddCustom/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /_Increase/AddCustom /_Increase/AddCustom/op_kernel /_Increase/AddCustom/build_out /_Increase/AddCustom/build_out/op_kernel /_Increase/AddCustom/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/Makefile b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/Makefile index 7c793f40a27a341c04871962751c97002153fa45..8580049479c39378a30fcfde2b07cd2da7f8268f 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/Makefile +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/Makefile @@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /_Increase/AddCustom +CMAKE_SOURCE_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out #============================================================================= # Targets provided globally by CMake. @@ -68,7 +68,7 @@ CMAKE_BINARY_DIR = /_Increase/AddCustom/build_out # Special rule for the target package package: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /_Increase/AddCustom/build_out && /usr/bin/cpack --config ./CPackConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && /usr/bin/cpack --config ./CPackConfig.cmake .PHONY : package # Special rule for the target package @@ -78,7 +78,7 @@ package/fast: package # 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 /_Increase/AddCustom/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /_Increase/AddCustom/build_out/CPackSourceConfig.cmake + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CPackSourceConfig.cmake .PHONY : package_source # Special rule for the target package_source @@ -152,14 +152,14 @@ install/strip/fast: preinstall/fast # The main all target all: cmake_check_build_system - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles /_Increase/AddCustom/build_out/op_kernel//CMakeFiles/progress.marks - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all - $(CMAKE_COMMAND) -E cmake_progress_start /_Increase/AddCustom/build_out/CMakeFiles 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/CMakeFiles 0 .PHONY : all # The main clean target clean: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/clean + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/clean .PHONY : clean # The main clean target @@ -168,22 +168,22 @@ clean/fast: clean # Prepare targets for installation. preinstall: all - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall .PHONY : preinstall/fast # clear depends depend: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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_ascend310p.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule # Convenience name for target. @@ -192,12 +192,12 @@ ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule # fast build rule for target. ops_info_gen_ascend310p/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build .PHONY : ops_info_gen_ascend310p/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -206,12 +206,12 @@ ascendc_impl_gen: op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule # fast build rule for target. ascendc_impl_gen/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make op_kernel/CMakeFiles/ascendc_impl_gen.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/rule .PHONY : op_kernel/CMakeFiles/binary.dir/rule # Convenience name for target. @@ -220,12 +220,12 @@ binary: op_kernel/CMakeFiles/binary.dir/rule # fast build rule for target. binary/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/binary.dir/build.make op_kernel/CMakeFiles/binary.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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_ascend310p.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule # Convenience name for target. @@ -234,12 +234,12 @@ ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule # fast build rule for target. ascendc_bin_ascend310p/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build .PHONY : ascendc_bin_ascend310p/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule # Convenience name for target. @@ -248,12 +248,12 @@ ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend31 # fast build rule for target. ascendc_bin_ascend310p_gen_ops_config/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build .PHONY : ascendc_bin_ascend310p_gen_ops_config/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule # Convenience name for target. @@ -262,12 +262,12 @@ ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend3 # fast build rule for target. ascendc_bin_ascend310p_add_custom_copy/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend310p_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule # Convenience name for target. @@ -276,12 +276,12 @@ ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p # fast build rule for target. ascendc_bin_ascend310p_add_custom_0/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build .PHONY : ascendc_bin_ascend310p_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -290,12 +290,12 @@ ops_info_gen_ascend310b: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule # fast build rule for target. ops_info_gen_ascend310b/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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_bin_ascend310b.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -304,12 +304,12 @@ ascendc_bin_ascend310b: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/rule # fast build rule for target. ascendc_bin_ascend310b/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -318,12 +318,12 @@ ascendc_bin_ascend310b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend31 # fast build rule for target. ascendc_bin_ascend310b_gen_ops_config/fast: - cd /_Increase/AddCustom/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 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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_add_custom_copy.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule # Convenience name for target. @@ -332,12 +332,12 @@ ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend3 # fast build rule for target. ascendc_bin_ascend310b_add_custom_copy/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend310b_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule # Convenience name for target. @@ -346,12 +346,12 @@ ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b # fast build rule for target. ascendc_bin_ascend310b_add_custom_0/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build .PHONY : ascendc_bin_ascend310b_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule # Convenience name for target. @@ -360,12 +360,12 @@ ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule # fast build rule for target. ops_info_gen_ascend910/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build .PHONY : ops_info_gen_ascend910/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule # Convenience name for target. @@ -374,12 +374,12 @@ ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule # fast build rule for target. ascendc_bin_ascend910/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build .PHONY : ascendc_bin_ascend910/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule # Convenience name for target. @@ -388,12 +388,12 @@ ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910 # fast build rule for target. ascendc_bin_ascend910_gen_ops_config/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build .PHONY : ascendc_bin_ascend910_gen_ops_config/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule # Convenience name for target. @@ -402,12 +402,12 @@ ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend91 # fast build rule for target. ascendc_bin_ascend910_add_custom_copy/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend910_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule # Convenience name for target. @@ -416,12 +416,12 @@ ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_a # fast build rule for target. ascendc_bin_ascend910_add_custom_0/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build .PHONY : ascendc_bin_ascend910_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule .PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule # Convenience name for target. @@ -430,12 +430,12 @@ ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule # fast build rule for target. ops_info_gen_ascend910b/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build .PHONY : ops_info_gen_ascend910b/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule # Convenience name for target. @@ -444,12 +444,12 @@ ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule # fast build rule for target. ascendc_bin_ascend910b/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build .PHONY : ascendc_bin_ascend910b/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule # Convenience name for target. @@ -458,12 +458,12 @@ ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend91 # fast build rule for target. ascendc_bin_ascend910b_gen_ops_config/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build .PHONY : ascendc_bin_ascend910b_gen_ops_config/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule # Convenience name for target. @@ -472,12 +472,12 @@ ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend9 # fast build rule for target. ascendc_bin_ascend910b_add_custom_copy/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build .PHONY : ascendc_bin_ascend910b_add_custom_copy/fast # Convenience name for target. op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule .PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule # Convenience name for target. @@ -486,12 +486,12 @@ ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b # fast build rule for target. ascendc_bin_ascend910b_add_custom_0/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build .PHONY : ascendc_bin_ascend910b_add_custom_0/fast # Convenience name for target. op_kernel/CMakeFiles/npu_supported_ops.dir/rule: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/rule + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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. @@ -500,7 +500,7 @@ npu_supported_ops: op_kernel/CMakeFiles/npu_supported_ops.dir/rule # fast build rule for target. npu_supported_ops/fast: - cd /_Increase/AddCustom/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/npu_supported_ops.dir/build.make op_kernel/CMakeFiles/npu_supported_ops.dir/build + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 @@ -551,6 +551,6 @@ help: # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: - cd /_Increase/AddCustom/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 + cd /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index f4d7b67b4508389f327991f78fa9dcd46be23c57..377175b79632a5875f3a86831764d70c9692df46 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -9,7 +9,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "8cdde928eda7d0e268597b1e13c3ee53e7f6858677159cfb77ad0d878b5637d0", + "sha256": "76c818eac505f8e0607b249a4ec827665eedaa51bf984356d50c0c93b8714e3a", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 386a59b9619ea52043c44be0452f03b8080a6c05..a0440b77ab3cb893613e171f766096fe08775d0b 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh index 34ab308d907a2f1a2144d2d974d419daa4d50a91..f0ffccf8d3630954cb5078eb6ea9fbcf4ef6237f 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc index d7d6804ebb8d8cce7b1df9fb74d4a05722c759ad..7919e5ffd619198e60fb7f03a653e5cc730bdbe9 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp index 946e873868c9f443f2a3bbc6eaa2735a34f0cfd9..9aba8d57d15753ef8dacf94fe5b1258f2ad0384d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp @@ -15,26 +15,27 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - - for (int32_t i = 0; i < 16; i++) { - AscendC::DataCopy(xLocal, xGm[i*2048], 2048); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xLocal, xGm[i*2048*2], 2048); + } + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xGm[i*2048*2], xLocal, 2048); } inQueueX.FreeTensor(xLocal); - - - } - + } private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; + AscendC::TQue inQueueX, inQueueY; AscendC::GlobalTensor xGm; diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index 675f2af4063ba61a8cc052e873432a23fae429c7..a2261e0c1004a728bee0549c82f7b4a59d1d14dd 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -12,7 +12,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "908b761aa9c0d0b604c6a2077717f13a6a31af3592fce638d727eedc81b7c5f6", + "sha256": "ffca3f1d3f615b30afb1010e603f0c05f3da274b11afce0b6d1743b752f20509", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 97bcc2d5338f6277b637805310679db298c1be68..f5d04668ee5c4e459071b9455e817c029382d077 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh index 66784310d9d7b1cecd9f64a2aa3fe2e64747e1b8..7323ac406b109cecc5713642a2d258337293cb60 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc index ef960f8f1fd2891ac7a6a328d99089943654ed3c..2d624aadb3f8fa3f68ceb7248d394fd0d6a86999 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp index 946e873868c9f443f2a3bbc6eaa2735a34f0cfd9..9aba8d57d15753ef8dacf94fe5b1258f2ad0384d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp @@ -15,26 +15,27 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - - for (int32_t i = 0; i < 16; i++) { - AscendC::DataCopy(xLocal, xGm[i*2048], 2048); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xLocal, xGm[i*2048*2], 2048); + } + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xGm[i*2048*2], xLocal, 2048); } inQueueX.FreeTensor(xLocal); - - - } - + } private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; + AscendC::TQue inQueueX, inQueueY; AscendC::GlobalTensor xGm; diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index a209a1d6a62dc9adff7d2607a0f7c855e96e706d..3e344dfc8823effe29871384a736b807486dba2f 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -12,7 +12,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "a23796b594e3da281cf386e131cc8107c335b51b1aa708e419f644f0f650230e", + "sha256": "5714e2a85925ec1370839ffa99c9a81b5bd4c98ce9140c6f51c88d0e84932775", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 2c3b056b0648785fddfb571dd769ffee7e62d2e5..149d509c4efaab71f6ea284b62464b72b17efaf1 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh index 3a71c752b4a59e07d22d749b83a2adbf3a4fd189..0be8bac6d1004ab62e66a84f8707e3c14bfff01d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/AddCustom/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc index 0bd00a943c894df4ff5c03bac34da807e22b6a32..70d7564ec366d0fbd06965c1908024212344351a 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp index 946e873868c9f443f2a3bbc6eaa2735a34f0cfd9..9aba8d57d15753ef8dacf94fe5b1258f2ad0384d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp @@ -15,26 +15,27 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - - for (int32_t i = 0; i < 16; i++) { - AscendC::DataCopy(xLocal, xGm[i*2048], 2048); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xLocal, xGm[i*2048*2], 2048); + } + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xGm[i*2048*2], xLocal, 2048); } inQueueX.FreeTensor(xLocal); - - - } - + } private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; + AscendC::TQue inQueueX, inQueueY; AscendC::GlobalTensor xGm; diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index 691bf1aa50e68223bd911d8694c8ece6291bba03..5bdffa687ab9431c548d3feaf3057d00c91ef21d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -10,7 +10,7 @@ "memoryStamping": [], "opParaSize": 8, "parameters": [], - "sha256": "0c7d8540d77b85d9bce26b8e879a787d8661fe5022629cfceafd3d94466956ae", + "sha256": "722973187b58af551149723a3d233b592792215456cbc54764e79c53c89e67cd", "workspace": { "num": 1, "size": [ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index 1a81e6e8af91ba107750c44c0b9e3ff006c1b1f2..551ed4cf13e83fbff672c0b8f08b5425e38259d2 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh index 9ffd26e81834e74bf34ca7e6275741bfd226dc89..8c36e3afe22d2504f6ac81828f70580bd8b68138 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." -opc $1 --main_func=add_custom --input_param=/_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc index 9cf7e51593c15bd1d6d7ddbebf564951253911c1..f2d52ff8ec907b689dc3ad6ec790f9629b9ecb05 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc and b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp index 946e873868c9f443f2a3bbc6eaa2735a34f0cfd9..9aba8d57d15753ef8dacf94fe5b1258f2ad0384d 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp @@ -15,26 +15,27 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - - for (int32_t i = 0; i < 16; i++) { - AscendC::DataCopy(xLocal, xGm[i*2048], 2048); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xLocal, xGm[i*2048*2], 2048); + } + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xGm[i*2048*2], xLocal, 2048); } inQueueX.FreeTensor(xLocal); - - - } - + } private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; + AscendC::TQue inQueueX, inQueueY; AscendC::GlobalTensor xGm; diff --git a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/cmake_install.cmake b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/cmake_install.cmake index 2f4b1b06d77828ae42357c8852aa8d916983c35e..61b27b8e334eb899af720c6794447cad4e25135c 100644 --- a/Increase_DataCopy_case/No_Increase/build_out/op_kernel/cmake_install.cmake +++ b/Increase_DataCopy_case/No_Increase/build_out/op_kernel/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: /_Increase/AddCustom/op_kernel +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/_Increase/AddCustom/build_out") + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -43,78 +43,78 @@ if(NOT DEFINED CMAKE_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/ascend310p" TYPE FILE FILES "/_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-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 "/_Increase/AddCustom/build_out/op_kernel/tbe/dynamic") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl" TYPE DIRECTORY FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom") 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/ascend310p" TYPE FILE OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.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/ascend310p" TYPE FILE OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.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/config/ascend310b" TYPE FILE FILES "/_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom") 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 "/_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.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 "/_Increase/AddCustom/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-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/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend910/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom") 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/ascend910" TYPE FILE OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend910/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/add_custom.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/ascend910" TYPE FILE OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.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/config/ascend910b" TYPE FILE FILES "/_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-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/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/bin/add_custom") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom") 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/ascend910b" TYPE FILE OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/bin/add_custom.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.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/ascend910b" TYPE FILE OPTIONAL FILES "/_Increase/AddCustom/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.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 "/_Increase/AddCustom/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/framework/tensorflow" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/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 "/_Increase/AddCustom/op_kernel/add_custom.cpp") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/No_Increase/op_kernel/add_custom.cpp") endif() diff --git a/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/const_var.cpython-39.pyc b/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/const_var.cpython-39.pyc index 3adc29177e3d56ae1d5604275044bf57cd4d2c15..daf23478141a85387ef2681ade68eb881b3edfbf 100644 Binary files a/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/const_var.cpython-39.pyc and b/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc index b101625af2c93784f639d07962e7247ad580af5d..796af8e120b271bde65750436c57fb877b4bf3c4 100644 Binary files a/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc and b/Increase_DataCopy_case/No_Increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/Increase_DataCopy_case/No_Increase/op_kernel/add_custom.cpp b/Increase_DataCopy_case/No_Increase/op_kernel/add_custom.cpp index 946e873868c9f443f2a3bbc6eaa2735a34f0cfd9..9aba8d57d15753ef8dacf94fe5b1258f2ad0384d 100644 --- a/Increase_DataCopy_case/No_Increase/op_kernel/add_custom.cpp +++ b/Increase_DataCopy_case/No_Increase/op_kernel/add_custom.cpp @@ -15,26 +15,27 @@ public: __aicore__ inline KernelAdd() {} __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) { - xGm.SetGlobalBuffer((__gm__ half *)x , 32768); + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); - pipe.InitBuffer(inQueueX, 1, 32768 * sizeof(half)); + pipe.InitBuffer(inQueueX, 1, 65536 * sizeof(half)); } __aicore__ inline void Process() { AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); - - for (int32_t i = 0; i < 16; i++) { - AscendC::DataCopy(xLocal, xGm[i*2048], 2048); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xLocal, xGm[i*2048*2], 2048); + } + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + for (int32_t i = 0; i < 32; i++) { + AscendC::DataCopy(xGm[i*2048*2], xLocal, 2048); } inQueueX.FreeTensor(xLocal); - - - } - + } private: AscendC::TPipe pipe; - AscendC::TQue inQueueX, inQueueY; + AscendC::TQue inQueueX, inQueueY; AscendC::GlobalTensor xGm; diff --git a/Increase_Hsot_compute/AclNNInvocation/README.md b/Increase_Hsot_compute/AclNNInvocation/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b8167d88fee0c130e3b585ae688f337598f05fff --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/README.md @@ -0,0 +1,54 @@ +## 目录结构介绍 +``` +├── AclNNInvocation //通过aclnn调用的方式调用AddCustom算子 +│ ├── inc // 头文件目录 +│ │ ├── common.h // 声明公共方法类,用于读取二进制文件 +│ │ ├── op_runner.h // 算子描述声明文件,包含算子输入/输出,算子类型以及输入描述与输出描述 +│ │ └── operator_desc.h // 算子运行相关信息声明文件,包含算子输入/输出个数,输入/输出大小等 +│ ├── input // 存放脚本生成的输入数据目录 +│ ├── output // 存放算子运行输出数据和真实数据的目录 +│ ├── scripts +│ │ ├── acl.json // acl配置文件 +│ │ ├── gen_data.py // 输入数据和真值数据生成脚本 +│ │ └── verify_result.py // 真值对比文件 +│ ├── src +│ │ ├── CMakeLists.txt // 编译规则文件 +│ │ ├── common.cpp // 公共函数,读取二进制文件函数的实现文件 +│ │ ├── main.cpp // 单算子调用应用的入口 +│ │ ├── op_runner.cpp // 单算子调用主体流程实现文件 +│ │ └── operator_desc.cpp // 构造算子的输入与输出描述 +│ └── run.sh // 执行命令脚本 +``` +## 代码实现介绍 +完成自定义算子的开发部署后,可以通过单算子调用的方式来验证单算子的功能。src/main.cpp代码为单算子API执行方式。单算子API执行是基于C语言的API执行算子,无需提供单算子描述文件进行离线模型的转换,直接调用单算子API接口。 + +自定义算子编译部署后,会自动生成单算子API,可以直接在应用程序中调用。算子API的形式一般定义为“两段式接口”,形如: + ```cpp + // 获取算子使用的workspace空间大小 + aclnnStatus aclnnAddCustomGetWorkspaceSize(const aclTensor *x, const aclTensor *y, const alcTensor *out, uint64_t workspaceSize, aclOpExecutor **executor); + // 执行算子 + aclnnStatus aclnnAddCustom(void *workspace, int64_t workspaceSize, aclOpExecutor **executor, aclrtStream stream); + ``` +其中aclnnAddCustomGetWorkspaceSize为第一段接口,主要用于计算本次API调用计算过程中需要多少的workspace内存。获取到本次API计算需要的workspace大小之后,按照workspaceSize大小申请Device侧内存,然后调用第二段接口aclnnAddCustom执行计算。具体参考[AscendCL单算子调用](https://hiascend.com/document/redirect/CannCommunityAscendCInVorkSingleOp)>单算子API执行 章节。 + +## 运行样例算子 +### 1. 编译算子工程 +运行此样例前,请参考[编译算子工程](../README.md#operatorcompile)完成前期准备。 +### 2. aclnn调用样例运行 + + - 进入到样例目录 + 以命令行方式下载样例代码,master分支为例。 + ```bash + cd ${git_clone_path}/samples/operator/AddCustomSample/FrameworkLaunch/AclNNInvocation + ``` + - 样例执行 + + 样例执行过程中会自动生成测试数据,然后编译与运行aclnn样例,最后检验运行结果。具体过程可参见run.sh脚本。 + + ```bash + bash run.sh + ``` +## 更新说明 +| 时间 | 更新事项 | +| ---------- | ------------ | +| 2024/05/22 | 新增本readme | \ No newline at end of file diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeCache.txt b/Increase_Hsot_compute/AclNNInvocation/build/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd86c0ac5bc84adb88ab87c298e77cc9eed9df6d --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeCache.txt @@ -0,0 +1,369 @@ +# This is the CMakeCache file. +# For build in directory: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build + +//Value Computed by CMake +acl_execute_add_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +acl_execute_add_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeSystem.cmake b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f1584fe5bc9e049ea62b36a6abd27da5e992248a --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/CMakeOutput.log b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..4694f911180ca7de170212481827eccbdc172822 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_86000/fast && /usr/bin/gmake -f CMakeFiles/cmTC_86000.dir/build.make CMakeFiles/cmTC_86000.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_86000.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.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_86000.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/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o /tmp/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_86000 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86000.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o -o cmTC_86000 +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_86000' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_86000.' + /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/ccccIlxs.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_86000 /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_86000.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_86000' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_86000.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_86000/fast && /usr/bin/gmake -f CMakeFiles/cmTC_86000.dir/build.make CMakeFiles/cmTC_86000.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_86000.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.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_86000.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/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o /tmp/cc9ody5K.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_86000.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_86000] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86000.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_86000.dir/CMakeCCompilerABI.c.o -o cmTC_86000 ] + 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_86000' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_86000.'] + 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/ccccIlxs.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_86000 /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_86000.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/ccccIlxs.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_86000] ==> 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_86000.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: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c6a6e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c6a6e.dir/build.make CMakeFiles/cmTC_c6a6e.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_c6a6e.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.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_c6a6e.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/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_c6a6e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c6a6e.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c6a6e +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_c6a6e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c6a6e.' + /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/ccdu1nae.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_c6a6e /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_c6a6e.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_c6a6e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c6a6e.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c6a6e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c6a6e.dir/build.make CMakeFiles/cmTC_c6a6e.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_c6a6e.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.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_c6a6e.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/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccaV1pr9.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_c6a6e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_c6a6e] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c6a6e.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_c6a6e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c6a6e ] + 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_c6a6e' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_c6a6e.'] + 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/ccdu1nae.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_c6a6e /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_c6a6e.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/ccdu1nae.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_c6a6e] ==> 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_c6a6e.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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/Makefile.cmake b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1b3b3081f46fb3e2f243725c6e36caf14a86a4e8 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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_add_op.dir/DependInfo.cmake" + ) diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/Makefile2 b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..145a58e9628a329b3b45508c6a760bf512893cdd --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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 = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/execute_add_op.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/execute_add_op.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/execute_add_op.dir + +# All Build rule for target. +CMakeFiles/execute_add_op.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=1,2,3,4,5 "Built target execute_add_op" +.PHONY : CMakeFiles/execute_add_op.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/execute_add_op.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/execute_add_op.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles 0 +.PHONY : CMakeFiles/execute_add_op.dir/rule + +# Convenience name for target. +execute_add_op: CMakeFiles/execute_add_op.dir/rule +.PHONY : execute_add_op + +# clean rule for target. +CMakeFiles/execute_add_op.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/clean +.PHONY : CMakeFiles/execute_add_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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..175ba478d79e7bb8b7ba5d9c3548f3cf18adada8 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,7 @@ +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/install/strip.dir diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/cmake.check_cache b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..882d6903e41a1bbdbdf7cd45f9798b9d4a5c2a49 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_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 + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp" "CMakeFiles/execute_add_op.dir/common.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/common.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp" "CMakeFiles/execute_add_op.dir/main.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/main.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o" "gcc" "CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp" "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" "gcc" "CMakeFiles/execute_add_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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1e4d13a0a26018eaf81f743c5514b92c0ae886ed --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_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 = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build + +# Include any dependencies generated for this target. +include CMakeFiles/execute_add_op.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/execute_add_op.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/execute_add_op.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/execute_add_op.dir/flags.make + +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -MF CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp + +CMakeFiles/execute_add_op.dir/operator_desc.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/operator_desc.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp > CMakeFiles/execute_add_op.dir/operator_desc.cpp.i + +CMakeFiles/execute_add_op.dir/operator_desc.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/operator_desc.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp -o CMakeFiles/execute_add_op.dir/operator_desc.cpp.s + +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/execute_add_op.dir/op_runner.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/op_runner.cpp.o -MF CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d -o CMakeFiles/execute_add_op.dir/op_runner.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp + +CMakeFiles/execute_add_op.dir/op_runner.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/op_runner.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp > CMakeFiles/execute_add_op.dir/op_runner.cpp.i + +CMakeFiles/execute_add_op.dir/op_runner.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/op_runner.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp -o CMakeFiles/execute_add_op.dir/op_runner.cpp.s + +CMakeFiles/execute_add_op.dir/main.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/main.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp +CMakeFiles/execute_add_op.dir/main.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/execute_add_op.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/main.cpp.o -MF CMakeFiles/execute_add_op.dir/main.cpp.o.d -o CMakeFiles/execute_add_op.dir/main.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp + +CMakeFiles/execute_add_op.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp > CMakeFiles/execute_add_op.dir/main.cpp.i + +CMakeFiles/execute_add_op.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp -o CMakeFiles/execute_add_op.dir/main.cpp.s + +CMakeFiles/execute_add_op.dir/common.cpp.o: CMakeFiles/execute_add_op.dir/flags.make +CMakeFiles/execute_add_op.dir/common.cpp.o: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp +CMakeFiles/execute_add_op.dir/common.cpp.o: CMakeFiles/execute_add_op.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/execute_add_op.dir/common.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/execute_add_op.dir/common.cpp.o -MF CMakeFiles/execute_add_op.dir/common.cpp.o.d -o CMakeFiles/execute_add_op.dir/common.cpp.o -c /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp + +CMakeFiles/execute_add_op.dir/common.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/execute_add_op.dir/common.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp > CMakeFiles/execute_add_op.dir/common.cpp.i + +CMakeFiles/execute_add_op.dir/common.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/execute_add_op.dir/common.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp -o CMakeFiles/execute_add_op.dir/common.cpp.s + +# Object files for target execute_add_op +execute_add_op_OBJECTS = \ +"CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" \ +"CMakeFiles/execute_add_op.dir/op_runner.cpp.o" \ +"CMakeFiles/execute_add_op.dir/main.cpp.o" \ +"CMakeFiles/execute_add_op.dir/common.cpp.o" + +# External object files for target execute_add_op +execute_add_op_EXTERNAL_OBJECTS = + +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/operator_desc.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/op_runner.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/main.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/common.cpp.o +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/build.make +/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op: CMakeFiles/execute_add_op.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX executable /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/execute_add_op.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/execute_add_op.dir/build: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op +.PHONY : CMakeFiles/execute_add_op.dir/build + +CMakeFiles/execute_add_op.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/execute_add_op.dir/cmake_clean.cmake +.PHONY : CMakeFiles/execute_add_op.dir/clean + +CMakeFiles/execute_add_op.dir/depend: + cd /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/execute_add_op.dir/depend + diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3dcafd353178deee52ec8ef03fee586be5e98df8 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op" + "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op.pdb" + "CMakeFiles/execute_add_op.dir/common.cpp.o" + "CMakeFiles/execute_add_op.dir/common.cpp.o.d" + "CMakeFiles/execute_add_op.dir/main.cpp.o" + "CMakeFiles/execute_add_op.dir/main.cpp.o.d" + "CMakeFiles/execute_add_op.dir/op_runner.cpp.o" + "CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d" + "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o" + "CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/execute_add_op.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..e292b2a7f49eeb370eb8e90574647627c8968a6a Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..6650d421a8bb9b52fbd4f109f793b55641a139c1 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/common.cpp.o.d @@ -0,0 +1,197 @@ +CMakeFiles/execute_add_op.dir/common.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/common.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/iomanip /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/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/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/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/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/locale_classes.h \ + /usr/include/c++/11/string /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/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/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/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/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/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/locale /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/streambuf /usr/include/c++/11/bits/streambuf.tcc \ + /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/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/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/basic_ios.h \ + /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/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/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/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/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 \ + /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/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 diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.make b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9c98d42c4680aeaba4f9c39188aab8899f66fe75 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for execute_add_op. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.ts b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e7ad1aa6d7e2e0e793e44a9a2f52094954b0d534 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for execute_add_op. diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/depend.make b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..802adaf2fdd11cffdb50736f1c0becd2f1a8a59c --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for execute_add_op. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..2151d9f3e2fef2761d89196ff82d33c37f0b9fc2 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_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/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc -I/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include + +CXX_FLAGS = -std=c++11 + diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..6463248d8c6423ed72e989217bb0c829c0efdfcc --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/execute_add_op.dir/operator_desc.cpp.o CMakeFiles/execute_add_op.dir/op_runner.cpp.o CMakeFiles/execute_add_op.dir/main.cpp.o CMakeFiles/execute_add_op.dir/common.cpp.o -o /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -L/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64:/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib: -lascendcl -lcust_opapi -lacl_op_compiler -lnnopbase -lstdc++ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..47894777ca214f8f769f984333e10291321c2f2c Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..bd94014da9ae57c11c57e5d272517821f129ef95 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/main.cpp.o.d @@ -0,0 +1,197 @@ +CMakeFiles/execute_add_op.dir/main.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/main.cpp \ + /usr/include/stdc-predef.h /usr/include/aarch64-linux-gnu/sys/stat.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/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/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/types/time_t.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/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/timer_t.h \ + /usr/lib/gcc/aarch64-linux-gnu/11/include/stddef.h \ + /usr/include/aarch64-linux-gnu/bits/stdint-intn.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/types/__sigset_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/struct_timeval.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/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/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/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/wchar.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/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/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/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/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/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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ + /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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..ddb0570d57abf3c0b3b2346fc3a18fee902b7dab Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..793432f87b215b001b25f4703855fa3d35402a3c --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/op_runner.cpp.o.d @@ -0,0 +1,182 @@ +CMakeFiles/execute_add_op.dir/op_runner.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/op_runner.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/op_runner.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/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/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/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/lib/gcc/aarch64-linux-gnu/11/include/stddef.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/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/aarch64-linux-gnu/c++/11/bits/cpu_defines.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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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/iomanip /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/types/wint_t.h \ + /usr/include/aarch64-linux-gnu/bits/types/mbstate_t.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/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/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/locale_classes.h \ + /usr/include/c++/11/string /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/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/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/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/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/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/locale /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/streambuf /usr/include/c++/11/bits/streambuf.tcc \ + /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/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/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/basic_ios.h \ + /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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h \ + /usr/include/c++/11/cassert /usr/include/assert.h \ + /usr/include/c++/11/limits \ + /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 \ + /usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/include/aclnn_add_custom.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..cde5de165348f831660abd3cc4b5a07e8cacda83 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o differ diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..cfc45b1e79ea257603967de121510a736c6da373 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/operator_desc.cpp.o.d @@ -0,0 +1,175 @@ +CMakeFiles/execute_add_op.dir/operator_desc.cpp.o: \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/operator_desc.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/operator_desc.h \ + /usr/include/c++/11/string \ + /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/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/libc-header-start.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/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/__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/cstdint \ + /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/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/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/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/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 \ + /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src/../inc/common.h \ + /usr/include/c++/11/iomanip /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/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/locale /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/streambuf /usr/include/c++/11/bits/streambuf.tcc \ + /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/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/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/basic_ios.h \ + /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 diff --git a/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/progress.make b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_op.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..33e6bffba3730113ad4bec358b7c8a00b5a67431 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/execute_add_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/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/progress.marks b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7ed6ff82de6bcc2a78243fc9c54d3ef5ac14da69 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/Increase_Hsot_compute/AclNNInvocation/build/Makefile b/Increase_Hsot_compute/AclNNInvocation/build/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..cf7873376d2687c96517f951d5a7eeeae8fbeaf8 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/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 = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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 /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/CMakeFiles /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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_add_op + +# Build rule for target. +execute_add_op: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 execute_add_op +.PHONY : execute_add_op + +# fast build rule for target. +execute_add_op/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_op.dir/build +.PHONY : execute_add_op/fast + +common.o: common.cpp.o +.PHONY : common.o + +# target to build an object file +common.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/execute_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_op.dir/build.make CMakeFiles/execute_add_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_add_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/Increase_Hsot_compute/AclNNInvocation/build/cmake_install.cmake b/Increase_Hsot_compute/AclNNInvocation/build/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..027ce2052105405948b6a0a33e19456dd31d0626 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/build/cmake_install.cmake @@ -0,0 +1,74 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/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_add_op" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/../output" TYPE EXECUTABLE FILES "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/output/execute_add_op") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/../output/execute_add_op" + OLD_RPATH "/usr/local/Ascend/ascend-toolkit/latest/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_add_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 "/Test_performance/Operator-performance/Increase_DataCopy_case/AclNNInvocation/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Increase_Hsot_compute/AclNNInvocation/inc/common.h b/Increase_Hsot_compute/AclNNInvocation/inc/common.h new file mode 100644 index 0000000000000000000000000000000000000000..11bb4aeca57d04c8adcd6f215674ee4ba1553f21 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/inc/common.h @@ -0,0 +1,45 @@ +/** + * @file common.h + * + * Copyright (C) 2023-2024. 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/Increase_Hsot_compute/AclNNInvocation/inc/op_runner.h b/Increase_Hsot_compute/AclNNInvocation/inc/op_runner.h new file mode 100644 index 0000000000000000000000000000000000000000..66b6ea2c3c403946f14d588fd6f63a9aeb215960 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/inc/op_runner.h @@ -0,0 +1,180 @@ +/** + * @file op_runner.h + * + * Copyright (C) 2023-2024. 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 "acl/acl.h" +#include "aclnn/acl_meta.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/Increase_Hsot_compute/AclNNInvocation/inc/operator_desc.h b/Increase_Hsot_compute/AclNNInvocation/inc/operator_desc.h new file mode 100644 index 0000000000000000000000000000000000000000..6d8ee09052da7e00c44c6b062bdeacca893c542b --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/inc/operator_desc.h @@ -0,0 +1,57 @@ +/** + * @file operator_desc.h + * + * Copyright (C) 2023-2024. 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); + + std::string opType; + std::vector inputDesc; + std::vector outputDesc; +}; + +#endif // OPERATOR_DESC_H diff --git a/Increase_Hsot_compute/AclNNInvocation/input/.keep b/Increase_Hsot_compute/AclNNInvocation/input/.keep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Hsot_compute/AclNNInvocation/input/input_x.bin b/Increase_Hsot_compute/AclNNInvocation/input/input_x.bin new file mode 100644 index 0000000000000000000000000000000000000000..66081f5724e0c3a347d238f3ed0cf9b3f34b35ff Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/input/input_x.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/input/input_y.bin b/Increase_Hsot_compute/AclNNInvocation/input/input_y.bin new file mode 100644 index 0000000000000000000000000000000000000000..e2a0a4f6b586cb40517ddbefda08080bd80fd558 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/input/input_y.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/.keep b/Increase_Hsot_compute/AclNNInvocation/output/.keep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ArithmeticUtilization.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ArithmeticUtilization.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb3711de43fc481ab58b30cd4274246985e05e70 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ArithmeticUtilization.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_ratio,aic_cube_fp16_ratio,aic_cube_int8_ratio,aic_cube_fops,aic_cube_total_instr_number,aic_cube_fp_instr_number,aic_cube_int_instr_number,aiv_time(us),aiv_total_cycles,aiv_vec_ratio,aiv_vec_fp32_ratio,aiv_vec_fp16_ratio,aiv_vec_int32_ratio,aiv_vec_int16_ratio,aiv_vec_misc_ratio,aiv_vec_fops, +0,cube0,6.205883,7596,0.000000,0.000000,0.000000,0,0,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/L2Cache.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/L2Cache.csv new file mode 100644 index 0000000000000000000000000000000000000000..111fa6da06afa7944e84c62165c4d39667fd9eaf --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/L2Cache.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_write_cache_hit,aic_write_cache_miss_allocate,aic_r0_read_cache_hit,aic_r0_read_cache_miss_allocate,aic_r1_read_cache_hit,aic_r1_read_cache_miss_allocate,aic_write_hit_rate(%),aic_read_hit_rate(%),aic_total_hit_rate(%),aiv_time(us),aiv_total_cycles,aiv_write_cache_hit,aiv_write_cache_miss_allocate,aiv_r0_read_cache_hit,aiv_r0_read_cache_miss_allocate,aiv_r1_read_cache_hit,aiv_r1_read_cache_miss_allocate,aiv_write_hit_rate(%),aiv_read_hit_rate(%),aiv_total_hit_rate(%), +0,cube0,6.205883,7596,268,0,17,512,16,513,100.000000,3.119093,22.699850,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/Memory.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/Memory.csv new file mode 100644 index 0000000000000000000000000000000000000000..d998736f508c40d0ccf69bb66f2d78d82ff33cac --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/Memory.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_l1_read_bw(GB/s),aic_l1_write_bw(GB/s),aic_main_mem_read_bw(GB/s),aic_main_mem_write_bw(GB/s),aic_mte1_instructions,aic_mte1_ratio,aic_mte2_instructions,aic_mte2_ratio,aic_mte3_instructions,aic_mte3_ratio,aiv_time(us),aiv_total_cycles,aiv_ub_to_gm_bw(GB/s),aiv_gm_to_ub_bw(GB/s),aiv_main_mem_read_bw(GB/s),aiv_main_mem_write_bw(GB/s),aiv_mte2_instructions,aiv_mte2_ratio,aiv_mte3_instructions,aiv_mte3_ratio,read_main_memory_datas(KB),write_main_memory_datas(KB),GM_to_L1_datas(KB),GM_to_L1_bw_usage_rate(%),L1_to_GM_datas(KB)(estimate),L1_to_GM_bw_usage_rate(%)(estimate),L0C_to_L1_datas(KB),L0C_to_L1_bw_usage_rate(%),L0C_to_GM_datas(KB),L0C_to_GM_bw_usage_rate(%),GM_to_UB_datas(KB),GM_to_UB_bw_usage_rate(%),UB_to_GM_datas(KB),UB_to_GM_bw_usage_rate(%), +0,cube0,6.205883,7596,0.000000,0.000000,20.323206,19.900608,2,0.000527,35,0.815692,33,0.768036,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,132.250000,129.500000,0.000000,N/A,134.000000,N/A,0.000000,N/A,0.000000,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryL0.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryL0.csv new file mode 100644 index 0000000000000000000000000000000000000000..e299878fe1ce1f2e0783dbfe4b6e7d121972e9f2 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryL0.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_l0a_read_bw(GB/s),aic_l0a_write_bw(GB/s),aic_l0b_read_bw(GB/s),aic_l0b_write_bw(GB/s),aic_l0c_read_bw_cube(GB/s),aic_l0c_write_bw_cube(GB/s),aiv_time(us),aiv_total_cycles, +0,cube0,6.205883,7596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,N/A,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryUB.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryUB.csv new file mode 100644 index 0000000000000000000000000000000000000000..d901d187577545ab50fd2b2d93128f7ed56c0935 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/MemoryUB.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aiv_time(us),aiv_total_cycles,aiv_ub_read_bw_vector(GB/s),aiv_ub_write_bw_vector(GB/s),aiv_ub_read_bw_scalar(GB/s),aiv_ub_write_bw_scalar(GB/s), +0,cube0,6.205883,7596,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/OpBasicInfo.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/OpBasicInfo.csv new file mode 100644 index 0000000000000000000000000000000000000000..149e47555f54ac8afa1d823b0e964243a9241bab --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/OpBasicInfo.csv @@ -0,0 +1,2 @@ +Op Name,Op Type,Task Duration(us),Block Dim,Mix Block Dim, +AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0,cube,16.000000,1,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/PipeUtilization.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/PipeUtilization.csv new file mode 100644 index 0000000000000000000000000000000000000000..4287b760f4f419b25ac689f9d62a101ce513385a --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/PipeUtilization.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_time(us),aic_cube_ratio,aic_scalar_time(us),aic_scalar_ratio,aic_mte1_time(us),aic_mte1_ratio,aic_mte2_time(us),aic_mte2_ratio,aic_mte3_time(us),aic_mte3_ratio,aic_fixpipe_time(us),aic_fixpipe_ratio,aic_icache_miss_rate,aiv_time(us),aiv_total_cycles,aiv_vec_time(us),aiv_vec_ratio,aiv_scalar_time(us),aiv_scalar_ratio,aiv_mte2_time(us),aiv_mte2_ratio,aiv_mte3_time(us),aiv_mte3_ratio,aiv_icache_miss_rate, +0,cube0,6.205883,7596,0.000000,0.000000,1.474673,0.237625,0.003268,0.000527,5.062091,0.815692,4.766340,0.768036,0.000817,0.000132,0.100372,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ResourceConflictRatio.csv b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ResourceConflictRatio.csv new file mode 100644 index 0000000000000000000000000000000000000000..33259c9f70f172d07e2f5a51ec4f91b1f92329c0 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/ResourceConflictRatio.csv @@ -0,0 +1,2 @@ +block_id,sub_block_id,aic_time(us),aic_total_cycles,aic_cube_wait_ratio,aic_mte1_wait_ratio,aic_mte2_wait_ratio,aic_mte3_wait_ratio,aiv_time(us),aiv_total_cycles,aiv_vec_total_cflt_ratio,aiv_vec_bankgroup_cflt_ratio,aiv_vec_bank_cflt_ratio,aiv_vec_resc_cflt_ratio,aiv_vec_mte_cflt_ratio,aiv_vec_wait_ratio,aiv_mte1_wait_ratio,aiv_mte2_wait_ratio,aiv_mte3_wait_ratio, +0,cube0,6.205883,7596,0.000000,0.000000,0.000000,0.000000,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf1.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf1.bin new file mode 100644 index 0000000000000000000000000000000000000000..0080cfda5d34f74361d58cf6c1ef38280189e08e Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf1.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf2.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf2.bin new file mode 100644 index 0000000000000000000000000000000000000000..e3cd49f428232d603055645982ef762dc35b16b5 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf2.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf3.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf3.bin new file mode 100644 index 0000000000000000000000000000000000000000..d9e4c6b82c6b066d7150d82a7c533725d7a8adb1 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf3.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf4.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf4.bin new file mode 100644 index 0000000000000000000000000000000000000000..4998efcd9193a087572386dc1e3b954697fa5dba Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf4.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf5.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf5.bin new file mode 100644 index 0000000000000000000000000000000000000000..25333295c1710bc462a0774e4775e60e63b54e60 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf5.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf6.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf6.bin new file mode 100644 index 0000000000000000000000000000000000000000..c9f2f09dc9b6c5565caaf37d59a5e0c91a9dc270 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf6.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf7.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf7.bin new file mode 100644 index 0000000000000000000000000000000000000000..e74f907ea6d38bcd3f56a62e1b262d5111d92705 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/DeviceProf7.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/duration.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/duration.bin new file mode 100644 index 0000000000000000000000000000000000000000..a2155499bed03d3d047f24dba2549a735d36a052 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/duration.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/op_basic_info.txt b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/op_basic_info.txt new file mode 100644 index 0000000000000000000000000000000000000000..2eeb43762ec8c2668a7a648acbc4345113ae6885 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/dump/op_basic_info.txt @@ -0,0 +1,3 @@ +Op Name=AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0 +Block Dim=1 +Run Soc Version=Ascend310B4 diff --git a/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/visualize_data.bin b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/visualize_data.bin new file mode 100644 index 0000000000000000000000000000000000000000..37a9fac6e67e37436a4d58786ec8d07364ca48b3 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/OPPROF_20240525182827_WEIPJCSPJHSVKIGB/visualize_data.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/execute_add_op b/Increase_Hsot_compute/AclNNInvocation/output/execute_add_op new file mode 100644 index 0000000000000000000000000000000000000000..fbec1b52688ada08ae43f0d5a2cf286da042659e Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/execute_add_op differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/golden.bin b/Increase_Hsot_compute/AclNNInvocation/output/golden.bin new file mode 100644 index 0000000000000000000000000000000000000000..a4b5383ff17a7e868f0fada5647b957cd11bbc47 Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/golden.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/output/output_z.bin b/Increase_Hsot_compute/AclNNInvocation/output/output_z.bin new file mode 100644 index 0000000000000000000000000000000000000000..6d23118f0d0084657a974875123ddc1b9a0738dd Binary files /dev/null and b/Increase_Hsot_compute/AclNNInvocation/output/output_z.bin differ diff --git a/Increase_Hsot_compute/AclNNInvocation/run.sh b/Increase_Hsot_compute/AclNNInvocation/run.sh new file mode 100644 index 0000000000000000000000000000000000000000..b13bcda6a0119d3bb4ccdfd8f98d739def0aa440 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/run.sh @@ -0,0 +1,120 @@ +#!/bin/bash +export ASCEND_SLOG_PRINT_TO_STDOUT=0 +export ASCEND_GLOBAL_LOG_LEVEL=0 + +CURRENT_DIR=$( + cd $(dirname ${BASH_SOURCE:-$0}) + pwd +) +cd $CURRENT_DIR + +# 导出环境变量 +SHORT=v:, +LONG=dtype:, +OPTS=$(getopt -a --options $SHORT --longoptions $LONG -- "$@") +eval set -- "$OPTS" +while :; do + case "$1" in + # float16, float, int32 + -v | --dtype) + DTYPE="$2" + shift 2 + ;; + --) + shift + break + ;; + *) + echo "[ERROR] Unexpected option: $1" + break + ;; + esac +done + +if [ -n "$ASCEND_INSTALL_PATH" ]; then + _ASCEND_INSTALL_PATH=$ASCEND_INSTALL_PATH +elif [ -n "$ASCEND_HOME_PATH" ]; then + _ASCEND_INSTALL_PATH=$ASCEND_HOME_PATH +else + if [ -d "$HOME/Ascend/ascend-toolkit/latest" ]; then + _ASCEND_INSTALL_PATH=$HOME/Ascend/ascend-toolkit/latest + else + _ASCEND_INSTALL_PATH=/usr/local/Ascend/ascend-toolkit/latest + fi +fi +source $_ASCEND_INSTALL_PATH/bin/setenv.bash +export DDK_PATH=$_ASCEND_INSTALL_PATH +export NPU_HOST_LIB=$_ASCEND_INSTALL_PATH/lib64 + +function main { + # 1. 清除遗留生成文件和日志文件 + rm -rf $HOME/ascend/log/* + rm ./input/*.bin + rm ./output/*.bin + + rm -rf ./output/O* + # 2. 生成输入数据和真值数据 + cd $CURRENT_DIR + python3 scripts/gen_data.py + if [ $? -ne 0 ]; then + echo "ERROR: generate input data failed!" + return 1 + fi + echo "INFO: generate input data success!" + + # 3. 编译acl可执行文件 + 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!" + + # 4. 运行可执行文件 + cd $CURRENT_DIR/output + echo "INFO: execute op!" + timeout 30 msprof op --launch-skip-before-match=0 ./execute_add_op + if [ $? -ne 0 ]; then + echo "ERROR: acl executable run failed! please check your project!" + return 1 + fi + echo "INFO: acl executable run success!" + + time_ust=$(($(python3 $CURRENT_DIR/scripts/get_time.py))) + + echo "time_use = $time_ust" + + # 5. 比较真值文件 + cd $CURRENT_DIR + ret=`python3 scripts/verify_result.py output/output_z.bin output/golden.bin` + echo $ret + if [ "x$ret" == "xtest pass" ]; then + + if [ $time_ust -eq 0 ]; then + echo "[ERROR] Performance not achieved" + return 1 + fi + + if [ $time_ust -ge $time_base ]; then + echo "test fail for performance exceeds baseline data" + return 1 + fi + echo "" + echo "#####################################" + echo "INFO: you have passed the Precision!" + echo "#####################################" + echo "" + fi +} + +main diff --git a/Increase_Hsot_compute/AclNNInvocation/scripts/acl.json b/Increase_Hsot_compute/AclNNInvocation/scripts/acl.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/scripts/acl.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/Increase_Hsot_compute/AclNNInvocation/scripts/gen_data.py b/Increase_Hsot_compute/AclNNInvocation/scripts/gen_data.py new file mode 100644 index 0000000000000000000000000000000000000000..8478b91d944bc1f3436978674eaca29fd3e0a489 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/scripts/gen_data.py @@ -0,0 +1,25 @@ +#!/usr/bin/python3 +# coding=utf-8 +# +# Copyright (C) 2023-2024. 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. +# =============================================================================== + +import numpy as np + + +def gen_golden_data_simple(): + input_x = np.random.uniform(1, 100, [32, 4096]).astype(np.float16) + input_y = np.random.uniform(1, 100, [32, 4096]).astype(np.float16) + golden = (input_x + input_y).astype(np.float16) + + input_x.tofile("./input/input_x.bin") + input_y.tofile("./input/input_y.bin") + golden.tofile("./output/golden.bin") + + +if __name__ == "__main__": + gen_golden_data_simple() diff --git a/Increase_Hsot_compute/AclNNInvocation/scripts/get_time.py b/Increase_Hsot_compute/AclNNInvocation/scripts/get_time.py new file mode 100644 index 0000000000000000000000000000000000000000..fbeac398d91d9db9a0af05d5055d75572f1eb8fd --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/scripts/get_time.py @@ -0,0 +1,31 @@ +import csv +from pathlib import Path + + +def get_time(file_path, time_use_list): + with open(file_path, 'r', encoding='utf-8') as file: + reader = csv.DictReader(file) + for row in reader: + time_use = row['Task Duration(us)'] + time_use_list.append(int(float(time_use)* 1000000)) + + +def find_min_time(): + min_time = 0 + time_use_list = [] + directory = Path('./') + filename_pattern = 'OpBasicInfo.csv' + + for file in directory.rglob(filename_pattern): + get_time(file, time_use_list) + + if len(time_use_list) > 0: + min_time = min(time_use_list) + + print(min_time) + +if __name__ == '__main__': + find_min_time() + + + diff --git a/Increase_Hsot_compute/AclNNInvocation/scripts/verify_result.py b/Increase_Hsot_compute/AclNNInvocation/scripts/verify_result.py new file mode 100644 index 0000000000000000000000000000000000000000..d34249c347b3ecf48235e1667ce33bcaf6810da4 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/scripts/verify_result.py @@ -0,0 +1,40 @@ +#!/usr/bin/python3 +# coding=utf-8 +# +# Copyright (C) 2023-2024. 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. +# =============================================================================== + +import os +import sys +import numpy as np + +loss = 1e-4 # 容忍偏差,一般fp16要求绝对误差和相对误差均不超过千分之一 +minimum = 10e-10 + + +def verify_result(output, golden): + real_result = np.fromfile(output, dtype=np.float16).reshape(-1) + golden = np.fromfile(golden, dtype=np.float16).reshape(-1) + 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__': + + if os.path.exists(sys.argv[1]) and os.path.exists(sys.argv[2]): + verify_result(sys.argv[1], sys.argv[2]) + else: + print("[ERROR] result error") + exit(1) + diff --git a/Increase_Hsot_compute/AclNNInvocation/src/CMakeLists.txt b/Increase_Hsot_compute/AclNNInvocation/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..730ba001358345ce4136a6bcfe22c45bebbb6234 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/src/CMakeLists.txt @@ -0,0 +1,67 @@ +# 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 +) + +# add host lib path +link_directories( + ${LIB_PATH} + ${LIB_PATH1} + ${CUST_PKG_PATH}/lib +) + +add_executable(execute_add_op + operator_desc.cpp + op_runner.cpp + main.cpp + common.cpp +) + +target_link_libraries(execute_add_op + ascendcl + cust_opapi + acl_op_compiler + nnopbase + stdc++ +) + +install(TARGETS execute_add_op DESTINATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) diff --git a/Increase_Hsot_compute/AclNNInvocation/src/common.cpp b/Increase_Hsot_compute/AclNNInvocation/src/common.cpp new file mode 100644 index 0000000000000000000000000000000000000000..992759c95af685fba85838acbe188a3533928128 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/src/common.cpp @@ -0,0 +1,80 @@ +/** + * @file common.cpp + * + * Copyright (C) 2023-2024. 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; + } + + size_t writeSize = write(fd, buffer, size); + (void)close(fd); + if (writeSize != size) { + ERROR_LOG("Write file Failed."); + return false; + } + + return true; +} diff --git a/Increase_Hsot_compute/AclNNInvocation/src/main.cpp b/Increase_Hsot_compute/AclNNInvocation/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5a78ad1a0fbbeeceeb564213194d4a69b179e77f --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/src/main.cpp @@ -0,0 +1,162 @@ +/** + * @file main.cpp + * + * Copyright (C) 2023-2024. 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 "common.h" +#include "op_runner.h" + +bool g_isDevice = false; +int deviceId = 0; + +OperatorDesc CreateOpDesc() +{ + // define operator + std::vector shape{32, 4096}; + aclDataType dataType = ACL_FLOAT16; + aclFormat format = ACL_FORMAT_ND; + OperatorDesc opDesc; + opDesc.AddInputTensorDesc(dataType, shape.size(), shape.data(), format); + opDesc.AddInputTensorDesc(dataType, shape.size(), shape.data(), format); + opDesc.AddOutputTensorDesc(dataType, shape.size(), shape.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_y.bin", fileSize, runner.GetInputBuffer(1), runner.GetInputSize(1)); + INFO_LOG("Set input success"); + return true; +} + +bool ProcessOutputData(OpRunner &runner) +{ + WriteFile("../output/output_z.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/Increase_Hsot_compute/AclNNInvocation/src/op_runner.cpp b/Increase_Hsot_compute/AclNNInvocation/src/op_runner.cpp new file mode 100644 index 0000000000000000000000000000000000000000..7e1623aedf1f575a26bca0d9aadb2f78de67cdd7 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/src/op_runner.cpp @@ -0,0 +1,453 @@ +/** + * @file op_runner.cpp + * + * Copyright (C) 2023-2024. 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 +#include + +#include "acl/acl_op_compiler.h" +#include "aclnn_add_custom.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) { + (void)aclDestroyTensor(inputTensor_[i]); + (void)aclDestroyDataBuffer(inputBuffers_[i]); + (void)aclrtFree(devInputs_[i]); + if (g_isDevice) { + (void)aclrtFree(hostInputs_[i]); + } else { + (void)aclrtFreeHost(hostInputs_[i]); + } + } + + for (size_t i = 0; i < numOutputs_; ++i) { + (void)aclDestroyTensor(outputTensor_[i]); + (void)aclDestroyDataBuffer(outputBuffers_[i]); + (void)aclrtFree(devOutputs_[i]); + if (g_isDevice) { + (void)aclrtFree(hostOutputs_[i]); + } else { + (void)aclrtFreeHost(hostOutputs_[i]); + } + } +} + +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 = + aclnnAddCustomGetWorkspaceSize(inputTensor_[0], inputTensor_[1], 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 aclnnAddCustomGetWorkspaceSize 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 = aclnnAddCustom(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 aclnnAddCustom 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/Increase_Hsot_compute/AclNNInvocation/src/operator_desc.cpp b/Increase_Hsot_compute/AclNNInvocation/src/operator_desc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..da04cf6c9e03b9d9ffa9ba7cd8e6306f52a62743 --- /dev/null +++ b/Increase_Hsot_compute/AclNNInvocation/src/operator_desc.cpp @@ -0,0 +1,51 @@ +/** + * @file operator_desc.cpp + * + * Copyright (C) 2023-2024. 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 "operator_desc.h" + +#include "common.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; +} diff --git a/Increase_Hsot_compute/Is_increase/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..584132d80993d309434fb1303de83910a1989aba --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/CMakePresets.json b/Increase_Hsot_compute/Is_increase/CMakePresets.json new file mode 100644 index 0000000000000000000000000000000000000000..f0933976520a982d22bfb3e19833a9d5e5698e08 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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": "ascend310p;ascend310b;ascend910;ascend910b" + }, + "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++" + } + } + } + ] +} diff --git a/Increase_Hsot_compute/Is_increase/build.sh b/Increase_Hsot_compute/Is_increase/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..4be96d7d8b99f0dd4b8052a16d17afe9c809fb54 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build.sh @@ -0,0 +1,37 @@ +#!/bin/bash +script_path=$(realpath $(dirname $0)) + + +mkdir -p build_out +rm -rf build_out/* +cd build_out + +cmake_version=$(cmake --version | grep "cmake version" | awk '{print $3}') +if [ "$cmake_version" \< "3.19.0" ] ; then + opts=$(python3 $script_path/cmake/util/preset_parse.py $script_path/CMakePresets.json) + echo $opts + cmake .. $opts +else + cmake .. --preset=default +fi +target=package +if [ "$1"x != ""x ]; then target=$1; fi + +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 exit 1; fi + cmake --build . --target $target -j16 + fi +fi + +# for debug +# cd build_out +# make +# cpack +# verbose append -v diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeCache.txt b/Increase_Hsot_compute/Is_increase/build_out/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dd3f96fa4cab9339e20bf46f6d6f5541e75f805 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeCache.txt @@ -0,0 +1,425 @@ +# This is the CMakeCache file. +# For build in directory: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=ascend310p;ascend310b;ascend910;ascend910b + +//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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +//Value Computed by CMake +opp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +opp_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +//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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase +//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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..09d45b4765a0736ab587c31c82aeac9253654cc3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeOutput.log b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..1fb0ff8d421baf2bfe05767bec1d28620d1574d6 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_43782/fast && /usr/bin/gmake -f CMakeFiles/cmTC_43782.dir/build.make CMakeFiles/cmTC_43782.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_43782.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_43782.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_43782.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_43782.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/cclQAC3y.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_43782.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_43782.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.o /tmp/cclQAC3y.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_43782.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_43782 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43782.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.o -o cmTC_43782 +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_43782' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_43782.' + /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/ccssFCap.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_43782 /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_43782.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_43782' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_43782.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_43782/fast && /usr/bin/gmake -f CMakeFiles/cmTC_43782.dir/build.make CMakeFiles/cmTC_43782.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_43782.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_43782.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_43782.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_43782.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/cclQAC3y.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_43782.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_43782.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.o /tmp/cclQAC3y.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_43782.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_43782] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43782.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_43782.dir/CMakeCCompilerABI.c.o -o cmTC_43782 ] + 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_43782' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_43782.'] + 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/ccssFCap.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_43782 /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_43782.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/ccssFCap.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_43782] ==> 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_43782.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: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_52200/fast && /usr/bin/gmake -f CMakeFiles/cmTC_52200.dir/build.make CMakeFiles/cmTC_52200.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_52200.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_52200.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_52200.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_52200.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/ccnjJ9xl.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_52200.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_52200.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccnjJ9xl.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_52200.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_52200 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52200.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_52200 +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_52200' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_52200.' + /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/ccnyIeA4.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_52200 /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_52200.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_52200' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_52200.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_52200/fast && /usr/bin/gmake -f CMakeFiles/cmTC_52200.dir/build.make CMakeFiles/cmTC_52200.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_52200.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_52200.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_52200.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_52200.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/ccnjJ9xl.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_52200.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_52200.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccnjJ9xl.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_52200.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_52200] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52200.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_52200.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_52200 ] + 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_52200' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_52200.'] + 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/ccnyIeA4.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_52200 /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_52200.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/ccnyIeA4.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_52200] ==> 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_52200.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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..daac3d2de9531c7ca514f2da68017667c87c6370 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,33 @@ +# Hashes of file build rules. +d22b8bb6f21af94be7141599d526bee9 CMakeFiles/gen_version_info +913f6212f709f5f0508d9e1577da942b CMakeFiles/modify_vendor +7a5fdf7b518e9cc7f519b8a8376b634d op_host/CMakeFiles/optiling_compat +7898e0a355efcbcd4f9e1384f6392079 op_kernel/CMakeFiles/ascendc_bin_ascend310b +b7c7b6908b66a58734a49b974c82c0ae op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +d2a9b06f94d4150a42da3d36d0fa7087 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +75530205478e6a022ed2a78d787cf1fd op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +4144ea25071b13523b3e7f26f4d8ff26 op_kernel/CMakeFiles/ascendc_bin_ascend310p +8275dbc93090dd2f32a29152e80b37a8 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +72f7931e9c1613dc2495230879da04c4 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +4339f5a96ab46cdd48773e7672a26d3f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +88c4d84383683f82fae4214d0111c82f op_kernel/CMakeFiles/ascendc_bin_ascend910 +d850143e24869c3c5172b172a054bb9f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +0b083f8aac144f571aa8b5566327f9eb op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +6669a81cad42d11a7a88684b9dcf96f7 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +3607627f6a42f7ed69d8fa06e009b5a4 op_kernel/CMakeFiles/ascendc_bin_ascend910b +46d214cc580043c73a87c66d3aa14daa op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +674034242ee281b6766c9c96f439e3ca op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +d5c17d2168b753a66b69aff95e7a19d5 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +c7ff5cf64376acb7c8b7993880e3c339 op_kernel/CMakeFiles/ascendc_impl_gen +c7ff5cf64376acb7c8b7993880e3c339 op_kernel/CMakeFiles/npu_supported_ops +c7ff5cf64376acb7c8b7993880e3c339 op_kernel/CMakeFiles/ops_info_gen_ascend310b +c7ff5cf64376acb7c8b7993880e3c339 op_kernel/CMakeFiles/ops_info_gen_ascend310p +c7ff5cf64376acb7c8b7993880e3c339 op_kernel/CMakeFiles/ops_info_gen_ascend910 +c7ff5cf64376acb7c8b7993880e3c339 op_kernel/CMakeFiles/ops_info_gen_ascend910b +b0564460bfc99e2b2845dcab63955888 op_kernel/tbe/.impl_timestamp +2e0285f0e0f87ae56b474e6b1b82e010 op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +80352d39c18c4599e364dbfa4e062e48 op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +b4d43b70361b5904b60dfa09b9d14703 op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +0850a87a9d92e51902d57b8c8f52d543 op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +c773518a67474ec768e48d7b531dae5d op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +d4e09a14e98fec1d7cb8554915c19a26 scripts/install.sh diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/Makefile.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7ec716ab72c14b930e863bc1ca7611d708b11e05 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/Makefile.cmake @@ -0,0 +1,167 @@ +# 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_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/binary.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake" + ) diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/Makefile2 b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..62274587ef56eb4c318c62c3033278d180f24538 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/Makefile2 @@ -0,0 +1,976 @@ +# 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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_ascend310p.dir/all +op_kernel/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend310p.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_ascend310p.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_ascend310p_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/TargetDirectories.txt b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c25413a20053b5519b740c499ac62f68fee12b1 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,70 @@ +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/cmake.check_cache b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..4258258953536cb6e5407a4c55c46246e254a1f2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/gen_version_info.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4183a837bc0dec14a4def868f73d30454795d838 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..94061306968c7012026090d774e6ed8954710fe1 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..714ce8ff0ea68770397b4b735a816647351f4c4c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a1cff78af0d98a93cadcda688f896e295a05250d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/scripts/upgrade.sh" "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..53ce4182d188d16390ccbd29fd02eb17ad333b46 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/scripts + cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/scripts/* /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/modify_vendor.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..563285175969cc11e838c67e32b7fd052a517b5f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bda5864a979e6a287be963ee99667bd4c0d2ed79 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4290d3f2e262181b1ffff8509a18a20ec4278023 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..27952ed76a534aed5b8a5fa4bfd9bb2d3e51eeba --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 11 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/progress.marks b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..b6a7d89c68e0ca66e96a9a51892cc33db66fb8a3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles/progress.marks @@ -0,0 +1 @@ +16 diff --git a/Increase_Hsot_compute/Is_increase/build_out/CPackConfig.cmake b/Increase_Hsot_compute/Is_increase/build_out/CPackConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..68e38bb02b63b2450b90f4bb56aacc2c474efef9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase;/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "External") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Hsot_compute/Is_increase/build_out/CPackSourceConfig.cmake b/Increase_Hsot_compute/Is_increase/build_out/CPackSourceConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e0c11055006b236dd8581ff621c2745328d39562 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase;/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Hsot_compute/Is_increase/build_out/Makefile b/Increase_Hsot_compute/Is_increase/build_out/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..ef92226af2a5f1f5f55b1dc4ff9ab4183b9708b1 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/Makefile @@ -0,0 +1,631 @@ +# 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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_ascend310p + +# Build rule for target. +ops_info_gen_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend310p +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/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_ascend310p + +# Build rule for target. +ascendc_bin_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend310p_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_gen_ops_config +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_copy +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_0 +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/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_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_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_copy +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_0 +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910 + +# Build rule for target. +ops_info_gen_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910 +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910 + +# Build rule for target. +ascendc_bin_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910 +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_gen_ops_config +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_copy +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_0 +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910b + +# Build rule for target. +ops_info_gen_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910b +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b + +# Build rule for target. +ascendc_bin_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910b_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_gen_ops_config +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_copy +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_0 +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... gen_version_info" + @echo "... modify_vendor" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" + @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/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..bafae639c2373af7562d92a0118b41cf6ca496f6 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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" : "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..5d920ef2703166dd5de65378255d7ddd17a94d6f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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="2693054249" +MD5="00000000000000000000000000000000" +SHA="7f7fd46cdd1cb30c0f6a5d2e415c20d39de6d6df4f898ef801e9eed218b7ef66" +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='' +targetdir="makeself-1303990-20240526095227" +filesizes="129397" +totalsize="129397" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 372 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun May 26 09:52:27 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 372 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 372; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (372 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 +ەRf< pŕZaBk-hlAec Ipg;H;zf֒plKAQuQ E T"$rqՕ:8cq\U*{ݳ=@n{ׯ92LU#$HhK{%@lͬHLֶ֕ZI:5tXJ{L- 0S}sXԔ2Ԑbt3kيv bgDwݞ*9v*oij>hE^0t,X%[QkREUۡWtI5K-bm^3b9#S.鱬9C C%CwzBYXP1zؕWr>E͵/+ 80عa9y,l+T+4ib5QK`.^SيZnr8G孑%Knl%zvybq!8K[ՋۙnWw\mcf +Wig.v dZ +uV+|hɫt=Kƪ[h1 nbj`ˆUMЖ=NyRnk)2-W`WIpUhq%*݋G3T20 }uy[t+K3e-+ۆZs"^z) 4a㌧lR <fۺm[?T2B!$WުSM$"y*48ir4/[4I-W4O/a**[2I j!m+BUeke`NΊ(话=bm˵*0wn= HD"I +dj[S&<h)qZ?8&Dm|FmBƝe)3𢨞f6CpZϐJTwJ;R"`0\эcppPuT{@$ϴc03Cz^wu*F0Gd?H\G+vށFK& +`IV3(9l7/)2M͔j(e)wHOYEu%7cR ʵ9o6$_I٫y?I0TV +L omQC;KG;K㭘6Cb)[Y- pr:n!}r`Lo@}LNc +̂X,X-P 2Fj},s`%TxO1lmLllt 1,qlKb`*oY,#:Ӻw5KULLhb.xUs`j [%3pA YNGC!I]v2 FmV."_uHǃW6-Q$ +`YsnM5$ЖAlN9ÕRZ81vkxNElU*,>C6Koenz>Q.ۼ~-xr8|&zo}(!܀Ҙ*5[AVdjLf4{1oc5,H甃xGzwuӱ53ȡÐl4aVU"Ŋ+WuUfE> +gچHǣ{tLߟ!z*ea$\;~ρSeԧ>袼>R5&G.䋹L#Tei8{lf_"/B߫np~)9Y^je(X̹ǏލIׂ]i-?_魗޻7,Ddl^ A9'@aWnHuנ|૤Iu:=Oc M5ߨT :j / #qiBӉ,Sh* +Q^du[1W[>gz2<'E6߷ U)EDVʮ4ԙR Zq5(nζFn9Ż F~)0RۡhHIYx"6e!?f.T7֨ڝa,_+xQ%Lum榢hpUgɵUExhT\kb#:Aed[a^/&p/._J˕4*tR~hvMG<$1ƁS]]a_[Tb\(EId>8nV2$W":i +nm4N&KZne[rKݭ,OIwvW2w.@~+̪R4Oo#jr|}~zxlt|f.\pD{%='ϐE.wL[OngIOr^|Pyo]?Kg$<^N'dIB8Ǐ<U~hoN-hh B^8I$;IwIŸ~DŸE[.?%ؾ;/%/%%l_`x;hd7wMoNxSL+s'Vdm-zX 521L.pq1uL5xL߼=o2oV"@[8y$z?DN~Y2/C ?]>fM{|G#_$мg3.>q)֏L9m|ְd,Ls$<߁|/!#SK;_&d@灷tx[>0ck+u{~^ yۚv;56l[c瑩A+:"dg۱)(ڀ/w+>?Y~ˆ!!(BڔF%;C Q瓽'dZtnT4B؁\sHf52xlNnwo*9pcLmy}n z}l?Gνm{*0O\~o2%Ɖy̙PgB~`L1X^y͝)Ej[bjW^3yK<{wz:둆XGvQi΅!s>h _zy/ bžwO#C@}_@A&!;8MGnY}?+B.B)L_e#_= Dz^zѳ _8As8;w6=s^ɣߘ~|؈9s8w|wuXC?HPV0=OwDȣ{͠Ȃцso})8Sp +N)X@Aq(@ +s=٧YY'hE3*qO&Φs{.8Rwk@cqSq渀#6C>q&/-Ω8g\lOa}(O9^ +>x#ǏrcOq\>{8`?wU' |X@owjdPtK4I%ӉLC3_mmMۖr2!I'縶$<*l˩N$3^`kvMQ*2_żKu@v1ʪJzNQQrYRMS1M/]z:նqCF= T ˪HrqH߈ͺppuV=N\?9/Eb]w ,6y'Dy=/]!s ywD)⌀𬼜5-:e+ 5O1B"N-?B^-Q⸈&,#'"NE}|ް?f\׷ a}?'li +ޕ5 /K~o'8꺯> fmLˀWf6rD%V, +yz+mڷٷkKxB¤ӒZ6)(I ֙8ÐH&mB8a:,>s=ݽVq^|=sξ} "5=@Pt0= 1i¹l"RH2Ep4Y` zm:rmejImYx0:97Bysr jl֎)N1 OkaX(,:*!vfVʥA&W,4[<0:I+gZoB!-Lhi L!%.$ +E{ł7rB6L)>]1t( %5 "A`0n@em:_y5j}4'b1A~y݅Ba)67UP kǔ:*wấ;°Ȳ,V9 BFŬ^ 񊳕B/zXyoikެZ7W][,:x~i"N?.@.)䟑 rAGʑµ_Sȧ;u{nw%|Wў$wJ\&@>^vs͗|o6?v׭F>TM_kz\N.92h^q`ԗz9?}oxMtT7^>o~|̋Z^ 7 7}}J?4yQT*б2Gw0諌C{-9,>o$qfo=pcY+7v.oxzts <}4p_A \?!NJ^+ҥڕKeSbsx42"E+a UZ5jI&\* ` ' f@ra)$P]х\Zw~CIM vK85fE)e<:uQ;nE(,-__x5("\\gN;ׯ~l~׮>;Z>XO1/Ae4v!zB>:NP7čQ}"]'p/ +?Z$~)0ѺE>:c]7YW?}ݺY7 Os{ꏽ_盝g?[ uel7J7or䳐_[;N/d:v9g?9v7:;[ 9qzι~{3v=nEB[)駗}-fN< ef)~6{p̬]av<ꙷ/s979nݺӹ?AdglXW߁_3/Ϭ߆0{VCzӷ 7g8w _ψ?$}o-k="AIfBxMLKB?zN{PW(9, n?xfu/;ql]?G8(R/z7{.^~Df+7>a.WcxZ l*egSyIDQS<T?S!ִkg{|*O%Y/ =l+~3+3൰r2Ȓp}k ,gh%|Qa}}x V~t?AwԸ{]/ͧdh"])Gc|bplqql<*Or:1^q ~7z "R|_b=!{Eos?՟t[F6+ű)^ߔ>|86-_"~/^%OK:9]cqp\:W$%plo]:=: ) %/VNWVuKs ˿~N|D~Уi( nrFSمmjiڬZ[ښ$ϱS>2bM Rx=usP8k'%=rdd%T&7`*c% +͛Nbz(mNX" rXw>,W>:0 51ǝzrI&]po"SI;J}x'|* OWsy3VsQn!SI]\B[{U\u'T訮Uwm[onRyKZ?,`uGGuk]1cm-UqxTR]QϣWݵ>O"Jά's4p=gokn涶ySk7?;tX|z|Ҳk >3fr"keis8 ca֕0.fiޟxh.oq ?/Tc,+Llʙ+tKQm3ŪP0GGk`'{+ +̅ Н*iмߔB ;vdVìw0ƺPW,pTVg͌aEuLs*Z[ƌleL\ͲIS?3 ٢Y48RF4~/ +-[L¶ك<]ز\q4N90`+0 ^p1q3(Bp5FzvܜB"oQЉ!J+J#.~|LJX7r.KS&fa[Md'(D"bX567mniȡRZJ]Jg† M׺ ,Z otz \0^$!\hJXlںyBPײe+IW~C?{so?}>w՞D!эb֖?sf ]J|r+ >^=w|U\G<{aH$݁`,;/m89~8yNL"--mR0nC(ww[xޣG^$ ~EFmFOW+(b `UE^s;[9Ara>EOq~R5Kf9!sjM*M*IN\gNvr䌹~?֢ sZonkkUE_}Mp~hE+_`bM$Z,Zrٞ( OICʬl8IЎmd7 m% ;g&˘QMh0hq +=p!?F;g Hi?rx2 /uHc*)5sxeY8/W/s7x! B>/Sn#1CڹZtQ7ZbC;{vXv8(Ly4 +)7|]0 ;@0;ٮ@OBhz11;) mU,k;-7߂ H3\Mt©\n  *צ6  wt$a!A%*}h/ur]3jp$= D>l#c?;֡$c;lٴüNKEx&"1ve/T(^CK 8$|D8ٽ<p[D#M) EP=mkD*tr"i$bOe |8ayVunD}+咜JcyBGs-[@h3hmvF8vQFҮֹS KId>(2}T:Px]t$wEIν4 q& L' |Ӏe l۶l hs/6"ƢG&,41LgaL'yB4ϗ^O477;{D9]dHd20L޻$'2;9y8Òr8nHg}Ι;TU&z +‚/cb%Ixwx{%EjeAL`ͧY#U& +.{mJ' /b&  o%\JdR9=8ΛpZ.'ODK[V9;\HXZf4!Uٿ=eQIXDtoS'|TiP%vk\9K<-RXPv6@vCۄqTpn2]#鶢ˀuj!TR!l1C>g;iô ;s{DI=GToz"v,a1^d3ÃwV] ec@ +rAXB>ssI媸BK_ŸιNΡ* +?yo{Z >]4_ozf[~=ݐRoٜCwHZqy:]'嚭fX5bl-d*f軸@sH"/a%wюUU:J}ye.x  =} 7.y.8*XzK.a+`1>K7"y}:$ڰUl4&s\k6nKRX&ۚɦ"lĊ#ͤ\Œ&Zۢ>)U`ލsmi~(0*^&Rvkl;@G 2ԘOf9|k%?=uٍ9?x&qiBvM"HIE`='Hp 30Js۳ۄy2- [2KC7zwWu}8ift$p2N[V$6+Dh$eZl.#f.%L,ӆmB#:4S;B#v6f(1Y1MlrH#wLFnpR_α?U{$ʺ#ü8 Ɩ 1C7Q-}P*b5X|,[]{qמ?lt7Hƨ[vrn3K͇3%JcW~;FZmA| +w@gzߍQ&{֒^C!ĝ䳬H=wnm1~wYױ]gφ􈇪ɬnz֝>ft2f[q0t݌U{6ݶj>йsq0k0t'c {8f`(㘇.hJ|؏Ng5s9׿ZvjngGB}U^gpHތcUKAJ71-h- G(h zFP!(;T >|if` +>VwDT48u?c4v:1k +NOKMvy=kнWx^ kYllz 5faszf`l3d+*(܁'_ս~jX9j}\Mq!OWQ:,i7j6k :v'Gu݁qn,qMǚ yY4i9vfTuAbGp&38eqf+O~S%dW=Yv2_*c8 ^ma6sx-ȯy juB_|:,3pL_>yLwvGJgδR-o+`v)gfx 3pֳ_Ǯ=d?@-- + !P`#(mR +< kwY^zAee =T"P_Ka=Ae؇y5,ٯ =mk6b޻͟ *˺y_HGƻNAy{y~!LO6B.t|IgRBk~[>z~ʍ*hxem6D=ݽR +, +ӵ%Xމ$QwHWثCL|qKhH?|c}V+c5{.u;)]"]Y'2V3Ͳ He$XBl眼y(c!v)@N}A{$)]2D۶=Z(wF)G;E-7DmN2-t+;Q;[y{'홲)y:V3D)7vCIw|wh{Z߇4w<4N2KCU6D1jҐk0b@E癉yfjMjV&3hׅN{tFAYΫ KA+K>G8WG~ɞ4z0*9A~W ywy/W2-.7o i 4CgzSf5oڶx&b-76&q2prXP~~%v١N4Z;M~,gq]W´}$D_tntk]!hR9 zvGP[gU%PFkr}d2G>2ΐ:+'ձZQ)j~]%?!d^k{}y6CPG3!~ش?uk}ݚs0lԏ?QTre3pLE93-jzjL򮯈zF5#`0|44+f[dL 4俁|H!7hM#%_ { R=ȧOo!DP> 7@J>?.y:EOFeOע|)ʧ"j\l!|EH'zxʯBڈFN?F +1ODGZ-~$yI䧣BL%;ey{cJyu~DQOWD\5Jq#rbq#俟 lh]D)$yTɕk~}Mܽe:/P7PiKu$΅+)b#:G0b=/K +ԁ!2٣vPV=q%I,Ǖ̅q!/Gȟ.>_a/_`qXԻ+ V6HDbxJ2H*kD,ƭx2ZmL6fm93&63 +KDH3GxScx1CS RSTgc\3fY#?h2X?E?~AHz)pv>r3cΜ3x|' Ts[nDpZ;Q?N0bL1]}0sU0Ofr+<UpZS +7i!gBsSrkhOsbS ~u+S5vPRzI?Q=0Ex- LQ}Sk/agh[ +[o aH SQhIn~z'=}SDSS9s-3W4?Ϥ3؟|%؟CELww7>Ԯguk6*XnY;؆eKڗɓ#h$ gp,5l"k&Vkk.mL-NǬ\Ίexkj$RI+KvUi~{:>5N_kugɵVڭ+{iw-mTy,+$7BH =JKrl96Nl94 RزI M(KB>\GvYf73x_QZq|O0u%#;KVyZpݒ +^Zp+S9h'nQ^R|e*+饇>,Q;f7wXqӺS.js]6(ZZO)-.R[(tM/MVP\EiNJgoRO.dg_!]tπ +7s50xO5!]HyočPW؀һ\pV]a7 +۩nyS}Eۍkn/ ^6n{- mB&lbT6rW1 #'pg<'srq؛&_+8>ISߧsP%I b<#wiqwVfihѣfZx;\9yN8-o+2j iy?U2̰O@s?˸W4a\?ov +'Q_Vr;ÓO䜛?q8_m+D^A'-3*Pw8ݥ82gYa}+D缋fTLog@Μg<'sr lǔHG'K8mqDŽ=Hۿ?TU +>;VP0po*iM S̰Qqsi3+_S[?L#Ԋ'uf:s虇û}??P3A%<06:s;'{vm,Í=E켞'Q>h~R0g(iMe+o+Wwt_>6k׾O{*m6QIj&-YZqʹleIe4?J-IegnQ EJג_+KJe51}%޽c3 ฝCJQ{ฟ Cp< Oٽsz=GHr;ޚE/[=U;7]:ezofQmo}ooG sn^i)B7?}wkoƼ쟯?\r쟼Tz=g_\{O.ؿwm5~Ytpuy䜛sp?={<3[矗1* 0R!peL9Wͦ\hPs%82#w#]"U9~{9\sx>f¹\ (<`1!ISsHa>L|jk\V*\I/*|ZR.~$}$]|~Dn_+^I{7I- WI'=gxcLX?L8й (ކP]d,VPZ.2^+;uoaa=ؾz)4B0u~ g5ӓ`|Oݟ2 RP _LG^nt7u~p_e=H=ub|WB񣿣z܆ /8;3(^~_1'LrF>QZV K꾆wqXq1o'm&c{ܶ1:VaE,&x!dbXK);X6J?,B_3^n.I_F^I9EyI!^ޢn>?{XVIa_♋ЯWJcLQ&>ի!Z CtzRa uzu ;^n|vG*o%[^Xg/V<3)s,],^O㝒[7I#_S7p弑əӮj0-bzH(g$luٗU0JwW \:pxժVϚz-DU4RSï unU d6BRΫZjzvN_c^\v{<-~=WH_-f^Ow2Hmt7LS{kb(R0sR(+̠B(3]. o;j{{vը6PlX}Xo#Ր'Eb4jh5v5uRdHjq#> y:Q]}ݵ?\X=EFE2r5M`K2J`%U0v-}z-M]U1f{U4%pJ|JCj PgX'd=9hFv^Ʊ ս>̧4H&R7uyQ-kjơ@ⅶK&C"M]vT@^ɦ7WW{N)L! g$%L '6|"TK -V^AoIxJǡ`H=[T8ԦHv(x1G.,6aO 6F{tew DI]. 'o +>>MNm,Tv&L<5ft7u<07 %-$upDUuZȷ! fߥuwuu*UP+ߎ*jkD1/;}|HmcmROsYK#dɌ(C㪮7bR(6ow9};KHkLčJwCGZÇ2ѢMNԐ@[aך̵ RE'<>|dE=XT%,5cJaQDq*أHS}TV7{3 YbLp' *AR2'E'aiDg?>j =ɉ26^ Nv!uZX13-u?g1Dʀ5'8MAʜtG YPRJA@Egbt~,yq:lT Z~IG(p/sQeD;Y'Ct`b]##YP6F)v{hf]ut+MT#lB +nfCTlcBhtB"DF| <nʞ2x 6ou[4gMt`lʣOk> wFƙ +%D{7I+VMmxr-ԫktDVgQdկN،Q; 9l'Zq` :#A۝d +JqާA,hSO4SX{pŌ \XOBh—.DQ^Nϧe'F, 0ˉ}s#5kVשr{NuRӑ7r{T\I R?+ +؏^Ob EpWxa*obca"uaʔT(<[ Ez*APxO??Jx~{3-ZJߟ",(F˒Mʙ _Sv=Cܓ +*GG~?"-r3sIX~s{Bm(5e5s x{'@ˍ3f_`ˀaFކ1<| 7} 6?`$ xCkĠd/dȀa6R#|;۷qĀo!ŏ~+_`J ?׀.O2$ O38w}YyJrvG{N|_MJ?/FÈ41 G#No +8k| +@#& imڣYpnۄ4( mp5-MUw*% "{BM-^6HYWH言="V߱>8[tOpop.rHVLB.|*X_p'i78 SKs{<#.HGS4~ l/pim"2O-pt6/5@]P\l3(M< h)*_u5Qzv7!(@6$!* ȏQP@Q^j[]pWJ ^a(V[ rM5B} 93>O}g̜&˒ÂZW~K +U'A*oUO +~?&7 ~?<y.Â!wM3N ~okSXG P]\C/kF ^~/}E +~o8xW ~<y=$xە炿A1(?Qk_ ^V;mW#)xCIW +CO|' 3O)*T4tkǺ +|H o:!E ~u?,nm#x,'x!;c+ +~_/_'xx +wo|w +>*CI3+xS X1"}u,r}S P?|H7"(x$(֟_d`g(wdgp +K{c-1  !' n^)"/p /  |>_`S?.R`Cl8xE{E2b#_/Xx <6t7Ocobg_;_y// _____??fecg_d_f7U8~~a}#>na߱_3/_ݸpg/8x.#-ux <fDz_/x | <cx! x 8 oO_g____?*EMi'2s:u/JuſϦsT /q2M5:M#<5j٥q3P]QU~bem_Tkm]Y&" 'Fvumެo +23M9V~?Q6c̑>ǜ,b\P?9!mr,ec|V F!I+1L*zSх s*{RUeZP~\ԫ>&fє,>R, +핚:-^-{ӯ0R'v8SxN8Mͮiy|9QGgN7.Zwܗm՗!G۹fU|3mȯA~+?3>S׋P6g#?$vY;{>.׭d6MBι@}-k'xg$Z=g9HhiΡ[ydvQ59{>T9=]/z}wN^ZoWC=Xѭw?sfzzMɾ9K\zJCtN^ZoW:S֋xr/Wӂպ{ %Yޭł5{A~nG]yU?'/wG.'~U?!^u?Zfϭ^~U?~O .~n^|aկK^PMyb4Ѫ[oW,1VzzBjϭ^u!jzBʷ{̫Oxߪ_o޽^td@_>V`}N^Z6dJybC֫qmCh +պ^=*zzuWhktg(}_7#V EDXX8qRg nAql"nGb b#⣈ .Fq9~E{@\ QD8o60~/mQ'͔DVW c[-XFn6!\\u: X tzC,54ۨq-GuՆ5v5X4eKkt8k*4>ȎuAW1-NT#S-밽xf0;P@.E^vWiu51hʷb8U%ujSr83+\K-8}p?"kp\js&ת_[xG k*Vase9x;ҘKGaփ{ϜAt]}ϊ"Tdgf],E7K `[^SQI17N뺡FW%u +^y0T k/)x6Ax70 q#0͚ 5nn( ?r|߬?}Ipȩ +y;.jXϷ~7ȿl _BFf"m$VO'd7)4wHdjZ^u+h̯ց>Մjm@L~]r6&3,Ѵxc"%v8:wƟ»!XI| +iZz9Α:QS8GT׆S\;f|Lv\o(Fc\fNf9λ0sѕZ*7t -d]+i|׺fVZXq# K+P+g9Fysg.ga": "< ]f1r?xߴ4ޯQPΉC} U܋ U|Z7߶dET>rd\@/-M1jgK/rO.0T&cDх1F}PQ+}P1zjCd,VC} '[ܳ;z-Y)Ce"KMܗB}{Ч5d<5׌F=fCnEqBgĚEs9(pV:__?2ߺ~':2IO?]xoɧf,+!͝0O?5GA9y_8Z[& ?~mE3jZ7D[g~JS <X=q5USyxګO??h/Դ7=(o +X9鴏ƟI%Nuu;nyZw]#t-urj蚶<ފ+B1'ݏlݩ_Bӽv@uk@h{ֺ=ao:B gy8%Jq,LXNs7Uk4 wLs)xH\#YSW'.#8!mvDž +\Uum2PkNsCd[0's:5fޟ6E8oGߪϴ>?VɤٸqxOefZk ؽ6ONH>kZɕXr"ǒ{4ڴ5Z81Kϫ +gMyu3;ϞgVЃ{5ܠEK9RO?oUcsÞWk̰X3occ?`hƢܞWyJ>uy3??y_ e~~uA:~~*8jϞgޖ[(lg=e~u8~_21;Ǐyf._q;~ԉ3/~=l :=4z9~5jyyf3o_&}zg^Y_&c]eҟ1rUs/QUW0g&$" L*E(7+Doj)b.2rB[&A[gzyx$m*>AV ~{3s$</OsY{^{Gkaw.UMK5~ݺ +K56~VtU^_o)F|+tTcg[z|"/'3x-iۦӌ~h6 Cۇ8FDA0|`qŦɱ.2ZY,^d ( "iE^{%b#sGQV6ar|0ր]Zy`]1S+PB P/W{DAgNFS1np˸FעVƺ鮻IH^i']o1aho1mv YV(bY%U4I:/ʏ y,7n:؏.(rNzI12*=;z_JX\.3=rwk|gHXDyQmc?;eOQ]X{fѓ";$^F=x-FTq\va +b}~Q zAar#[GI&>E~ܣUsAD>i}:v\Mnȣpƥ6B#E8 `>Kom+b3v >FhGIc@u6!D;>)gԆ!/Av O6ڀ?Y}= }o\_ qCE + Ѹ%Q*J1`#ɷ[ioWp',߳ٳD6t̓;}ɅMX,X`L8`u;_9`t8l`D%|7 +c%T8<l}`FȮ}c?܏789\. c1G:qgYvxm#lQk,pGx^5}Yg8ט=o#qZztpd;p6q*v9o878jkvTi8᳢XWzYØ68Lcɏ?KNJo +6 v^&ǐ?X)~/ﱾ7񻖿b7l]]]wd_l~O4:{Pd~J/ṑqI{ ~ߩI'#}߽ 3ӿ { ~/}؍8}/DiBqi9|;u2}\;w}^-9|6@x@y6As~6"uA%g^'"js#͠qTnH9E0NI)c|s{?{;{D18"!` AZyG83 e2V>vkyX׹Iݢӕ:NuW+%_q5½I;}oٰɱрq'9YR~;鵝cx '=߹Fs/]pSQl#;b=Hn|Z]S^7~vN  ++y(}ȹ^ xNQ_{b/*}Eņ-](6|EQk"w+w;w_eJ` +46o/I s)L b<2^Uzŵ=;Vp;F51߮<`Ҭ Y܈Xͫ}ߒm}Pmu+/_am7IؠQ|JG[+sQ,$}ֈ0&>R]x>-oZфoG~x˸W% p[>%.c!%ux23# .#cȻOxo*+o6zޏu;X²ng3yd<8B𙬇3#h +mn|%ԉZ׍ts붻xfG rX/{X/:yziBc|e"cH/eD×]<}h V{Ai70ɱBwZ{3"7.+|1 Y1˜GUu[!|k(m.ugAs?r(D:7i/aYUl~;e0^ս/O:N7Y_q"N*q<2_.6u/<|S,ma#9wI8Kvp2m'S$^#u2|T$\M;|;4_ >Hڵ[}]|ث|>L>\mbi+|?Xڬƙ6>߂gبپ4O E;,a;EL=;E{.LBxLoC aw [ KZ oShb£$|55h _ q~1c_?8?.%!: Թ,a\GWmAd᭄{j3o_p~;{Dr3`)ؔ޺_e 'k~iOŀ?{ }C¯| w \KxWI q|Vge:bMyoYKZ + TeZ  rU>O½. OHËoSpx tK^XH!/k K/E~ſ𐂿 x?- +{[ަ/p_?COxPxL[ iW+3C])3]^@xH ^ /"\hx@+jwkb}$|%ZUſ䧷?6ƒ +?X ~ MnpY>_[K|.OYK}%|:k- *wſOo|?m +>cJ~=߷'|*'.zQ_x¸|HGW^o)((Y"ܯߋ'\ǿw\/T;[- oSliO~ſW^O$<'X"ܫܓb8£ +HT +# , oS6x𠊋x?:n?- x.a_g)>cgj'^ƻ *OC +~ G9>!S_ _ixx/G*p?Ss9^@x_ /"xw~?35ylOxP3p/gj~ſRtK, 3~} 7, S91Xpgj~E_D*~;Y 8C-)7ϰCPNϊxx?:\7Uqg ࿵'<Հp3gx0E c`OkxCZqL>]Kّf3W}ɵ=O49{s".= +#')oΛIs4s +a-a2_V$,3;r;}cߪN?\%Pz~r-dy>?Cy +NBς''s-=V~ /UgE+Z_şL˼x^^i/ b8K<;w42Ю@4U^/{/nυY} '2shܣq'rڸ<#,6勍ޛv{3#w4-tt zzbd=ܲ>ڝ >x=9rK^u,kK43Q&kqbkpGKVK=vtBX8YՎg%`lۣy CꝻ}1_h.o\.|9S>\6@YNo>0*@AR5Xǽl`PZEn\n!eW|]<=;5X7fCj/vдW4@5k}%.}ϏuHMﺾcl;ΎtnQK]oK'Y;Q߃#[T߄ _8v$|آl!awr5Yؐ'%"2bkQZ]F1ː7Xm%N,|VaaY9]43?|{DHKMӐnHMu9\](bk<~#(ҏL̎Oݦټʊ0A)b㻌Hp(؏|7b>7yMG7>(rr c>0rZi$<7wp\v];wͦ+l- P7<2"7H 8ew_0~/lym@!!!v!|w x?\^^,f&.1&qzsҴxQ.q@O1}m9iԿxb pL6as}Ƚ"2K ~!π񎧉"g+sj!\vhhH ̄sW[; WH~c' 7^Ǣto\N~+Gno~lg-_Ԟw/jkj{0jS3edd,{QA=p;꺳yxJkD=ŨSGS`Sˊ?W۽l 9Bso(¯t'}Uk&t2u%EX2EӍ+>T1؉1ALـxd hk<[ Pq׏@WQ1+-]qaC-[q\ָvg،}&N:e`/28~u&;eد 8IwWzꤗ=^_^rn#E#DV~{s"DB?Dn6w?wc \uu"Ue~HCs4VA[/4쳩͏}40cH:+v5s0?#rG;9:_1s c#;`Oz/!;ߌ?oJax._@oن1ľ>? &ܙ/+_O \KE t~Ÿ)Z~ ףKz"ړ{/]6>\?M8 B76" /D93ꯁ>W  bh_|^(WYpl.EYܧ,nw_"0dbY\-,N mKuyQ^呖Q]p/S].p,eQeyQ֐ӗ,kT˻`PkFY+QQƗK3‡666;uYgD s%6dY[޹O,3}b8<_?oIqeތGy1 `YZ{:p;2 +cL}}Zi'!7FF$/mrK}R|B9P4̱!àdGncߢ0= ~ay|WC ≮ǒ!sTD&X㓓T,RF6i(/^OWŀG;YY;h]?r[ڼEIikSĨq/P'o/cxsDu{ٷ_ V>W >QTs|ى'9Kˇg @=Y)OهՋ1]$[v6C+{vJFd> x>ec},$|) WW,rvS| c ++) +3csC6eе%3 O [ཌྷ.cA5yr9 mχt"'Ey[4=$R 19a5E8f`➢ly}c!gy?/sg \jqitFeS->-+SrycqOCsSQoM H.-{R X`k@̻M9A!<71Ͻ}cG?f`_O@~mJq7!5_<}e)x{wQx.SXw~?z\?ťjHHR ̗'-0](x| j<~Q{Mo&ghp|NJ9+ +}-З#ZyŰo}"\$z̮-\`yORw$%7y}-f&,N}UzIuٳEs2 >Cx.LN!c4KXG#nu+8.Q4^4>pf#* 4X-]:1v DsrӇҦd ,eO{bBܹ cC1??KwBSj6sNi?Kͼ'wih?mSmibT4XcV=816'G#mw~ ٯ"%XQ(Z/޲ўOwnW=b:lC9a&Dg 6?|>BhWȱ>-f]6szmbV3V"hr>%SZf_Psr>6~&|GQU?r%B3K<;1\VdÒtpΣ+VA,Sѭ'DnuǨEU ejxZǧ(]Fg6+1.?"y8TP: G{>דA'ĸeeWss#D[#v vz,R ! n9H&mv˫Uc?826%J=|c67,x-̉6`Gl<=v(ș2RߞyMxáhmK_mC^^ۜ1>I[Z_}⧨{O;yY?Ps? ^퍏>z6suR;d.=biJ|hfo}ñPu'z%%,_JV7_7EBp.}u!wn *c6s(Ϊ<ǖ||b[/>3?2bu2yL W,߃Cy5ȸ6GLi ]qEΥ"=z5-c.uw K?`ɔ6!sE)Oy85ϸLѾ3}Ɋ5RjߠgPB_a][qlK6Cgosr,~$yU˔>P< +{>ly?!FaB~T;wL{e<>a/{d"=y4G#.,킊}-%x/3u=6;5M\F.Ko~:971b{B U]ߤO Me1G{`G*B=P) TPv{3 FS(r=,3r}K R/ .W(;}mCyzԩM]N@p3}/od oB?彽{pt(>DW8b}PjpjE +{ɛ: RI[\ +Nٰhv}GRw@\#V =@}=L`3K#A:y#_i|We,s#vblRWC<ֻA^o/B<|xހTDqn' z}y{g+RzJ]yhBw:Nuuφ֩nysIg}֝>^'}^|StN^pR7[߯ƽ>s-ڗi 9Na^]/ 11~/_r'|1vǻy)tqHߖ1}ܻqpۧeM>WOAg&Nd6a;|k=_:?o7P6'긃|*ݭ}:7~_=S^~WVCzq੨0z׋w-fŻe>d+/N,|M ! B]^؁Z=숿0ͨ-N3n#B}ǒ̌a bkK7etun#8:Ov6d6wh{uiw^] m-C.%%*C,lhiyO}y#O޷!txg2~7 2x˛f_i@ly˱W"+,mat'5"Ob?A jkBD/1fjp1WQ~x +hkϻBH{`t_ޢA#0]=ErP'.u6mH!}849["^kAs B[e_:ހXt_{o6F[Wv`0>Hxڗ,_zK4'1&HĬ/r-rnEji݊þ(~p]We`=ig=)h?ۀߛٮl]lBOѻjz6dɽ>)7Σ*.u)3,'U;8Oqn4c4>H~H<R]FCN.gEӼM{Wz>d틶Fg4^篙.X?uq=iHvF[[q-{o8P 2G +K0nxrz」l/}7Q i?<\T.z:9cWӗ<l>;~l@Ӳ6s[gwzԪV6m0C9mv#!Dzߨ30̿-0.pE& +kְ;[֡hSw|G|35>V XP_bkITHy-1Em/e T:vy])‹?8?v?~2Hle3~H; OsKP)mK38ҰHr.q/ XYMݴ.w]JDS7LSs*8ad +tmᾖwC-nnBG?~ w:m\aّwm>lC‡Ey׻[A-ui|ծw!~Z~se&S; u'L?&}F@wPrg-uW$?w/㜍eec߶|{>?uӳcqK}fgQwe<ڶqM]^E߂B^ / +wlCr[P;c*MUma SQ3Z zk=2>L=#׬g*{rq>1z`S%6r3'2>On8]<`L~:Pw '32hM!'>ۋ-{@g:.jt#iù~tsv޾Š0mA"5>r[{\vf÷Ὄ2(m؇o[64[}3w3ǫxF7S~ i/VDX +r"O w|9 +rkBz݅r`9㊢LT~W: AJtc\qwѠyY2Ssy+g -%mr6dn6T4j X~C7 BRkz: ayّ+z/⾢sSEOmgvV\ꉴS=?F7Н\\CqROAC{K:VܝDgm5i}4l%_YIމfeW!?cv[cވ7MV{:X|ϛ7 w{]@X&cOR?e.ϧmc˃A<$9o0>iSWATp–fzU6Y' ua6xmxd9-xo2␣3|2@מc\sBkrsa|=m/̻(5ҽAEQ 8ni|\3Ό.FxS‡˜k/|6@8WM7cy?0v#QH=s3>j'N!O+V:}h='3zw@^{"gYgg%]V{':\KQȓavʃkK<:SJ&OO!|;({e 5{ˏFӢQ&78ϳ)]2PSOn6nMVsrb< yEE=*q-,A_-Ҡ[۷Xd +QK}go"mO\23-|mtX)m)wMs^;7[Ә69&䇼޴<%+9{SuŲ/aYҶtAéoMz +ths<=MYhs8?XEKRrO)}`ӷSUs h8ϹwFzuIY$^>;!vx釐{#p7=ט/ݺ'#y نl9>:X0*ƐQq=j^nHہvmWz.56sMܫ]i;c}Ûzw}eoElmAB +/]3>A}d8>v +iڴ> mǓ׵9L6ATb}9g|`Ͱ;Eܭ87+r䞫={xkrgc+Rՙz@XOC ) ~_zn7n{h<ګk=Yr]?CL[3w{wZwOYpO:@} wSGoS&h}Q{]2~7׏Tɶk߭a,ɾ~uWGˀ_Yxqu m/>peޓfse;74rlq%8*Wv?F٭Yq*ye=xn ucGs ]LMr?`| z9}X"s-r?wވEWO,r=~Oǘ;ݏwEH71lu" 3kz뒰iG!hGfe>s^Йrd@=v>}tS>,O덀YWXg(s AW]ٵDss 'S 9P(:KK]` 8{.LolWsg^ͦBdq2sّ qmscVl"}-rD+lo8F>BELsE꜈ݲ{#۟xO@AYOS)zw ;E]T3OZK@k#YO?3.?n_ˣG$Zk`d&}(,4qf#/'Q}6uuրu'˟3n0c UOv+cYУv^/Qsu% S(+ˆgUl &arOJg12۷>r>,kyI"k*׊Xi,]\70GqNH* +WV4^TK S}n:w U g#J>3 ?-?& s;~wg!Ok юOYPn9 1*yG cAG{.}fW)yF^ݩhU< c_԰K%;]}˝]xg׺ i_Ek qkj}sNB{˰K!_<9__.ңQ?x_!/Pw3gSbN}@KyqFTیE럊?9$iWᳮ|3<ܡߌ*~Bq??wuX1k8iGSNFGj\ 0s{@ӾN)NN2cRPk}-߮)jER$D,./>8)x^cEx%Mt2BwR0ox”--3r%jk*)/ѲP*ꃾ.P̑}koJot5E  ^+/rQfqim'눶? #x*믚6^vCZ2Xu/AzphA_Z&^?+a?tVpjE\Xo%,hJ.A# ?ۇ~og_0Q.ԏ}ߗ;8!.~R8qC{%V[@:q(h˕-E$SkZvB}-{2^S{1}%`;>̾~a-yJ{^tmci혼*f6j'yutvE?vo6a?9m\y|}zLZOFګ =-:F>?Ti_=<NSq`k!E犻^+ oCޒqaCӼjbg!ZțyI~YG{'dvVgYn.d쓐VnGzMie-˺YGV*}Aտ:O!k^kl}ȕlPvsTk>ʻoa*yiԅ} +^n6N_ݔKyǛQrޜUbW+|.c(o[SNDDxo#>54aBy~N?:O,w]/Caw >4*'s=귭ɔ 󰏡-w,K'#jT#u+mrOݿ2X뒿u>t޿dJX!5eZ_9?})ڏNM;󣏰,Gw@U=__>u6ڒ.˳:vLoGNS'*_*/:>7u^p,شOG7z ւrn."//y183+~ߵ޿%*WmOAozQ[./βromv8u=^ͻ #MO|}z>S,>nk?O=yw#ך 9o|νe;T>K͡E=+w:\X rn٭WކW1J0 +᝝~\1'ͦ7Nγ*.6pw>sʳg| +yW:b?^++v^єuDžvEj@\_ώϫY|Es ]Wudx+"vݲE}#tmg.is>(6;5'򎔰[>6^ +M^G*hd911Eqy]lsǣ +yD_,} zg[yY%׶k?3>4?oi,K{mT lI쫥=<c3x|,m-qm?m*c%sy/v`1N:>}ESC7s ]Qy#o7Y^GYFŨfa- )tϿ +}%s"-Vm;l650N~s1 :qmsg*%t"ڳNѮt¯G/+8t!8K# HB/F'r,50ud|/}}CvscH#_g8%OiSCw)Ny3NPyEd;~9O.WB?u7wO>WάO>i6u΍eܟ=[_3\Vȥ?mm3$w;DžqRDžt\QwN&!yr>a}(j, xHt3v5xTN&ǡ7wq{|{l#ccTaXSrXNdnL}8~r#wzq,u\ A})bL,J - +Ĺ.cHg嚗Oh՜Ȩu8&\τR([Eh ~8Sx|\ոL݃GoQ^GE?r#X]t^vc7QA{xnH؍X< +x%7k"8ƹ[{/w4 +g{*V%Vmnr?^Bd8s&!﯐忖s^c â52$<ݪ(Igǹ22kfi^峬A>'l'W(st}V0G_S3N]a{Qʹ^>i--g[%}].k=Ⱦýo[#)ZOYl~ߟ".>I1,: y=vYPm|L M1r=e"Vv'\vOG[ֳOrqs"!؀-BΤXV7%M-ԁc$?HQ mP"vw?҈6 ~M]fX3k+qzOZ}{ w׮:& y7p~0ަRީSL3ճkt'b#d̉ ~1c[߫;Vٿo.gKaSIN䅐ۘcK8BK?o}M5.h(G4Wc_vbvwӺjlݶep=&=t~#̻,4wI[pX~;OfuHW%''Cc1; 2w/F;w_>EZߎBE߂߅%{Tp{v +xgSp~ E2J%2P2.×&Va;W旔 I5} z .u1wkyviytfŒun,ngӓX?AJ EHy~⚳J;5љNgc/yy?j.L~{1]u떦 Wo?ne?1B^Bft475x}khKEڋYK9KP> cI6J%i!s;^Ęmt@ =cSQv,Ez;;+x4YNi/6?w;zǾV[1~wvr>\׬(F;o)0nkC[X>V@6W{閪oz֡dQ?T 8AKcU 4xVhx=qic*'٧q9rq72kTr5AɊ<4=@>W(EP^K [ +j S}׾i2M5;a?:,ϙ +ɺ6=C[|ij%뇞WcQG`_͈2@ s(3V$v]_mDzW~G1oM&u{PBwO7>m 3VҖƼ{XﭴL| 8<O̸3i /G yԧyØԒ3c{ ӫ}tm/;sR]`?ʱQfdRNz%sݛMw6Lq>w۔͊^7{;xDYg3}f[jM g vACP^1{~9Oa;yȫs+1[mAgź=:3oM_igZcnG+~DZxF)jG|)[ ֝clyB̖CA=*D8{1b|/ .m! >н#_|qnuf{9޾٥Zcn<*i]5~ak5_&.o#c|5fpч)6lL n&!6{A~[;(;}1tz$f&=9bTEЭE!m%bVXTz}YbVu[\ +Ekۆ8fȠ({ w éyi/+p΍fE~њq]Z~R՟uo]-W2bR/:V\޽XɶϒA N'˺wCއ[O-⸼5~gS߳^{Z잵 R}rsTˁwyt!5f9L>C9%S$;H\iL |->Q"OL5t}}~+=vw8Hy~|G7oq&q q8d_9oQ=y*qXo'{@^'m; f&+kz3M ๩yAԿ6!owx*R9 ӻқ@NBoX_aRturة)E}a[r,mxijfoG=a[;ơO @AolpVo]-r ,w_+\s͈QrmE_9\@EQ)O<b-$Dyˠٴy\̤Z4Q$dutN_գ\EC^D˝NlwϒG +Gt#x)-v+A-bc R,%uN*`0fӚ{!= +Yyޮ VEC~k6wCK'a~k)CA}9|Lvu^M s-XɿU Z:.@,wi?cfxN6KZՔc&/޾/ؕ:o6}>Iȉw3@7JGd1lw}%h^u[>;deD~G-,uZr/K6}w 1檟]Xɐ!5Ξ069XAKJ-BxWSnNx a#x>L}XK3a|1؅q@F'd8Ͳ٧~5O}Oe vǥ=4,;}Lap3Σ:i8o=.0ⲝԙ2EwYqgwo>(QhІ;{Ʊ[BOJdzeϵoJ?6O$)IW{9-=}MM|k +1<ru~֔]{ܢܷ/~oʺM.5vj7Ւd8v(eOqo6n'XQ =z&pc_d{2qr +qk͑]khR)8ē=yn_ZcRς~ E&uAO_=&.S!b! f܇! +EWh7( +PߑTy<~(=\zk\sTk1Ҕҥ,b\ojюq ҽXzSt~rfܞ/_GcɝyV?ʜm9a ;XRaso]ܿWع B< Z; +n[Ew.3qp{EK-WmՒ;h1i/L>}gng`N~U{&\O#ys#>˾P;Mnu?eq}dLqɅ|gB/L&؄c쏟SR!mR*rJ˵2drߣ< Y&dOzmO?Yݏl3g%/DoH-&ooUvAoUv੔(& +ۆwuee4s~)mZD۵ScC=^6O0xǦ>lbvwGZ޲A-kbL,{>be;֑? -u;h6[1""MRFÔ }qĎN=yӷOkG7MeK̛/r'u$5g=-"M؝>u5n!]9<ڟd15uzK,.ewӿӶ6s1Z0!5M{U'L/U:կE,#:ᖶZSιsݖyR:.zV?G9#97L@,<ߣ!$8w@oc@qorDl yVap6~8Ѣ/粑zk_9սrus]j%}_^ٽܧZEˋkx~J^ّjܠƝOsׂ'iE׸[]N9-X(0& HXmZ8/ Y+WGQw}~ϺX0">t:Aw?QsCOw}} -~Xa vQ +Z]Hƚ[OS"bOWбohLJR=>T9y0ϩ-}=A VƱ<8!Yq^շkn= x'E4݋)pc1Ȃ1z9fA2k#ܧ۬tFp, +ymqsb[Qr~c>.L)@4oҧ +u0VCP.K_B#1&>,`8KV*?WAGv5Gx`+9˼>uGB~W^m} +{Oxp'LͫcN ݁?lJ=hg,AL=wo6Lj s.\ɺH{ "s3:G%?%(Y{ygzIrIN+{a<_SVu~9ҚK:3~Yw/1q#ncyPswsw*.Y0)bkNt9G8ivVÓ="*s+;7)ޭl"p2ULKs^`p]Xt'\]Z`Jg=IeG= +ܳ6O?h"\ndTޅψ?E3EߎN[eMloiڞߖڇx,W3"Chl풥^ڻ㞷Y/xF+gPsUU>߲yO,|mxýg8荛+nnxnn⺎f-Z& te捐sv/qq KljҊvm׆]#6} ٶNJ4ծ<.GGЧ'';-< =)s"VOMv^~*f XqU܋YdcD{>̮Xs"}52OlVul_k-| b3xTƍ|1CЉ_PQiH'nEz ;ގt6mz(pɻ~9_6)½*wއnaSu +xvxǫ70&y7|Оk}"[GzUol^]a.RQxs5Nk4iO3"ԣJM>b.w~ -NU"tY)xA;t.-tyws?JcJI@U.ݧM!Kg"ܮv?)"vD}ؿлͻ{rΈB_MA4W6Գ{t 1+6SxpCg/==оͺCߺ;_4P[Q9wKG$=t|s_?WΝW筨 Uzk_qݕujՁ5޺Y9eUU%B⊲ʐz^EYʚ:n^]ʹ3fMUsF^VfWUՕ7ϑgQ2& EQu|L3yUuܙuO<+ܢKkfV^\@U%ՕSUWUx?rμ{o_W5@]ռd8^m^V x_1dVUke%̣0ϷΫ]Y3J W ,+y΍976Q[SV{܊2\9^5Iݕs:Igz2UUN/*k뫪f̀,+̛^Y mb/bU3p+߬j3MNbQěU>M(¡ʹrdͯq=Q+V;g_8s]jF|F DzD]z| ,kdKPU p/n/w}Ɩ":0SK$xU=:,AG[t6x-lBsM}Iˑb~>*Va%JT_U6p)OiEu*P+)Y뤋.U9^,eR,Ek{D];Ӣ yAK$_v ̬>jNmBnP"rje=:yI9A'VX`E73|c,_v>}T(p՟'ϊ?g!챈U=L,0e)CH(+ z8BF+ˁT[kU:P@"Ƥ]<4qfe j+*@F@\jGU9^+Mg2SVOoͨbp^LҲ?V^{fέ/X$a0d|7I$io+5u!b^\VgDLH{u5l\:"Nvڥe΀x&W鐻^{S(E,F?]?o#UET.Ȭ)&bErRr*t5L h*./;^qo#m3H/Vzϫ%v +?9=S*zoyӽqWzgAbkAP8H+\xRS9~FffKtH +T. Rq6] +ܭ++-V$$w"Q/^=*d_S9]5z\*_qAIkZıjAB^kA/-JY( \_AN[tJ0Mu{`D8YRկ˙.! W՛sLgTS'MC_$)jjꞨ +<̡)MN_~lE_+E%V{h P^=o7ߖ__S Yr-j"$_JO]|.B)r:Xa?=&y!ݤ*k+8Kx$핞ֲJ'ϯnYmU|Ҝu/|WB/9ZsΨDWΧJ@Q)W2&Vΰ/fW68iNXrP/9)POWV-r SHk9S)\=E#7VV`eVrT9rQ,JV]_^Z ^7oy3IiJ(0 UJ![ݬN( 2s*5z:V{ݴ5X+Zti=L ;-z u|7N?OW,͈_IupչZ2ߍ(%"x7)^>U9vWs*%sfFՂNNXT SS*q_p.n[TcVrJ8]KH ƗJdH"E\D2RB4p0)d\WYC-~%xd𮮯Tc"i9VR5IN ׉at!d>>!2]Û_S5^pz^}Mkp'"$]dzT"QQׁe$K2r ^ܔimߓ7&2i@{,w \ + /.VKs +W?r:AU3'e>"hea`Q +U#AHdTX7u>f0Z[Lw4KeN!šZI9o +; 'qp~4x^j,k<:T+fԴiPw\RBΌx%;sf;Uϛ/g&[['^^rBܟ_V7Om-}"I _ W곜gAC{;i6%D[٧ -·(5H?*DIs%B@*FSNG#Hې6!=ty*iuHG }@:i +HsGz RHܦ >4@: ݁tp:觚HHw }t<4t{fPlB:,'i,MMoniND:iRoAHGk|Roi^ 9j@η!_aJ_37)ېf-ěHe 6sw"}zi5@nWxB:H/`A"a%W(wdӼ4w u^o.@ +7 FH7#]0g"y"(5WO߂rQ#H_HQ;ЮH?AHH4בz~tw>44uQ ݁86E;#4ݏz#Ez=h9tLc>DZ6A :H! fBͅAn4RxMC{~Hߋ|Hg~!H/B]AӜT,]%!RR"Gz'ϯ#ÐRzm^fHCS@G:z~7SG&75M, V)q7~|@殆#Aa ztQ/A^+t +!y=r +3i# "Hu>!GO#ͼވ"4ۘv9䣜gۊl%<_9#*R'_+0vy_ѓ:_xWo|]} B0ݏˏ%Cn=) یckĴ y瀥X\`o>nWKVD]I/%n +n) DLy_"}e{AixZpmQ0ŀkOͯ|(w?}t{K7Ggw$X}rkv )&g̈m3e*C|&/Ɗҩ=;L<֛Ӽ eIZl@+؇1%ٰo# cRWo{u$+ JASn2x΁1w;c3g O}S- zt/0+, ˕=jcǃ@{ '&*D92 +QiK0Rr#3m$%\l`@0SqVX6^4*XDRsxz݊<^P˽?dz&`K_.^m &j/ +B-9鑵{Ĵqf`L/lrŽ A0n)uiO┍k?v-aCցOX?!=~!c\9+[[r\_dtpώ<~[KI "vrW7o4XSqI,ġ.ޣt` fNLD2ةA D`ĺ0>a:- U&Ճg G< X?2#`Ck|~$`#x8Oϯdx1W7kh,t)ތ3C7S)N;_\R? +_ǭWD0=C0tf#u $tP% 1Z}8 `HFf p<<i]JeCad-'Bjm8Gi\igq뭙)krLVuP!C.A,~#GO~Q_5U84KxiB!{  6^vjwu1%g^"f9Sr}i'a7\o\-ZW|cxw|x(t#bŀbb+q+$c+Ѷ_|O+o[mQ'xyɔWz FZЭs0c D_oqy?ms1h'bq-d_+Yaڿ^֛,=C++6^|J&ąZ/F{ + 䮰^U.{4SL%& pC `dʪ8- A".CƟ^y[C/Xb,r!g^zhoҭ4Nzs~vnz.q-BԭS+;{W6W*=xfOh+,c%q_8В8XT7 R`:^b*('Ga鮓& x@ouz ,/Ƃ^yxL) h@抿zÖzK>qBoM~󕮗 _hk^;i1硁Aۏ_<~Q>r_C_pQpXIʓꖎo'(n}W7Ovεɟ;JtI5k>ii鳠GwO`ɥsEx0{c,}rT]><= UXS/_Yh:ا*}<7[75YK1~ ؂koyFkoy![iU4a Y+"@o7 I2,;V{S=ɽ +:Wu^[ޗQ= ,*+O jGqh @)}>YY\ &,x[ rKAͥtols'm.as)]^KGwot' O:hJal6ȋv -@[B}]v8݄%F ঃό]$ίB WyWZ};Ww'w-'i̾ LަI۹kywo#sE鄙{X`ƨ♲)z-3 +\6w-\aN6$g,=IAVO9B** +uKut/[︍ [Kh< te-ݷ-/m^D!.;H{?h=9mi1tay҅߂oy<6%bXeᅥ{ %qhEҭwwAh:tVR +)qr2'7cwyw/Q{Ò\e&&?CyLH%l]˺RK +As`B)YQ7f%ގ)gKG|W |̣ ^_:.Ɛ +f yI!|FGHrܐ]I#_G.kdLkdijVnבa|VGƵB Đ^iK#0$VoY{ dəpEqT8zSAͰ4C6Jk%yXKHVŔH+R#~;v2$l|$Nfé7[>g#%=R6#Ƒ84~=O/_#6馆CExN=bɂVFt+Uv_zP& dH2.$O5n%ba+`Ā:G"k9 ]S}[CR٢8;2iqSH4'h2 rl'.i*}2.P6k!E.v\"m5QEPcK$cf Y'bXzUގĒ3!EM9uA ]Kڑ }ohp4ҼF!w"<Ҁ4 є;pzeL"?av,>a?C9HlI; y$7WcQ/$iȍ$vv]}]Fb *Krt9V%c*Rr|Cn%Iz'~vL#J]-9jy4_C8W@ApH0`4f4Su8 4ljr|Wf2!/M )hSke B'r> /aӌA8iGux+kow|4dAn/ȐA1017n@x=Aj-^5L,+ƒ:}؛q|\5d܀bc6oC2?( (va~EKFW[RXoJ}178|/BQQ{W!ü.6E.Qy9F\౰oɯ{/a{mXVׇh7|%9kOhGU `laokr6rn[Qgz}ק6.RE^鷼.Ux|_-mb^p ,ǚ.Qy]Eb> AЋ|@y>X] z1O=! z_'D 5őxh#,u0?޳E8$RG Wx];(#OA8k Ӊ*y|G'JWp85$/^Ei G,= ^(BQ"b +r:qxϓp]Ne%vN_WN~_%^N_=jAd8 `_'sz=D'7Ec| +- ~ Rsw"-{igCɽV-%[<(|oK}1iL e۶m%HM9Y9[MY۲If6\b̂-|En]0D{r{7ҌoQ\{t=S_-4%q[HTP99KTď0f"Y`'QHjqcil_iEnxPjq}W4vSuR>,4>A߹V`/-K7WW[=a0B(*)_޲v`/(a..N" H+*2͖} UH2^ dJ+? }0< Э|V kגplk]dYKq#R밒 3:q |=cY#mrsyw ca8 |k~gWvOgg WG̏?̨;z{gؾ?W|ʙhΨ37|-lQb^?˿?O>0ygmONz}~=j}dgnoȻ_^w<&կ퇟;m{ozӷr߾w66ky'&>FVNr{_\~?>[m.=s0-!k$W5@7&D?pc$۩K\Xvȏ ~MtFsy$J֚XT@Dqjt5T*]\k1q )?LHt/UCt>wH gkF](*ZnM$:+U +yȏoVᓡ^S_HY]o;t_U3'ݥ"ToT*|U1xO*M~UE?WSQ*z$&:|dut/T'_eu*z~UšүOęjfK#P2T[]?VU?׊JhpM >'Q%nDE}*EE'ULEN|g4T'\Pl}t{|o"f,szU1y3L3> KIVb9v3\d>f7>/s9~CKp>֕_(lK,T3Y;_sG{,[#כ0#;GD<_A^L_໸$O4κ}fuV44 e*g"vZ^¼: +9tl{(nЯрqQhrS<Ӿ܎m16;<wʴC`18=82{!LDMgĦrigKi>~v"ifo jS垀E'=9='?X!TyLnOQy@9Nu#زr @lin{iotmM-55#P v2b@lҰ Qމm;u*3r@fin/o(aS;腷G0QL Dp {}5%49XbYnt`lzPiCq+"}>gL<.?44E$TK;~XcyKLZH^vyy9ZUxX\/Fj gڈ]eP2]UTlKÜ`~ 0uhsL)"h (-pH[srQSp?V>HIK >Pˑ JXH_}m\m  5a#H?Ѐ$Sj7 < +9<8@gǴ5d39M뎙NW;KdeE0hp8am^Bl: Vf + B5SKe5,KSu)pxQcdc0wgÙYxO$Fg7U.w:ʍ&N;[u7=|Ig+aZqnE"mlDUTpxm .M츄!v`d7)qhxH<7nu%)ˆB]K~"ߺj +{IR>M\,ե`qщ= ;a~9DˠpKzQt{ +!US Gܲ۫G]}V ɉ?1[7&N G)Խ)(;O;pJN5-ſ' Ǐ󟣹崣7Pu{|*XߣfZW?Ux"x=O. +=+ô osPvV4:9*Y)2hdf?v6Ynrta:59ta[ַŋ?):xч[5uW+CqߪqvE4Iߡ]^~q:][x]4qx>WN|p_WߧxoDVsGWktxs<[nrjA=>2/,yD}|ROK˝^v+q/xx|6Ngx: kj<>WZ}_ oﲨ]I WۭUw6:g?ׯUt^:_O8 [3OYm&l T N1p=Jx3q"GX |#w]"^g'eN݄#|1;z{T%ykp?M 8;{p75>$#;_ݔm-Wiöpzkrp ?lWNz!c_YG!\sz #yTݮJq 9:eVH8ޓ|+W.VIpk4lS%Np,DlAգ:-#\uN[NUN?YOẍ́&|+!IUm"|,{ >we:+ y4lY㽲p?k ·+w_KlNjƒpyóӖ$𙄇 fo |+[ NOwnՄ%8&# ?F8}Ex==&Gx3,3Ao"ydlJ |.ᕄ/'yNl | _Hƒ=-#N—~Wx` wUk&DŽo%Gg究p|j_B^ƒ ~𥄷@1BE{^#pzʜU gᅄ7'|?Hx%&^}zi%QlÚ&1%G0Veaw\&KhA/%D@'  JJwc~Ob~`~DD_D_D{o)=t)уADg^Jt6DFtDAt)柚嘟ɘi队0?&柖7c~`~oD߁}'z)J0?`~D?^~'z-&D?~ 'yOKmڔ~D~&'-O1?1~7OǘC#0?_`~;0uJwc~Ob~`~DD_D_D{!MJ]J`&љ z-]z?ѣ@w]KrOxOdO4OtO O hH1?s0?ѷa~D߉^L0?`~D?^~'z->D?~ 'yOKOB~aXxSK|Mbo4ˍm|gp,D?bWE-Xuk‡bw%lm×;/?6ȍ F-P2o6u:4~zg:eu6c 1 +`X>ݗ+p wc<]RS'b^e-|LS:/oHXP+aY =]7>Ƌ.8#YDuC뜨:u™cWY$>i._]~O$b  W/gB_Fȸ?ȘTL8][e\+JųtXdo! 1uCD&ts@ߥwa;8-qMSӔz]>{UkQqú_${ѯwrxognw5މ~e*w5__5un~\ގ~ n*/G&8ݏwЯWy ks~ ?GO~~a?_ l=sd~7d~-_$~KDY?F/\Ke~X8(DG:}ħ1>-rt{`Yϡ.㍔q&l}l4?wOty5n~ Z~3u?c ~SuK~~,H(ЯL~9_*?d~5XIwVa,_/;+pUeqK WߩU;`^0Wޏt8ļe*kWO~ nV/2&kq'Gk[1 ¿+sb_}= :W@\wB/~7۠@Я0Czvo~_пy7BL_~(-@bwB_}W׊@ wz) 9,Ԋ0+Ix/kXE),.is0ۯÉED21W_Z~LKȹ8'"gL≃L5Za, U}0uO~Da&D,='+-uGx 0sˉ̓mL$>gbi_sb`l|f$'}Q ,4E'?$`y1 {K&C<OCq0:"X_P[K)vC|G1 !:(Pgn:[.]~p^sĺh3X'@)zpg2IG+8낹{{NkhZ q +' +d~&Ო08' 5 ^[öչ#{\gݰi#8l}P0b!;cck7 8G.˜>jsDw='b P4“07LyD/\3XPK /oas cmsg qUM/'0}gZ3#0n!vFCk+Nye a뀱J>F/uټ,[֯ep4ٖûO\sC6X0f;ٔOVؗ@_=wb4^+ƞS"o_@_6iw^r^ aᵋz F?%sDVe'•3` P{1ƥ>cڲ'wa+?B4\Gön VY=ݪ+`U8,r;791Tc>-9|78A-owβAL gov~99XS8sfՋ}biK'_zsNlA'|y ,q]/n/ -a? |!onlCԿ?ܽ9Aœږ1Am~[BOayDZ=jDL!>?*έE63߸i>}wȪ9`?sB`Cb]K >tmN2>=ĬZ$Jm3!\5;p;qbq=EoEwGC+Mqr7T ]*>ܦ@X4hoZ+B7!_7\s1á9(-"ε"c`~Ź5t)nuh  O [Cb jq> -55̇83e 808{r!xE mM3Bϛ j.YMqR86ppR -py ,W+>G/pN +jW+8sH1QG32_Q;sO}Sz34v]|zp_z _쳷='~5K!ۼ~7kX8ml~"˞??߅{3fd8Y/Z#F=-V7Wofwn,V}Alct=_Sx`=yN8~Vf|C]T4h/;~_a +lpr΂8Ɵ.Bܷxn dlX1}2[3}+cX*f FyTQ/q~QؽϿja}?ϿZϿ6e{J^L}5^ljpǹ.?jS:x?iWU_Ue!$dߠ+͕زih =BU9qav\9 |MRPL.QŦ AF a $y|{{Ub?G|}~/'37:MQ׍8ZymF}4'x1M>rY դZ?Mhx;JBnd>zJQ<ֻn}XJ7G?Ǫux,cG?*ux,c̣xc9)x,g|uκX:)c)D-d>^LXGzq~>X 9n?wɘPՋکc ^=+/k;^ kj:zo,+= ׄ&/b/RLÁś%Xϋg@?//TBIk./˃w(='xF)^؋7ENjkxRzx-^u`^1:^6݋7LKॼxE:QN/ e{tH9=/In+gxg^V^/VAO +y^:^\I?/^r^܋7^NjvύxxQxZOg-q:^(H/ y*u ex ^ϋwF ?/I9Z(;Gпy>feȮ>.qy.}Z( g!4f<8jk#{L?q]O]qSGm<_|v.3*^[|\Ju}x,mǒsz)u6.g=a5y =їR\FGVqX;sXKw䤒|'394QqX]n,Ua-2%Vys94MqXM݌7oఆ~u)kg^~\nEqXM/ua9 b58aU՚w{LqX(k'ɰIo!DqX}2?G {!tUΩa=pW*8:su ðBْఊֱZSۆΆ=!iݶదJkdM!א$5u3Uaݎ;pXa}s"9,܇ 뀙ƃm=oS;]rX'?Zo5dOw5)ӮGy9bQnw5]rXޅ;e\\C%u!Ck$.Dt9ji4U 4V>ta N+:iˏrY:k7?ݞa=^!8 !~ U⯺YpX*v9Ш*rX7,24Ѐc__yv]Xkq?Yl2y9+갦u3Z*ې|MrWmSumzuwGrWVk[Ȃ[spMEs]୊3y+1VQ; SxYlkaymoC~3=<76%(Yf*YbAk6 YGY䴋s;Oh;|MKSUaO fmwq}=?McYi=X9˱'eY]T`&iձ,dZn({eQ^ԩv{aSY4~qq鎽,*C;^e){YTh\^/NST_;r^63vle/N,kseS'~g`O _Y6ߵ9r jv)QrcJhs^59si9vpK,;j?W˥,S풹&RN0v*|@0>%7eo0>]?zsڵjg3k-Wysa/O Bϵ3ق<+Y,x#. l:kxN4;6^7cF{ņ໰qϘqFeG>%X?5kwll7h]ƇA?[(%/&8RIZ|t76hog(;hؘq;celgPR@6|t]ޘx8fge:nd ՞D]@9l5VO-s1Co^#cv)[OO?0:^h<djx3y}.2b Oh~i +БW_|vs;ؾD{vuX}j Q֫L/kx,E4f0Ν +s2?HK͛W؊8y zw\Lm]ccFmgwywE/Ƌ܇?רOa2 '<.y\ryP f6lA_],[gO| - |C//؞R ,߿Ww1~_iN9 2[ՕrrVju\J+Z]!ŵ\N+Z]>ѭe=ZV;lh,{x-P:W쉵g9>5\yC^]=&ϪRqTU\[{s"u*{]U[s8 +(z2s\mT5nuqVmmuu;4_Qmi2^I4޵̚ꁯZ33!&M):o9jqӎ~ϰyƛϋ5(d\g3qD.3V _{5ܷ9η.dǐs=_'>ߧ>cNq3N B햹٭ P!lbG/>ߛTBϩe'p^G9+"617⾥GpCwy,~q2O3 D-bxύ6l8?9` O۾b?7یZWb{>;$q7jBL֕X?ŜNpBy31ߡEL~WIF:V3auo[.ĺ+zC* :1_펞kbR^ :^2v/4e:^ѓx#u&/^'C[ +pݮ1❈pWO2>aGQGO]2.ev_X\=,_/׮v/CLc;z~X_vEMviz/Et슻ƴ_vz/" ~qi$\=y)L[z"t=#ؕ{YK&bF~oϦ5QBWyJ^_.~[j?B}>%T|L +УQJ)O׋_kɡ+zw,\9WG]7RF];/?ך{jȽh3Ӹu]쎻 +cA.X82}8ђKrOlFW~|t=FGZ䏞=cBuO]zx%@X ZQ}f_eF2?nVx|[eF=27=~f|Z(~ +esm + +b`-'؁ +a,2e^ak,9kFځ&-_@ls3$}C+D4KXOPw x%:xp[ް!.!_KBg[KɰҘU \ݰzSC2>>VAUWX:h۬{J; +f=<_ yd/"{&EzuZ(2 kV}b_ xҤ_23CsS+M*Ҭ:>3ƈ4V>_g-i܄})Mɮ\zym;Оfi0i[sf` [? +ϥV-}GXզ6v  >ClA 3QGޗ׫f)ŢaJfwGy983݇rwNFȌhoНΝ'R3J!u{e;Tγ&02sF!|ATWzr\OJy Z7C Uu[~Yww>eYOIÿ72zi2Fɿ9s_d.ϓ*-lB_VM6<7UjYna~if癆u_4Ӽv23<2_ڵ+#|z> xmFyD]MfO|.6f|&aO4߰YSMj v鿉ݨ1)ڣ{Ilk57 LWjB!ާ%U'ӌKz5H9˭[ +iW`~l{IC59!J"].0 {zqzVz,q$uKG5j]XmƖ*S4Ԉ&LwTo2XWzynX U ~p7j+ +ZWTx9 +Ĥ{ixH=gk+|% x,W>+Sݟ}vƸW.`R>S0ϔt{ƍ4WOu@ѩ`W3qEہg=WީuOyWϏxD6Sds$~Aqy2<=.Os%~/Xy/x |?Ow@Ւ +xCx\'('$k:bk?F_|S;@gĿ 8?C +:q~/W9:tԹQb\GW 8;Uxۈ r+.<Ӂ:%^ +q +8 ++$I3oI~I| k5E<4s0^Hw .PeGtZLkȴ{_Vt,fez~#gI?C⫁;r&T ^ + dJw5'Rc +&˒Q*WjxDw@mW]2oޥq#|whx |AK2k?O<8XWO\ 7?/Qׁw'QW?J|:?8TO<8L_/+:KHN/^ +>៸ȖP';~ď  2?P_'?rP/q'˗[/r'ީ׀OK׶&Sٚ`hNc/-?ᛸ(x;3(2,)uOu&Qj$n?š#~rO}9t; +x,͡+;ZKG5^Bu_~\>L󁯌ˇU}?.C: +|HG)8HS/!: +UO<ܷ_Oܧܷ_O\ǿ/ӫ8w+)# +^*} + FsO? ៸Po3u\?sT\ a# +o>x@˿u媸GY?q#/_X%# +x2oWW*&;5^GS]C*x_p'.T<:+Jm;^^ٗoq'.T||1?9*x៸|?'oL%b _sx\7"WTh?x 5_F^#Lm>5 >ᓸ` q } ?p'cCV;)|o;k\!ez eMƵk# +x?5m~ÿb-';)9w'n2N]st8nbh@*N]СOr~=7)5F\8x +Uӫ8_x N_ |?G I!w~ FAw/UWu%9q U_O< )Nϔkyn1"*s4DK_~z}}^!ߡXꜵ3O<#{H]ùv +yu<;?%DZX~ x?sKӭ}˵Sf}ǻ%o\ Op+[Wle)w3Ma5h~+OVa +?MfB>K=^VR!6Y\iҗ"ofDkd^Oܟ=gdja^l;0Ԍ~F:wvϱ Xo%0LK&@/R;NcKQ羄~Sw +Y/yQXV!=9(+I3M1Xv + +Z3Bop&1[ܙZOJ)lR-' ok#O7dQGny9eZ9s=+˻\m bxaUE=Q/5==fzEZ1)=v@׳~[MnZ T=`l/i/5}9OYc^ʮd}sB>v S,;U)Qߍx}?rM%)]w}S{gXq)Ro'Wo9"=18TَNbFWѕyBb$6PԬk|w_hS>g'OM{i{4m_/ >Edh>:aY놱ͺ,, 3?yM#>%rL]穰7~ޯwb<ϘgoG X:̳|t~s]}= rk؍w|9v:؝}l7/c |i!|GQ0ҿ +| (?M%1Ew%ڍzxtSR}^a5Iyd҂&Y\ci@"4BzyWG+t;kv5^~'䛼R{xǘ9q._'82}Żǵ +~(O˅0U,ђܚ d>$#"Y!p7^@L HS Eaw Ɯ6߽u.0/oļ|'s{ww}26b撹57#{Qvv"2onF]+(&D^ӯ@*n.HK,-s=E~F)|+-г.W\m;ޝ/e=k8u"M,A-nV[*9:Ѹ>_91hZIO<Ǿ~N@1۫)-\ qmk;qNרu0NO:ec\ W,帅iI3˹^33܌C^IԗKNG?MTM#E +A6^|?P3Y|ߢ"gKNN.Sd<ekIC+@4AK!<8x o>lMbL؋tWa12ʚmH+qP=Xŷpoh-p-ibӘR\%Z?&ZLi_|_ 僬 ӬfwQ;}n*E?iC4ڈȅ>؉;5p^P7|X`DY Vʏ;\bW ʨAZ^409eu(keɲr}K|-hey_뫼\+DyGZ%v;: +Zm \osLx?ފ^<7Ӳý55.U.n)ؒwu|/oҗ{}ϛ]68_2??[Dɱ#gFw+|iK*@]qf-]03=d3V=c/T"OළyauET|=o1m11:2?,Ӑ?~~ l |H8fjK)޶|cХ|0[Ǣ>NY3-5[/s*ν},}c3q>gn%yt|I;r>u(Gœ49^Hϰ:9_Fsn2 a +x.NCR c0c4!. Js{ g*{4c⮪ꡚY'Ǝ!CzM4Cư屬 +ԁ-Ĝ11W۳Z軒CgKpxNƃ/.wD`U;Ը&# X80LT>A)J8?Fl;̷nF _9o"thqh-)<|O!Ssz;ח +kh'9u+EtQ˛n@b!`)4{ΗH_ҧq|ku`F"{l+B}:(O$ Qd7*Z8Iߴϕc-G;4}QvLQ `oyG8/_>:# yo]_͍ڵi}օ7pq'1ݕ}W39uHS;ce{=Q+8mk~MW(ec#t[Y96=ן9K1rLS6o\:D{|sM5,n>e knlj;,]BPGL!&y7&ς~Oݗ@#gRp ^pfD0VUsF7ЗAAȪ#&NMS4~>A۽r\`ʽJr`|hO'Ldr,+wbY'%,5p-,ñ* ' g5!G\_[>u!ɵN@Q63w?~&e`yob!rr<$has#{ gʈ ㍇r7w"/}y{Qls'umo)_g]oJygw3/g8Pd +ܻ^2( yg&B eLə/]s"G< (+/H=n_rrqXˊxe=\3V)?E0P}e<2(_9CΡ8:檋;u)?t+oxG\&#.@&wkz#Ϲ>v`q&+_shݸ][zpא>AFxw^:m0. +۠3+{՝lYDV΅+"_q^~>gb/:vG_/҃[x-l>b#Gux9P+^F ݺplRBc9[G aK)?\:j3BNJ+ L+lӾ`+1zㅍmZCU9mcU|V)ٻ 45_ӶϺ>7f$_wEcU|.%iII҇=b_|lhq`ّSDn5# n~^gw?Ww>& 95N>?:<1{zV֩:թh;5编 ۏur*m: +,p\Z?~3άmhK@#ب<ۦZ U|Lj-*ȓwVk~όRT^摱ɸ,w?'?vLO P OhWBZA;8_wӃ_~ハ|U-b_WێWیu 9}<3tsNgYo?O^}܇=!܃Lv|eF??z-xg$H`W?}ŃUl!zMa}tt&kO)xx.8tWc*ԯV)/wD~a3}(Ҷ:[ I[d=5g[!~oX> +4e;(q`l@)KS]72>OqMGj|߃8c5h4;F=ق2\%>v.B߉;fhiD:x ˍ$݅˲7!nC\3eUw/ |(㼋U?tu{FpfYj [F9q͔c +#8s$dz@ǻy7ŪmKx zPvu{*49!h4'=|}1kT٫u>G< KQH]i;*/8_|]%_9PgܣvUצx[{Ak:bn'u!7˜kn|w-Ϸ>sHͨ~>oll9>8'ϧq1N^Ǟ@ϿUm<#`FMUx&l%.ojW@3o3@>aBU +GAgʛ׼9Oj/>Bx-׊ME¼~mjYw1ͺ:3}Dp#s Wԙo+'^~2B]]O٠d-noSٖvfX$aOmOŞ#3TE䔸^Bg6 "tjn7Xd2(J_Vs0^ȴ#;-̕ʳ܊Ll)wOY.>lu U9+*mc]Du~{s(;^jIbݰ# #~tM'$Zs%*emJ`(C,Ѻh:S%FZ~)B װn}g[Ά˴i)G`gMΏ1uh#q?7>85q/ߛX&FvE"#5[HIr@3?q* #B,u :~ +a*?CQ7ӚNM+˴ӾтJr+A_N=Gh.UEݍAboOo=lݟvsn_A}v/^-AM$8=:fQUK6{c=w۵0?]kP}۞6zf+ 2WԾs<ȒԤ8@16t93GcMre~e릞LN !-~Hve]εc3^b>9(9w5lN4Sv6F[@N;;i)9Lc3ٴ:u=72m=:"`p;Ճ{P6&MzB~:~.^Ns_jys5w8v5'nc.Py&|==jN[X(}uBcf +D]:@|nNlesnwD]kQC)̴8ܸ@rq+AD,0zsna|;e~\eg(w82EYi;;'[󡏦O-NV<[a~;D!cF;\#i߱^ 2~Ug~S@7 ӏ _E_ >}=kǂ[?ðe\뒾FӾlVǗ#g@^-{4CeyWo +͡n|Y &ԁ)vgZƛ^C}ik}e{_V]71}نw+Ï"Aۅ&Veg Wek!~ndPm{R웻}?bXW%RörmcL:o'?$B>ڶqM]^ L~ M@#6+ޱm3>"s,V3plI)OƶLc_;jeoBmxF<=9P::ݙ+w\ʷO[1ӳ<2#\ɱ7b~ n(QqAVangtבsx/:PdW"=Sø@Tݎgû1 އr .[ˁo{ؔ-M 9)m:C'}P2RO~{gT}s7Fgպ`̹YtTUjL,Z[9cT5yp3wPϤRצzڋ^f}^=3uϐnqnyڎ6gĕwB=/ovmIm7٘Q+Vԋ8ȿ.~WVyN;xаF|O_w"_sepn;+vmwyyyL=߆qE?ivJ·lO:NܝDAXb}i\WDr;wl ?cn[^7P{GU,qc~yR)jMx"}_ +;+49BiA>%R9@= 6%1<:9 KV8_؊VɃ.N7^B}ۢti|VFxҚHۈ28ވN~tOg;HH9zaxZS_cwWCS5co~?+Tucl"kk[N4&Ҩ~8VTܡBs|½Ό;?ITqfxPE䘽9 !ѳ:0JVWJFʵJWVe9N'|U_PXӼE~g-sQXwƓ? Ɨ_Bz [7=v8`#^}  x@i!E4Ĕ4ӑsEF9Rk;=\Y܇A4UKRyї +~LV捕"\6j6đ%=˱?sgr_z7gQ2HC`?a~w+h1MV fت)sFsys;!/!@ׯwj +;$t%+#YW YҶA#Uߚ&FСmp崥k=ҳLB{p1ҹg'SVhg8v?䙉>\I)!QoNq(o j+Ǭ!b?nuH﹖L}ΝvN)WPeCO2f Fݮ}A|E_c^Tn{y\'핞3qNgk@yskݞE _ZodA3f/z#ȷu KePԷM#CHթIh;~l`@4QZCQO=Z`wsr7q;l]hOzQ=Eu~Й{>ь uf2u?6Bvs=bFȃ 'w_ ^xwEx-/ <{b[<-K K3e:G5ý@ZaW)mu^Ú ,g(ekR%t[xU{\~je9o;q/z7Ed/ +R'+}=rh"@=I9^,mt>|ūv5){G۰#erԙ!+"vD/'fƄp Rs6fa{zn_fhjg̘9Y'NXU hIAN-y.W^;?xIN/(-c 3{KsK5a1.P٣P\2xZ%ͽƫ۰=e+Χm];n<&%/({87se'>ຢ)wB_"_}Ύg3v\س<]/}\syv˛=~'y <]3w4ֲS;?=ASnZt9Ɩ-!&uC"ޘ"{-d欓S c]6߀i8kKC92^MtWSgO?9}zyO>%tk2plRF swCWMޥBQ׹7S'8Y*= ?I;ZW` p󦜯|/[93M9͉y&#AB0=xeLe8ss_cNl"}-rP UlC[qD}.GFLsp꜈~s!@u߻BAY˿g$S wPQmV1"\ $iՃVwXOy2'7c:ɺNJ'/teL73^^*8ztס9+wf:7ʼnܲql|s[= jNw`cܲp?&!I"g)׉XX~UHd;+ yg=^q& U\4]gSt|ϳx@?=YT%Z־r7W c-x(Xy0uN|{s/d]̕E+=FEyF4#u4Ҍ + +-T<8NN Ӻt@;ϵ N}FgT+E'&Hs;OgE=7k>3юyY݂rCN!Q9;xW2&i_?xNi"ͷ%Ϩ۟4:[e/lŠog/^~ϝx/~N_\2M&u_uD)Wdq<:m{!|德r\azwfEx?yYu.BٱDֽfs*;sHҮg] f﹵yO?{ pq|YV1g8iKPF@j\Uv<O]g`㷸)}qq) N)S}j|:%uiqڃw純scR}+z^.,v ]UozZC~cJ kBdӀߞzʟ3a_| }W"yod@;zmC˽B9v9B%CE˾WyOEEo y>څ +s 1ͻU -J/dgޙ>Mx<S0n~:lݙʨO_bq^{GVř"8)q.C3k;}VY"A҃3s7G 4KuvVx18b^Xu +~|XOs?>iYFOBYpb܇h[A:G:>A?GmYtw#hy5pۋHۇ3s}43Lm/i8|=lc=b%l[sȬ7Vpd.)+I=MªC<2+/++Dt 9^K\.1?b|v8oKN_?Nyx^MoLJzf?Oߐ;ʖ 9Ӥuq@؄']C O7Ys!&GЧE};N0xje[_VߚՌ距Y~S>W yv6:aYax?}xLw Jwsmc1ygg4 ?՝~S \!σL6d?$m\<^?y&&&?OO3Ўf@Nn,GWo}H/N(fءNNO7uzۙEZDi('CO'tiDcFJzzSiΉ:zzuV"\|hq3w-1pW98(S'yυOB#Ƞ;+k?NC Y=d4tzS'/1cc.G֑}*߿~W dg;S.[PXy[>oyx}e}؇ϕr֡Smynj9Q +s_쁾9޼ԉLhbעkM;@ێԱr]MZMxoaJ|kqU.R5C}bh#_>4j's= +mɔ 󰏡-\1>wK+wXyKR'VbP#qW w*s)5dJ;[/x_SW[JξGdP5,K-_A_|RS #.3:vC/GS}JWOKIsSυٽz#uΆڡW-o;9 MMh߹C^ΓTgS'wMu*ւȧj/ۅŽ^6uΙUq2_|c86g߉2Cu7;Z/T'V'[g>+D|pO~ΜǛ 7ͫ弝ao@slg5*vyCZ]rh~Qr o~SK3QȕuvDaFk*Pp 4 17XKw|YCJRϕО{YG֏--gȭ_7ҡNq}k:_l7r̽A9ia'vڗv6=|x*}œB*D>w8)ZSםևڏ&údSlYT3  Q6~v|H?6q:D?&g&ىs]h*a^wkmwgm +QFް:uU#DC43z(1j< >ϡy>DTGۏ~ W^u=R4-2~[h,5uCGٞ.|SDêYftӁXs޹m4?0~Q'AJ\3cJ'B 8V'x{_:v(『?}P'# (o='r,52ыG21_և~HFl˛+oTqS=8 xjrpʛq}-M''sOi[ CWyoa6Aoظp#.tp Q7MCyY>9{'{UCfb}x&ǡwMsxNS{$YAγswu/q}!wy6cHŻyO^B%9^!aͶ?ue}GuݬTw&9sR֛ WL3#QWoR]\ i8ړ?û۾׸xK?x뇑D/딈~:_oC0}VoO?)'%ZBS:I>?x~RO{:!EOXriZobe껏?֚=<֐XkZt^ZӊG~sc-9y؟N0 š~}c+qǹ=G?o_útDc-=*N1I;x^WSD׺)kL9{ȫ _sܛ-)b͐cy"+Wysy'>ϸ‡w^+_RgC?'\R(L;TXMtUI!=x r/S^.rCrփk:[.]^o6_MY +wQVwc{]6 g湈GcL0d8s;e7؇6~4g7dgOQsxlU":*-a=5}!CηC7Avg?kEaL\ob;`#0F AI88⹫ m_j1VxmE{o{;17Oͱc"8K;oUU?AQt"z~|𻌍=^Aɶh3qɳqj=6uO<|g\8BK^{4;q@F9Nc\]m]m61lĹO=oȻ7T[uz.~1}#liY}QgMdu{M{vf;=o߰%{!_|LHP`6tTIqvg8:1o(FY-rܘZ VUjaVߊ1\O^ 8k#7X Ը 㡷Ц5#rzj@>sfD^O}_g/sA335VxmՈA"r`ɩ=MZsDGU/+\SbJίw>q],V+Pwks+ւG砭'&΅p͊mO=2S~7q[`&mEq0\[yNZ یɘέ(Tݙ%2Ĥ)oN.``Rr]{MGb}(z_ᬥ~ w\O5֠}$׾\_$6MH +uAy9Ri̶YKj wH$a.{D{LŸkq (p~uX3)Mj=uգ-e@N^W4{yWa} 8?ép_;U`L-nؤ._Y Ͼ6}m5d{omkH4>wǚc||L9>={@M,U8U >'NRhZ +*E`xc;-^nR7X;#_>lVxxGݛu C{戾'9yW3x "oѪ"aytHw!Vi9Xax8(y*<C^]5|a'~tۣSjn1ۣBGOR{wSxߑd<7X [5ۀ&ߡ~WSq$ g?t+wS++[=s%h#)އ@`ӣE9f~fΓc[vϤ{hs۸IXS,os,y\w ʌ"Bqnk c,Vf,W>`nDt_dZ>݂JȾkAy"wQ-GyD))z|y坸gmp2fn9=kG76|}YԇN8r]}ȁYaIkR*>M,9.ϕf_]'9Њ=v|v6:1uo15U}}N٠;vv8H/37+8'q r8d9+Wqʂ~87Np6/B[;wsE3:f5ͯ>y<75_!w_'ɐ?}|zg +Du}Mu~BoXz3X/xeh~p KrvjLi(l|˦ %6-wyWe0uSЧF? ߱u yzhE|Y7z_ fۯx\i[梯F=@ox ,Zw:):nV: Q0-@'~n{͏>|ŝ=CKe5l]u8z}MZ3ۻ>)FolÌ3[Mx)ڽN{7wsq 5 MQ|z ]~SN.4混?ܞW<|\ /j_J sucvW-k. C,w9i 9E| +Ē<=-t CPӈp{`/٧!ޥ~H#vı{Δ):ω 5s{UbцC%|U=v{w<˴e'yZo")Oe܌ķɳ!oMs[j 7.Ն|ߛjMr;RT1֧87_i}7N#ӗ.5]{5՗I7{ӗ[o3VF*)8ěy\`y*ڏvz^_Ȍ=NfA86 P0V4hR0eAL[C} |TչIHBHy(Ek9Qꭙ@HITTdf'2H|oEIHHCm5BK[;\y|h=|TB= =ַﵾ~j0nCq~g +%K&hmk5# iڇy(Ǻ8568VǜLko#ۍݸ?ۯѴǔ;۴?ʜ:`{䜻ݰoP u=2S|>wf qAW^np(ȱM{5Zw537x6sKuMc|!;zOF힆>-%ڦ3yWw?owb'#{2& 5r3Ц^4ï89:/uSp])~=?ܤJp[*8_K}^EރRP|lno@|S oQ} +9^zK.?~c{KF^uB+i%ϾmqȾKKd -#nS-cBmOvMFtF앢߷Wl{1휱uٯŒAfIyw~Zn{WA&-"ҿ lg<#[?<2%˴\S\fp2[ϔ 1k~;:Y6Dw7Þ/ћ2o?7iDnvezylMs<ϓj/|k9_/^^Wg< > be~<{'m\?8KɿI9'soZσ= mwz<ܪbޗ8N1Bmzu|~\S!Xce~X9woMO۴9!3cFO;7"֑?A_ S7q VRF)簞8z%웞h.1l}Suqg;O\=sNo+6 SWϰb,h{׻55mvKwvbaZ;+c]9?5Y_M/>A_OC~鷢lbs_o1WŅM8E,2 yn˶ +Ci]"F00D:}7k:旌3fN>$aEAPO<ܨpk>qi*N0m|fv;߱ss}6\>Ph=G,52?ys|Pw{?yc/)ujE; Cž{7\7~/p +ľZDʖ9⸼\\/vo7s~Vƀ'|.(Ax \XG>}O|9y5zo}eڞV&<`-Y0GG,zsϳާ sPvKѸ ƼAȉI^5GgݿϽ/fkmw&/o+\MΩ4??^E [!㹰 r}Y2^Y~8/_`Ϯ alO\2{3~ܷH/|6+Ƃ Iݑ{"uyj_31]I},'EU}<="*횶\vyub?|lL|bkL5"^eGgWŽO'YOkۤro0i; {!WF~~+-?T8a|] d\y~|f;kK|Oxv֞{61t/>1c/em幅쏾Ķm~^|Z2ʟ +&C5+[wy??(isI9o2{6{{ u>#ǀ|q򀞩r/!zyU^C-ȫ0)]S/^ ;B:6p[JZ|vf&+i=sxQ>W?=?/Pvr1燸:ܿg^q=Yo*}Qe6}=C}aVǩgkgϭ4WWyJ2;Wg]3Č_sR&0m+̀2̻wݎ}O;~o6~#u\X'k~ +dޤM^Ua4_|EҶlϮgwMmeɇ.Xmve+\34#߼G,9{Ō1jhON;aW|&3w= }u.x{K^vq+x>זqv=Wq?\6 Ò!ٟ#m%?//K|s)O _wM-ۋzn9V+za |Z?iȓE ~18<^ g WԐkSgvLzYW;EUދ8qS﴾ En%w0so#\s#"<3_$u/~/_D@=S/:mgM&~8ĸ0@iw x/=,C罏۷:}n>eC~׉9W&#uk3_|E}O0^ۼώ7+*]?v.'5EstWD7~1oGe+Oq]!q(rCO'+ݽ:)Xտ-Pm,~8zuaN}yCrߝsP}q}/sI@y~)ݏ<rOҢ`wg=?!?{L?uyGj b6ϥ =nd>9m|s= ずwAA"G fe\ϝ]˺W$Mqݟ]dpuz xw%Wŗmg [iDZз‡p4 Ez<Ѥ?\4&:$zy +UfkּxF᰽X]k53].1¡Hc?kD2ڬ5=0ˏPh8hͪo֛֕d9 E3,Dێ@)7,K_WG)]Z=^ tU.DC۵01SoW5hZ" u5<єTN$N0FTRaISpPG K aXCXAGT@4jL0*cP9%BIkD_+=G^L7,8Z⭱ +%.b~jVup +[,oC!֘Y,áCP.beLpܩd,[ԍ=DEav@(Br}d*K[YLdNuBt[}Z|? I[#~*.ySh-- 4ux2ĨhF˿N_a0eho^f˥UwVVTj*k}g,c,CՏo}ZJUůP!mשXa!ݞv"Ndf$ cYۄx2J3¡ЏgPx `*;D Sz_S\ 򇒵VOW ֧šuH(oEW(`Vʏ)%jôɀz$PCS'K`J,pZ`E^ ꥨHIC!jJ$ү=~ط=.F=GyE9\Db2 9+Bq(5cnc>SjBp]U.yqk%X*'>)2[_z|"mqqYM=,VU^…rjIJp{rWi範!W9+UoTgnDbVeU5sbJb=RrO=ÁZ+p~}~LS(lxCX9-榀rtcV#dyFB c'us5h\aW(>Q,\*3ej*7KOMT8⊬^w5EZ!Pb&Nju[˺d]WPYˣ,_i,rI_ͺ͸fffЛ9._ymǟk ymY3s2ߜDN`^9ewed]˺i5gMiKBsoYpιeeޚJ^]L0D$AEi%rtk`0JoTOKw`i ׵5^Dkn 韶$QIy:=k2F98 Ftk/TNE{?5Qd5цzRHKLs$ \T+?߾nOr_eUiƓ>p^Z?!T6ɼЛItv tE\zUI !-~u- _ũD#r, +FEdlEd0Gv"!~v#;qsKG^8;iWVWV.œ3%!Y\Kk\Uw,_)4tɅX{օƝr!5n̞;$M1,yRrNW˰ëDoezƃ,L ~^f}% ++G$H26$HJ,ym +EjyN&քfΠg[inhf#3~Y( 0OC(U)\uV@<)ho2ƫ K̼>q MQWݕή] t!a$toPoG|f2L=ȿ~D +U`as(\ls^n)zךFC]<IdVKKUu[xΑ$d'uE18ڀ1++lbNGoa8@E ^,~CtW*Hbf:X у_K+T $:W.SV)_ns9zK{^ͲڭENV"+Gٯ\_JjR%%SYiU[MM| [PGq]*XR.PTf諎/L݆)4`rIU=rĮuXK4˞ Yk}S( ).ʰ⏅nJ<0e t75h eҤ+eiPo\#kriM:^,mIbf}A$<: +X! +Y%CM~w!{b'Lb~K=w$ x"jUe4GM" *C3$O҅7q}J*o+,s$P%\j_ګ:k0F2XIDگ Ce=uZfiU1a^ [lr #2ҥ*2H]d")*eRfbq k<L(HJJKR!Y^r >CF|Xs ]ËCx(jN㇣~a HCȜwY.6Sd4K)F^%~fp\,J^oKiʼOV=y7+3v ʌi}lZE/ Q2A7,B$! dF=*O¼\kT$`.[2Oelj$ 8ևvF- q'7K-Fx q]'p.o;̲nt߂Xn~] 7'Z.zʟ3QˉNajzpxO<ڌa}'Ah`g08$H2gbŸep|3~4}\ZJ<%ĥƒu5K^V@4줬CL"f?3ۻ\q?OW~$8FGSt`g^M 4WLnqp3U:ua2VS MԸvxւ*be9дNG[sFF֖qz}9Z +V{$j˻/ OBvz#\f6c*dгoHdߎ r/6m/Q^zS΄kh)VϩV]X'|Y%LrDˬkL\t- yjF@aBX36$Au*+iB^oR6D Cp\0YD4侂)_ePdoXٗ3Y 2cC7JϦlUHYCRKk 50h~ћj2H JrocQ[?-c&q |Ni2~nH:Xs32z%.wYSbd$W'w䶒E2Pzm&Kc0~.A 1}4&v&bD[᧣:FN/zqAܿKFʇn|p{ߐ__О>tLʚQ|>o?Vv7״G7> +x6S4$/hZ'獡وy3hn$h> +:s^ x +p?򃀓gy p>Ey!ρ`_Ӌ4p f7z_a9i20n yow2ӀQ;e la 0Ɣz< IFppaC9@ma\7x/CՆq僀Yx?5eZk_< 8x$9@m ]q^3`|m{ǻ@:.< X87FLvO 훠{-[~^rrK>u"\[z-V\`@_FX8 8x!1Ð>GcϿAoCe&%ƫev?~`'e5qØ *f=쀾;Q}<> ?+Z m߁qANuK{[O?9_vOσLSuM[˞fo/(7~3"(Kאv>yp/ذJo1m5 aޏ2e2~ݏ208׎y-Ϊ:4Ep ͧoiz,ی qYp~{^o 1b,PUlq~X0.P『L\=&n-ˀsG獓zG[ oQ_y{R4:<((:3++=6&XKԣ~Owt_/w.]f=kl:=;*H?7Vg4uFdSD1fgkgKqhow޶[ ;=Ƣ=EGq؀_EbrXbɠ֔ ˅CF?;ż4󍙤1n؊-cK<[G;{AQIW/RV' lS`'Ĕߞpnuؚ,7ȁSn) + +PKao8O0)};CWhggKA(oGּNgԀ٦&}աaoBU+j_\qy\9k$a".;ViNO񱊒cБ瘈y-Dvk\O;w%[njbǍ[omᄒ:y4`8c[Y1E+l4y YE/ue ;,ӶteKզ--o<0IRvYz_m l_^V'9i{X>zKkTgs GR)u4bw@pw0ِx<fo¥E'm#NE Mێ_Gc>u +"y*9 PGOHkeo +6e]"Vhepä)@_1].Aޏ1柹>taogQWݣTlݞדNw;kNV='{|'xnq@|-ȳWu|ݲѾvtmslrtw:=[;yv9W`}S9sn\˸.zmaЖͲ=({xf>@>_Ea5#sYa5$C%˭2v ږ}e BۏVay92u8Yda3?ޅ&Sɉg -$Z;;a1V5&Z2OǖX[)ø@W [M>\a (r>By;oTm#pQ.;c$;]Oe$mƸ2ř({KM)O1Vث[vDzÜ1\X0ҒE&D-+ga!9vy vt/V]X5ڳĻ}TO}qwã|s=ac˸ctwfÞHj4v{kjb}1/tywZv|sdo=v0#6og#vwɸz Я FU0ゾo?qsko5 ;OrD-۠:Y5 sߕ͎v~C9:UR=hye[{:x;k1xC'ހ18W`V9Re1m߃'}s˘x[Xqi]&Ff ># bcG]:M|R7hEp]ޘ+0JثPhG>TvzasnyÕ/S"mEXߣqjaTƋ4; +l1%V Øf5#o<8!hZum[Q'߽uP߸AA ž(uw{=Gp:kf~敛!,gt@+G8>>>ʅr QIh&i%_Y}5He^xۜ^5OyEn鞃>*\)KT34~|oGُV׍9K;: *FXefq21xJVeҧOB8g Û 6qvf! N0o/8!i-۸f7M 8!.]{GTBR-UTQyl>ݩV@*mi1_)+19sϽs3axn7jys]|v 6uv|Nt?ȱ^<g^f;29<0&)}ݿrpO +0Sx`SeXpbܾ}{=sӿWD 'Vi!B _ASXH +a"9΋U } >L7ox/N&U܅FvF+1]㪖zhX!X 괞 +ӕ]No#'r;FdW|1H[dcl?HM쁏sb85gft~M_/hú=?GwO]7ޯӰ0A6>3w~S_Ұ-J ǰ6p_Cx[j40$ePU^{WVc|ϫq?`)HMvXN'!ɸ9vvvL5|1No$s>ƍt1r@3t׸ws.A.{|ӅEŽˍ }A]b#傀~7tJ؇ӣG}M{_o+n~R iek0(c'Bz\_9izu见{{75~7uhkI1n`ܼxyXՂK~p/l>%E?Fbqo  K0lFhj,jۃsOV:+wk +E7/XeJ'ԕZ\~%%I.m`]¦l5QPƧn86>d@>E 2ˢNj0^"O7ZvBsv=6âoϳY۱muݏqs?|=Уx>Z_w+xS{'EhFE9%c8Dqq0XdNw*xO|+@?Z>H5ka4Y3d&ͥe7LV^^ce)it\Z~eXaU/1_Y;|kz3kFPQWKI17ԃ *uP`Yo}"~fVWx좇݀4t&%.kJ6:w{ã=FdNWA3a񙡇YDpaհV̀OXw1ӢeaD}~?_UgAƗ۸1VtExwE]*6wXnO{>U3g2UZJ9Z8ʓybe ;lIb_;}ojbIq?=p += ; l ~CZ,7^l\ht +k/nI8.X @-n~w(m^k3qy 1׳Ϫ̩ٽg2O,s:o r+v0Ǜ9sN?prP[.Z0^uעt.2khmºT ׄN1'֥n핸By=$g =ð:ZoXjW2 A8?ftUύʇɾF3M~Y~teփE{XIo_^s;Њ"vYmg<25k8r;dVǙ' =?n(j &Cձ!Pjx~x܎' +Ï܋3#W}9B{"0E]`tbgI<+hTÈ߂¡Oh )wrbvoЃ'lցO/ӟe~y7 +lPXBFv 8YL3eS>0OUWNk{ nѰ^OAh_Fc&cBzh"b}LѨE@mD隉tWm3Th*BG$ҠLo& *IO7)IX褉h#<0Q֓~Lk֮ţQWAI@C~6wDG)%l"lCBeOXSRhXS4 Dri[Y?Dg1;]Lǎ؋e)b_99B"xi +A⠕%I1G'^9D{!7%tM.Or6R]A3]aC ej\LI73 \ +YԓEBlJ.JӔ4:FTl{{]Uu$MF\v÷T)}^D<ʌÄ@-qJ3`Tfn;VL=*VxE)\Rz%_jB@QkQ$dW-7ai%Z-+Ԝ_AݸٯNgcUi5bV F,gMPu; O(c{[i ˊ{_S"ݤFidF(N;XUH`.te\}VۉΦk3f:iU\RZqHEӚSor\R^R8\Zv FK+%Wu}-Z/[ݱx? ERFJ:t'~4<_GDJ^`}FD/_qq}8qoqt+ )Nlj|deMҎ&g\&RG`$2tlK;*Q/fEė*%+d.ݖ )fK|ie~*NU.O 8ǻ/K|\%?O8!ϑ?lo%\&~e;R2IOݧBɞ\%H2>9ߨJT|\oeJ}%@IƟ +/sNĔ?I/G'uKHd_r$y2a_l㑼? Te67-pE/^ ?hg4Q\DWy_*U𘽳p 0=4S%Y_/q8u"AWs|1gmC$CpKbPd|9__> /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/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh b/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.cpp b/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b6088c2b523c51507103f655da29412dc0bf2f30 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.cpp @@ -0,0 +1,199 @@ +#include +#include "graph/types.h" +#include "aclnn_add_custom.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,SOC_VERSION_ASCEND310P,SOC_VERSION_ASCEND910A,SOC_VERSION_ASCEND910B}; +uint32_t socSupportListLen = 4; + +TensorDesc inputDesc0_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc0_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list0_0 = {inputDesc0_0, 2, outputDesc0_0, 1}; +SupportInfo supportInfo0[1] = {list0_0}; +OpSocSupportInfo socSupportInfo0= {supportInfo0, 1}; + +TensorDesc inputDesc1_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc1_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list1_0 = {inputDesc1_0, 2, outputDesc1_0, 1}; +SupportInfo supportInfo1[1] = {list1_0}; +OpSocSupportInfo socSupportInfo1= {supportInfo1, 1}; + +TensorDesc inputDesc2_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc2_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list2_0 = {inputDesc2_0, 2, outputDesc2_0, 1}; +SupportInfo supportInfo2[1] = {list2_0}; +OpSocSupportInfo socSupportInfo2= {supportInfo2, 1}; + +TensorDesc inputDesc3_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc3_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list3_0 = {inputDesc3_0, 2, outputDesc3_0, 1}; +SupportInfo supportInfo3[1] = {list3_0}; +OpSocSupportInfo socSupportInfo3= {supportInfo3, 1}; + +OpSocSupportInfo opSocSupportList[4] = {socSupportInfo0, socSupportInfo1, socSupportInfo2, socSupportInfo3}; +OpSupportList supportList = {opSocSupportList, 4}; + +[[maybe_unused]] uint32_t NNOPBASE_AddCustom = 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 aclnnAddCustomGetWorkspaceSize( + const aclTensor *x, + const aclTensor *y, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + static NnopbaseDfxId tilingId = {0x60000, "aclnnAddCustomTiling", false}; + void *nnopExecutor; + static void *executorSpace = NULL; + const char *opType = "AddCustom"; + char inputDesc[] = {1, 1}; + char outputDesc[] = {1}; + char attrDesc[] = {}; + + NNOPBASE_ASSERT_NOTNULL_RETVAL(x); + NNOPBASE_ASSERT_NOTNULL_RETVAL(y); + 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, y, 1)); + 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 aclnnAddCustom( + 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/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h b/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.h similarity index 100% rename from Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h rename to Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.h diff --git a/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/Is_increase/build_out/autogen/custom_compile_options.ini b/Increase_Hsot_compute/Is_increase/build_out/autogen/custom_compile_options.ini new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Hsot_compute/Is_increase/build_out/autogen/libascend_all_ops.so b/Increase_Hsot_compute/Is_increase/build_out/autogen/libascend_all_ops.so new file mode 100644 index 0000000000000000000000000000000000000000..adfbfb42fa6b16dc6a8ac18ce868d4222c0a1d83 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/autogen/libascend_all_ops.so differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/autogen/op_proto.cc b/Increase_Hsot_compute/Is_increase/build_out/autogen/op_proto.cc new file mode 100644 index 0000000000000000000000000000000000000000..ea46ba47b545dc908a6c1eb639b05377ac58b9bf --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/autogen/op_proto.cc @@ -0,0 +1,5 @@ +#include "op_proto.h" +namespace ge { + +} + diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h b/Increase_Hsot_compute/Is_increase/build_out/autogen/op_proto.h similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h rename to Increase_Hsot_compute/Is_increase/build_out/autogen/op_proto.h diff --git a/Increase_Hsot_compute/Is_increase/build_out/cmake_install.cmake b/Increase_Hsot_compute/Is_increase/build_out/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7914ae1f009f9cf3065dbe0d6faeb6b8b0e96ba2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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("/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Increase_Hsot_compute/Is_increase/build_out/custom_opp_ubuntu_aarch64.run b/Increase_Hsot_compute/Is_increase/build_out/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..5d920ef2703166dd5de65378255d7ddd17a94d6f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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="2693054249" +MD5="00000000000000000000000000000000" +SHA="7f7fd46cdd1cb30c0f6a5d2e415c20d39de6d6df4f898ef801e9eed218b7ef66" +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='' +targetdir="makeself-1303990-20240526095227" +filesizes="129397" +totalsize="129397" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 372 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun May 26 09:52:27 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 372 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 372; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (372 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 +ەRf< pŕZaBk-hlAec Ipg;H;zf֒plKAQuQ E T"$rqՕ:8cq\U*{ݳ=@n{ׯ92LU#$HhK{%@lͬHLֶ֕ZI:5tXJ{L- 0S}sXԔ2Ԑbt3kيv bgDwݞ*9v*oij>hE^0t,X%[QkREUۡWtI5K-bm^3b9#S.鱬9C C%CwzBYXP1zؕWr>E͵/+ 80عa9y,l+T+4ib5QK`.^SيZnr8G孑%Knl%zvybq!8K[ՋۙnWw\mcf +Wig.v dZ +uV+|hɫt=Kƪ[h1 nbj`ˆUMЖ=NyRnk)2-W`WIpUhq%*݋G3T20 }uy[t+K3e-+ۆZs"^z) 4a㌧lR <fۺm[?T2B!$WުSM$"y*48ir4/[4I-W4O/a**[2I j!m+BUeke`NΊ(话=bm˵*0wn= HD"I +dj[S&<h)qZ?8&Dm|FmBƝe)3𢨞f6CpZϐJTwJ;R"`0\эcppPuT{@$ϴc03Cz^wu*F0Gd?H\G+vށFK& +`IV3(9l7/)2M͔j(e)wHOYEu%7cR ʵ9o6$_I٫y?I0TV +L omQC;KG;K㭘6Cb)[Y- pr:n!}r`Lo@}LNc +̂X,X-P 2Fj},s`%TxO1lmLllt 1,qlKb`*oY,#:Ӻw5KULLhb.xUs`j [%3pA YNGC!I]v2 FmV."_uHǃW6-Q$ +`YsnM5$ЖAlN9ÕRZ81vkxNElU*,>C6Koenz>Q.ۼ~-xr8|&zo}(!܀Ҙ*5[AVdjLf4{1oc5,H甃xGzwuӱ53ȡÐl4aVU"Ŋ+WuUfE> +gچHǣ{tLߟ!z*ea$\;~ρSeԧ>袼>R5&G.䋹L#Tei8{lf_"/B߫np~)9Y^je(X̹ǏލIׂ]i-?_魗޻7,Ddl^ A9'@aWnHuנ|૤Iu:=Oc M5ߨT :j / #qiBӉ,Sh* +Q^du[1W[>gz2<'E6߷ U)EDVʮ4ԙR Zq5(nζFn9Ż F~)0RۡhHIYx"6e!?f.T7֨ڝa,_+xQ%Lum榢hpUgɵUExhT\kb#:Aed[a^/&p/._J˕4*tR~hvMG<$1ƁS]]a_[Tb\(EId>8nV2$W":i +nm4N&KZne[rKݭ,OIwvW2w.@~+̪R4Oo#jr|}~zxlt|f.\pD{%='ϐE.wL[OngIOr^|Pyo]?Kg$<^N'dIB8Ǐ<U~hoN-hh B^8I$;IwIŸ~DŸE[.?%ؾ;/%/%%l_`x;hd7wMoNxSL+s'Vdm-zX 521L.pq1uL5xL߼=o2oV"@[8y$z?DN~Y2/C ?]>fM{|G#_$мg3.>q)֏L9m|ְd,Ls$<߁|/!#SK;_&d@灷tx[>0ck+u{~^ yۚv;56l[c瑩A+:"dg۱)(ڀ/w+>?Y~ˆ!!(BڔF%;C Q瓽'dZtnT4B؁\sHf52xlNnwo*9pcLmy}n z}l?Gνm{*0O\~o2%Ɖy̙PgB~`L1X^y͝)Ej[bjW^3yK<{wz:둆XGvQi΅!s>h _zy/ bžwO#C@}_@A&!;8MGnY}?+B.B)L_e#_= Dz^zѳ _8As8;w6=s^ɣߘ~|؈9s8w|wuXC?HPV0=OwDȣ{͠Ȃцso})8Sp +N)X@Aq(@ +s=٧YY'hE3*qO&Φs{.8Rwk@cqSq渀#6C>q&/-Ω8g\lOa}(O9^ +>x#ǏrcOq\>{8`?wU' |X@owjdPtK4I%ӉLC3_mmMۖr2!I'縶$<*l˩N$3^`kvMQ*2_żKu@v1ʪJzNQQrYRMS1M/]z:նqCF= T ˪HrqH߈ͺppuV=N\?9/Eb]w ,6y'Dy=/]!s ywD)⌀𬼜5-:e+ 5O1B"N-?B^-Q⸈&,#'"NE}|ް?f\׷ a}?'li +ޕ5 /K~o'8꺯> fmLˀWf6rD%V, +yz+mڷٷkKxB¤ӒZ6)(I ֙8ÐH&mB8a:,>s=ݽVq^|=sξ} "5=@Pt0= 1i¹l"RH2Ep4Y` zm:rmejImYx0:97Bysr jl֎)N1 OkaX(,:*!vfVʥA&W,4[<0:I+gZoB!-Lhi L!%.$ +E{ł7rB6L)>]1t( %5 "A`0n@em:_y5j}4'b1A~y݅Ba)67UP kǔ:*wấ;°Ȳ,V9 BFŬ^ 񊳕B/zXyoikެZ7W][,:x~i"N?.@.)䟑 rAGʑµ_Sȧ;u{nw%|Wў$wJ\&@>^vs͗|o6?v׭F>TM_kz\N.92h^q`ԗz9?}oxMtT7^>o~|̋Z^ 7 7}}J?4yQT*б2Gw0諌C{-9,>o$qfo=pcY+7v.oxzts <}4p_A \?!NJ^+ҥڕKeSbsx42"E+a UZ5jI&\* ` ' f@ra)$P]х\Zw~CIM vK85fE)e<:uQ;nE(,-__x5("\\gN;ׯ~l~׮>;Z>XO1/Ae4v!zB>:NP7čQ}"]'p/ +?Z$~)0ѺE>:c]7YW?}ݺY7 Os{ꏽ_盝g?[ uel7J7or䳐_[;N/d:v9g?9v7:;[ 9qzι~{3v=nEB[)駗}-fN< ef)~6{p̬]av<ꙷ/s979nݺӹ?AdglXW߁_3/Ϭ߆0{VCzӷ 7g8w _ψ?$}o-k="AIfBxMLKB?zN{PW(9, n?xfu/;ql]?G8(R/z7{.^~Df+7>a.WcxZ l*egSyIDQS<T?S!ִkg{|*O%Y/ =l+~3+3൰r2Ȓp}k ,gh%|Qa}}x V~t?AwԸ{]/ͧdh"])Gc|bplqql<*Or:1^q ~7z "R|_b=!{Eos?՟t[F6+ű)^ߔ>|86-_"~/^%OK:9]cqp\:W$%plo]:=: ) %/VNWVuKs ˿~N|D~Уi( nrFSمmjiڬZ[ښ$ϱS>2bM Rx=usP8k'%=rdd%T&7`*c% +͛Nbz(mNX" rXw>,W>:0 51ǝzrI&]po"SI;J}x'|* OWsy3VsQn!SI]\B[{U\u'T訮Uwm[onRyKZ?,`uGGuk]1cm-UqxTR]QϣWݵ>O"Jά's4p=gokn涶ySk7?;tX|z|Ҳk >3fr"keis8 ca֕0.fiޟxh.oq ?/Tc,+Llʙ+tKQm3ŪP0GGk`'{+ +̅ Н*iмߔB ;vdVìw0ƺPW,pTVg͌aEuLs*Z[ƌleL\ͲIS?3 ٢Y48RF4~/ +-[L¶ك<]ز\q4N90`+0 ^p1q3(Bp5FzvܜB"oQЉ!J+J#.~|LJX7r.KS&fa[Md'(D"bX567mniȡRZJ]Jg† M׺ ,Z otz \0^$!\hJXlںyBPײe+IW~C?{so?}>w՞D!эb֖?sf ]J|r+ >^=w|U\G<{aH$݁`,;/m89~8yNL"--mR0nC(ww[xޣG^$ ~EFmFOW+(b `UE^s;[9Ara>EOq~R5Kf9!sjM*M*IN\gNvr䌹~?֢ sZonkkUE_}Mp~hE+_`bM$Z,Zrٞ( OICʬl8IЎmd7 m% ;g&˘QMh0hq +=p!?F;g Hi?rx2 /uHc*)5sxeY8/W/s7x! B>/Sn#1CڹZtQ7ZbC;{vXv8(Ly4 +)7|]0 ;@0;ٮ@OBhz11;) mU,k;-7߂ H3\Mt©\n  *צ6  wt$a!A%*}h/ur]3jp$= D>l#c?;֡$c;lٴüNKEx&"1ve/T(^CK 8$|D8ٽ<p[D#M) EP=mkD*tr"i$bOe |8ayVunD}+咜JcyBGs-[@h3hmvF8vQFҮֹS KId>(2}T:Px]t$wEIν4 q& L' |Ӏe l۶l hs/6"ƢG&,41LgaL'yB4ϗ^O477;{D9]dHd20L޻$'2;9y8Òr8nHg}Ι;TU&z +‚/cb%Ixwx{%EjeAL`ͧY#U& +.{mJ' /b&  o%\JdR9=8ΛpZ.'ODK[V9;\HXZf4!Uٿ=eQIXDtoS'|TiP%vk\9K<-RXPv6@vCۄqTpn2]#鶢ˀuj!TR!l1C>g;iô ;s{DI=GToz"v,a1^d3ÃwV] ec@ +rAXB>ssI媸BK_ŸιNΡ* +?yo{Z >]4_ozf[~=ݐRoٜCwHZqy:]'嚭fX5bl-d*f軸@sH"/a%wюUU:J}ye.x  =} 7.y.8*XzK.a+`1>K7"y}:$ڰUl4&s\k6nKRX&ۚɦ"lĊ#ͤ\Œ&Zۢ>)U`ލsmi~(0*^&Rvkl;@G 2ԘOf9|k%?=uٍ9?x&qiBvM"HIE`='Hp 30Js۳ۄy2- [2KC7zwWu}8ift$p2N[V$6+Dh$eZl.#f.%L,ӆmB#:4S;B#v6f(1Y1MlrH#wLFnpR_α?U{$ʺ#ü8 Ɩ 1C7Q-}P*b5X|,[]{qמ?lt7Hƨ[vrn3K͇3%JcW~;FZmA| +w@gzߍQ&{֒^C!ĝ䳬H=wnm1~wYױ]gφ􈇪ɬnz֝>ft2f[q0t݌U{6ݶj>йsq0k0t'c {8f`(㘇.hJ|؏Ng5s9׿ZvjngGB}U^gpHތcUKAJ71-h- G(h zFP!(;T >|if` +>VwDT48u?c4v:1k +NOKMvy=kнWx^ kYllz 5faszf`l3d+*(܁'_ս~jX9j}\Mq!OWQ:,i7j6k :v'Gu݁qn,qMǚ yY4i9vfTuAbGp&38eqf+O~S%dW=Yv2_*c8 ^ma6sx-ȯy juB_|:,3pL_>yLwvGJgδR-o+`v)gfx 3pֳ_Ǯ=d?@-- + !P`#(mR +< kwY^zAee =T"P_Ka=Ae؇y5,ٯ =mk6b޻͟ *˺y_HGƻNAy{y~!LO6B.t|IgRBk~[>z~ʍ*hxem6D=ݽR +, +ӵ%Xމ$QwHWثCL|qKhH?|c}V+c5{.u;)]"]Y'2V3Ͳ He$XBl眼y(c!v)@N}A{$)]2D۶=Z(wF)G;E-7DmN2-t+;Q;[y{'홲)y:V3D)7vCIw|wh{Z߇4w<4N2KCU6D1jҐk0b@E癉yfjMjV&3hׅN{tFAYΫ KA+K>G8WG~ɞ4z0*9A~W ywy/W2-.7o i 4CgzSf5oڶx&b-76&q2prXP~~%v١N4Z;M~,gq]W´}$D_tntk]!hR9 zvGP[gU%PFkr}d2G>2ΐ:+'ձZQ)j~]%?!d^k{}y6CPG3!~ش?uk}ݚs0lԏ?QTre3pLE93-jzjL򮯈zF5#`0|44+f[dL 4俁|H!7hM#%_ { R=ȧOo!DP> 7@J>?.y:EOFeOע|)ʧ"j\l!|EH'zxʯBڈFN?F +1ODGZ-~$yI䧣BL%;ey{cJyu~DQOWD\5Jq#rbq#俟 lh]D)$yTɕk~}Mܽe:/P7PiKu$΅+)b#:G0b=/K +ԁ!2٣vPV=q%I,Ǖ̅q!/Gȟ.>_a/_`qXԻ+ V6HDbxJ2H*kD,ƭx2ZmL6fm93&63 +KDH3GxScx1CS RSTgc\3fY#?h2X?E?~AHz)pv>r3cΜ3x|' Ts[nDpZ;Q?N0bL1]}0sU0Ofr+<UpZS +7i!gBsSrkhOsbS ~u+S5vPRzI?Q=0Ex- LQ}Sk/agh[ +[o aH SQhIn~z'=}SDSS9s-3W4?Ϥ3؟|%؟CELww7>Ԯguk6*XnY;؆eKڗɓ#h$ gp,5l"k&Vkk.mL-NǬ\Ίexkj$RI+KvUi~{:>5N_kugɵVڭ+{iw-mTy,+$7BH =JKrl96Nl94 RزI M(KB>\GvYf73x_QZq|O0u%#;KVyZpݒ +^Zp+S9h'nQ^R|e*+饇>,Q;f7wXqӺS.js]6(ZZO)-.R[(tM/MVP\EiNJgoRO.dg_!]tπ +7s50xO5!]HyočPW؀һ\pV]a7 +۩nyS}Eۍkn/ ^6n{- mB&lbT6rW1 #'pg<'srq؛&_+8>ISߧsP%I b<#wiqwVfihѣfZx;\9yN8-o+2j iy?U2̰O@s?˸W4a\?ov +'Q_Vr;ÓO䜛?q8_m+D^A'-3*Pw8ݥ82gYa}+D缋fTLog@Μg<'sr lǔHG'K8mqDŽ=Hۿ?TU +>;VP0po*iM S̰Qqsi3+_S[?L#Ԋ'uf:s虇û}??P3A%<06:s;'{vm,Í=E켞'Q>h~R0g(iMe+o+Wwt_>6k׾O{*m6QIj&-YZqʹleIe4?J-IegnQ EJג_+KJe51}%޽c3 ฝCJQ{ฟ Cp< Oٽsz=GHr;ޚE/[=U;7]:ezofQmo}ooG sn^i)B7?}wkoƼ쟯?\r쟼Tz=g_\{O.ؿwm5~Ytpuy䜛sp?={<3[矗1* 0R!peL9Wͦ\hPs%82#w#]"U9~{9\sx>f¹\ (<`1!ISsHa>L|jk\V*\I/*|ZR.~$}$]|~Dn_+^I{7I- WI'=gxcLX?L8й (ކP]d,VPZ.2^+;uoaa=ؾz)4B0u~ g5ӓ`|Oݟ2 RP _LG^nt7u~p_e=H=ub|WB񣿣z܆ /8;3(^~_1'LrF>QZV K꾆wqXq1o'm&c{ܶ1:VaE,&x!dbXK);X6J?,B_3^n.I_F^I9EyI!^ޢn>?{XVIa_♋ЯWJcLQ&>ի!Z CtzRa uzu ;^n|vG*o%[^Xg/V<3)s,],^O㝒[7I#_S7p弑əӮj0-bzH(g$luٗU0JwW \:pxժVϚz-DU4RSï unU d6BRΫZjzvN_c^\v{<-~=WH_-f^Ow2Hmt7LS{kb(R0sR(+̠B(3]. o;j{{vը6PlX}Xo#Ր'Eb4jh5v5uRdHjq#> y:Q]}ݵ?\X=EFE2r5M`K2J`%U0v-}z-M]U1f{U4%pJ|JCj PgX'd=9hFv^Ʊ ս>̧4H&R7uyQ-kjơ@ⅶK&C"M]vT@^ɦ7WW{N)L! g$%L '6|"TK -V^AoIxJǡ`H=[T8ԦHv(x1G.,6aO 6F{tew DI]. 'o +>>MNm,Tv&L<5ft7u<07 %-$upDUuZȷ! fߥuwuu*UP+ߎ*jkD1/;}|HmcmROsYK#dɌ(C㪮7bR(6ow9};KHkLčJwCGZÇ2ѢMNԐ@[aך̵ RE'<>|dE=XT%,5cJaQDq*أHS}TV7{3 YbLp' *AR2'E'aiDg?>j =ɉ26^ Nv!uZX13-u?g1Dʀ5'8MAʜtG YPRJA@Egbt~,yq:lT Z~IG(p/sQeD;Y'Ct`b]##YP6F)v{hf]ut+MT#lB +nfCTlcBhtB"DF| <nʞ2x 6ou[4gMt`lʣOk> wFƙ +%D{7I+VMmxr-ԫktDVgQdկN،Q; 9l'Zq` :#A۝d +JqާA,hSO4SX{pŌ \XOBh—.DQ^Nϧe'F, 0ˉ}s#5kVשr{NuRӑ7r{T\I R?+ +؏^Ob EpWxa*obca"uaʔT(<[ Ez*APxO??Jx~{3-ZJߟ",(F˒Mʙ _Sv=Cܓ +*GG~?"-r3sIX~s{Bm(5e5s x{'@ˍ3f_`ˀaFކ1<| 7} 6?`$ xCkĠd/dȀa6R#|;۷qĀo!ŏ~+_`J ?׀.O2$ O38w}YyJrvG{N|_MJ?/FÈ41 G#No +8k| +@#& imڣYpnۄ4( mp5-MUw*% "{BM-^6HYWH言="V߱>8[tOpop.rHVLB.|*X_p'i78 SKs{<#.HGS4~ l/pim"2O-pt6/5@]P\l3(M< h)*_u5Qzv7!(@6$!* ȏQP@Q^j[]pWJ ^a(V[ rM5B} 93>O}g̜&˒ÂZW~K +U'A*oUO +~?&7 ~?<y.Â!wM3N ~okSXG P]\C/kF ^~/}E +~o8xW ~<y=$xە炿A1(?Qk_ ^V;mW#)xCIW +CO|' 3O)*T4tkǺ +|H o:!E ~u?,nm#x,'x!;c+ +~_/_'xx +wo|w +>*CI3+xS X1"}u,r}S P?|H7"(x$(֟_d`g(wdgp +K{c-1  !' n^)"/p /  |>_`S?.R`Cl8xE{E2b#_/Xx <6t7Ocobg_;_y// _____??fecg_d_f7U8~~a}#>na߱_3/_ݸpg/8x.#-ux <fDz_/x | <cx! x 8 oO_g____?*EMi'2s:u/JuſϦsT /q2M5:M#<5j٥q3P]QU~bem_Tkm]Y&" 'Fvumެo +23M9V~?Q6c̑>ǜ,b\P?9!mr,ec|V F!I+1L*zSх s*{RUeZP~\ԫ>&fє,>R, +핚:-^-{ӯ0R'v8SxN8Mͮiy|9QGgN7.Zwܗm՗!G۹fU|3mȯA~+?3>S׋P6g#?$vY;{>.׭d6MBι@}-k'xg$Z=g9HhiΡ[ydvQ59{>T9=]/z}wN^ZoWC=Xѭw?sfzzMɾ9K\zJCtN^ZoW:S֋xr/Wӂպ{ %Yޭł5{A~nG]yU?'/wG.'~U?!^u?Zfϭ^~U?~O .~n^|aկK^PMyb4Ѫ[oW,1VzzBjϭ^u!jzBʷ{̫Oxߪ_o޽^td@_>V`}N^Z6dJybC֫qmCh +պ^=*zzuWhktg(}_7#V EDXX8qRg nAql"nGb b#⣈ .Fq9~E{@\ QD8o60~/mQ'͔DVW c[-XFn6!\\u: X tzC,54ۨq-GuՆ5v5X4eKkt8k*4>ȎuAW1-NT#S-밽xf0;P@.E^vWiu51hʷb8U%ujSr83+\K-8}p?"kp\js&ת_[xG k*Vase9x;ҘKGaփ{ϜAt]}ϊ"Tdgf],E7K `[^SQI17N뺡FW%u +^y0T k/)x6Ax70 q#0͚ 5nn( ?r|߬?}Ipȩ +y;.jXϷ~7ȿl _BFf"m$VO'd7)4wHdjZ^u+h̯ց>Մjm@L~]r6&3,Ѵxc"%v8:wƟ»!XI| +iZz9Α:QS8GT׆S\;f|Lv\o(Fc\fNf9λ0sѕZ*7t -d]+i|׺fVZXq# K+P+g9Fysg.ga": "< ]f1r?xߴ4ޯQPΉC} U܋ U|Z7߶dET>rd\@/-M1jgK/rO.0T&cDх1F}PQ+}P1zjCd,VC} '[ܳ;z-Y)Ce"KMܗB}{Ч5d<5׌F=fCnEqBgĚEs9(pV:__?2ߺ~':2IO?]xoɧf,+!͝0O?5GA9y_8Z[& ?~mE3jZ7D[g~JS <X=q5USyxګO??h/Դ7=(o +X9鴏ƟI%Nuu;nyZw]#t-urj蚶<ފ+B1'ݏlݩ_Bӽv@uk@h{ֺ=ao:B gy8%Jq,LXNs7Uk4 wLs)xH\#YSW'.#8!mvDž +\Uum2PkNsCd[0's:5fޟ6E8oGߪϴ>?VɤٸqxOefZk ؽ6ONH>kZɕXr"ǒ{4ڴ5Z81Kϫ +gMyu3;ϞgVЃ{5ܠEK9RO?oUcsÞWk̰X3occ?`hƢܞWyJ>uy3??y_ e~~uA:~~*8jϞgޖ[(lg=e~u8~_21;Ǐyf._q;~ԉ3/~=l :=4z9~5jyyf3o_&}zg^Y_&c]eҟ1rUs/QUW0g&$" L*E(7+Doj)b.2rB[&A[gzyx$m*>AV ~{3s$</OsY{^{Gkaw.UMK5~ݺ +K56~VtU^_o)F|+tTcg[z|"/'3x-iۦӌ~h6 Cۇ8FDA0|`qŦɱ.2ZY,^d ( "iE^{%b#sGQV6ar|0ր]Zy`]1S+PB P/W{DAgNFS1np˸FעVƺ鮻IH^i']o1aho1mv YV(bY%U4I:/ʏ y,7n:؏.(rNzI12*=;z_JX\.3=rwk|gHXDyQmc?;eOQ]X{fѓ";$^F=x-FTq\va +b}~Q zAar#[GI&>E~ܣUsAD>i}:v\Mnȣpƥ6B#E8 `>Kom+b3v >FhGIc@u6!D;>)gԆ!/Av O6ڀ?Y}= }o\_ qCE + Ѹ%Q*J1`#ɷ[ioWp',߳ٳD6t̓;}ɅMX,X`L8`u;_9`t8l`D%|7 +c%T8<l}`FȮ}c?܏789\. c1G:qgYvxm#lQk,pGx^5}Yg8ט=o#qZztpd;p6q*v9o878jkvTi8᳢XWzYØ68Lcɏ?KNJo +6 v^&ǐ?X)~/ﱾ7񻖿b7l]]]wd_l~O4:{Pd~J/ṑqI{ ~ߩI'#}߽ 3ӿ { ~/}؍8}/DiBqi9|;u2}\;w}^-9|6@x@y6As~6"uA%g^'"js#͠qTnH9E0NI)c|s{?{;{D18"!` AZyG83 e2V>vkyX׹Iݢӕ:NuW+%_q5½I;}oٰɱрq'9YR~;鵝cx '=߹Fs/]pSQl#;b=Hn|Z]S^7~vN  ++y(}ȹ^ xNQ_{b/*}Eņ-](6|EQk"w+w;w_eJ` +46o/I s)L b<2^Uzŵ=;Vp;F51߮<`Ҭ Y܈Xͫ}ߒm}Pmu+/_am7IؠQ|JG[+sQ,$}ֈ0&>R]x>-oZфoG~x˸W% p[>%.c!%ux23# .#cȻOxo*+o6zޏu;X²ng3yd<8B𙬇3#h +mn|%ԉZ׍ts붻xfG rX/{X/:yziBc|e"cH/eD×]<}h V{Ai70ɱBwZ{3"7.+|1 Y1˜GUu[!|k(m.ugAs?r(D:7i/aYUl~;e0^ս/O:N7Y_q"N*q<2_.6u/<|S,ma#9wI8Kvp2m'S$^#u2|T$\M;|;4_ >Hڵ[}]|ث|>L>\mbi+|?Xڬƙ6>߂gبپ4O E;,a;EL=;E{.LBxLoC aw [ KZ oShb£$|55h _ q~1c_?8?.%!: Թ,a\GWmAd᭄{j3o_p~;{Dr3`)ؔ޺_e 'k~iOŀ?{ }C¯| w \KxWI q|Vge:bMyoYKZ + TeZ  rU>O½. OHËoSpx tK^XH!/k K/E~ſ𐂿 x?- +{[ަ/p_?COxPxL[ iW+3C])3]^@xH ^ /"\hx@+jwkb}$|%ZUſ䧷?6ƒ +?X ~ MnpY>_[K|.OYK}%|:k- *wſOo|?m +>cJ~=߷'|*'.zQ_x¸|HGW^o)((Y"ܯߋ'\ǿw\/T;[- oSliO~ſW^O$<'X"ܫܓb8£ +HT +# , oS6x𠊋x?:n?- x.a_g)>cgj'^ƻ *OC +~ G9>!S_ _ixx/G*p?Ss9^@x_ /"xw~?35ylOxP3p/gj~ſRtK, 3~} 7, S91Xpgj~E_D*~;Y 8C-)7ϰCPNϊxx?:\7Uqg ࿵'<Հp3gx0E c`OkxCZqL>]Kّf3W}ɵ=O49{s".= +#')oΛIs4s +a-a2_V$,3;r;}cߪN?\%Pz~r-dy>?Cy +NBς''s-=V~ /UgE+Z_şL˼x^^i/ b8K<;w42Ю@4U^/{/nυY} '2shܣq'rڸ<#,6勍ޛv{3#w4-tt zzbd=ܲ>ڝ >x=9rK^u,kK43Q&kqbkpGKVK=vtBX8YՎg%`lۣy CꝻ}1_h.o\.|9S>\6@YNo>0*@AR5Xǽl`PZEn\n!eW|]<=;5X7fCj/vдW4@5k}%.}ϏuHMﺾcl;ΎtnQK]oK'Y;Q߃#[T߄ _8v$|آl!awr5Yؐ'%"2bkQZ]F1ː7Xm%N,|VaaY9]43?|{DHKMӐnHMu9\](bk<~#(ҏL̎Oݦټʊ0A)b㻌Hp(؏|7b>7yMG7>(rr c>0rZi$<7wp\v];wͦ+l- P7<2"7H 8ew_0~/lym@!!!v!|w x?\^^,f&.1&qzsҴxQ.q@O1}m9iԿxb pL6as}Ƚ"2K ~!π񎧉"g+sj!\vhhH ̄sW[; WH~c' 7^Ǣto\N~+Gno~lg-_Ԟw/jkj{0jS3edd,{QA=p;꺳yxJkD=ŨSGS`Sˊ?W۽l 9Bso(¯t'}Uk&t2u%EX2EӍ+>T1؉1ALـxd hk<[ Pq׏@WQ1+-]qaC-[q\ָvg،}&N:e`/28~u&;eد 8IwWzꤗ=^_^rn#E#DV~{s"DB?Dn6w?wc \uu"Ue~HCs4VA[/4쳩͏}40cH:+v5s0?#rG;9:_1s c#;`Oz/!;ߌ?oJax._@oن1ľ>? &ܙ/+_O \KE t~Ÿ)Z~ ףKz"ړ{/]6>\?M8 B76" /D93ꯁ>W  bh_|^(WYpl.EYܧ,nw_"0dbY\-,N mKuyQ^呖Q]p/S].p,eQeyQ֐ӗ,kT˻`PkFY+QQƗK3‡666;uYgD s%6dY[޹O,3}b8<_?oIqeތGy1 `YZ{:p;2 +cL}}Zi'!7FF$/mrK}R|B9P4̱!àdGncߢ0= ~ay|WC ≮ǒ!sTD&X㓓T,RF6i(/^OWŀG;YY;h]?r[ڼEIikSĨq/P'o/cxsDu{ٷ_ V>W >QTs|ى'9Kˇg @=Y)OهՋ1]$[v6C+{vJFd> x>ec},$|) WW,rvS| c ++) +3csC6eе%3 O [ཌྷ.cA5yr9 mχt"'Ey[4=$R 19a5E8f`➢ly}c!gy?/sg \jqitFeS->-+SrycqOCsSQoM H.-{R X`k@̻M9A!<71Ͻ}cG?f`_O@~mJq7!5_<}e)x{wQx.SXw~?z\?ťjHHR ̗'-0](x| j<~Q{Mo&ghp|NJ9+ +}-З#ZyŰo}"\$z̮-\`yORw$%7y}-f&,N}UzIuٳEs2 >Cx.LN!c4KXG#nu+8.Q4^4>pf#* 4X-]:1v DsrӇҦd ,eO{bBܹ cC1??KwBSj6sNi?Kͼ'wih?mSmibT4XcV=816'G#mw~ ٯ"%XQ(Z/޲ўOwnW=b:lC9a&Dg 6?|>BhWȱ>-f]6szmbV3V"hr>%SZf_Psr>6~&|GQU?r%B3K<;1\VdÒtpΣ+VA,Sѭ'DnuǨEU ejxZǧ(]Fg6+1.?"y8TP: G{>דA'ĸeeWss#D[#v vz,R ! n9H&mv˫Uc?826%J=|c67,x-̉6`Gl<=v(ș2RߞyMxáhmK_mC^^ۜ1>I[Z_}⧨{O;yY?Ps? ^퍏>z6suR;d.=biJ|hfo}ñPu'z%%,_JV7_7EBp.}u!wn *c6s(Ϊ<ǖ||b[/>3?2bu2yL W,߃Cy5ȸ6GLi ]qEΥ"=z5-c.uw K?`ɔ6!sE)Oy85ϸLѾ3}Ɋ5RjߠgPB_a][qlK6Cgosr,~$yU˔>P< +{>ly?!FaB~T;wL{e<>a/{d"=y4G#.,킊}-%x/3u=6;5M\F.Ko~:971b{B U]ߤO Me1G{`G*B=P) TPv{3 FS(r=,3r}K R/ .W(;}mCyzԩM]N@p3}/od oB?彽{pt(>DW8b}PjpjE +{ɛ: RI[\ +Nٰhv}GRw@\#V =@}=L`3K#A:y#_i|We,s#vblRWC<ֻA^o/B<|xހTDqn' z}y{g+RzJ]yhBw:Nuuφ֩nysIg}֝>^'}^|StN^pR7[߯ƽ>s-ڗi 9Na^]/ 11~/_r'|1vǻy)tqHߖ1}ܻqpۧeM>WOAg&Nd6a;|k=_:?o7P6'긃|*ݭ}:7~_=S^~WVCzq੨0z׋w-fŻe>d+/N,|M ! B]^؁Z=숿0ͨ-N3n#B}ǒ̌a bkK7etun#8:Ov6d6wh{uiw^] m-C.%%*C,lhiyO}y#O޷!txg2~7 2x˛f_i@ly˱W"+,mat'5"Ob?A jkBD/1fjp1WQ~x +hkϻBH{`t_ޢA#0]=ErP'.u6mH!}849["^kAs B[e_:ހXt_{o6F[Wv`0>Hxڗ,_zK4'1&HĬ/r-rnEji݊þ(~p]We`=ig=)h?ۀߛٮl]lBOѻjz6dɽ>)7Σ*.u)3,'U;8Oqn4c4>H~H<R]FCN.gEӼM{Wz>d틶Fg4^篙.X?uq=iHvF[[q-{o8P 2G +K0nxrz」l/}7Q i?<\T.z:9cWӗ<l>;~l@Ӳ6s[gwzԪV6m0C9mv#!Dzߨ30̿-0.pE& +kְ;[֡hSw|G|35>V XP_bkITHy-1Em/e T:vy])‹?8?v?~2Hle3~H; OsKP)mK38ҰHr.q/ XYMݴ.w]JDS7LSs*8ad +tmᾖwC-nnBG?~ w:m\aّwm>lC‡Ey׻[A-ui|ծw!~Z~se&S; u'L?&}F@wPrg-uW$?w/㜍eec߶|{>?uӳcqK}fgQwe<ڶqM]^E߂B^ / +wlCr[P;c*MUma SQ3Z zk=2>L=#׬g*{rq>1z`S%6r3'2>On8]<`L~:Pw '32hM!'>ۋ-{@g:.jt#iù~tsv޾Š0mA"5>r[{\vf÷Ὄ2(m؇o[64[}3w3ǫxF7S~ i/VDX +r"O w|9 +rkBz݅r`9㊢LT~W: AJtc\qwѠyY2Ssy+g -%mr6dn6T4j X~C7 BRkz: ayّ+z/⾢sSEOmgvV\ꉴS=?F7Н\\CqROAC{K:VܝDgm5i}4l%_YIމfeW!?cv[cވ7MV{:X|ϛ7 w{]@X&cOR?e.ϧmc˃A<$9o0>iSWATp–fzU6Y' ua6xmxd9-xo2␣3|2@מc\sBkrsa|=m/̻(5ҽAEQ 8ni|\3Ό.FxS‡˜k/|6@8WM7cy?0v#QH=s3>j'N!O+V:}h='3zw@^{"gYgg%]V{':\KQȓavʃkK<:SJ&OO!|;({e 5{ˏFӢQ&78ϳ)]2PSOn6nMVsrb< yEE=*q-,A_-Ҡ[۷Xd +QK}go"mO\23-|mtX)m)wMs^;7[Ә69&䇼޴<%+9{SuŲ/aYҶtAéoMz +ths<=MYhs8?XEKRrO)}`ӷSUs h8ϹwFzuIY$^>;!vx釐{#p7=ט/ݺ'#y نl9>:X0*ƐQq=j^nHہvmWz.56sMܫ]i;c}Ûzw}eoElmAB +/]3>A}d8>v +iڴ> mǓ׵9L6ATb}9g|`Ͱ;Eܭ87+r䞫={xkrgc+Rՙz@XOC ) ~_zn7n{h<ګk=Yr]?CL[3w{wZwOYpO:@} wSGoS&h}Q{]2~7׏Tɶk߭a,ɾ~uWGˀ_Yxqu m/>peޓfse;74rlq%8*Wv?F٭Yq*ye=xn ucGs ]LMr?`| z9}X"s-r?wވEWO,r=~Oǘ;ݏwEH71lu" 3kz뒰iG!hGfe>s^Йrd@=v>}tS>,O덀YWXg(s AW]ٵDss 'S 9P(:KK]` 8{.LolWsg^ͦBdq2sّ qmscVl"}-rD+lo8F>BELsE꜈ݲ{#۟xO@AYOS)zw ;E]T3OZK@k#YO?3.?n_ˣG$Zk`d&}(,4qf#/'Q}6uuրu'˟3n0c UOv+cYУv^/Qsu% S(+ˆgUl &arOJg12۷>r>,kyI"k*׊Xi,]\70GqNH* +WV4^TK S}n:w U g#J>3 ?-?& s;~wg!Ok юOYPn9 1*yG cAG{.}fW)yF^ݩhU< c_԰K%;]}˝]xg׺ i_Ek qkj}sNB{˰K!_<9__.ңQ?x_!/Pw3gSbN}@KyqFTیE럊?9$iWᳮ|3<ܡߌ*~Bq??wuX1k8iGSNFGj\ 0s{@ӾN)NN2cRPk}-߮)jER$D,./>8)x^cEx%Mt2BwR0ox”--3r%jk*)/ѲP*ꃾ.P̑}koJot5E  ^+/rQfqim'눶? #x*믚6^vCZ2Xu/AzphA_Z&^?+a?tVpjE\Xo%,hJ.A# ?ۇ~og_0Q.ԏ}ߗ;8!.~R8qC{%V[@:q(h˕-E$SkZvB}-{2^S{1}%`;>̾~a-yJ{^tmci혼*f6j'yutvE?vo6a?9m\y|}zLZOFګ =-:F>?Ti_=<NSq`k!E犻^+ oCޒqaCӼjbg!ZțyI~YG{'dvVgYn.d쓐VnGzMie-˺YGV*}Aտ:O!k^kl}ȕlPvsTk>ʻoa*yiԅ} +^n6N_ݔKyǛQrޜUbW+|.c(o[SNDDxo#>54aBy~N?:O,w]/Caw >4*'s=귭ɔ 󰏡-w,K'#jT#u+mrOݿ2X뒿u>t޿dJX!5eZ_9?})ڏNM;󣏰,Gw@U=__>u6ڒ.˳:vLoGNS'*_*/:>7u^p,شOG7z ւrn."//y183+~ߵ޿%*WmOAozQ[./βromv8u=^ͻ #MO|}z>S,>nk?O=yw#ך 9o|νe;T>K͡E=+w:\X rn٭WކW1J0 +᝝~\1'ͦ7Nγ*.6pw>sʳg| +yW:b?^++v^єuDžvEj@\_ώϫY|Es ]Wudx+"vݲE}#tmg.is>(6;5'򎔰[>6^ +M^G*hd911Eqy]lsǣ +yD_,} zg[yY%׶k?3>4?oi,K{mT lI쫥=<c3x|,m-qm?m*c%sy/v`1N:>}ESC7s ]Qy#o7Y^GYFŨfa- )tϿ +}%s"-Vm;l650N~s1 :qmsg*%t"ڳNѮt¯G/+8t!8K# HB/F'r,50ud|/}}CvscH#_g8%OiSCw)Ny3NPyEd;~9O.WB?u7wO>WάO>i6u΍eܟ=[_3\Vȥ?mm3$w;DžqRDžt\QwN&!yr>a}(j, xHt3v5xTN&ǡ7wq{|{l#ccTaXSrXNdnL}8~r#wzq,u\ A})bL,J - +Ĺ.cHg嚗Oh՜Ȩu8&\τR([Eh ~8Sx|\ոL݃GoQ^GE?r#X]t^vc7QA{xnH؍X< +x%7k"8ƹ[{/w4 +g{*V%Vmnr?^Bd8s&!﯐忖s^c â52$<ݪ(Igǹ22kfi^峬A>'l'W(st}V0G_S3N]a{Qʹ^>i--g[%}].k=Ⱦýo[#)ZOYl~ߟ".>I1,: y=vYPm|L M1r=e"Vv'\vOG[ֳOrqs"!؀-BΤXV7%M-ԁc$?HQ mP"vw?҈6 ~M]fX3k+qzOZ}{ w׮:& y7p~0ަRީSL3ճkt'b#d̉ ~1c[߫;Vٿo.gKaSIN䅐ۘcK8BK?o}M5.h(G4Wc_vbvwӺjlݶep=&=t~#̻,4wI[pX~;OfuHW%''Cc1; 2w/F;w_>EZߎBE߂߅%{Tp{v +xgSp~ E2J%2P2.×&Va;W旔 I5} z .u1wkyviytfŒun,ngӓX?AJ EHy~⚳J;5љNgc/yy?j.L~{1]u떦 Wo?ne?1B^Bft475x}khKEڋYK9KP> cI6J%i!s;^Ęmt@ =cSQv,Ez;;+x4YNi/6?w;zǾV[1~wvr>\׬(F;o)0nkC[X>V@6W{閪oz֡dQ?T 8AKcU 4xVhx=qic*'٧q9rq72kTr5AɊ<4=@>W(EP^K [ +j S}׾i2M5;a?:,ϙ +ɺ6=C[|ij%뇞WcQG`_͈2@ s(3V$v]_mDzW~G1oM&u{PBwO7>m 3VҖƼ{XﭴL| 8<O̸3i /G yԧyØԒ3c{ ӫ}tm/;sR]`?ʱQfdRNz%sݛMw6Lq>w۔͊^7{;xDYg3}f[jM g vACP^1{~9Oa;yȫs+1[mAgź=:3oM_igZcnG+~DZxF)jG|)[ ֝clyB̖CA=*D8{1b|/ .m! >н#_|qnuf{9޾٥Zcn<*i]5~ak5_&.o#c|5fpч)6lL n&!6{A~[;(;}1tz$f&=9bTEЭE!m%bVXTz}YbVu[\ +Ekۆ8fȠ({ w éyi/+p΍fE~њq]Z~R՟uo]-W2bR/:V\޽XɶϒA N'˺wCއ[O-⸼5~gS߳^{Z잵 R}rsTˁwyt!5f9L>C9%S$;H\iL |->Q"OL5t}}~+=vw8Hy~|G7oq&q q8d_9oQ=y*qXo'{@^'m; f&+kz3M ๩yAԿ6!owx*R9 ӻқ@NBoX_aRturة)E}a[r,mxijfoG=a[;ơO @AolpVo]-r ,w_+\s͈QrmE_9\@EQ)O<b-$Dyˠٴy\̤Z4Q$dutN_գ\EC^D˝NlwϒG +Gt#x)-v+A-bc R,%uN*`0fӚ{!= +Yyޮ VEC~k6wCK'a~k)CA}9|Lvu^M s-XɿU Z:.@,wi?cfxN6KZՔc&/޾/ؕ:o6}>Iȉw3@7JGd1lw}%h^u[>;deD~G-,uZr/K6}w 1檟]Xɐ!5Ξ069XAKJ-BxWSnNx a#x>L}XK3a|1؅q@F'd8Ͳ٧~5O}Oe vǥ=4,;}Lap3Σ:i8o=.0ⲝԙ2EwYqgwo>(QhІ;{Ʊ[BOJdzeϵoJ?6O$)IW{9-=}MM|k +1<ru~֔]{ܢܷ/~oʺM.5vj7Ւd8v(eOqo6n'XQ =z&pc_d{2qr +qk͑]khR)8ē=yn_ZcRς~ E&uAO_=&.S!b! f܇! +EWh7( +PߑTy<~(=\zk\sTk1Ҕҥ,b\ojюq ҽXzSt~rfܞ/_GcɝyV?ʜm9a ;XRaso]ܿWع B< Z; +n[Ew.3qp{EK-WmՒ;h1i/L>}gng`N~U{&\O#ys#>˾P;Mnu?eq}dLqɅ|gB/L&؄c쏟SR!mR*rJ˵2drߣ< Y&dOzmO?Yݏl3g%/DoH-&ooUvAoUv੔(& +ۆwuee4s~)mZD۵ScC=^6O0xǦ>lbvwGZ޲A-kbL,{>be;֑? -u;h6[1""MRFÔ }qĎN=yӷOkG7MeK̛/r'u$5g=-"M؝>u5n!]9<ڟd15uzK,.ewӿӶ6s1Z0!5M{U'L/U:կE,#:ᖶZSιsݖyR:.zV?G9#97L@,<ߣ!$8w@oc@qorDl yVap6~8Ѣ/粑zk_9սrus]j%}_^ٽܧZEˋkx~J^ّjܠƝOsׂ'iE׸[]N9-X(0& HXmZ8/ Y+WGQw}~ϺX0">t:Aw?QsCOw}} -~Xa vQ +Z]Hƚ[OS"bOWбohLJR=>T9y0ϩ-}=A VƱ<8!Yq^շkn= x'E4݋)pc1Ȃ1z9fA2k#ܧ۬tFp, +ymqsb[Qr~c>.L)@4oҧ +u0VCP.K_B#1&>,`8KV*?WAGv5Gx`+9˼>uGB~W^m} +{Oxp'LͫcN ݁?lJ=hg,AL=wo6Lj s.\ɺH{ "s3:G%?%(Y{ygzIrIN+{a<_SVu~9ҚK:3~Yw/1q#ncyPswsw*.Y0)bkNt9G8ivVÓ="*s+;7)ޭl"p2ULKs^`p]Xt'\]Z`Jg=IeG= +ܳ6O?h"\ndTޅψ?E3EߎN[eMloiڞߖڇx,W3"Chl풥^ڻ㞷Y/xF+gPsUU>߲yO,|mxýg8荛+nnxnn⺎f-Z& te捐sv/qq KljҊvm׆]#6} ٶNJ4ծ<.GGЧ'';-< =)s"VOMv^~*f XqU܋YdcD{>̮Xs"}52OlVul_k-| b3xTƍ|1CЉ_PQiH'nEz ;ގt6mz(pɻ~9_6)½*wއnaSu +xvxǫ70&y7|Оk}"[GzUol^]a.RQxs5Nk4iO3"ԣJM>b.w~ -NU"tY)xA;t.-tyws?JcJI@U.ݧM!Kg"ܮv?)"vD}ؿлͻ{rΈB_MA4W6Գ{t 1+6SxpCg/==оͺCߺ;_4P[Q9wKG$=t|s_?WΝW筨 Uzk_qݕujՁ5޺Y9eUU%B⊲ʐz^EYʚ:n^]ʹ3fMUsF^VfWUՕ7ϑgQ2& EQu|L3yUuܙuO<+ܢKkfV^\@U%ՕSUWUx?rμ{o_W5@]ռd8^m^V x_1dVUke%̣0ϷΫ]Y3J W ,+y΍976Q[SV{܊2\9^5Iݕs:Igz2UUN/*k뫪f̀,+̛^Y mb/bU3p+߬j3MNbQěU>M(¡ʹrdͯq=Q+V;g_8s]jF|F DzD]z| ,kdKPU p/n/w}Ɩ":0SK$xU=:,AG[t6x-lBsM}Iˑb~>*Va%JT_U6p)OiEu*P+)Y뤋.U9^,eR,Ek{D];Ӣ yAK$_v ̬>jNmBnP"rje=:yI9A'VX`E73|c,_v>}T(p՟'ϊ?g!챈U=L,0e)CH(+ z8BF+ˁT[kU:P@"Ƥ]<4qfe j+*@F@\jGU9^+Mg2SVOoͨbp^LҲ?V^{fέ/X$a0d|7I$io+5u!b^\VgDLH{u5l\:"Nvڥe΀x&W鐻^{S(E,F?]?o#UET.Ȭ)&bErRr*t5L h*./;^qo#m3H/Vzϫ%v +?9=S*zoyӽqWzgAbkAP8H+\xRS9~FffKtH +T. Rq6] +ܭ++-V$$w"Q/^=*d_S9]5z\*_qAIkZıjAB^kA/-JY( \_AN[tJ0Mu{`D8YRկ˙.! W՛sLgTS'MC_$)jjꞨ +<̡)MN_~lE_+E%V{h P^=o7ߖ__S Yr-j"$_JO]|.B)r:Xa?=&y!ݤ*k+8Kx$핞ֲJ'ϯnYmU|Ҝu/|WB/9ZsΨDWΧJ@Q)W2&Vΰ/fW68iNXrP/9)POWV-r SHk9S)\=E#7VV`eVrT9rQ,JV]_^Z ^7oy3IiJ(0 UJ![ݬN( 2s*5z:V{ݴ5X+Zti=L ;-z u|7N?OW,͈_IupչZ2ߍ(%"x7)^>U9vWs*%sfFՂNNXT SS*q_p.n[TcVrJ8]KH ƗJdH"E\D2RB4p0)d\WYC-~%xd𮮯Tc"i9VR5IN ׉at!d>>!2]Û_S5^pz^}Mkp'"$]dzT"QQׁe$K2r ^ܔimߓ7&2i@{,w \ + /.VKs +W?r:AU3'e>"hea`Q +U#AHdTX7u>f0Z[Lw4KeN!šZI9o +; 'qp~4x^j,k<:T+fԴiPw\RBΌx%;sf;Uϛ/g&[['^^rBܟ_V7Om-}"I _ W곜gAC{;i6%D[٧ -·(5H?*DIs%B@*FSNG#Hې6!=ty*iuHG }@:i +HsGz RHܦ >4@: ݁tp:觚HHw }t<4t{fPlB:,'i,MMoniND:iRoAHGk|Roi^ 9j@η!_aJ_37)ېf-ěHe 6sw"}zi5@nWxB:H/`A"a%W(wdӼ4w u^o.@ +7 FH7#]0g"y"(5WO߂rQ#H_HQ;ЮH?AHH4בz~tw>44uQ ݁86E;#4ݏz#Ez=h9tLc>DZ6A :H! fBͅAn4RxMC{~Hߋ|Hg~!H/B]AӜT,]%!RR"Gz'ϯ#ÐRzm^fHCS@G:z~7SG&75M, V)q7~|@殆#Aa ztQ/A^+t +!y=r +3i# "Hu>!GO#ͼވ"4ۘv9䣜gۊl%<_9#*R'_+0vy_ѓ:_xWo|]} B0ݏˏ%Cn=) یckĴ y瀥X\`o>nWKVD]I/%n +n) DLy_"}e{AixZpmQ0ŀkOͯ|(w?}t{K7Ggw$X}rkv )&g̈m3e*C|&/Ɗҩ=;L<֛Ӽ eIZl@+؇1%ٰo# cRWo{u$+ JASn2x΁1w;c3g O}S- zt/0+, ˕=jcǃ@{ '&*D92 +QiK0Rr#3m$%\l`@0SqVX6^4*XDRsxz݊<^P˽?dz&`K_.^m &j/ +B-9鑵{Ĵqf`L/lrŽ A0n)uiO┍k?v-aCցOX?!=~!c\9+[[r\_dtpώ<~[KI "vrW7o4XSqI,ġ.ޣt` fNLD2ةA D`ĺ0>a:- U&Ճg G< X?2#`Ck|~$`#x8Oϯdx1W7kh,t)ތ3C7S)N;_\R? +_ǭWD0=C0tf#u $tP% 1Z}8 `HFf p<<i]JeCad-'Bjm8Gi\igq뭙)krLVuP!C.A,~#GO~Q_5U84KxiB!{  6^vjwu1%g^"f9Sr}i'a7\o\-ZW|cxw|x(t#bŀbb+q+$c+Ѷ_|O+o[mQ'xyɔWz FZЭs0c D_oqy?ms1h'bq-d_+Yaڿ^֛,=C++6^|J&ąZ/F{ + 䮰^U.{4SL%& pC `dʪ8- A".CƟ^y[C/Xb,r!g^zhoҭ4Nzs~vnz.q-BԭS+;{W6W*=xfOh+,c%q_8В8XT7 R`:^b*('Ga鮓& x@ouz ,/Ƃ^yxL) h@抿zÖzK>qBoM~󕮗 _hk^;i1硁Aۏ_<~Q>r_C_pQpXIʓꖎo'(n}W7Ovεɟ;JtI5k>ii鳠GwO`ɥsEx0{c,}rT]><= UXS/_Yh:ا*}<7[75YK1~ ؂koyFkoy![iU4a Y+"@o7 I2,;V{S=ɽ +:Wu^[ޗQ= ,*+O jGqh @)}>YY\ &,x[ rKAͥtols'm.as)]^KGwot' O:hJal6ȋv -@[B}]v8݄%F ঃό]$ίB WyWZ};Ww'w-'i̾ LަI۹kywo#sE鄙{X`ƨ♲)z-3 +\6w-\aN6$g,=IAVO9B** +uKut/[︍ [Kh< te-ݷ-/m^D!.;H{?h=9mi1tay҅߂oy<6%bXeᅥ{ %qhEҭwwAh:tVR +)qr2'7cwyw/Q{Ò\e&&?CyLH%l]˺RK +As`B)YQ7f%ގ)gKG|W |̣ ^_:.Ɛ +f yI!|FGHrܐ]I#_G.kdLkdijVnבa|VGƵB Đ^iK#0$VoY{ dəpEqT8zSAͰ4C6Jk%yXKHVŔH+R#~;v2$l|$Nfé7[>g#%=R6#Ƒ84~=O/_#6馆CExN=bɂVFt+Uv_zP& dH2.$O5n%ba+`Ā:G"k9 ]S}[CR٢8;2iqSH4'h2 rl'.i*}2.P6k!E.v\"m5QEPcK$cf Y'bXzUގĒ3!EM9uA ]Kڑ }ohp4ҼF!w"<Ҁ4 є;pzeL"?av,>a?C9HlI; y$7WcQ/$iȍ$vv]}]Fb *Krt9V%c*Rr|Cn%Iz'~vL#J]-9jy4_C8W@ApH0`4f4Su8 4ljr|Wf2!/M )hSke B'r> /aӌA8iGux+kow|4dAn/ȐA1017n@x=Aj-^5L,+ƒ:}؛q|\5d܀bc6oC2?( (va~EKFW[RXoJ}178|/BQQ{W!ü.6E.Qy9F\౰oɯ{/a{mXVׇh7|%9kOhGU `laokr6rn[Qgz}ק6.RE^鷼.Ux|_-mb^p ,ǚ.Qy]Eb> AЋ|@y>X] z1O=! z_'D 5őxh#,u0?޳E8$RG Wx];(#OA8k Ӊ*y|G'JWp85$/^Ei G,= ^(BQ"b +r:qxϓp]Ne%vN_WN~_%^N_=jAd8 `_'sz=D'7Ec| +- ~ Rsw"-{igCɽV-%[<(|oK}1iL e۶m%HM9Y9[MY۲If6\b̂-|En]0D{r{7ҌoQ\{t=S_-4%q[HTP99KTď0f"Y`'QHjqcil_iEnxPjq}W4vSuR>,4>A߹V`/-K7WW[=a0B(*)_޲v`/(a..N" H+*2͖} UH2^ dJ+? }0< Э|V kגplk]dYKq#R밒 3:q |=cY#mrsyw ca8 |k~gWvOgg WG̏?̨;z{gؾ?W|ʙhΨ37|-lQb^?˿?O>0ygmONz}~=j}dgnoȻ_^w<&կ퇟;m{ozӷr߾w66ky'&>FVNr{_\~?>[m.=s0-!k$W5@7&D?pc$۩K\Xvȏ ~MtFsy$J֚XT@Dqjt5T*]\k1q )?LHt/UCt>wH gkF](*ZnM$:+U +yȏoVᓡ^S_HY]o;t_U3'ݥ"ToT*|U1xO*M~UE?WSQ*z$&:|dut/T'_eu*z~UšүOęjfK#P2T[]?VU?׊JhpM >'Q%nDE}*EE'ULEN|g4T'\Pl}t{|o"f,szU1y3L3> KIVb9v3\d>f7>/s9~CKp>֕_(lK,T3Y;_sG{,[#כ0#;GD<_A^L_໸$O4κ}fuV44 e*g"vZ^¼: +9tl{(nЯрqQhrS<Ӿ܎m16;<wʴC`18=82{!LDMgĦrigKi>~v"ifo jS垀E'=9='?X!TyLnOQy@9Nu#زr @lin{iotmM-55#P v2b@lҰ Qމm;u*3r@fin/o(aS;腷G0QL Dp {}5%49XbYnt`lzPiCq+"}>gL<.?44E$TK;~XcyKLZH^vyy9ZUxX\/Fj gڈ]eP2]UTlKÜ`~ 0uhsL)"h (-pH[srQSp?V>HIK >Pˑ JXH_}m\m  5a#H?Ѐ$Sj7 < +9<8@gǴ5d39M뎙NW;KdeE0hp8am^Bl: Vf + B5SKe5,KSu)pxQcdc0wgÙYxO$Fg7U.w:ʍ&N;[u7=|Ig+aZqnE"mlDUTpxm .M츄!v`d7)qhxH<7nu%)ˆB]K~"ߺj +{IR>M\,ե`qщ= ;a~9DˠpKzQt{ +!US Gܲ۫G]}V ɉ?1[7&N G)Խ)(;O;pJN5-ſ' Ǐ󟣹崣7Pu{|*XߣfZW?Ux"x=O. +=+ô osPvV4:9*Y)2hdf?v6Ynrta:59ta[ַŋ?):xч[5uW+CqߪqvE4Iߡ]^~q:][x]4qx>WN|p_WߧxoDVsGWktxs<[nrjA=>2/,yD}|ROK˝^v+q/xx|6Ngx: kj<>WZ}_ oﲨ]I WۭUw6:g?ׯUt^:_O8 [3OYm&l T N1p=Jx3q"GX |#w]"^g'eN݄#|1;z{T%ykp?M 8;{p75>$#;_ݔm-Wiöpzkrp ?lWNz!c_YG!\sz #yTݮJq 9:eVH8ޓ|+W.VIpk4lS%Np,DlAգ:-#\uN[NUN?YOẍ́&|+!IUm"|,{ >we:+ y4lY㽲p?k ·+w_KlNjƒpyóӖ$𙄇 fo |+[ NOwnՄ%8&# ?F8}Ex==&Gx3,3Ao"ydlJ |.ᕄ/'yNl | _Hƒ=-#N—~Wx` wUk&DŽo%Gg究p|j_B^ƒ ~𥄷@1BE{^#pzʜU gᅄ7'|?Hx%&^}zi%QlÚ&1%G0Veaw\&KhA/%D@'  JJwc~Ob~`~DD_D_D{o)=t)уADg^Jt6DFtDAt)柚嘟ɘi队0?&柖7c~`~oD߁}'z)J0?`~D?^~'z-&D?~ 'yOKmڔ~D~&'-O1?1~7OǘC#0?_`~;0uJwc~Ob~`~DD_D_D{!MJ]J`&љ z-]z?ѣ@w]KrOxOdO4OtO O hH1?s0?ѷa~D߉^L0?`~D?^~'z->D?~ 'yOKOB~aXxSK|Mbo4ˍm|gp,D?bWE-Xuk‡bw%lm×;/?6ȍ F-P2o6u:4~zg:eu6c 1 +`X>ݗ+p wc<]RS'b^e-|LS:/oHXP+aY =]7>Ƌ.8#YDuC뜨:u™cWY$>i._]~O$b  W/gB_Fȸ?ȘTL8][e\+JųtXdo! 1uCD&ts@ߥwa;8-qMSӔz]>{UkQqú_${ѯwrxognw5މ~e*w5__5un~\ގ~ n*/G&8ݏwЯWy ks~ ?GO~~a?_ l=sd~7d~-_$~KDY?F/\Ke~X8(DG:}ħ1>-rt{`Yϡ.㍔q&l}l4?wOty5n~ Z~3u?c ~SuK~~,H(ЯL~9_*?d~5XIwVa,_/;+pUeqK WߩU;`^0Wޏt8ļe*kWO~ nV/2&kq'Gk[1 ¿+sb_}= :W@\wB/~7۠@Я0Czvo~_пy7BL_~(-@bwB_}W׊@ wz) 9,Ԋ0+Ix/kXE),.is0ۯÉED21W_Z~LKȹ8'"gL≃L5Za, U}0uO~Da&D,='+-uGx 0sˉ̓mL$>gbi_sb`l|f$'}Q ,4E'?$`y1 {K&C<OCq0:"X_P[K)vC|G1 !:(Pgn:[.]~p^sĺh3X'@)zpg2IG+8낹{{NkhZ q +' +d~&Ო08' 5 ^[öչ#{\gݰi#8l}P0b!;cck7 8G.˜>jsDw='b P4“07LyD/\3XPK /oas cmsg qUM/'0}gZ3#0n!vFCk+Nye a뀱J>F/uټ,[֯ep4ٖûO\sC6X0f;ٔOVؗ@_=wb4^+ƞS"o_@_6iw^r^ aᵋz F?%sDVe'•3` P{1ƥ>cڲ'wa+?B4\Gön VY=ݪ+`U8,r;791Tc>-9|78A-owβAL gov~99XS8sfՋ}biK'_zsNlA'|y ,q]/n/ -a? |!onlCԿ?ܽ9Aœږ1Am~[BOayDZ=jDL!>?*έE63߸i>}wȪ9`?sB`Cb]K >tmN2>=ĬZ$Jm3!\5;p;qbq=EoEwGC+Mqr7T ]*>ܦ@X4hoZ+B7!_7\s1á9(-"ε"c`~Ź5t)nuh  O [Cb jq> -55̇83e 808{r!xE mM3Bϛ j.YMqR86ppR -py ,W+>G/pN +jW+8sH1QG32_Q;sO}Sz34v]|zp_z _쳷='~5K!ۼ~7kX8ml~"˞??߅{3fd8Y/Z#F=-V7Wofwn,V}Alct=_Sx`=yN8~Vf|C]T4h/;~_a +lpr΂8Ɵ.Bܷxn dlX1}2[3}+cX*f FyTQ/q~QؽϿja}?ϿZϿ6e{J^L}5^ljpǹ.?jS:x?iWU_Ue!$dߠ+͕زih =BU9qav\9 |MRPL.QŦ AF a $y|{{Ub?G|}~/'37:MQ׍8ZymF}4'x1M>rY դZ?Mhx;JBnd>zJQ<ֻn}XJ7G?Ǫux,cG?*ux,c̣xc9)x,g|uκX:)c)D-d>^LXGzq~>X 9n?wɘPՋکc ^=+/k;^ kj:zo,+= ׄ&/b/RLÁś%Xϋg@?//TBIk./˃w(='xF)^؋7ENjkxRzx-^u`^1:^6݋7LKॼxE:QN/ e{tH9=/In+gxg^V^/VAO +y^:^\I?/^r^܋7^NjvύxxQxZOg-q:^(H/ y*u ex ^ϋwF ?/I9Z(;Gпy>feȮ>.qy.}Z( g!4f<8jk#{L?q]O]qSGm<_|v.3*^[|\Ju}x,mǒsz)u6.g=a5y =їR\FGVqX;sXKw䤒|'394QqX]n,Ua-2%Vys94MqXM݌7oఆ~u)kg^~\nEqXM/ua9 b58aU՚w{LqX(k'ɰIo!DqX}2?G {!tUΩa=pW*8:su ðBْఊֱZSۆΆ=!iݶదJkdM!א$5u3Uaݎ;pXa}s"9,܇ 뀙ƃm=oS;]rX'?Zo5dOw5)ӮGy9bQnw5]rXޅ;e\\C%u!Ck$.Dt9ji4U 4V>ta N+:iˏrY:k7?ݞa=^!8 !~ U⯺YpX*v9Ш*rX7,24Ѐc__yv]Xkq?Yl2y9+갦u3Z*ې|MrWmSumzuwGrWVk[Ȃ[spMEs]୊3y+1VQ; SxYlkaymoC~3=<76%(Yf*YbAk6 YGY䴋s;Oh;|MKSUaO fmwq}=?McYi=X9˱'eY]T`&iձ,dZn({eQ^ԩv{aSY4~qq鎽,*C;^e){YTh\^/NST_;r^63vle/N,kseS'~g`O _Y6ߵ9r jv)QrcJhs^59si9vpK,;j?W˥,S풹&RN0v*|@0>%7eo0>]?zsڵjg3k-Wysa/O Bϵ3ق<+Y,x#. l:kxN4;6^7cF{ņ໰qϘqFeG>%X?5kwll7h]ƇA?[(%/&8RIZ|t76hog(;hؘq;celgPR@6|t]ޘx8fge:nd ՞D]@9l5VO-s1Co^#cv)[OO?0:^h<djx3y}.2b Oh~i +БW_|vs;ؾD{vuX}j Q֫L/kx,E4f0Ν +s2?HK͛W؊8y zw\Lm]ccFmgwywE/Ƌ܇?רOa2 '<.y\ryP f6lA_],[gO| - |C//؞R ,߿Ww1~_iN9 2[ՕrrVju\J+Z]!ŵ\N+Z]>ѭe=ZV;lh,{x-P:W쉵g9>5\yC^]=&ϪRqTU\[{s"u*{]U[s8 +(z2s\mT5nuqVmmuu;4_Qmi2^I4޵̚ꁯZ33!&M):o9jqӎ~ϰyƛϋ5(d\g3qD.3V _{5ܷ9η.dǐs=_'>ߧ>cNq3N B햹٭ P!lbG/>ߛTBϩe'p^G9+"617⾥GpCwy,~q2O3 D-bxύ6l8?9` O۾b?7یZWb{>;$q7jBL֕X?ŜNpBy31ߡEL~WIF:V3auo[.ĺ+zC* :1_펞kbR^ :^2v/4e:^ѓx#u&/^'C[ +pݮ1❈pWO2>aGQGO]2.ev_X\=,_/׮v/CLc;z~X_vEMviz/Et슻ƴ_vz/" ~qi$\=y)L[z"t=#ؕ{YK&bF~oϦ5QBWyJ^_.~[j?B}>%T|L +УQJ)O׋_kɡ+zw,\9WG]7RF];/?ך{jȽh3Ӹu]쎻 +cA.X82}8ђKrOlFW~|t=FGZ䏞=cBuO]zx%@X ZQ}f_eF2?nVx|[eF=27=~f|Z(~ +esm + +b`-'؁ +a,2e^ak,9kFځ&-_@ls3$}C+D4KXOPw x%:xp[ް!.!_KBg[KɰҘU \ݰzSC2>>VAUWX:h۬{J; +f=<_ yd/"{&EzuZ(2 kV}b_ xҤ_23CsS+M*Ҭ:>3ƈ4V>_g-i܄})Mɮ\zym;Оfi0i[sf` [? +ϥV-}GXզ6v  >ClA 3QGޗ׫f)ŢaJfwGy983݇rwNFȌhoНΝ'R3J!u{e;Tγ&02sF!|ATWzr\OJy Z7C Uu[~Yww>eYOIÿ72zi2Fɿ9s_d.ϓ*-lB_VM6<7UjYna~if癆u_4Ӽv23<2_ڵ+#|z> xmFyD]MfO|.6f|&aO4߰YSMj v鿉ݨ1)ڣ{Ilk57 LWjB!ާ%U'ӌKz5H9˭[ +iW`~l{IC59!J"].0 {zqzVz,q$uKG5j]XmƖ*S4Ԉ&LwTo2XWzynX U ~p7j+ +ZWTx9 +Ĥ{ixH=gk+|% x,W>+Sݟ}vƸW.`R>S0ϔt{ƍ4WOu@ѩ`W3qEہg=WީuOyWϏxD6Sds$~Aqy2<=.Os%~/Xy/x |?Ow@Ւ +xCx\'('$k:bk?F_|S;@gĿ 8?C +:q~/W9:tԹQb\GW 8;Uxۈ r+.<Ӂ:%^ +q +8 ++$I3oI~I| k5E<4s0^Hw .PeGtZLkȴ{_Vt,fez~#gI?C⫁;r&T ^ + dJw5'Rc +&˒Q*WjxDw@mW]2oޥq#|whx |AK2k?O<8XWO\ 7?/Qׁw'QW?J|:?8TO<8L_/+:KHN/^ +>៸ȖP';~ď  2?P_'?rP/q'˗[/r'ީ׀OK׶&Sٚ`hNc/-?ᛸ(x;3(2,)uOu&Qj$n?š#~rO}9t; +x,͡+;ZKG5^Bu_~\>L󁯌ˇU}?.C: +|HG)8HS/!: +UO<ܷ_Oܧܷ_O\ǿ/ӫ8w+)# +^*} + FsO? ៸Po3u\?sT\ a# +o>x@˿u媸GY?q#/_X%# +x2oWW*&;5^GS]C*x_p'.T<:+Jm;^^ٗoq'.T||1?9*x៸|?'oL%b _sx\7"WTh?x 5_F^#Lm>5 >ᓸ` q } ?p'cCV;)|o;k\!ez eMƵk# +x?5m~ÿb-';)9w'n2N]st8nbh@*N]СOr~=7)5F\8x +Uӫ8_x N_ |?G I!w~ FAw/UWu%9q U_O< )Nϔkyn1"*s4DK_~z}}^!ߡXꜵ3O<#{H]ùv +yu<;?%DZX~ x?sKӭ}˵Sf}ǻ%o\ Op+[Wle)w3Ma5h~+OVa +?MfB>K=^VR!6Y\iҗ"ofDkd^Oܟ=gdja^l;0Ԍ~F:wvϱ Xo%0LK&@/R;NcKQ羄~Sw +Y/yQXV!=9(+I3M1Xv + +Z3Bop&1[ܙZOJ)lR-' ok#O7dQGny9eZ9s=+˻\m bxaUE=Q/5==fzEZ1)=v@׳~[MnZ T=`l/i/5}9OYc^ʮd}sB>v S,;U)Qߍx}?rM%)]w}S{gXq)Ro'Wo9"=18TَNbFWѕyBb$6PԬk|w_hS>g'OM{i{4m_/ >Edh>:aY놱ͺ,, 3?yM#>%rL]穰7~ޯwb<ϘgoG X:̳|t~s]}= rk؍w|9v:؝}l7/c |i!|GQ0ҿ +| (?M%1Ew%ڍzxtSR}^a5Iyd҂&Y\ci@"4BzyWG+t;kv5^~'䛼R{xǘ9q._'82}Żǵ +~(O˅0U,ђܚ d>$#"Y!p7^@L HS Eaw Ɯ6߽u.0/oļ|'s{ww}26b撹57#{Qvv"2onF]+(&D^ӯ@*n.HK,-s=E~F)|+-г.W\m;ޝ/e=k8u"M,A-nV[*9:Ѹ>_91hZIO<Ǿ~N@1۫)-\ qmk;qNרu0NO:ec\ W,帅iI3˹^33܌C^IԗKNG?MTM#E +A6^|?P3Y|ߢ"gKNN.Sd<ekIC+@4AK!<8x o>lMbL؋tWa12ʚmH+qP=Xŷpoh-p-ibӘR\%Z?&ZLi_|_ 僬 ӬfwQ;}n*E?iC4ڈȅ>؉;5p^P7|X`DY Vʏ;\bW ʨAZ^409eu(keɲr}K|-hey_뫼\+DyGZ%v;: +Zm \osLx?ފ^<7Ӳý55.U.n)ؒwu|/oҗ{}ϛ]68_2??[Dɱ#gFw+|iK*@]qf-]03=d3V=c/T"OළyauET|=o1m11:2?,Ӑ?~~ l |H8fjK)޶|cХ|0[Ǣ>NY3-5[/s*ν},}c3q>gn%yt|I;r>u(Gœ49^Hϰ:9_Fsn2 a +x.NCR c0c4!. Js{ g*{4c⮪ꡚY'Ǝ!CzM4Cư屬 +ԁ-Ĝ11W۳Z軒CgKpxNƃ/.wD`U;Ը&# X80LT>A)J8?Fl;̷nF _9o"thqh-)<|O!Ssz;ח +kh'9u+EtQ˛n@b!`)4{ΗH_ҧq|ku`F"{l+B}:(O$ Qd7*Z8Iߴϕc-G;4}QvLQ `oyG8/_>:# yo]_͍ڵi}օ7pq'1ݕ}W39uHS;ce{=Q+8mk~MW(ec#t[Y96=ן9K1rLS6o\:D{|sM5,n>e knlj;,]BPGL!&y7&ς~Oݗ@#gRp ^pfD0VUsF7ЗAAȪ#&NMS4~>A۽r\`ʽJr`|hO'Ldr,+wbY'%,5p-,ñ* ' g5!G\_[>u!ɵN@Q63w?~&e`yob!rr<$has#{ gʈ ㍇r7w"/}y{Qls'umo)_g]oJygw3/g8Pd +ܻ^2( yg&B eLə/]s"G< (+/H=n_rrqXˊxe=\3V)?E0P}e<2(_9CΡ8:檋;u)?t+oxG\&#.@&wkz#Ϲ>v`q&+_shݸ][zpא>AFxw^:m0. +۠3+{՝lYDV΅+"_q^~>gb/:vG_/҃[x-l>b#Gux9P+^F ݺplRBc9[G aK)?\:j3BNJ+ L+lӾ`+1zㅍmZCU9mcU|V)ٻ 45_ӶϺ>7f$_wEcU|.%iII҇=b_|lhq`ّSDn5# n~^gw?Ww>& 95N>?:<1{zV֩:թh;5编 ۏur*m: +,p\Z?~3άmhK@#ب<ۦZ U|Lj-*ȓwVk~όRT^摱ɸ,w?'?vLO P OhWBZA;8_wӃ_~ハ|U-b_WێWیu 9}<3tsNgYo?O^}܇=!܃Lv|eF??z-xg$H`W?}ŃUl!zMa}tt&kO)xx.8tWc*ԯV)/wD~a3}(Ҷ:[ I[d=5g[!~oX> +4e;(q`l@)KS]72>OqMGj|߃8c5h4;F=ق2\%>v.B߉;fhiD:x ˍ$݅˲7!nC\3eUw/ |(㼋U?tu{FpfYj [F9q͔c +#8s$dz@ǻy7ŪmKx zPvu{*49!h4'=|}1kT٫u>G< KQH]i;*/8_|]%_9PgܣvUצx[{Ak:bn'u!7˜kn|w-Ϸ>sHͨ~>oll9>8'ϧq1N^Ǟ@ϿUm<#`FMUx&l%.ojW@3o3@>aBU +GAgʛ׼9Oj/>Bx-׊ME¼~mjYw1ͺ:3}Dp#s Wԙo+'^~2B]]O٠d-noSٖvfX$aOmOŞ#3TE䔸^Bg6 "tjn7Xd2(J_Vs0^ȴ#;-̕ʳ܊Ll)wOY.>lu U9+*mc]Du~{s(;^jIbݰ# #~tM'$Zs%*emJ`(C,Ѻh:S%FZ~)B װn}g[Ά˴i)G`gMΏ1uh#q?7>85q/ߛX&FvE"#5[HIr@3?q* #B,u :~ +a*?CQ7ӚNM+˴ӾтJr+A_N=Gh.UEݍAboOo=lݟvsn_A}v/^-AM$8=:fQUK6{c=w۵0?]kP}۞6zf+ 2WԾs<ȒԤ8@16t93GcMre~e릞LN !-~Hve]εc3^b>9(9w5lN4Sv6F[@N;;i)9Lc3ٴ:u=72m=:"`p;Ճ{P6&MzB~:~.^Ns_jys5w8v5'nc.Py&|==jN[X(}uBcf +D]:@|nNlesnwD]kQC)̴8ܸ@rq+AD,0zsna|;e~\eg(w82EYi;;'[󡏦O-NV<[a~;D!cF;\#i߱^ 2~Ug~S@7 ӏ _E_ >}=kǂ[?ðe\뒾FӾlVǗ#g@^-{4CeyWo +͡n|Y &ԁ)vgZƛ^C}ik}e{_V]71}نw+Ï"Aۅ&Veg Wek!~ndPm{R웻}?bXW%RörmcL:o'?$B>ڶqM]^ L~ M@#6+ޱm3>"s,V3plI)OƶLc_;jeoBmxF<=9P::ݙ+w\ʷO[1ӳ<2#\ɱ7b~ n(QqAVangtבsx/:PdW"=Sø@Tݎgû1 އr .[ˁo{ؔ-M 9)m:C'}P2RO~{gT}s7Fgպ`̹YtTUjL,Z[9cT5yp3wPϤRצzڋ^f}^=3uϐnqnyڎ6gĕwB=/ovmIm7٘Q+Vԋ8ȿ.~WVyN;xаF|O_w"_sepn;+vmwyyyL=߆qE?ivJ·lO:NܝDAXb}i\WDr;wl ?cn[^7P{GU,qc~yR)jMx"}_ +;+49BiA>%R9@= 6%1<:9 KV8_؊VɃ.N7^B}ۢti|VFxҚHۈ28ވN~tOg;HH9zaxZS_cwWCS5co~?+Tucl"kk[N4&Ҩ~8VTܡBs|½Ό;?ITqfxPE䘽9 !ѳ:0JVWJFʵJWVe9N'|U_PXӼE~g-sQXwƓ? Ɨ_Bz [7=v8`#^}  x@i!E4Ĕ4ӑsEF9Rk;=\Y܇A4UKRyї +~LV捕"\6j6đ%=˱?sgr_z7gQ2HC`?a~w+h1MV fت)sFsys;!/!@ׯwj +;$t%+#YW YҶA#Uߚ&FСmp崥k=ҳLB{p1ҹg'SVhg8v?䙉>\I)!QoNq(o j+Ǭ!b?nuH﹖L}ΝvN)WPeCO2f Fݮ}A|E_c^Tn{y\'핞3qNgk@yskݞE _ZodA3f/z#ȷu KePԷM#CHթIh;~l`@4QZCQO=Z`wsr7q;l]hOzQ=Eu~Й{>ь uf2u?6Bvs=bFȃ 'w_ ^xwEx-/ <{b[<-K K3e:G5ý@ZaW)mu^Ú ,g(ekR%t[xU{\~je9o;q/z7Ed/ +R'+}=rh"@=I9^,mt>|ūv5){G۰#erԙ!+"vD/'fƄp Rs6fa{zn_fhjg̘9Y'NXU hIAN-y.W^;?xIN/(-c 3{KsK5a1.P٣P\2xZ%ͽƫ۰=e+Χm];n<&%/({87se'>ຢ)wB_"_}Ύg3v\س<]/}\syv˛=~'y <]3w4ֲS;?=ASnZt9Ɩ-!&uC"ޘ"{-d欓S c]6߀i8kKC92^MtWSgO?9}zyO>%tk2plRF swCWMޥBQ׹7S'8Y*= ?I;ZW` p󦜯|/[93M9͉y&#AB0=xeLe8ss_cNl"}-rP UlC[qD}.GFLsp꜈~s!@u߻BAY˿g$S wPQmV1"\ $iՃVwXOy2'7c:ɺNJ'/teL73^^*8ztס9+wf:7ʼnܲql|s[= jNw`cܲp?&!I"g)׉XX~UHd;+ yg=^q& U\4]gSt|ϳx@?=YT%Z־r7W c-x(Xy0uN|{s/d]̕E+=FEyF4#u4Ҍ + +-T<8NN Ӻt@;ϵ N}FgT+E'&Hs;OgE=7k>3юyY݂rCN!Q9;xW2&i_?xNi"ͷ%Ϩ۟4:[e/lŠog/^~ϝx/~N_\2M&u_uD)Wdq<:m{!|德r\azwfEx?yYu.BٱDֽfs*;sHҮg] f﹵yO?{ pq|YV1g8iKPF@j\Uv<O]g`㷸)}qq) N)S}j|:%uiqڃw純scR}+z^.,v ]UozZC~cJ kBdӀߞzʟ3a_| }W"yod@;zmC˽B9v9B%CE˾WyOEEo y>څ +s 1ͻU -J/dgޙ>Mx<S0n~:lݙʨO_bq^{GVř"8)q.C3k;}VY"A҃3s7G 4KuvVx18b^Xu +~|XOs?>iYFOBYpb܇h[A:G:>A?GmYtw#hy5pۋHۇ3s}43Lm/i8|=lc=b%l[sȬ7Vpd.)+I=MªC<2+/++Dt 9^K\.1?b|v8oKN_?Nyx^MoLJzf?Oߐ;ʖ 9Ӥuq@؄']C O7Ys!&GЧE};N0xje[_VߚՌ距Y~S>W yv6:aYax?}xLw Jwsmc1ygg4 ?՝~S \!σL6d?$m\<^?y&&&?OO3Ўf@Nn,GWo}H/N(fءNNO7uzۙEZDi('CO'tiDcFJzzSiΉ:zzuV"\|hq3w-1pW98(S'yυOB#Ƞ;+k?NC Y=d4tzS'/1cc.G֑}*߿~W dg;S.[PXy[>oyx}e}؇ϕr֡Smynj9Q +s_쁾9޼ԉLhbעkM;@ێԱr]MZMxoaJ|kqU.R5C}bh#_>4j's= +mɔ 󰏡-\1>wK+wXyKR'VbP#qW w*s)5dJ;[/x_SW[JξGdP5,K-_A_|RS #.3:vC/GS}JWOKIsSυٽz#uΆڡW-o;9 MMh߹C^ΓTgS'wMu*ւȧj/ۅŽ^6uΙUq2_|c86g߉2Cu7;Z/T'V'[g>+D|pO~ΜǛ 7ͫ弝ao@slg5*vyCZ]rh~Qr o~SK3QȕuvDaFk*Pp 4 17XKw|YCJRϕО{YG֏--gȭ_7ҡNq}k:_l7r̽A9ia'vڗv6=|x*}œB*D>w8)ZSםևڏ&údSlYT3  Q6~v|H?6q:D?&g&ىs]h*a^wkmwgm +QFް:uU#DC43z(1j< >ϡy>DTGۏ~ W^u=R4-2~[h,5uCGٞ.|SDêYftӁXs޹m4?0~Q'AJ\3cJ'B 8V'x{_:v(『?}P'# (o='r,52ыG21_և~HFl˛+oTqS=8 xjrpʛq}-M''sOi[ CWyoa6Aoظp#.tp Q7MCyY>9{'{UCfb}x&ǡwMsxNS{$YAγswu/q}!wy6cHŻyO^B%9^!aͶ?ue}GuݬTw&9sR֛ WL3#QWoR]\ i8ړ?û۾׸xK?x뇑D/딈~:_oC0}VoO?)'%ZBS:I>?x~RO{:!EOXriZobe껏?֚=<֐XkZt^ZӊG~sc-9y؟N0 š~}c+qǹ=G?o_útDc-=*N1I;x^WSD׺)kL9{ȫ _sܛ-)b͐cy"+Wysy'>ϸ‡w^+_RgC?'\R(L;TXMtUI!=x r/S^.rCrփk:[.]^o6_MY +wQVwc{]6 g湈GcL0d8s;e7؇6~4g7dgOQsxlU":*-a=5}!CηC7Avg?kEaL\ob;`#0F AI88⹫ m_j1VxmE{o{;17Oͱc"8K;oUU?AQt"z~|𻌍=^Aɶh3qɳqj=6uO<|g\8BK^{4;q@F9Nc\]m]m61lĹO=oȻ7T[uz.~1}#liY}QgMdu{M{vf;=o߰%{!_|LHP`6tTIqvg8:1o(FY-rܘZ VUjaVߊ1\O^ 8k#7X Ը 㡷Ц5#rzj@>sfD^O}_g/sA335VxmՈA"r`ɩ=MZsDGU/+\SbJίw>q],V+Pwks+ւG砭'&΅p͊mO=2S~7q[`&mEq0\[yNZ یɘέ(Tݙ%2Ĥ)oN.``Rr]{MGb}(z_ᬥ~ w\O5֠}$׾\_$6MH +uAy9Ri̶YKj wH$a.{D{LŸkq (p~uX3)Mj=uգ-e@N^W4{yWa} 8?ép_;U`L-nؤ._Y Ͼ6}m5d{omkH4>wǚc||L9>={@M,U8U >'NRhZ +*E`xc;-^nR7X;#_>lVxxGݛu C{戾'9yW3x "oѪ"aytHw!Vi9Xax8(y*<C^]5|a'~tۣSjn1ۣBGOR{wSxߑd<7X [5ۀ&ߡ~WSq$ g?t+wS++[=s%h#)އ@`ӣE9f~fΓc[vϤ{hs۸IXS,os,y\w ʌ"Bqnk c,Vf,W>`nDt_dZ>݂JȾkAy"wQ-GyD))z|y坸gmp2fn9=kG76|}YԇN8r]}ȁYaIkR*>M,9.ϕf_]'9Њ=v|v6:1uo15U}}N٠;vv8H/37+8'q r8d9+Wqʂ~87Np6/B[;wsE3:f5ͯ>y<75_!w_'ɐ?}|zg +Du}Mu~BoXz3X/xeh~p KrvjLi(l|˦ %6-wyWe0uSЧF? ߱u yzhE|Y7z_ fۯx\i[梯F=@ox ,Zw:):nV: Q0-@'~n{͏>|ŝ=CKe5l]u8z}MZ3ۻ>)FolÌ3[Mx)ڽN{7wsq 5 MQ|z ]~SN.4混?ܞW<|\ /j_J sucvW-k. C,w9i 9E| +Ē<=-t CPӈp{`/٧!ޥ~H#vı{Δ):ω 5s{UbцC%|U=v{w<˴e'yZo")Oe܌ķɳ!oMs[j 7.Ն|ߛjMr;RT1֧87_i}7N#ӗ.5]{5՗I7{ӗ[o3VF*)8ěy\`y*ڏvz^_Ȍ=NfA86 P0V4hR0eAL[C} |TչIHBHy(Ek9Qꭙ@HITTdf'2H|oEIHHCm5BK[;\y|h=|TB= =ַﵾ~j0nCq~g +%K&hmk5# iڇy(Ǻ8568VǜLko#ۍݸ?ۯѴǔ;۴?ʜ:`{䜻ݰoP u=2S|>wf qAW^np(ȱM{5Zw537x6sKuMc|!;zOF힆>-%ڦ3yWw?owb'#{2& 5r3Ц^4ï89:/uSp])~=?ܤJp[*8_K}^EރRP|lno@|S oQ} +9^zK.?~c{KF^uB+i%ϾmqȾKKd -#nS-cBmOvMFtF앢߷Wl{1휱uٯŒAfIyw~Zn{WA&-"ҿ lg<#[?<2%˴\S\fp2[ϔ 1k~;:Y6Dw7Þ/ћ2o?7iDnvezylMs<ϓj/|k9_/^^Wg< > be~<{'m\?8KɿI9'soZσ= mwz<ܪbޗ8N1Bmzu|~\S!Xce~X9woMO۴9!3cFO;7"֑?A_ S7q VRF)簞8z%웞h.1l}Suqg;O\=sNo+6 SWϰb,h{׻55mvKwvbaZ;+c]9?5Y_M/>A_OC~鷢lbs_o1WŅM8E,2 yn˶ +Ci]"F00D:}7k:旌3fN>$aEAPO<ܨpk>qi*N0m|fv;߱ss}6\>Ph=G,52?ys|Pw{?yc/)ujE; Cž{7\7~/p +ľZDʖ9⸼\\/vo7s~Vƀ'|.(Ax \XG>}O|9y5zo}eڞV&<`-Y0GG,zsϳާ sPvKѸ ƼAȉI^5GgݿϽ/fkmw&/o+\MΩ4??^E [!㹰 r}Y2^Y~8/_`Ϯ alO\2{3~ܷH/|6+Ƃ Iݑ{"uyj_31]I},'EU}<="*횶\vyub?|lL|bkL5"^eGgWŽO'YOkۤro0i; {!WF~~+-?T8a|] d\y~|f;kK|Oxv֞{61t/>1c/em幅쏾Ķm~^|Z2ʟ +&C5+[wy??(isI9o2{6{{ u>#ǀ|q򀞩r/!zyU^C-ȫ0)]S/^ ;B:6p[JZ|vf&+i=sxQ>W?=?/Pvr1燸:ܿg^q=Yo*}Qe6}=C}aVǩgkgϭ4WWyJ2;Wg]3Č_sR&0m+̀2̻wݎ}O;~o6~#u\X'k~ +dޤM^Ua4_|EҶlϮgwMmeɇ.Xmve+\34#߼G,9{Ō1jhON;aW|&3w= }u.x{K^vq+x>זqv=Wq?\6 Ò!ٟ#m%?//K|s)O _wM-ۋzn9V+za |Z?iȓE ~18<^ g WԐkSgvLzYW;EUދ8qS﴾ En%w0so#\s#"<3_$u/~/_D@=S/:mgM&~8ĸ0@iw x/=,C罏۷:}n>eC~׉9W&#uk3_|E}O0^ۼώ7+*]?v.'5EstWD7~1oGe+Oq]!q(rCO'+ݽ:)Xտ-Pm,~8zuaN}yCrߝsP}q}/sI@y~)ݏ<rOҢ`wg=?!?{L?uyGj b6ϥ =nd>9m|s= ずwAA"G fe\ϝ]˺W$Mqݟ]dpuz xw%Wŗmg [iDZз‡p4 Ez<Ѥ?\4&:$zy +UfkּxF᰽X]k53].1¡Hc?kD2ڬ5=0ˏPh8hͪo֛֕d9 E3,Dێ@)7,K_WG)]Z=^ tU.DC۵01SoW5hZ" u5<єTN$N0FTRaISpPG K aXCXAGT@4jL0*cP9%BIkD_+=G^L7,8Z⭱ +%.b~jVup +[,oC!֘Y,áCP.beLpܩd,[ԍ=DEav@(Br}d*K[YLdNuBt[}Z|? I[#~*.ySh-- 4ux2ĨhF˿N_a0eho^f˥UwVVTj*k}g,c,CՏo}ZJUůP!mשXa!ݞv"Ndf$ cYۄx2J3¡ЏgPx `*;D Sz_S\ 򇒵VOW ֧šuH(oEW(`Vʏ)%jôɀz$PCS'K`J,pZ`E^ ꥨHIC!jJ$ү=~ط=.F=GyE9\Db2 9+Bq(5cnc>SjBp]U.yqk%X*'>)2[_z|"mqqYM=,VU^…rjIJp{rWi範!W9+UoTgnDbVeU5sbJb=RrO=ÁZ+p~}~LS(lxCX9-榀rtcV#dyFB c'us5h\aW(>Q,\*3ej*7KOMT8⊬^w5EZ!Pb&Nju[˺d]WPYˣ,_i,rI_ͺ͸fffЛ9._ymǟk ymY3s2ߜDN`^9ewed]˺i5gMiKBsoYpιeeޚJ^]L0D$AEi%rtk`0JoTOKw`i ׵5^Dkn 韶$QIy:=k2F98 Ftk/TNE{?5Qd5цzRHKLs$ \T+?߾nOr_eUiƓ>p^Z?!T6ɼЛItv tE\zUI !-~u- _ũD#r, +FEdlEd0Gv"!~v#;qsKG^8;iWVWV.œ3%!Y\Kk\Uw,_)4tɅX{օƝr!5n̞;$M1,yRrNW˰ëDoezƃ,L ~^f}% ++G$H26$HJ,ym +EjyN&քfΠg[inhf#3~Y( 0OC(U)\uV@<)ho2ƫ K̼>q MQWݕή] t!a$toPoG|f2L=ȿ~D +U`as(\ls^n)zךFC]<IdVKKUu[xΑ$d'uE18ڀ1++lbNGoa8@E ^,~CtW*Hbf:X у_K+T $:W.SV)_ns9zK{^ͲڭENV"+Gٯ\_JjR%%SYiU[MM| [PGq]*XR.PTf諎/L݆)4`rIU=rĮuXK4˞ Yk}S( ).ʰ⏅nJ<0e t75h eҤ+eiPo\#kriM:^,mIbf}A$<: +X! +Y%CM~w!{b'Lb~K=w$ x"jUe4GM" *C3$O҅7q}J*o+,s$P%\j_ګ:k0F2XIDگ Ce=uZfiU1a^ [lr #2ҥ*2H]d")*eRfbq k<L(HJJKR!Y^r >CF|Xs ]ËCx(jN㇣~a HCȜwY.6Sd4K)F^%~fp\,J^oKiʼOV=y7+3v ʌi}lZE/ Q2A7,B$! dF=*O¼\kT$`.[2Oelj$ 8ևvF- q'7K-Fx q]'p.o;̲nt߂Xn~] 7'Z.zʟ3QˉNajzpxO<ڌa}'Ah`g08$H2gbŸep|3~4}\ZJ<%ĥƒu5K^V@4줬CL"f?3ۻ\q?OW~$8FGSt`g^M 4WLnqp3U:ua2VS MԸvxւ*be9дNG[sFF֖qz}9Z +V{$j˻/ OBvz#\f6c*dгoHdߎ r/6m/Q^zS΄kh)VϩV]X'|Y%LrDˬkL\t- yjF@aBX36$Au*+iB^oR6D Cp\0YD4侂)_ePdoXٗ3Y 2cC7JϦlUHYCRKk 50h~ћj2H JrocQ[?-c&q |Ni2~nH:Xs32z%.wYSbd$W'w䶒E2Pzm&Kc0~.A 1}4&v&bD[᧣:FN/zqAܿKFʇn|p{ߐ__О>tLʚQ|>o?Vv7״G7> +x6S4$/hZ'獡وy3hn$h> +:s^ x +p?򃀓gy p>Ey!ρ`_Ӌ4p f7z_a9i20n yow2ӀQ;e la 0Ɣz< IFppaC9@ma\7x/CՆq僀Yx?5eZk_< 8x$9@m ]q^3`|m{ǻ@:.< X87FLvO 훠{-[~^rrK>u"\[z-V\`@_FX8 8x!1Ð>GcϿAoCe&%ƫev?~`'e5qØ *f=쀾;Q}<> ?+Z m߁qANuK{[O?9_vOσLSuM[˞fo/(7~3"(Kאv>yp/ذJo1m5 aޏ2e2~ݏ208׎y-Ϊ:4Ep ͧoiz,ی qYp~{^o 1b,PUlq~X0.P『L\=&n-ˀsG獓zG[ oQ_y{R4:<((:3++=6&XKԣ~Owt_/w.]f=kl:=;*H?7Vg4uFdSD1fgkgKqhow޶[ ;=Ƣ=EGq؀_EbrXbɠ֔ ˅CF?;ż4󍙤1n؊-cK<[G;{AQIW/RV' lS`'Ĕߞpnuؚ,7ȁSn) + +PKao8O0)};CWhggKA(oGּNgԀ٦&}աaoBU+j_\qy\9k$a".;ViNO񱊒cБ瘈y-Dvk\O;w%[njbǍ[omᄒ:y4`8c[Y1E+l4y YE/ue ;,ӶteKզ--o<0IRvYz_m l_^V'9i{X>zKkTgs GR)u4bw@pw0ِx<fo¥E'm#NE Mێ_Gc>u +"y*9 PGOHkeo +6e]"Vhepä)@_1].Aޏ1柹>taogQWݣTlݞדNw;kNV='{|'xnq@|-ȳWu|ݲѾvtmslrtw:=[;yv9W`}S9sn\˸.zmaЖͲ=({xf>@>_Ea5#sYa5$C%˭2v ږ}e BۏVay92u8Yda3?ޅ&Sɉg -$Z;;a1V5&Z2OǖX[)ø@W [M>\a (r>By;oTm#pQ.;c$;]Oe$mƸ2ř({KM)O1Vث[vDzÜ1\X0ҒE&D-+ga!9vy vt/V]X5ڳĻ}TO}qwã|s=ac˸ctwfÞHj4v{kjb}1/tywZv|sdo=v0#6og#vwɸz Я FU0ゾo?qsko5 ;OrD-۠:Y5 sߕ͎v~C9:UR=hye[{:x;k1xC'ހ18W`V9Re1m߃'}s˘x[Xqi]&Ff ># bcG]:M|R7hEp]ޘ+0JثPhG>TvzasnyÕ/S"mEXߣqjaTƋ4; +l1%V Øf5#o<8!hZum[Q'߽uP߸AA ž(uw{=Gp:kf~敛!,gt@+G8>>>ʅr QIh&i%_Y}5He^xۜ^5OyEn鞃>*\)KT34~|oGُV׍9K;: *FXefq21xJVeҧOB8g Û 6qvf! N0o/8!i-۸f7M 8!.]{GTBR-UTQyl>ݩV@*mi1_)+19sϽs3axn7jys]|v 6uv|Nt?ȱ^<g^f;29<0&)}ݿrpO +0Sx`SeXpbܾ}{=sӿWD 'Vi!B _ASXH +a"9΋U } >L7ox/N&U܅FvF+1]㪖zhX!X 괞 +ӕ]No#'r;FdW|1H[dcl?HM쁏sb85gft~M_/hú=?GwO]7ޯӰ0A6>3w~S_Ұ-J ǰ6p_Cx[j40$ePU^{WVc|ϫq?`)HMvXN'!ɸ9vvvL5|1No$s>ƍt1r@3t׸ws.A.{|ӅEŽˍ }A]b#傀~7tJ؇ӣG}M{_o+n~R iek0(c'Bz\_9izu见{{75~7uhkI1n`ܼxyXՂK~p/l>%E?Fbqo  K0lFhj,jۃsOV:+wk +E7/XeJ'ԕZ\~%%I.m`]¦l5QPƧn86>d@>E 2ˢNj0^"O7ZvBsv=6âoϳY۱muݏqs?|=Уx>Z_w+xS{'EhFE9%c8Dqq0XdNw*xO|+@?Z>H5ka4Y3d&ͥe7LV^^ce)it\Z~eXaU/1_Y;|kz3kFPQWKI17ԃ *uP`Yo}"~fVWx좇݀4t&%.kJ6:w{ã=FdNWA3a񙡇YDpaհV̀OXw1ӢeaD}~?_UgAƗ۸1VtExwE]*6wXnO{>U3g2UZJ9Z8ʓybe ;lIb_;}ojbIq?=p += ; l ~CZ,7^l\ht +k/nI8.X @-n~w(m^k3qy 1׳Ϫ̩ٽg2O,s:o r+v0Ǜ9sN?prP[.Z0^uעt.2khmºT ׄN1'֥n핸By=$g =ð:ZoXjW2 A8?ftUύʇɾF3M~Y~teփE{XIo_^s;Њ"vYmg<25k8r;dVǙ' =?n(j &Cձ!Pjx~x܎' +Ï܋3#W}9B{"0E]`tbgI<+hTÈ߂¡Oh )wrbvoЃ'lցO/ӟe~y7 +lPXBFv 8YL3eS>0OUWNk{ nѰ^OAh_Fc&cBzh"b}LѨE@mD隉tWm3Th*BG$ҠLo& *IO7)IX褉h#<0Q֓~Lk֮ţQWAI@C~6wDG)%l"lCBeOXSRhXS4 Dri[Y?Dg1;]Lǎ؋e)b_99B"xi +A⠕%I1G'^9D{!7%tM.Or6R]A3]aC ej\LI73 \ +YԓEBlJ.JӔ4:FTl{{]Uu$MF\v÷T)}^D<ʌÄ@-qJ3`Tfn;VL=*VxE)\Rz%_jB@QkQ$dW-7ai%Z-+Ԝ_AݸٯNgcUi5bV F,gMPu; O(c{[i ˊ{_S"ݤFidF(N;XUH`.te\}VۉΦk3f:iU\RZqHEӚSor\R^R8\Zv FK+%Wu}-Z/[ݱx? ERFJ:t'~4<_GDJ^`}FD/_qq}8qoqt+ )Nlj|deMҎ&g\&RG`$2tlK;*Q/fEė*%+d.ݖ )fK|ie~*NU.O 8ǻ/K|\%?O8!ϑ?lo%\&~e;R2IOݧBɞ\%H2>9ߨJT|\oeJ}%@IƟ +/sNĔ?I/G'uKHd_r$y2a_l㑼? Te67-pE/^ ?hg4Q\DWy_*U𘽳p 0=4S%Y_/q8u"AWs|1gmC$CpKbPd|9__ CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_plugin.cc.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + +# Object files for target cust_tf_parsers +cust_tf_parsers_OBJECTS = \ +"CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/framework/tf_plugin /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a9bb611dde79737be869ff0056a9bb5f34c9ea5 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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_add_custom_plugin.cc.o" + "CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..8cce2033ee640877459e75efbd7d75b68e3c042c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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_add_custom_plugin.cc.o + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..6c28a2fdcdf617e2a67adf3f62934e2a19e655f6 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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_add_custom_plugin.cc.o: ../framework/tf_plugin/tensorflow_add_custom_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/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/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/aarch64-linux-gnu/sys/select.h: + +../framework/tf_plugin/tensorflow_add_custom_plugin.cc: + +/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/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.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/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.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/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/functional: + +/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/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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ab564b315366e9116e7e5f75105bbec566fea95a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e471fdc8bd7fbf949f581db94fd24c02afe34b2c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..c535bf42276cdcd86c6127c4fd95adfb8535b346 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..062c6316bae87bff6aafc9afe9c4103aff08b755 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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_add_custom_plugin.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lgraph diff --git a/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b700c2c902219d74619014853aade0d7ec177030 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..b72c4be62481c8c358978f27edc091b5b2724300 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..bf54034fd98208c6836ccaa34e2165de2d3239ea --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d @@ -0,0 +1,184 @@ +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/Makefile b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..b816da3e0cbd76005f7b34cec1271d62da6ef828 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.o + +# target to build an object file +tensorflow_add_custom_plugin.cc.o: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.cc.o + +tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.i + +# target to preprocess a source file +tensorflow_add_custom_plugin.cc.i: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.cc.i + +tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_plugin.s + +# target to generate assembly for a file +tensorflow_add_custom_plugin.cc.s: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_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_add_custom_plugin.o" + @echo "... tensorflow_add_custom_plugin.i" + @echo "... tensorflow_add_custom_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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1001d4e039abb9cff2b839238b78de3816098176 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/cmake_install.cmake @@ -0,0 +1,67 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/framework/tf_plugin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so similarity index 76% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so rename to Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so index 5b560a882596ffbbc8311dabc96005caee719128..87e886ca87b5fb794d40c594a132a06e9113ac99 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so and b/Increase_Hsot_compute/Is_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/install_manifest.txt b/Increase_Hsot_compute/Is_increase/build_out/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..da953b21cb3506e1475c1fea716f13d11cccd84f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/install_manifest.txt @@ -0,0 +1,33 @@ +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..09d45b4765a0736ab587c31c82aeac9253654cc3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..66fdaf9c5bc2612cdd6bb7f53b118d4186a63807 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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" + "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..4a3beb18b4699ad9920afd1910077c009b44e433 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..d48737220fddfdc9d62054abbadaf87762fa6dff --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..7ec5a8f5ffe581fbbf1ea9762d5b94655863f4a2 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..621e4eb1ff09e10b0180f4399dfaa68a2dfd872b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d @@ -0,0 +1,263 @@ +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom_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/graph/utils/type_utils.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 diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1373475619581b3738ca23c01a46bd76c1cd3968 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..76762a8e098c581958fbe1179c4be461e3dfdd2e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/add_custom.cpp.o" + "CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..dac10a9f45231dafacb75f6574f64bbffd1aed46 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -0,0 +1,612 @@ +# 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 + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/op_proto.cc + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom_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/graph/utils/type_utils.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 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..ee32f0f36abb2694305ebda34f6858e1d0f62872 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make @@ -0,0 +1,1194 @@ +# 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/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/graph/utils/type_utils.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/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/graph/utils/type_utils.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: + +/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: + +../op_host/add_custom_tiling.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: + +../op_host/add_custom.cpp: + +/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/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/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/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: + +/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..00aea2a2166cd0cf975b12f723dcde014eadd86f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..437958170a48b3a6c7d205ebff07d609573ed7a7 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..500116bd6ec74c07207f47a6f4768ee037614eec --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1980c4be60686983f9e3e4ea3aaf58a3d196a6e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..4b14cc1dc1aa37d472dbfc8a2fa41782337787bc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..c6c9da1fbbe57badcf3a1b2dc6d541ee7f226e90 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..6f7c1889d179b57235d243a0ef45c41d29c4ed6e Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..d81d5ef57a8f1d7788acfbcf2180dab4d71d5062 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d @@ -0,0 +1,142 @@ +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.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 \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8d875c730476951fdfbc1b639f53e0c9bcaf2f84 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: autogen/aclnn_add_custom.cpp +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.cpp + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + +# Object files for target cust_opapi +cust_opapi_OBJECTS = \ +"CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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_add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_opapi.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9d876da097b6be339a44bbaad98b35165c800459 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..bfe574f1b6db1afe6bb545cd1cba9d6f1dcd2022 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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_add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.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 + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..56ef6b61098e09cde993f76dbda7b9df045f32af --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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_add_custom.cpp.o: autogen/aclnn_add_custom.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_add_custom.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: + +/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: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/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/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: + +autogen/aclnn_add_custom.h: + +/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: + +autogen/aclnn_add_custom.cpp: + +/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b3bb157ef98b31b6076bead4dea655c2f5a1372c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..dae58d60b8fdca49c5c52471d0043c3eafbf4b20 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..f4b2f4fafda7e2aaa1a9da9823cd1f14c66759d1 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5142feae62c78720184d9560ea460c7bf6b55931 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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_add_custom.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lascendcl -lnnopbase diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..3a86673aa7c1868ad77aa16c631effd83be0da02 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4b39b39e599a28a7451d7e1e6cae46f8e3f71bde --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..b3dd80e44a9fd2f6a32e6930439b0caab468e366 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..d4f1b25aec782bb8ec05997f314f9d04260803fc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d @@ -0,0 +1,263 @@ +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom_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/graph/utils/type_utils.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 diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..e9d2852445459b2b5baa06c2a6172b68f6c599de --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s + +# Object files for target cust_optiling +cust_optiling_OBJECTS = \ +"CMakeFiles/cust_optiling.dir/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_optiling.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..35e371cfbc32ed11a1b1737449b7c9175dc8945a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + "CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..ba3bb43902a4f1907b8054468c9bd7d28fa0c51e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -0,0 +1,314 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host/add_custom_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/graph/utils/type_utils.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 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..1fdb2c40f10d188fe858ee010fa581029fc425b8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make @@ -0,0 +1,893 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/graph/utils/type_utils.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/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/graph/utils/type_utils.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/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/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/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/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +../op_host/add_custom_tiling.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/features-time64.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: + +/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/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/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/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/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/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/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/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/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: + +../op_host/add_custom.cpp: + +/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/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: + +/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..74472e36eba2a28932ae542c70b920de2f6fda33 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe68c7fa27e765cc54c7a4b724d3af19e0f40b0c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..6d98162bed09f0ecad0e8a6d9c9ec8a6dcf6fd1c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5406749e2144ba093cf2e4588d7fd78273ea4006 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/add_custom.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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..72bb7dd025afc5824222cbd3a1e64841afc2792c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..90b30fc68eabf256c10b62b3cc955e436c2835b2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/optiling_compat.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d6c62180661baf2894b2e39b1390c4aad97bd7e7 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f6005bcf9aa9a636cea7c8c99afc1c47b58651ec --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..218ad6e5c7fb31bec1c5dc1c351cf18dde37c686 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/progress.marks b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7f8f011eb73d6043d2e6db9d2c101195ae2801f2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/CMakeFiles/progress.marks @@ -0,0 +1 @@ +7 diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/Makefile b/Increase_Hsot_compute/Is_increase/build_out/op_host/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..c7c9b70e1c87d6ce68cb5907e22f3a7ce42f262e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_host//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_add_custom.o: __/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.o + +# target to build an object file +__/autogen/aclnn_add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.cpp.o + +__/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.i + +# target to preprocess a source file +__/autogen/aclnn_add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.cpp.i + +__/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.s + +# target to generate assembly for a file +__/autogen/aclnn_add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 + +add_custom.o: add_custom.cpp.o +.PHONY : add_custom.o + +# target to build an object file +add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o +.PHONY : add_custom.cpp.o + +add_custom.i: add_custom.cpp.i +.PHONY : add_custom.i + +# target to preprocess a source file +add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i +.PHONY : add_custom.cpp.i + +add_custom.s: add_custom.cpp.s +.PHONY : add_custom.s + +# target to generate assembly for a file +add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s +.PHONY : add_custom.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_add_custom.o" + @echo "... __/autogen/aclnn_add_custom.i" + @echo "... __/autogen/aclnn_add_custom.s" + @echo "... __/autogen/op_proto.o" + @echo "... __/autogen/op_proto.i" + @echo "... __/autogen/op_proto.s" + @echo "... add_custom.o" + @echo "... add_custom.i" + @echo "... add_custom.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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_host/cmake_install.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_host/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f6146b5399a1748fb0293f0caf56b3703f90b738 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_host/cmake_install.cmake @@ -0,0 +1,125 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_host + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aclnn_add_custom.h") +endif() + diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so b/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opapi.so similarity index 86% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so rename to Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opapi.so index b49919b0e8ae7dd623b5eb673ee9cf1721bae62c..41fa718f34536d8db08a00262f00d08b9801448a 100644 Binary files a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so and b/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opapi.so differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opmaster_rt2.0.so b/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opmaster_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..bd2cb023c76abb43bb75b2e2a67a397c81c2fad8 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opmaster_rt2.0.so differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opsproto_rt2.0.so b/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opsproto_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..0459b73172cd1bca378cf90d584d525738c18cd8 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_host/libcust_opsproto_rt2.0.so differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..09d45b4765a0736ab587c31c82aeac9253654cc3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d8021222743cc99daadcba6607aed469f81b2652 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..533ecfc39068edc37496c5f20d46fe6ca8911459 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b57b3514902bdc581ce7b6f2090f38b51b58a5cd --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0e4fa1ebcb2d0d5d7bebf601f98e8703328cd19a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..5fd7c9632127fb5837a4ddc2aa20bece7b69aa1b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom + +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build: ascendc_bin_ascend310b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..38a06b015c3e023560a0fa9de37b73b7ca57a255 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e95ee76f3d9703ef8091b70a19582e24d00f765f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..58b558eb68c6d807294185f925ed321477ea370e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_0. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..41b250ca1b697e060844c278e241760f9d7898ef --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py + +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build: ascendc_bin_ascend310b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46fb4bc6149a3535eb17d2477be0ede99f4fc0e7 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..c5c85be36aa5e2e6f74f004b38461136d888143a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..2635634fb6bd8928b3caefb8d8fab2e8b1004af4 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_copy. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..aca2abb2a6f89bb885c26d18be32fc87a121d7e9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..0e8cfe1e20c09d3be02f90f8182407762c9ccf46 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src + +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make +.PHONY : ascendc_bin_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build: ascendc_bin_ascend310p +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..29f1345fc9496c14675f26c06edf36673e952b07 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..5905ecc160820e0a73ef8d9bb75d28c635236a3c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ee634a4c1431b0c147efb29f842a0061cc5ac0d3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310p. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..b0a7b4356db9a32ac8080a4577e96d20aa6cb330 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom + +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build: ascendc_bin_ascend310p_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e22e93688a2b67642c9f4ea4be7806cfbdfc1139 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..96558e28e2f2220fcfa72e786f4e140209c94145 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..568ee864e609387cc4655a71bf5bc8315bf1d85b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_0. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1cefe9a4674361cfba8b23d93cad3388abdd2538 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py + +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build: ascendc_bin_ascend310p_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bfd0aecad835c1738fb6a7a02c1c579a3d07ff26 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bbac3f403d04baf37b7a81e85e98a1b1bb699664 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..6d72996dc703fc20b387c132ea53db85586061e8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_copy. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d641e028455306f68bb6b456fe7e3ebee5ab51c9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin -s ascend310p + +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build: ascendc_bin_ascend310p_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..04065814d838ba423c04e3b879f86464249e7b06 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe676784dbc4032caa6e617f8440676aa5d85d8c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..d8cac7b847c351fe38d0b55d0d4b1564feff044c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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_ascend310p_gen_ops_config. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..fda89fde4a193cb8115a24072e16b5b51be445a3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src + +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910 +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make +.PHONY : ascendc_bin_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build: ascendc_bin_ascend910 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e6f6e4c8ff20dc23a2d6b62c17b66c8ef37a8289 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..782969025ccb8c64e90b3b22abd4daaf6d5e72ae --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e030b5a7ee789c10785cf720bb0c2605543765a9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9a77971501ffad9e7f58d5a4a3e962acb559d3af --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom + +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build: ascendc_bin_ascend910_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cb374e5db0ced9e34a5ac46e2962bc620e08e54c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..898dbaf4004189058a9b387b9b8c39959fae588b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..264efb0f0ac0357179489a980a560be33bcc9861 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_0. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2577b976e429e95eb72058aa4401ead83c59d65a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py + +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build: ascendc_bin_ascend910_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b5f35f6ac75713d63c5c8fb9c0df5ff72051fc34 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e6d1a4abe9bcb0c340eafa5bfced1f241c6da4db --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..03123d7544bd32f82ee9ff827e0db03153450acb --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_copy. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..835e67406755ecc7dadcf4dcbbd005dec2ee0a58 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin -s ascend910 + +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build: ascendc_bin_ascend910_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fe935158535a5294b1f23ef6ba62e3cba945ce4 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..4c78feda9afd2a04955572c876aced5cf1834441 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c021ce2d8f944d05bc1b308af92e7bfd7b3bef9d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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_ascend910_gen_ops_config. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9e39e4d0eb87b39a519b5d42c83b4a97d2932ce0 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src + +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make +.PHONY : ascendc_bin_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build: ascendc_bin_ascend910b +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0f5b4484aadb7aa885dce07b651783d494277a56 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..356ef894a7b9d628fe6440122b9c3d40dccdf797 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..88d46aa9ddd231b41e53be097939e3070552bb3a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910b. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..67b0a240b10771529baeb2fc740963e8f682f229 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom + +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build: ascendc_bin_ascend910b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0a2d54cf3dc6fd67677dc7081d5fc8616f0d7a3e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d4ce4f8ba12b1dba8f69fbe9508e807e22c45fae --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0950b6704c2d696eaece186f438bab6549dfd872 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_0. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c1b793f31628a2e19ed8d7eab3bb7b5aca268c4b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py + +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build: ascendc_bin_ascend910b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..6dd19a79d6e41007f82f301f87634d311ff2b00b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..0ad143cb482336abd1bbad6feaad0cff158367a3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ecb8ebe977207b0b9c883f1660ca50fad522f8a5 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_copy. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..50142f20c5efee4e2624a59a6d3e5a7a8422946a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin -s ascend910b + +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build: ascendc_bin_ascend910b_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..82891cada87e395484a36d9497ca43aadafa6e0d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..caede33a485c69655d3a61af2f2bf72a4c2473fd --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e5c001f3af05083708095ee4d076b182fd30525f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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_ascend910b_gen_ops_config. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..45f1e29feff31d9bb54f6204c608d406ef1cb060 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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-ascend310p-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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && mkdir -m 700 -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_impl_build.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && rm -rf /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/.impl_timestamp + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && touch /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0dabd8217f51de05d3c48e464f9ed87a459cca1a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e4c9fac661464ec05ea1a443edb0dc2b0b41806f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b895e90a30e456d3811a0bb2e4d043284245aacd --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..781c7de277467a8195d562b5d08164806763e9bb --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..f22de81a08499aedf65da2e9bda3cde901a46e4b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/binary.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ae76984f5565d466b92a810925e025e54471e63 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e688fdae426435b7338ad5ae7e9a8b33847b35f2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f22f6ab4259e686344dd2262cc15fc223bd41f47 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..e16bbfa1b2d88b1487b44d5a73dc1f96b86990c3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..74257cf6ebf8321bd1cdf1fd3b9dff6f31a88317 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9f8bf5f55283f2af94a1d6c3d002e1abf9fb06be --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..391e044314f82c750bb472ea75da0830fe80882c --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..e42d498a89857163707bdf7455d3193d8ed5bfe2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 12 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..a3f37c9209b7fc2eb7f4019de517756e197d3290 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310b-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0873ef7dbd668d16556df9538a9fa0bf4a335d09 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b1c31a685ba07abf8d9ee8e5c14347e18147775b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..48b406611124e445506c38d8a534c940c16a3dcf --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..7e0358250d669f4e34f1dc4a0fb4d44932f34e28 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 13 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9c388c8468a49f623337705714a06fe63cb7793e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ops_info_gen_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend310p-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p +ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make +.PHONY : ops_info_gen_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build: ops_info_gen_ascend310p +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f287b559bc0c027efc13763de2e2365c2d70d15 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend310p" + "tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d19bb709bb14351506df228db182aa100cbbb8f6 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c42f277a097a418418ede14a7bec2dc336c18cc9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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_ascend310p. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..db9f2e439e11ef2781ec53779fc020fa01a2ea5b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 14 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c84e65d9208b6e5145a2c91b90d0c4965becbca0 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ops_info_gen_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910 +ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make +.PHONY : ops_info_gen_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build: ops_info_gen_ascend910 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ddda5e8fddad294c116e69843a8829f4e7611789 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910" + "tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f0018fab5ff3d8a40c1b63606bbdb60145ae6134 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f38b3613acab3544a1ca93d23556ddb0900d2d90 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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_ascend910. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..6bdbd1465365992dad3be11acb9be72443f38ce5 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 15 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1f83f897e1301953447b37f7e862584276d10bc8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out + +# Utility rule file for ops_info_gen_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/autogen/aic-ascend910b-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b +ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make +.PHONY : ops_info_gen_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build: ops_info_gen_ascend910b +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a4652c5b2ad65cb30b012f83f4c93bb1aca0dde --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910b" + "tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..de46960c131f3e7df591cd8804f02fdb8ad3d1b3 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..92989fc6e53d3136aec2bcc4e72270f683fa176a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend910b. diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..0b890e87759b3c0771a961d0361c64e8e5d7fd17 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 16 + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/progress.marks b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..1e8b314962144c26d5e0e50fd29d2ca327864913 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/CMakeFiles/progress.marks @@ -0,0 +1 @@ +6 diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/Makefile b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..ab1dfe1897fe56bf2f5de5c252a24434ad07a44e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/Makefile @@ -0,0 +1,556 @@ +# 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 = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_bin_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" +.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 /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json similarity index 70% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index 3bc87ad15a85ab4f8c1d19babf972a8f35b915fc..750d8560cfb35993ff96cf3d122e88b75bd0e1cf 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -1,15 +1,15 @@ { - "binFileName": "AddCustom_ccd748392d99d04b8205210970fde2b9", + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "binFileSuffix": ".o", "blockDim": -1, "coreType": "VectorCore", "core_type": "AIV", - "kernelName": "AddCustom_ccd748392d99d04b8205210970fde2b9", + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "magic": "RT_DEV_BINARY_MAGIC_ELF", "memoryStamping": [], - "opParaSize": 32, + "opParaSize": 24, "parameters": [], - "sha256": "8b5d1dd6651ccc194f491b68aae56e4d0d2e545c759d0801fd8b8303d8f5a8db", + "sha256": "a72d7cae92e44648fafbee2c99955debde936e315245eda1f7047bc4351466d0", "workspace": { "num": 1, "size": [ @@ -21,7 +21,7 @@ }, "kernelList": [ { - "kernelName": "AddCustom_ccd748392d99d04b8205210970fde2b9_0" + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" } ], "optionalInputMode": "gen_placeholder", @@ -31,15 +31,15 @@ "int64Mode": false, "simplifiedKeyMode": 0, "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", "inputs": [ { "name": "x", "index": 0, - "dtype": "float32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -49,7 +49,7 @@ { "name": "y", "index": 1, - "dtype": "float32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -61,7 +61,7 @@ { "name": "z", "index": 0, - "dtype": "float32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..0b215321d0182a7d7a7dd979be14bd30a795b459 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/No_double_buffer/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 b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/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 rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..6407a8c2dd874815d7afc5d1a59e16b26ec3efe0 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..290177edc5f880076fff01caf639d846fdb95e42 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9d2a806e3392787d107f16296287ea7fa7a0fce8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp @@ -0,0 +1,56 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..6e7b33bd32eeea382b365b8330afed024bb035c9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 24, + "parameters": [], + "sha256": "68949a7d5bc4881861b4930a8ea7fa1fc013719b853b8e614dd48f79988ed635", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..21c975579fde16d41a03d1581d6b0ee398e79785 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..2b78b6584f7338085d4e214d32929c2ca8b0c484 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ba42278be1c7ac873919877845a6e0233e70a24 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9d2a806e3392787d107f16296287ea7fa7a0fce8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp @@ -0,0 +1,56 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..84056e77bee58af5944897775f9cf31192a4e7e5 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 24, + "parameters": [], + "sha256": "62a21e3773526418fdfcc39e10275e8461683341c4def7ed6cf0f2e7c0c0e922", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..d47eeac5bbc48abc9833cd39a084f91ac67304ba Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..1a5c0a28c7f495881db13b2026bbf73a4e22ee5a --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8a06134f1d0dfa2939a994bcb708cc6349320ecf Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9d2a806e3392787d107f16296287ea7fa7a0fce8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp @@ -0,0 +1,56 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json similarity index 71% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index ac530db68c1fbb1783acb7a33d677a12b4613f4d..9b5a6d7e087e823d19efe6efdf6b9d731a730468 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -1,16 +1,16 @@ { - "binFileName": "AddCustom_ccd748392d99d04b8205210970fde2b9", + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "binFileSuffix": ".o", "blockDim": -1, "coreType": "VectorCore", "core_type": "AIV", "intercoreSync": 0, - "kernelName": "AddCustom_ccd748392d99d04b8205210970fde2b9", + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "magic": "RT_DEV_BINARY_MAGIC_ELF_AIVEC", "memoryStamping": [], - "opParaSize": 32, + "opParaSize": 24, "parameters": [], - "sha256": "5e95107b13cc9193ef547af7e5f10af62e698bd259dae583ac2e1487d9b1ed02", + "sha256": "f3635436b52d4e255e079e7e0821bbf6e1ec9ddc2aa51ff15d06bf1c37981f57", "workspace": { "num": 1, "size": [ @@ -22,7 +22,7 @@ }, "kernelList": [ { - "kernelName": "AddCustom_ccd748392d99d04b8205210970fde2b9_0" + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" } ], "optionalInputMode": "gen_placeholder", @@ -32,15 +32,15 @@ "int64Mode": false, "simplifiedKeyMode": 0, "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", "inputs": [ { "name": "x", "index": 0, - "dtype": "float32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -50,7 +50,7 @@ { "name": "y", "index": 1, - "dtype": "float32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -62,7 +62,7 @@ { "name": "z", "index": 0, - "dtype": "float32", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..a577be8145e046227330bb27bd5245d3d9bef3e1 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..b74148782408bf391910a28750ed440455df6e35 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c99c2ce8328ee5005d4fd9beec0887ea15e60f15 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9d2a806e3392787d107f16296287ea7fa7a0fce8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp @@ -0,0 +1,56 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/cmake_install.cmake b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc99b1f6500089965a91d9709ae811a4f443a567 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/cmake_install.cmake @@ -0,0 +1,120 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/ascend310p" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom") +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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.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/config/ascend310b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom") +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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-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/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom") +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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.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/config/ascend910b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-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/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom") +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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/Is_increase/op_kernel/add_custom.cpp") +endif() + diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/.impl_timestamp b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/.impl_timestamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/dynamic/add_custom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_double_bufer/No_double_buffer/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 b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json similarity index 83% rename from Increase_double_bufer/No_double_buffer/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 rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/No_double_buffer/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 +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json similarity index 83% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json similarity index 83% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json similarity index 83% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +++ b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json b/Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json similarity index 100% rename from Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json rename to Increase_Hsot_compute/Is_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json diff --git a/Increase_Hsot_compute/Is_increase/build_out/scripts/install.sh b/Increase_Hsot_compute/Is_increase/build_out/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/scripts/upgrade.sh b/Increase_Hsot_compute/Is_increase/build_out/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/build_out/version.info b/Increase_Hsot_compute/Is_increase/build_out/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/build_out/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/Increase_Hsot_compute/Is_increase/cmake/config.cmake b/Increase_Hsot_compute/Is_increase/cmake/config.cmake new file mode 100644 index 0000000000000000000000000000000000000000..886119daadd85495676c07dfb0b629e3deab8ccf --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/func.cmake b/Increase_Hsot_compute/Is_increase/cmake/func.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ad187e7d6c0a7c801d0d791d3fab38b2e9d4e71f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/func.cmake @@ -0,0 +1,228 @@ + +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_ops_replay_targets) + cmake_parse_arguments(OPREPLAY "" "OPS_INFO;COMPUTE_UNIT;IMPL_DIR;OUT_DIR;INSTALL_DIR" "OPS_BATCH;OPS_ITERATE" ${ARGN}) + # ccec compile options + set(ccec_base_opts -c -O2 --cce-aicore-only -mllvm -cce-aicore-function-stack-size=16000 + -mllvm -cce-aicore-record-overflow=false -std=c++17) + set(ccec_extopts_ascend310p --cce-aicore-arch=dav-m200 -mllvm -cce-aicore-fp-ceiling=2) + set(ccec_extopts_ascend910 --cce-aicore-arch=dav-c100) + set(ccec_extopts_ascend910b --cce-aicore-arch=dav-c220-cube) + file(MAKE_DIRECTORY ${OPREPLAY_OUT_DIR}) + execute_process(COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_replay_build.py + ${OPREPLAY_OPS_INFO} + "${OPREPLAY_OPS_BATCH}" "${OPREPLAY_OPS_ITERATE}" + ${OPREPLAY_IMPL_DIR} + ${OPREPLAY_OUT_DIR} + ${OPREPLAY_COMPUTE_UNIT} + ) + file(GLOB replay_kernel_entries ${OPREPLAY_OUT_DIR}/*.cce) + if (NOT "${replay_kernel_entries}x" STREQUAL "x") + foreach(replay_kernel_file ${replay_kernel_entries}) + get_filename_component(replay_kernel_file_name "${replay_kernel_file}" NAME) + string(REPLACE "_entry.cce" "" op_kerne_name ${replay_kernel_file_name}) + file(GLOB replay_lib_src ${OPREPLAY_OUT_DIR}/${op_kerne_name}*.cpp) + set(OP_TILING_DATA_H_PATH ${OPREPLAY_OUT_DIR}/${op_kerne_name}_tiling_data.h) + add_library(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} SHARED ${replay_lib_src}) + if(EXISTS ${OP_TILING_DATA_H_PATH}) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -include ${OP_TILING_DATA_H_PATH} + ) + endif() + target_compile_definitions(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + ${op_kerne_name}=${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + ) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -D__ASCENDC_REPLAY__ + ) + target_link_libraries(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE intf_pub + tikreplaylib::${OPREPLAY_COMPUTE_UNIT} + register + ) + add_custom_command(OUTPUT ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + COMMAND ccec ${ccec_base_opts} ${ccec_extopts_${OPREPLAY_COMPUTE_UNIT}} ${replay_kernel_file} + -o ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DEPENDS ${replay_kernel_file} + ) + add_custom_target(replay_kernel_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} ALL + DEPENDS ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + ) + install(TARGETS replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + install(FILES ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + endforeach() + 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} + 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 + ) +endfunction() diff --git a/Increase_Hsot_compute/Is_increase/cmake/intf.cmake b/Increase_Hsot_compute/Is_increase/cmake/intf.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2f362c396622d66132f80f54492a8cc3204882fb --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/makeself.cmake b/Increase_Hsot_compute/Is_increase/cmake/makeself.cmake new file mode 100644 index 0000000000000000000000000000000000000000..48c565bfb4f2edc6534a81abaa8565c4cf2dfc30 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/__init__.py b/Increase_Hsot_compute/Is_increase/cmake/util/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c4ddc893a9275672e046b1311c6ee2d1578f405e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc b/Increase_Hsot_compute/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df31c759e3666b6417142d1054a91d02558f1d0d Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/Increase_Hsot_compute/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1073039745b65a0b6adcdc88f2375af8c2a1a340 Binary files /dev/null and b/Increase_Hsot_compute/Is_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_bin_param_build.py b/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_bin_param_build.py new file mode 100644 index 0000000000000000000000000000000000000000..decf34544880c68fd89e809b15d415844b9882e6 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_bin_param_build.py @@ -0,0 +1,129 @@ +#!/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] + 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] + 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() + atype = atype.replace('list', 'list_') + 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 = 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/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_impl_build.py b/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_impl_build.py new file mode 100644 index 0000000000000000000000000000000000000000..7fe177da1e5e8c0931189a1810f83fc3f42d9204 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_impl_build.py @@ -0,0 +1,446 @@ +#!/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 stat +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 + +''' + +IMPL_API = ''' +@tbe_register.register_operator("{}") +@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"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "{}" + ascendc_src_file = "{}" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) +''' + +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 {}") + 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 = [{}]) + 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', 'listInt': '[]', + 'listFloat': '[]', 'listBool': '[]', 'listListInt': '[[]]', 'str': ''} + + +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 + + +class AdpBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + self.argsname = [] + 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() + att_type = att_type.replace('LIST', 'LIST_') + 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) + + 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(' __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(' __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(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, kern_name, self.op_type, ', '.join(self.input_name),\ + ', '.join(self.output_name), 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/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_ops_config.py b/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_ops_config.py new file mode 100644 index 0000000000000000000000000000000000000000..7a97180beda87facffebb18a9784264f6e0e8964 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_ops_config.py @@ -0,0 +1,114 @@ +#!/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, 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') + 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} + 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') + 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, 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/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_replay_build.py b/Increase_Hsot_compute/Is_increase/cmake/util/ascendc_replay_build.py new file mode 100644 index 0000000000000000000000000000000000000000..1cac7d911b84df4f3ef3a83ce9cac65ce2e89e0b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/batch_replay_impl.temp b/Increase_Hsot_compute/Is_increase/cmake/util/batch_replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..0e88346642009514af64265b4da24c9946e3ebbf --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/code_channel_infer.py b/Increase_Hsot_compute/Is_increase/cmake/util/code_channel_infer.py new file mode 100644 index 0000000000000000000000000000000000000000..137c9f39fa8609cd0cf672388c1066e85aff792f --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/code_channel_infer.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. +""" +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 ccec 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 + if params.compile_options is None: + compile_options = [] + else: + compile_options = params.compile_options + ccec = shutil.which("ccec") + if ccec is not None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + compile_options.append("-I" + tikcpp_path) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + compile_options += ["-include", params.tiling_header] + arch = "dav-c220-cube" + sub_core_type = "AIC" + optional_core = "AiCore" + compile_cmd = [shutil.which("ccec"), '-c', '-O3'] + compile_cmd += compile_options + temp_file_name_tag = "_" + str(os.getpid()) + "_temp.o" + dst_file = os.path.join(kernel_meta_dir, kernel_name + temp_file_name_tag) + compile_cmd += [params.src_file, "--cce-aicore-arch={}".format(arch), + "--cce-aicore-only", "-o", dst_file, + "-mllvm", "-cce-aicore-function-stack-size=16000", + "-mllvm", "-cce-aicore-record-overflow=true", + "-mllvm", "-cce-aicore-addr-transform"] + compile_cmd += ["-std=c++17"] + print('get_code_channel: ', ' '.join(compile_cmd)) + proc = subprocess.Popen( + compile_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel coretype compile error: ', out.decode()) + msg = "compile %s error :%s\n" % (params.src_file, out.decode()) + raise Exception(f"get_code_channel coretype error, msg is{msg}") + objdump_cmd = ['objdump', '-s', '-j', '.text', '{}'.format(dst_file)] + + proc = subprocess.Popen( + objdump_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel objdump error: ', out.decode()) + msg = "get_code_channel objdump %s error :%s\n" % (src_file, out.decode()) + raise Exception(f"get_code_channel objdump error, msg is{msg}") + os.remove(dst_file) + lines = out.decode('utf-8').split('\n') + for line in lines: + insts = line.strip().split() + if len(insts) < 5: + continue + for inst in insts[1:]: + if len(inst) != 8: + continue + if inst[6] == 'f': + return CODE_MIX + return CODE_VEC diff --git a/Increase_Hsot_compute/Is_increase/cmake/util/const_var.py b/Increase_Hsot_compute/Is_increase/cmake/util/const_var.py new file mode 100644 index 0000000000000000000000000000000000000000..8b32c3b915d0aaaf1f366cf95cf1a337e8959c89 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/gen_impl_and_mrege_json.sh b/Increase_Hsot_compute/Is_increase/cmake/util/gen_impl_and_mrege_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..55e12e5edff6d1d39207db0c439a15fcb8656951 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/gen_impl_and_mrege_json.sh @@ -0,0 +1,57 @@ +#!/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 ai_core operators implements +# tbe_impl_files_num=$(ls $project_path/tbe/impl/* 2> /dev/null | wc -l) +# if [[ "$tbe_impl_files_num" -gt 0 ]];then +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/ai_core/tbe/customize_impl +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/vector_core/tbe/customize_impl +# 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 + +# merge aicpu.ini and aicore.ini to generate npu_supported_ops.json +# mkdir -p ${build_path}/framework/op_info_cfg +# mkdir -p ${build_path}/framework/op_info_cfg/aicpu_kernel +# mkdir -p ${build_path}/framework/op_info_cfg/ai_core + +# if [[ -d "${project_path}/tbe/op_info_cfg/ai_core" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/tbe/op_info_cfg/ai_core ${build_path}/framework/op_info_cfg/ai_core +# fi + +# if [[ -d "${project_path}/cpukernel/op_info_cfg/aicpu_kernel" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/cpukernel/op_info_cfg/aicpu_kernel ${build_path}/framework/op_info_cfg/aicpu_kernel +# fi + +# aicpu_filter_file=${build_path}/framework/op_info_cfg/aicpu_kernel/npu_supported_ops.json +# aicore_filter_file=${build_path}/framework/op_info_cfg/ai_core/npu_supported_ops.json +# if [[ -f "${aicpu_filter_file}" ]] && [[ ! -f "${aicore_filter_file}" ]]; then +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi +# if [[ -f "${aicore_filter_file}" ]] && [[ ! -f "${aicpu_filter_file}" ]]; then +# cp $aicore_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + +# if [[ -f "${aicore_filter_file}" ]] && [[ -f "${aicpu_filter_file}" ]]; then +# chmod u+w ${aicpu_filter_file} +# python3 ${project_path}/cmake/util/insert_op_info.py ${aicore_filter_file} ${aicpu_filter_file} +# chmod u-w ${aicpu_filter_file} +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + diff --git a/Increase_Hsot_compute/Is_increase/cmake/util/gen_ops_filter.sh b/Increase_Hsot_compute/Is_increase/cmake/util/gen_ops_filter.sh new file mode 100644 index 0000000000000000000000000000000000000000..d4c27d17feb8617dfee0f6fd3262c36583033339 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/gen_version_info.sh b/Increase_Hsot_compute/Is_increase/cmake/util/gen_version_info.sh new file mode 100644 index 0000000000000000000000000000000000000000..a06cfc78d29482807d086b880375533cd0a3679e --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/insert_op_info.py b/Increase_Hsot_compute/Is_increase/cmake/util/insert_op_info.py new file mode 100644 index 0000000000000000000000000000000000000000..28ba08757c9301391a8f4005ae8fb0b290e43950 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/insert_simplified_keys.py b/Increase_Hsot_compute/Is_increase/cmake/util/insert_simplified_keys.py new file mode 100644 index 0000000000000000000000000000000000000000..ace727b903b1de37e6feece649cd20f242d94798 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/insert_simplified_keys.py @@ -0,0 +1,248 @@ +#!/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 glob +import json +import argparse +import const_var + + +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, + 'string': 13, + 'dual': 14, + 'dual': 15, + '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') + bin_suffix = contents.get('binFileSuffix') + # '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/Increase_Hsot_compute/Is_increase/cmake/util/kernel_entry.py b/Increase_Hsot_compute/Is_increase/cmake/util/kernel_entry.py new file mode 100644 index 0000000000000000000000000000000000000000..2b77c970d4e6c1f0aaca07572cd8c7221ac00e22 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/kernel_impl.temp b/Increase_Hsot_compute/Is_increase/cmake/util/kernel_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..5079a1043a25cd6b73449e708ceae40807cb03a1 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/COPYING b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/COPYING new file mode 100644 index 0000000000000000000000000000000000000000..d159169d1050894d3ea3b98e1c965c4058208fe1 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/README.md b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b41f0168201e8596e6cb8dc8754d606581d18dcf --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/VERSION b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/VERSION new file mode 100644 index 0000000000000000000000000000000000000000..59aa62c1fa4c234af19118ff8d8572c1d50437fd --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/VERSION @@ -0,0 +1 @@ +2.4.5 diff --git a/Increase_Hsot_compute/Is_increase/cmake/util/makeself/make-release.sh b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/make-release.sh new file mode 100644 index 0000000000000000000000000000000000000000..b5692d49071716e68c821688b9ded040bd3a11c4 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself-header.sh b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself-header.sh new file mode 100644 index 0000000000000000000000000000000000000000..9409031483e2bc377d344d64b34b13877a0afd7b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.1 b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.1 new file mode 100644 index 0000000000000000000000000000000000000000..81bf6e4ff4cfeb226c0a0992d8e6d2b94dd4f172 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.lsm b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.lsm new file mode 100644 index 0000000000000000000000000000000000000000..3c4cea8c18982e288f0d51eba9b4d97f0f708f32 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.sh b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/makeself.sh new file mode 100644 index 0000000000000000000000000000000000000000..c8ea565971c5ac03c775a665596a593287881708 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/makeself/run-tests.sh b/Increase_Hsot_compute/Is_increase/cmake/util/makeself/run-tests.sh new file mode 100644 index 0000000000000000000000000000000000000000..31ee1651156c64caddfdadd683d4dc2d0be3ddc4 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/merge_aicpu_info_json.sh b/Increase_Hsot_compute/Is_increase/cmake/util/merge_aicpu_info_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..a977bd51d2e98a1511db4296070a8dda6b90a262 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/opdesc_parser.py b/Increase_Hsot_compute/Is_increase/cmake/util/opdesc_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..c38e79edc89a80b528581afafdbc119db68ea590 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/opdesc_parser.py @@ -0,0 +1,260 @@ +#!/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", + "ascend910b3": "ascend910b", + "ascend910b4": "ascend910b", + "ascend310p1": "ascend310p", + "ascend310p3": "ascend310p", + "ascend310p3vir01": "ascend310p", + "ascend310p3vir02": "ascend310p", + "ascend310p3vir04": "ascend310p", + "ascend310p3vir08": "ascend310p", + "ascend310b1": "ascend310b", + "bs9sx1aa": "bs9sx1a" +} + + +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_type = [] + self.input_dtype = [] + self.input_fmt = [] + self.output_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_name.append(self._parse_str(conf)) + 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_name.append(self._parse_str(conf)) + 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) + + 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._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/Increase_Hsot_compute/Is_increase/cmake/util/parse_ini_to_json.py b/Increase_Hsot_compute/Is_increase/cmake/util/parse_ini_to_json.py new file mode 100644 index 0000000000000000000000000000000000000000..721465fee306bfca8895e2991ba06d1547c9eb2b --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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"] +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: + # Only the owner and group have rights + os.chmod(json_file_real_path, stat.S_IWGRP + 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/Increase_Hsot_compute/Is_increase/cmake/util/preset_parse.py b/Increase_Hsot_compute/Is_increase/cmake/util/preset_parse.py new file mode 100644 index 0000000000000000000000000000000000000000..8f1124b1db30f552915958bc14066b8783f6ef74 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/replay_codegen.py b/Increase_Hsot_compute/Is_increase/cmake/util/replay_codegen.py new file mode 100644 index 0000000000000000000000000000000000000000..1baa364ef8b3a7dee9ea1f9ce53e7c06641a2d02 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/replay_impl.temp b/Increase_Hsot_compute/Is_increase/cmake/util/replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..1d30dd8658e0a72200b3d5222e11d29170e21f57 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/cmake/util/tiling_data_def_build.py b/Increase_Hsot_compute/Is_increase/cmake/util/tiling_data_def_build.py new file mode 100644 index 0000000000000000000000000000000000000000..a96304261c9369c9b2e24c5f2485615c0835f277 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/cmake/util/tiling_data_def_build.py @@ -0,0 +1,84 @@ +#!/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 += ' memcpy(const_data, tiling, sizeof({}));\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/Increase_Hsot_compute/Is_increase/framework/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/framework/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6be9b492610f4d45b25bb7725648df9aac39a12 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/framework/tf_plugin/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/framework/tf_plugin/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6aba5c207d3b85ad16fdea69dd813dd6cc371b1 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc b/Increase_Hsot_compute/Is_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc new file mode 100644 index 0000000000000000000000000000000000000000..2cd837ce58d9aba9d65d15d57c5fe74adac868c4 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/framework/tf_plugin/tensorflow_add_custom_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("AddCustom") + .FrameworkType(TENSORFLOW) // type: CAFFE, TENSORFLOW + .OriginOpType("Add") // name in tf module + .ParseParamsByOperatorFn(AutoMappingByOpFn); +} // namespace domi diff --git a/Increase_Hsot_compute/Is_increase/op_host/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/op_host/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..40dd51cfac524b0a9607b7d8b2813edd2210c509 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp b/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d5351e1f029dae72af390bac82699e7f8acfb06d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/op_host/add_custom.cpp @@ -0,0 +1,89 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2023-2024. 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 "add_custom_tiling.h" +#include "register/op_def_registry.h" +#include "graph/utils/type_utils.h" +#include "tiling/platform/platform_ascendc.h" + + +namespace optiling { +const uint32_t BLOCK_DIM = 8; +const uint32_t TILE_NUM = 8; +static ge::graphStatus TilingFunc(gert::TilingContext *context) +{ + TilingData tiling; + uint32_t totalLength = context->GetInputShape(0)->GetOriginShape().GetShapeSize(); + context->SetBlockDim(1); + uint64_t ubSize; + auto ascendcPlatform = platform_ascendc::PlatformAscendC(context->GetPlatformInfo()); + ascendcPlatform.GetCoreMemSize(platform_ascendc::CoreMemType::UB, ubSize); + uint32_t AllNum = context->GetInputShape(0)->GetStorageShape().GetShapeSize(); + tiling.set_UbSize(ubSize); + tiling.set_AllNum(AllNum); + tiling.set_CoreNum(7); + + + + 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 optiling + +namespace ge { +static 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 ge + +namespace ops { +class AddCustom : public OpDef { +public: + explicit AddCustom(const char *name) : OpDef(name) + { + this->Input("x") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Input("y") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Output("z") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + + this->SetInferShape(ge::InferShape).SetInferDataType(ge::InferDataType); + this->AICore() + .SetTiling(optiling::TilingFunc) + .AddConfig("ascend910") + .AddConfig("ascend310p") + .AddConfig("ascend310b") + .AddConfig("ascend910b"); + } +}; +OP_ADD(AddCustom); +} // namespace ops diff --git a/Increase_Hsot_compute/Is_increase/op_host/add_custom_tiling.h b/Increase_Hsot_compute/Is_increase/op_host/add_custom_tiling.h new file mode 100644 index 0000000000000000000000000000000000000000..0734dfadd51f6e757a942d2280dea3ca17adf40d --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/op_host/add_custom_tiling.h @@ -0,0 +1,26 @@ +/** + * @file add_custom_tiling.h + * + * Copyright (C) 2023-2024. 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 ADD_CUSTOM_TILING_H +#define ADD_CUSTOM_TILING_H +#include "register/tilingdata_base.h" + +namespace optiling { +BEGIN_TILING_DATA_DEF(TilingData) + +TILING_DATA_FIELD_DEF(uint32_t, totalLength); +TILING_DATA_FIELD_DEF(uint32_t, tileNum); + TILING_DATA_FIELD_DEF(uint32_t, CoreNum); + TILING_DATA_FIELD_DEF(uint32_t, AllNum); + TILING_DATA_FIELD_DEF(uint32_t, UbSize); +END_TILING_DATA_DEF; + +REGISTER_TILING_DATA_CLASS(AddCustom, TilingData) +} // namespace optiling +#endif // ADD_CUSTOM_TILING_H diff --git a/Increase_Hsot_compute/Is_increase/op_kernel/CMakeLists.txt b/Increase_Hsot_compute/Is_increase/op_kernel/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/op_kernel/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/Is_increase/op_kernel/add_custom.cpp b/Increase_Hsot_compute/Is_increase/op_kernel/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9d2a806e3392787d107f16296287ea7fa7a0fce8 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/op_kernel/add_custom.cpp @@ -0,0 +1,56 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_Hsot_compute/Is_increase/output/AddCustom_case_20240821114242.json b/Increase_Hsot_compute/Is_increase/output/AddCustom_case_20240821114242.json new file mode 100644 index 0000000000000000000000000000000000000000..4b5f7932922660fa7eab026bdabdc3b6fa67a782 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/output/AddCustom_case_20240821114242.json @@ -0,0 +1,58 @@ +[ + { + "case_name": "Test_AddCustom_001", + "op": "AddCustom", + "input_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "x" + }, + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "y" + } + ], + "output_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "name": "z" + } + ] + } +] \ No newline at end of file diff --git a/Increase_Hsot_compute/Is_increase/scripts/install.sh b/Increase_Hsot_compute/Is_increase/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/Is_increase/scripts/upgrade.sh b/Increase_Hsot_compute/Is_increase/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Hsot_compute/Is_increase/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/Increase_Hsot_compute/No_increase/CMakeLists.txt b/Increase_Hsot_compute/No_increase/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..584132d80993d309434fb1303de83910a1989aba --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/CMakePresets.json b/Increase_Hsot_compute/No_increase/CMakePresets.json new file mode 100644 index 0000000000000000000000000000000000000000..f0933976520a982d22bfb3e19833a9d5e5698e08 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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": "ascend310p;ascend310b;ascend910;ascend910b" + }, + "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++" + } + } + } + ] +} diff --git a/Increase_Hsot_compute/No_increase/build.sh b/Increase_Hsot_compute/No_increase/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..4be96d7d8b99f0dd4b8052a16d17afe9c809fb54 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build.sh @@ -0,0 +1,37 @@ +#!/bin/bash +script_path=$(realpath $(dirname $0)) + + +mkdir -p build_out +rm -rf build_out/* +cd build_out + +cmake_version=$(cmake --version | grep "cmake version" | awk '{print $3}') +if [ "$cmake_version" \< "3.19.0" ] ; then + opts=$(python3 $script_path/cmake/util/preset_parse.py $script_path/CMakePresets.json) + echo $opts + cmake .. $opts +else + cmake .. --preset=default +fi +target=package +if [ "$1"x != ""x ]; then target=$1; fi + +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 exit 1; fi + cmake --build . --target $target -j16 + fi +fi + +# for debug +# cd build_out +# make +# cpack +# verbose append -v diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeCache.txt b/Increase_Hsot_compute/No_increase/build_out/CMakeCache.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9414e830d545c2a94e5d6f3e16167a256b80c17 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeCache.txt @@ -0,0 +1,425 @@ +# This is the CMakeCache file. +# For build in directory: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=ascend310p;ascend310b;ascend910;ascend910b + +//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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +//Value Computed by CMake +opp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +opp_SOURCE_DIR:STATIC=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +//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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase +//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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0c0b1de27a84397ebfeef2c8c3b6b19603608c1f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f59b84fb1dde571d148db8893f9869d15fbb300d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..dfdc241f48036b01323e7889d7e41cfab5b12a27 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..dae91e61db120ab592d3b69561d9381c0d03a8cd Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e7ba5ca6e4c2cf8c2c4c9f46dd172c4bb4728f67 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000000000000000000000000000000000..41b99d7783c1e447962d3183b641863e61a8edd0 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100644 index 0000000000000000000000000000000000000000..e8a72558d96dcc6624712e8c2160f02c6c9e0f9f Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000000000000000000000000000000..25c62a8c3cb40764ac539370df9ec347bdd99b79 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100644 index 0000000000000000000000000000000000000000..47c74a11ebba8f57647130a4389f88befac42ec5 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fcb26a122b6159e15d1f2652e6d8fa654507ca4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeOutput.log b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000000000000000000000000000000..53bdaccadba7edb1b34f0a74b9d67299921ec924 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_9e105/fast && /usr/bin/gmake -f CMakeFiles/cmTC_9e105.dir/build.make CMakeFiles/cmTC_9e105.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_9e105.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_9e105.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_9e105.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_9e105.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/cc0XeKD0.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_9e105.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_9e105.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.o /tmp/cc0XeKD0.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_9e105.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_9e105 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9e105.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.o -o cmTC_9e105 +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_9e105' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_9e105.' + /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/ccL6K5pP.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_9e105 /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_9e105.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_9e105' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_9e105.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_9e105/fast && /usr/bin/gmake -f CMakeFiles/cmTC_9e105.dir/build.make CMakeFiles/cmTC_9e105.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_9e105.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_9e105.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_9e105.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_9e105.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/cc0XeKD0.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_9e105.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_9e105.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.o /tmp/cc0XeKD0.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_9e105.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_9e105] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9e105.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_9e105.dir/CMakeCCompilerABI.c.o -o cmTC_9e105 ] + 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_9e105' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_9e105.'] + 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/ccL6K5pP.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_9e105 /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_9e105.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/ccL6K5pP.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_9e105] ==> 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_9e105.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: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_caf22/fast && /usr/bin/gmake -f CMakeFiles/cmTC_caf22.dir/build.make CMakeFiles/cmTC_caf22.dir/build +gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_caf22.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_caf22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_caf22.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_caf22.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/ccFJlmDe.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_caf22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_caf22.dir/' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccFJlmDe.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_caf22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_caf22 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_caf22.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_caf22 +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_caf22' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_caf22.' + /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/ccjdLQbw.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_caf22 /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_caf22.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_caf22' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_caf22.' +gmake[1]: Leaving directory '/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_caf22/fast && /usr/bin/gmake -f CMakeFiles/cmTC_caf22.dir/build.make CMakeFiles/cmTC_caf22.dir/build] + ignore line: [gmake[1]: Entering directory '/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_caf22.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_caf22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_caf22.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_caf22.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/ccFJlmDe.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_caf22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_caf22.dir/'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccFJlmDe.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_caf22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_caf22] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_caf22.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_caf22.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_caf22 ] + 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_caf22' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' '-dumpdir' 'cmTC_caf22.'] + 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/ccjdLQbw.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_caf22 /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_caf22.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/ccjdLQbw.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_caf22] ==> 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_caf22.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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeRuleHashes.txt b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000000000000000000000000000000000000..e392f834fd086584ee5d7e95c3642f0bbf0f01c5 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,33 @@ +# Hashes of file build rules. +c6660c849eac4fcff280ba3ea88e5ceb CMakeFiles/gen_version_info +0b454d410f848d71087608cccf613358 CMakeFiles/modify_vendor +456411263fbb98bed1e348afb75a546f op_host/CMakeFiles/optiling_compat +d59531fe189f0541d2fbe66d7d5e082b op_kernel/CMakeFiles/ascendc_bin_ascend310b +9c6308ff05329748c658d45e66688ab3 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +aebea01d4b0b74851a88c989f7fbbab8 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +994a3c5aafe14c61d90cec0ede123702 op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config +41435394c41010d70d395b830be85119 op_kernel/CMakeFiles/ascendc_bin_ascend310p +2e0d0721717e26af0713212314c211ba op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +78bf64bee5a6f9d2626f5753d51ae248 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +e480541272b4d751022c9d49b2996f60 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +6194163c2543c3f8e9e747a9985ed2e4 op_kernel/CMakeFiles/ascendc_bin_ascend910 +eb66b316361b15dcd34c7c24583b691d op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +e0f4657f0452ba28fb6db6432d93e5c9 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +9013a224492d6809aade1a4781ab26a9 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +3b8efcceef545e37a5763fb0bd37896b op_kernel/CMakeFiles/ascendc_bin_ascend910b +80e705e1e54cc9b86b9a584b3e47cec4 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +f761d8040f82041d4da41a4e7083e74e op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +2bc0ae759b2fb2e3859e1219f037ce7e op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +9d1cebe5ca6ada30605e44437e3d5cab op_kernel/CMakeFiles/ascendc_impl_gen +9d1cebe5ca6ada30605e44437e3d5cab op_kernel/CMakeFiles/npu_supported_ops +9d1cebe5ca6ada30605e44437e3d5cab op_kernel/CMakeFiles/ops_info_gen_ascend310b +9d1cebe5ca6ada30605e44437e3d5cab op_kernel/CMakeFiles/ops_info_gen_ascend310p +9d1cebe5ca6ada30605e44437e3d5cab op_kernel/CMakeFiles/ops_info_gen_ascend910 +9d1cebe5ca6ada30605e44437e3d5cab op_kernel/CMakeFiles/ops_info_gen_ascend910b +0df2b299949242f4cc289e3011a0d3f6 op_kernel/tbe/.impl_timestamp +215ed2ff5de6d4b08ebad6601bb540df op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json +f0d7165c9059dab6d9a2c674f51a4337 op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +be68299677099102667d365e6ea1e828 op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +61c1599b492c9a37ad4f629d9ccf0191 op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +a1e2fa2ffc464322090f81b573888900 op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json +6aad99e3f5ee8c6e48ebfc2d425bf5c3 scripts/install.sh diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/Makefile.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000000000000000000000000000000000000..7ec716ab72c14b930e863bc1ca7611d708b11e05 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/Makefile.cmake @@ -0,0 +1,167 @@ +# 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_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/binary.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake" + "op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake" + ) diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/Makefile2 b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/Makefile2 new file mode 100644 index 0000000000000000000000000000000000000000..da9542330d73c3257e7e5b78ac817a0b56005830 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/Makefile2 @@ -0,0 +1,976 @@ +# 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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_ascend310p.dir/all +op_kernel/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all +op_kernel/all: op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend310p.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_ascend310p.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend310b.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_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +op_kernel/clean: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/modify_vendor.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gen_version_info.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_op_proto.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_optiling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/cust_opapi.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/CMakeFiles/optiling_compat.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=14 "Built target ops_info_gen_ascend310p" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_ascend310p_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all +op_kernel/CMakeFiles/binary.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/binary.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_ascend310p.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310p_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend310b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=15 "Built target ops_info_gen_ascend910" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=16 "Built target ops_info_gen_ascend910b" +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all: op_kernel/CMakeFiles/ascendc_impl_gen.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_gen_ops_config" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_copy" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +#============================================================================= +# Target rules for target op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir + +# All Build rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/all +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/all + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num= "Built target ascendc_bin_ascend910b_add_custom_0" +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + +# Build rule for subdir invocation for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# clean rule for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/npu_supported_ops.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/TargetDirectories.txt b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dd42bbf4761d3696d7fa4e1509c3d19220f74a0 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,70 @@ +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/install/strip.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/package.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/package_source.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/edit_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/rebuild_cache.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/list_install_components.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/install.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/install/local.dir +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/install/strip.dir diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/cmake.check_cache b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000000000000000000000000000000..3dccd731726d7faa8b29d8d7dba3b981a53ca497 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..117da22a220ee0ae5d6562aea9ea61f97d0c5795 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/gen_version_info.sh /usr/local/Ascend/ascend-toolkit/latest /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/gen_version_info.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4183a837bc0dec14a4def868f73d30454795d838 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..94061306968c7012026090d774e6ed8954710fe1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..714ce8ff0ea68770397b4b735a816647351f4c4c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/gen_version_info.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..71ee697e474e0eaa55d848067c3bac9af82bb341 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/scripts/upgrade.sh" "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3cc19a481e6c692143433e46658710743893a887 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating scripts/install.sh, scripts/upgrade.sh" + mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/scripts + cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/scripts/* /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/scripts/ + sed -i s/vendor_name=customize/vendor_name=customize/g /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/modify_vendor.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..563285175969cc11e838c67e32b7fd052a517b5f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bda5864a979e6a287be963ee99667bd4c0d2ed79 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..4290d3f2e262181b1ffff8509a18a20ec4278023 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..27952ed76a534aed5b8a5fa4bfd9bb2d3e51eeba --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/modify_vendor.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 11 + diff --git a/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/progress.marks b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..b6a7d89c68e0ca66e96a9a51892cc33db66fb8a3 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/CMakeFiles/progress.marks @@ -0,0 +1 @@ +16 diff --git a/Increase_Hsot_compute/No_increase/build_out/CPackConfig.cmake b/Increase_Hsot_compute/No_increase/build_out/CPackConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9694354ed9da37a8becb7daa16cac84c5da7db0c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase;/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "External") +set(CPACK_INSTALL_CMAKE_PROJECTS "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out;opp;ALL;/") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Hsot_compute/No_increase/build_out/CPackSourceConfig.cmake b/Increase_Hsot_compute/No_increase/build_out/CPackSourceConfig.cmake new file mode 100644 index 0000000000000000000000000000000000000000..53fe90291dd48598c9aeadf8615cb8f3e82bcb12 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase;/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/makeself.cmake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INSTALLED_DIRECTORIES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/Increase_Hsot_compute/No_increase/build_out/Makefile b/Increase_Hsot_compute/No_increase/build_out/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..76c14356a92da67c5586cd404628d9a81bc5453c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/Makefile @@ -0,0 +1,631 @@ +# 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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_ascend310p + +# Build rule for target. +ops_info_gen_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend310p +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/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_ascend310p + +# Build rule for target. +ascendc_bin_ascend310p: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend310p_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_gen_ops_config +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_copy +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310p_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310p_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310p_add_custom_0 +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/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_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_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_copy +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend310b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend310b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend310b_add_custom_0 +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910 + +# Build rule for target. +ops_info_gen_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910 +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910 + +# Build rule for target. +ascendc_bin_ascend910: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910 +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_gen_ops_config +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_copy +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910_add_custom_0 +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +#============================================================================= +# Target rules for targets named ops_info_gen_ascend910b + +# Build rule for target. +ops_info_gen_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ops_info_gen_ascend910b +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b + +# Build rule for target. +ascendc_bin_ascend910b: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_gen_ops_config + +# Build rule for target. +ascendc_bin_ascend910b_gen_ops_config: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_gen_ops_config +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_copy + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_copy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_copy +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +#============================================================================= +# Target rules for targets named ascendc_bin_ascend910b_add_custom_0 + +# Build rule for target. +ascendc_bin_ascend910b_add_custom_0: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ascendc_bin_ascend910b_add_custom_0 +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... gen_version_info" + @echo "... modify_vendor" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" + @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/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json b/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..894245f7a56a85ec609fa86b377b8ca6764469c1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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" : "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run b/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..022b2a733ff87a1da51396432a1e368099c23c77 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,1053 @@ +#!/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="2835312895" +MD5="00000000000000000000000000000000" +SHA="b3d249e7bca2e07e1f4fd21448cc311a34c096ea76b23a1b5fca49aec030e014" +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='' +targetdir="makeself-1306832-20240526095442" +filesizes="130481" +totalsize="130481" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 372 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun May 26 09:54:42 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 372 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 372; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (372 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 +bRf< pŕZaBk-xlFec Ivƣّvݙ̬%8KAQuQ E T"$rw㒫+:8cb: `tMw~,"{_~{d0WN 5%hE^0t,X%[QSEUۡWtI5K-b7lZ=b#9#S.鱬9C C%Cw{BYXP1zتU\ODQusmK6t_v mk^k9 +J.MdmqjI- ԳAjVuu\;0Qykxb#k%[ɪ޶XXH,҅kW.~v&oKkmtKF͙؞X[h4У=qmus:s=rmMUhj &"nw_ƾm:V0! U*[K}piC +0"!3"vZRf)-^ΔG4] !#  +OTrn Bbz^ MW6#=c~J|NRj +𚣗9%AEu[us IR±tвQ+7.0`oK%a[/NzCu ^E6NZ" =48QbS\d85Svuǥ6}oƫ!<~%F|mǰL6Yjh)Zn*tqo-yucXuQRZ+X`0byU)keQԫ[ZLa-6XBv1\Z`IgJ" ո ̪#&C 'o_]꼭_p: 𕥙2mC9EN/qSKjRd)ޅOfh mݶ-wFSUl\ȁXSbb+oUɩ&<U49^LU+XYWrwm-V^2e0K +'g@FyQZ[`OIO‹dO=C6Dޑԡ! 59"t:!Q_p"'x#LkV? ~tͿx|y'{7}k#?~[)0^1)tZlWLWR[kKϪ<>j} +;2~ȓ`:(Zڀ#Vw(&1YwE$;Y9nXw [[1g%lu(R,[ t<ܢ".*᝜d +YF(?K!@/2 R9Კ~G,^z.VV<; x۫嗵c2?Bz6l"~vg,?Lo/)t!J"sT_H jy +%pmCu/EÇ&_%OH{a]nOa̲5"/lWZ6ưan,z(jckLleX=:RW˲^T=UUC%SCuk\z-FnV +<Ӈ^ޮt@b6d80꠱++,S\wzCh:jW\ +D5MM2لwBPU[˭h-Wnze4ڼsI.#=u +V[iIf /AAD 6¯F)g7~,y +`&=$J>q;Nsc6fY~މ;~,IJ7"EyLB'f!|)D?<DEtz" +џCM.FOD{C]~8*/$EDDv@Z z%pf.K3%zN%ы]D{%: +&ϑ$:"'Dcߺ<)e>#/$<^N'diB:Ǐ*m4s7{&5ӆ"xuB]y%"OM I?,ϡ-ז`Sl_ۗ_`~ۗ_c +/ᇱ<hd7wMoLKak'Vd->X52>LΟp}q>yL6x߼`"o$16H6pC '~25uo3E/ sdy_:~;}x̔'Fǿ ۇW#ㇿH5y+N6~ўIof3 |ְd,?s<߅|/!=K';_%dxtG?}0k+u{>^<'z& yGY0/4Ay!opLTX42A`77qw4q珁|grГmeƎ!wWGr϶c=P>}o_o$W}~Xk"0 C/Q/ `*d'YMvn\52)p'{˴h< o;!'w?ke؞qݞU(x ~2YWaƹԽYdR̍k37!/ԡp=}Gy}mF߽;hS?/5ķlVfLxdgS7*<,Z2lwUƽ5tZK6n fɩ".&a` ~PV(BwQʥ rNGG?<{wj*둆XGv Qi·"c.}h ^yE/ bžO#C@}_U@A&9MGn]Y}?'B.A)L_e#_5wރ E_yٳ _ $A:ƻ]w7鏽˹cNɣߜz|؈1w_:yw}yXCHTV05O쪭wE{쭠Dd#QxEpf`f`f`f`>|P +\x)xV*x)x }Jܓ}ܞ9.?/03?3|)7DT93O8Ks*8gX'rB^>KQ^_Qxb}OIgJt ZIm,nf2d:)yh--tbN&$vAgs=9l%#MYa9ɑdvt +tmV߮ +z^EFw ߮> +~#YYUIR);*J.k1Pi>EWqCOڶ:tߨj@rYI:IYiUj ؉0煼Bk!/(7EB^_<@qG"ʫ[B^cQpP#D#.(O.E[a0N8(JYm9|"n㯑|8s$Ay?<<@AB ˉfN[HP8or /ߐ9$st8a{= [/gob<glb-CX {_Bw%.E~M}G27 4!?ϣ ]CXa? +ehyxZ9>l8?bIqJE=XE'e°R}ә2e֙#͸I_Y!5Kq@ 9]ORKY=jyTlI_73\u Dٲ3>KKJ ia[P=KZ>?^TsX-Ib !3ю6([@wQ]}% 6e=6+! j%b*%jVڲo$fxip]'qfƴdBRq6Mڎjw ә46{yᄏo%a7{5{{2930 Eca^ð&\+*5-:ϱp, =Pk3ZHKٖԶGa sCx)ƗMPvOv؍J[łFaU aؙYiXkDnަiUZH +H`F$'dF2Nk$ ِ,f ẺZ¡BPtImD\,Xz#g~Rt%2t0R3†Fr@C m +U9OxtA?Ce0U +Sț mkTBDXQ%̝?ov70_& c1ȫ!To[/8[6P|i* Z6VZ-OnhѕV. t\傎 (GvV}ߕAɗz+'WZW|Y"#+zq 'iU_ZuSjEa9G']>uOT c]7Yh;553Xo.M{&43 i{FQ6A|8el7&4޲7ntk3`/AMg򝳧NBr|jz5}ͳOTM/''i͢wVAsEoߵs͚ߞ&p0HH]X$b?z\4É' M],4/%;f3.g5[1E^wq, nxjաi66ER澋WkzRNI<O yOi~|RX}Fg+:WE}<=casqF X/Uּ'*#>|*W>S9Ho`Rth x/dp y +,gKzgԯ p=C\Ke^fn x/iΏm-΢^}-s<s/:R{g|Ʈ?՟BPhk_`A% wYt&LOoB&E[^z_bnws} ܮ@.yҥDܲ<]{ؑ%Goz// +RVV\UܯѾѾT xrkX{{b0_Rżam`m?"L聬(6H L"V<"ґd6]$5Uo?+kv ;""%\Rl+jKE>:YYhv,kkEeqLZոu5}@Oa +8UIz@Z.ӝdGO"g9heUfƄ5* 6)^:'VkY:d$Ai<9U&]p/v;x,. ++uVglHH"].JBLɌ]*AR\f+}r^ˌu,W EA󖛟GCC=DdըXXC8 ̼:,k:MX,f/7jN&E7:Q Rѡ* LEduY0zlY]5Dpj%u8΄-= ^j +ZQ$o1(N!U/F^[ZXv#_qNSp2ѷ[jҢbB.]F*S}ͱ_?pPV,9SyS\wƋФjykA}r+hzcvñRcf'>0R+dvl8Ra ,oBLSJO|F> Uw4[E5.1S1~9ĪSH&mITG/(2fNlpG1Mlrdaq4LJBdo`ފ{QWW[۝1cl~ة5vFo@4n;@?&CʅϪXGE Mӷ= fxS\Mʵaqpm!a*7>3+ EhD1z@F +AWG,+Kl]i0jG`A&IwيIWOp)v笽9G 5SrK//]1/S59ύP"S >lYs˭O uƎϪF?RV* +?|yH<|JJ8cV{1^t^BA`ި-dD*zDGV@᧧x7cq>@Wwhyxj:V\u|ps̓ckUA!nd# h۰9 y8C|A٘ŹHx]ut/7 +\S-ͥt oOU*ynݽmKURQ,a1"uBR5F+XE )`Ą1@q ? +pB2Wp|2,0h$,Ϟ y^'ucQeԆxX)R,dJsoFvAi'sϭLe:%;Iof!5ƚkR$&.2Rk1}2cFkD< 1mrJqʰ>2#"@ +E(dH!r/@[f8\TLk#W%A”'E_ +Wf8AT't>(o@vzkFw!%(p_Aܞ̠pO|{O=7eW*֡%,w:aYч."a3MDb^ʼ/P8˛BM<#3Q.%FfnO&K+b=1Ok" Ξqv"mLj^MVp\N-R$XX4W}U$cH-Zx}hSbfJbEL %am6ADH/JbGJ;^]ZݺK +7U..V6H.ToD/> +bp,GXz +(n-,Ek|Zm3[2򃹰B`6g+m8-#GwC}i i*:+1&7ѵ8Ap韔tݣ^h3'd$‰x2 +EHJ#D4iB]DW)bu5%M]X:cuBoq )ȓq[nB<,9jG ?2馻R/tɒ樰8< dRa +5un!kŝP.ƉBK\oLgXKjT3L{.-CUc#ӟ{X>OX<^Pyw1㲇i`Y[.~i ޻7J. } +_wvG䊆ipϳ¹E 1d?-V^8G8Tb}^ +?6_ g5;3Lð"+>5]ysւ6l@C8W 1y|5?_&3} څ`q&0ACHXa;np.s>7e=~\uu}S> * +N18wށ7+Քna:A[6 ;$Б𠄇%<"᠄$ !xД}L5;L#ggr ͩ3 +88:ַ`6CفgN+]S +0x;!kYtl;?T @:S: ~7r?i3ψou<wO;g!5y4$̬4yd =GؗYT3c5r2'b!ΝVƠ͠k&Ğm9MACp cYOPK-h/,~; /mSTjZ\ "QbDE4+ !.1nO_ 1f yuv_N;l粫 +5hqTS h?^m]}Yw>hr5k! j1ư %ߘf ^B܄F1B^H^֥5k[<$F숇M򰜿$M<ŀ, 9maw=BS*;ďulY~ʳ3'k3}JOE*JuIe_P|InT['x)^A2o`%/`?>.qJG},WYVt|FK}MnQY;pST =fmT,ɾNO^ӵW+>#k/P̬=_1;k_ڬ]x*9 kg+ޠ+]pg<8YqA4:|K\ȴW^ ЯE,⋭P ߲-LmIl +*dtV*j(UP늍)dЌɆ8gr1.(IݫCyuts&u[=޵pwouoNϰDo`S w2t.MvibN =JﯢR-Kw-#'zt?[q( h%Q.S ;8N]JC\g<<|_n/mc0GhC_ca۵O-#-!m`ݶcB͝Vg(OpgWs,bMds4DL&ҕDRhscdS"'iWk eApP~NJB eA!Lb?p(\l&f+~ c?UrI PP}XCGk7Sf&rX.޿r"=wS7!σCV`%~3;}/sP7̣i: ΍cGx~~ Ń#ߪD>Np4L߼u(m I[{u*I@: #<Œ 7~Z9Tyܓ'xPBG^ ;$lЖВ0()!HxsK8( 0[`UI?`•c{?| Ympg6v xCdV]*\O fljxtu>t-h!8w[D%ѫ88m$>$ -4P >o;j#(%tonېL:<8 4`%8;^?H>X>7"9F~W}"q,Ҵ6 ~{]RvG9/䃮o6τ f0lԿ}B'⡚M<}6dNT^F2GmGҝ c!m2yFehsne2JOاt_B?ͦ!7Qlfd7bA w掴cv?ʁeo,? }gѶkǪ `!gϺ6,hc[ Xd4߳a*k-oH|JL'@H$CedWE +A2Rs%OH'[ +Gx# +"n" lAX#rggF1@؄J=Yi"=2}@?p3kSfe~EG(zU~XёLJk"ٰ\vWf=gr%sNޤpOmN*:}= +m{6 VPPPP'|Y)(Qo(ҟ~ϴȫH l]gy&Y/jo8> |#>8LjTxA490A"< +%c_د$!v,BKƒǕAO%__09bh?{߽X"lպ?O*ǭX"cL$љpWg)t8ĢD9݉)L'X\Y?1?ͥc)P))T)~U?V,+qh4u[@?_n4v k!7HTB硳⫚oS(?I|{y\ۡܶ=?J@zA1ap~uIN4{ +ן 2=c_>*QFtg s>T!oWmΜyuý{Y:G|a 1F8ν#~#"<+9:3 ܛh^YȗFa3O=IA~18No:aS^u4w/3r]7O;3Μx7䯂N\}L6Mu0Zm0ac{1`܇ 0w`| 118471Vaܓ|0 o˽{sosʽaqvm(FYiʚax0guJcհ8@,WCv qCZ +@ ]V_3t~qm'Q;" qT<,f18H>?m }Y3 KW`t^H4[84lmy̾Z_Hc X SM`'zn a 0Aa䋕woU8&+PO la@!NT\1/Pb&ԋ\-.kĥ,X$.FQ= tTEN4 |g _w:H:&|BKGEKҤvwQEP0*:GtgUqr8.,Ȏ#;ztG>}4!0t弼WUݺuw_{-)ϧE2<3iK!2M9f›s(Ծ2w1m {Fkg/NAwsQ"(3n_tE3u z|ԾiE׼C.o32Yzj_}5r`EՋԾEP/*Ѿ׍!^n_T;qz}cEE3/:ѾaܾB"xEԾq^+EX/ga_}…}…}…}…}>q"|E,Yᳰ/B¾}EO/:_mrALL0$r`igC59W#䦘|ăL*Ké&cT5ϿDZ~7U/56})+q<+?C#4G_;v؞Yd~+|.@H ΚX!V**啊CimQZ +f)eJ\ZaիG+4v>}Ĉbk->cȕ>ꟽ} 'G?0aG`B}-<6o:?B}Ұ)owI})uUi'dzi [G>:'p t|H5ꓢ6V_2*?ai֙@^4di*Hf&wz,To5iyr^Y.=|ǫ,:8wx*(ksW{ב敓5|őנfi64\g&/]KFŦ'\^l"%$kΩ.{Mf^hQ9M|؄uXyk}fbyj3Gɵ@9JVS`=M#Wj jAG rWN&EŖ\7^kYo}o*DFkW&]]}h{ _=Eѷ}~g1Κ܂[&tMN1_X׍ qs~h8OsrL9?} c%YIiA}53nLSF_Z2c]r] 0}qY}:<; g -Ëɨ-^W}љ3 _ݚp]ӽYO>_ z"ϳCܨoAn<}%poL}T .d^=:W? W;%OO3_N1nӷд3U?$3$y ns_\FlmY^3#8ύ~oaxߢ F6dC6dC6dC6dC6e(M'7_` f&~-` +[Ğ&ӬpDtBuଐ Z8t+jN Ug[4I՛+f(JyBI1. >`s b^<[WO _=5jK `џK%4bͅ."$iGu+xo$vEGx~o28|翎|28-ݦ6_Kpf+9P݊;IFBۏBF +(t8Anad*8uh%$r\`z`XdcS?x'120g{fEήhk"X|e@d4aZGBU[!zop()^q9+b07Z;4EB]|g- )f Xo-F"8da 6NtSN︮ l5T? +NI?Jg$3%Y (Y8n"v-wF]Ϟ֏ݯa$Ev2TϘtSNgPO>(Uh[\?GY?Q2+O|2FV?ÐrZaO<Lɮg"/Ndx 3nWd3YU?e +Ug?0t~\~9h1N~dLys)̾|f,I ;pDmuVxЇo%+6yw'"^v% \WjZ^H-kC?dkJ5?<G?Prw5r-GOuǰȇo1_Q(K/H܅-ᵋznsr}iYT^yqNb~_˓?YW1E"]x=yⵅ(=C&;?I. 6}l6GN-A\L47:uZL.0D+St3S-$//ZW].)5\\.@k9\?pNV{Z :>J\|G cp='a^k{xotӓk;8wv߲u9vIwZJb/??\wQ}6gw~5^eۿk1_]ɞ׍AUM]v=rh}iOTu ;uK,{yOv~5=ݽumo-&7>[KVf}23;/&wheǸ]Ssj,x-O׳.i,0 K. ~1!%{͵壿jzDcb /~>m1|xc8T ƥaa^ccc?7=LkL~8K;GI},0QI{]-S?ޘ8o!lQrK.6?sqۈq?xJS+2ƿu1%^Is=1N?|1|d5Ii?Bo$xJ懍Yd V ZI?T%xM0Uy$Wuĸ]~<~Ho<7I#Wh<%뻟d~HR)Ì/1^$aHc|IfJe&1JA]%,r@#גyi%G_%ooO%rg7te/99 +I,3S?fq3|9P2lcFێqNG#Yyn[_.d-pE ^? yy7 YO?p;ovN3[l!_nvwqm|}xD}@_@ +s~n_soZ"I2ӂ7=O,.#syY"yY\k/_,.^g!Y|RH61rOx-NM _AMjgdza)v#>~5-;X1lÒq!/xp k +dzQI;W%}_1Y\|^,i&q9YU:~w-#JԆjۼ}۴MZOgߨk>=nXF6:m0qtvj0v.v+ZBUr ^R1B=R\G [Rjl + +f;ggglZ8 }0*r/R6@τ@hG D>d\ɗfX;Gx9$qc{ۄiN,p*=ؚAb!`&zNX9k05Lǚ9 ){BH=M4,0ew$/EaW)ñ*HaR(H_u=\BZ!NCy +E\d =qP r|A4^Yr2pv0{KU  1"mPg6ua~u4VB  >icSg&/|5{l@1ZQ6`9n;4|TmY"~> `"7 Kl8i*T6xZuŎ "HDa& ޸pZu~C'HV%ixafm:X.Ἕ(A8TAƹL+NW yx):B*k@B +i!08xoZfégFo%0#]m鉼^/Lkx$_0QQFk<#ϕ^ DƪsnrgP$!oFth>OS>.sٲe5??x䱗!VEiV.gSv!84uZw k)2G$N2$!NpAX (mg$K\4X`ŏt4#ީ.48 3IVj5H. zO RKIiL?Yr9aSt>qT)>騇+NbPC3pN!jA\RHNmϞQn+L~bNJN9A/A fKAPkmzH9GzREM&xwCb !"7Sɛ66z,+m, "`lYaic ?X!%-@P- =̜۫rcx'MH:Id.gFFV@~dz +C{iKm:F44NW7k$x,e4LUsG*!G0uRL_!PHkta"QK?IJxu7!A (D"KG+Hp &PPW!Ɉ3ppWdWݕ+8ZA1#p0U駮ΜӒ;J9g x[G1V ܞg=gθ5 ;q; +Ci?< ܙǭ8>}8>|8cn_IӁw &:{)Bt\>x^>x\A~KC7/~-~?@8>x/wivx1p88 8ύuZ +g繸N8yW| >xKd]5 | W淋u{;s5? Q7u)ˁwi/\;wN2? |;p?p.Q \();~6}+\O8ǩVwlp[g[?||7_j&E;_eKku,sM0Kg_B/q~>pu&Զ]_{}'h݊7;tL92\'yZ-k-q>|6@Lz7>Izx[@ApqAs~r~9?+w2/랤A@ݗЩ7N' t6#nGz=.p~8?;9?hdz}=ApҸ^A?A/Ws~k9?g8? t\?AAAAAAAt~~-}~>ǜq$9u;}>AA_p~s~r?.{}it_ @:.٤Lt>C8?aAO ?!'s~8?{8?Yz ׋8?9?cjz- s~/p~/q~/s~Яp~Яr~Яs*I$v!A S}f}U.;g{\W|7[|+.UjfG}vP'CU /;2J.[6zW ?ɧ lҶߔ(Z|ik##LeD0Ϗ:V|Es4c|D`Hu$ +9ڶs6}i_(gI Kt9ch "O#^Q$bgJ5Sz5%jD*ZHo/EZ}>$_V~+T`ZVj\?'.7_Ӳ\?߽_0[_ۯ\k_'#ٯWsE3s?_헫wo(Xsb~U?sxݪϣmV~wxk+ ~ ڪ>X,;V߿~EU?'.XsZ IV~U?3WLb~n__ 9*=O5lnߧ)>L qrxd_uEQu{<êczr{@q=~U?@_o?_o.ٯwgu~M=TM+pb~yXsݨ7Z~n?W{xŪO^UCYs}c0Dl`onShUc'9׵?yb9sD*r'.yW'/\(f_ogWW[W۩"Jد?& +)2.HqzQ@^Ϡ~"/rꫨNFWQ"+M R?}ϧ~?*ꛨ_JGԯ?FoEQO7ԿF%7SEV}ԷSߛ'S_G}ϡ~/ Ԑ."H$WNO Ȳ1-# /x<5' ;i* }VzdJ!M|!cabiV {;kWN>ǬQ3OX2"ؚc"muF:*v\DDM4yקʴx9E¤B~k{(Yc{j~]c|||eno4&ҾZZ;k9<אtɴDZNNhO'4#d|bOӸ16t|rs|^7T2qXK%:J۞q  0d ҾOY'MfAatmgDͪ4;{v&*4q ގ^VMҭsւ^H7[6ɣm])Z9zG$AO {:yu9!}Rpu7FÕ}={ ¹s5ѻel?rmsz}Oݐw4v m1<߯g"k{y9 W:bzoNMx8.Î%V0Hh!zcXĬfLjՎ!f뒮i<4fw?s깮 me\wUV>suh?yyx?g~[9{?3#9^D:4{sN}Ymqr4V"FzƐEq#+2 9lArKoo2xcqh!sX ymI t1=LeK%Ff4zАXӸcbh!XӘah!=i /!SޓC )Y[C~ǚ4BOiq+!v xp]u8cP3g?C7zߐGYϷǚ<֔&fy/=K ˶ߠOg_/7:}دe _/?M#j6TxڶSbOd!##r<=3D #jr*zU8@ֽHr1Um 8;;2xu[`[)h}" t,hׂkّG_wĆw lxg9zρSN$qlx^r}AckG +J +ڤqE~"u[ّHE|G +B|45> 8J 2|b/|pzI;KG±9꧄eyNd<ϼSmc\N+2JҥS(Eٶ2f1 !G$y^LI?ҟqǗ )ˬwrV}cK1>3슥Elò>^:Ի;Z*re>ceR+iѭjZjiI2Ur-(vrIH[bʕ \hՈSn:'Y֑vr; ,7>HsL}n.א-MQ.)iH+2嶢\[n@ZNkrneMFZ Qj˅\֗>S_:]8%QM7KYWt}nB%Q_Tos[E)rnӴDJSb -cQL>?S4:=ID}(ԗfASn?KYVӢ?S_Ur:Ӭ}ϔۊrY]_-r#PΝcD}?].#reOc=4ԇrM}OTL]_3J3t>SnVKԇr+ut3ZX__UNdX?aE:3>ղM3}N0=ȷ~ +6ga9iAWMScO_$OCT,dw (§i +EA{|#sGQW6a3xejl[XkAôQj<Вa͒tK=e.|"K(wq&%OΆS1op˺ˆt]/ʉE-7 I7ӚxHXS7>YmS*"ʝLV'ڄuʴqJ'>X=[rU:ZIX/3}|XS*YcݓaGyxnC.Oml_?>4ƈesƹ{y[n1pl74k!a׊1}n? gӬ=]t(ߏ:D3+:/cR=y\0, hA 39IK^"/|(ʼJ|L/|O1 퍀\ +ؘ=K)_=K c.ءo;N>tr,8`tr[el6l~   Ю%grK8o*a˩0<t}0x׍1؏% W +o,;H!w/"og<6h"f*뤯m#.kns]?W?%U"JAG=OI+|ˆm>M]OZ +k` &w_t2U"OڡC'*Ω%BgEOvO{n"\ [zL>ڜHv"p]`gMΑ_D9[՞T|"O˽ZL>O϶|WHOD>͗b+|ٗȧb5/-|F^Xsɧ%'}!Vԫ{&OEdY#o<m}vg^_uW2z'}, ]OSg{Yِd{ȧCd[M{U\UnYμlkd>*3_(*p[n='r| XTi+[5μ븄%|A6˽Ifs@ȵ)LJ μ\OzUR[27zS҉+gmgRĉ3 T|#&g +֯O%JͷZ3I|N|ޡ֏oɧā?4O )C'>Q`-K''>u_*W,ɿT|/8Y_Ku KEF'a&K'>pk_*f'pk_*9u.K}'>9V_*Xyw c%o_9G/Utk>!R]N|s?!RMs⋞kȆ:'>o%w_I|-8uZ mF9oo*>/`c0܋O=Ikj_ɯx^'~fFJ~?y)E%P"ַ%?SՉ/Tl=(ӉO%?Sqj$?SaUH~rbV'֭&·ى7ҺA/߯#ɿT|;uK[;_*N|=*'> ?Ms⋞o3N| cgLƕe}ݙ7tu@’ʝ '&7';%^_nr9`=O|S]Y$Sې +_>`-A#aϹo|⌻—z[O _k×9j/v._Q?M MޟaW\0y0_/vӨs[I셟e[4cEwc]JFD_,,?`m&Gj[-d꫋,%_R ȺY†ER54!_KvIK p^xS_F_B/ +݀f5e^Cߠ̀ouY#N]`V_~;nՏAl64 .QVp['>F(#}Db;o\b;'V}WDVn(ECi>1q[2QO}nwXoֆx(bYབྷXal/b'xybhw}Exb=^ڏ7$Vy]bG%lXyq>]pH"U_8G0{!B{=fN0[#m:x}C ?:5w@G9+r+۲ސmY|LQC2[|Fo˭kkG\Jwr6`r[WZ»Y{|.H9KS9P +M ?!|k(o+;׹sJ >67i/eY\v`1]} O6N7^qbtQz|DD9y>Tf*:y/77I^egO{<{<\7 ȽWX2%R5싽O^K^kO 鋽äv)ߋKjmmxjm!M5YSOVaSOmݫaSGc5/~ft(gܑi7 +BN e%5<@xH^ R>5p_ ~Nx^(#Pp"aݡaܫEX`? ti Y]i_>p( OĴk+|iI/VMs)WC_'!;_Hpq?*>I(o'+Np%.; _*OKe;cx|35%F{/'C/'r Okީ!%GH_&ƒc%|/'|%%w/锹lئoI{ut[؆;AWA* g } +>}'J ^-wXG$-"A_k$sҗ%$= +^ +pߗ$j5_~ȥZC{{3uހ{>`+Ks +]f &2"k~K_~!C܀G|S5pK/;\>Q~ƿ/x<~K5IWCį>BK}cR3#{?O_wOxxC?t xM?A1 \dHfj^_oJ#K?"C +Sjx ᢯K2U _BeC?Q>%=% *Rk$7 )=pY_e~w0K%| /OxOә GZ -> )U7%!>~_/O?K//͖bn |8 T\b'<#5JZ [a逕%\Y^>Mx4O7t˗C_j$;_0t*>M@~#zm }$|g<|xzK Iw?x<SxLϕ̀%2? 4I/_wUW^ \įkUËI*_6,p m~_[_Sa~_/ 0;O$_3_Q?Np +)4O?̯v?G|I?ģe!_xSQ17"ܯK1 2YuC?>vC? + W kw07e~C'A>ɴpsOfU Gц~T燎OxT?C?/~"C? + 4T~hx^ *K^/?G]iW~£Qƒʏ G4DW}ʿ^x/!<M8jx^O'oh^£ +#wk+Qh'<~_OxT?m'ܧo3OxPe~ xS<? {>Yw 6-s}Bo|7 +oS;$~OM|%<~\O?ɺ+"; +jx ~O] ,  +~>CO:/w _+VC?AfC?^O zCRL >YK~'#fo0 O}bU_?'ܯ/4 T?>'\eCP.JÄ"z~곀2G?6ީO7W~j+kxQ5{sk + ;^DxH?5 /!<S߹~}.7za%~_>xpw.|zY G )?s&MSs-\gǛ2JcB=Ah̸o_6Xύ]ϸ)s[ƒzp^$ܥ;C{Ya奔es#yE0X.'u֙urCj*;k>c=[]=zn< G)V2ExNB΢ǧr-=WJ"!_dEKVv 1ʖ~85V)˺e{y|4pK}|.1VT*@~ m~=_iR1A*a~q;?O,z:̶~n/w^ ?]Wֹ=նqj,{˳"@˒!~8?r>;k~x?#.o}~/?垎߹NʎWsw+'Z6ǺD;uY&|4_|u p-N9nxF|,o^̰_Ӱ۵$O`>dIswa 3 zKޛNȢ[&T\͵g޽n&Y 3 JɻFkOl:U-$J<jO.p >9a?h+O[ϤOܞ>H9[Ӵ7+:wmkXw;7gWkzG{/uwݿϟL#g{/lxG{^ު&=XJ&@Ǐ%#٠_17P + 0Ռ۠Cz zdC#8gs䋭CtCϿ:oSGh=)YۆX/º{shg~be֫?]NsChm@CKE"oވx?x4 mǻr"yx?LHLˎ z /xm=("' _|tƐ[Dû8}.k;ӎ -J9P`cNj~ﶂ8yWH} W<)~J>!^6-2=taEǡک3?1&m9bEq:̰^!o|:O{l2Ν1Y.@?^&>0,HbҞU(MQv.;P-9/7 uiߏ]"V%.4ߧOI7yqA[W{\aȣ!`魝y+<'g|CEvW5B~Lіܕ 㯤W3lKL+$O^W'|o½%_q'޽:{vuWV PkF2=hSGGKӠK?z`w۽|(^ybs$¯dn'}I㫻ldB{KK׈4<up,H9fZW|~'WяOdXk<[4 Q~_I>{-?,( -[~a=FW-e}˚׭8fRlSNB%,%39_,{/qM8$]ɩ_}L@xL~vɹ4Q> ǡKϋ|m+{!Kdlh -+@uM[7Xv_h] RA/~Om;G"ptWgȺ5<8`VZYz8/rm,cqX~k<= G.U KwYvrx3y>&})hϟ7Dx|…EOp5\C.Ui໾p#ꡌ?%}pneE^`*8i_yӨ#_BOTB?:ݰ!"V$YvG}D} wa]i]\>m]3-Ry Q׻'/ N&ֵ멾;+ܹL7UyN[q rUᢨ*W{QpZU7uHu yy >wmk:lYVgѳgAؿ8ه*{˽лɘhŪ+ݗ)MX_ᭈVXǀ78ctX&gizI ._蠞D2 7"6i_s1xMz6և0wHғKOl, UN@z +I^~P7\Ы'm{ '7bbⓓ/v=o^ _>C`wP,!wSwѺ"MI?rg޺I +`GĘ .ڡk&o/cyDm{ٷ_|Y~K|\g|م'óWw ϋClyɅ͒%ߖKkϲD쐌#gߒ9O~NEbȗ[`] W_?RDZo* kK!g,A2[ཌྷ.kA$N(90}98gK~ѿO +I^j>B8 N'F榣Gr6wYޓ~ +X|gG'9'&+9?pycya,w<GlSs8 OA_ŃWX%xiwg9e0e`oP_ܛS۰\))SN{A d{EV  WM/=*9 ~joj@ h|{.4]йQ3y=34tFAO9;Q(ۉ<91>I[׬2Gh{OwV˲}zW!p ?vw5?5K5m?>XI;#N({/MfvwlLR<4 cQWnrӵp"]WԝŴԺ|ih[9|Y=4eNJÅMW:u:_S!P̪)džsUkc̷N&]|_w$x2d(xA8i+ ƥlݻD="v.MkQ?MhdScx׹Y tygxպ2 +]YV_᡽|ndB',xu ]ŨOpײ?W/{;Ub'|}.sY;AK;`xJS4e<_y߉[ֵtZ)C}Wo3,) CW!zぎbYflB} bKZ2w.B_(]>?Nv*x|ª<^dؕ~gk/Cgtm!w3ڷM\V>Ks`aZZEXfC@h7ib#DlFR__Y_{M>v-}ǒ+.뱫C@m?pV ò#'ua^"u u 4_ք6uʽk }|AQw~tE=#Y!?zao?^# %"@먟j('WZUEg9i"?XJ K]iS?Nh1"ȁ : +{!$Nxy|#Of;m MWg.Tu9#wnNMQjGrwaU[(˸t,ƻ,w H{W2ޜ }*pMd`/5Ib <ͱsHͿ"ϫtIyQs;<7ӻ<[Zzg*eswNg*|Ͻ󊓽wN*y^bKޡV}6].ѿOkwq_ 'zXElGtp3~仿;Ҫ23"s[ba7wq(ۧyM>GW[O@f& N3~[5_cN,/zۍei ډ67Jwnf%Vsŝ>V>OT2A\x"*\%9kBWL[zGP.]r|h~cH⥮O: yhדa;e:mD%m845_&v } yrJ(j +; =yޛM~Zobν]`F O,u$cxk\KѦ׆}'c}8zm`k]/NwЦ]=Xo~omfPwxγ }Q{o^%g$8WwQ#HC#W"^<>ƹn0_Q36֫ !.qHzu8A9O6m_;ǐmF!\h@-_б~㰷/I}N=Ӕ68؊=7(YϠ %7< }9c@a7R:>(tp.*yU1iiK},{:ؾSt! S*˹-3{uhf?N/P/ye;ݪ:{l7 o:h[ +\IWvGv+:6U~W}PWiW +[}T!Yǂ#KN˥Qq/ҵ{)/[$}G޽AE?sY֕&K +~pVe(e zK!w}[X\ogyʷs=&l|٧`6AvS"cVz]+֏iSMCS/δ8ؙYk_Zx7cw|>0{XCicӆFr޶ٰ I_ooYfiemUv߅:5vse&S[ m'L;&mf@wPp,uW$;4c8g#mٽݫm7-xmPnزS/?\e#a{+Ֆ/[`˚0 OMe\[:K];xڵ-NclЮ%i6P {^{c+T;֌X%+=pd]yvvݮkF5>>ۭڏoз>އ궞~h׷D?| }z5hڿ>+ܱo>Tm.1GnAw9G{#\">Sm SQ4Ģ {Y a S0x,O&FOrD2=tyE6牱AC;bz1YvXd(u=ّy(Go +1P*.ʷ, -];F2sJ\}K'!oa ~}÷lyCa/KLlzؖNKzRѡ_P4LO~7sgT{Zb K +BDbay!rMJ`QEQUMf0uۥ?X +"O0=v|y |15nSGn9o~EIh-Ÿ+AFMezѯXX,cCQ|L\WbW<_n VPyJ;xO +Nl a!7$|]..yMI{(&~*I/Tm*$}xE}Vv3[QkE[>9DGa>*>x|+.((y^}C֗iG]./(97U=+z֮woKNSskih'C˯9]52Wl`<~yP'ߛFbw!g>+~ؗoFҞrL{Ea6@^1A ~6}F:UnE/饀df{X?䷝!{>vuh:cXŇAY{ypM!rt/\*3G~ƙ!8'0 w¼ZIͿ*U:1w3`{qvd'גMIցw,$OAW Ĺp2ތ8>Y~h5F=As>)*zNO` nS_w\GPA^{Tǎҧ#g2s"GxWO93+(upOwcGD6ݏI$sT38d,&µ2~w+}L?: >:Yv?tϤݻR ~!5ESO9IOj9u(=헣{Q&?|9ז ? )S'lǏO|[{ez 5{c+OOqxMqqQk.ǔpfnT5'7a o(,>.cr>^eȿeqd+k2 ,[>jurL|0Yv+(__x"}tX%ّ/2?pH5yH+tߐ>9cjmMIi q!ڽi#y +>5KRVʊ/aީR)orxs<}MYh39dy)s L[ij9g~FhI?ϹwFruIY$S}OYCwҹLy&wsOVdN!,߰r}-eae*CҳG]c/Qv}%E뤾sk^ݤzO?Y޴GZ[v xvB? y9&(o[ G@t!V'x꺶]<6UeЇ:>m߻GX}Qc"="wD5߿Gqoȿn*>}<52] pA-o?Ȼ ]k5zUM>oo@w,:tKI9V0>0?H}>ȪeՃgk/gYgAwٚgWyI#?^xMCɅi^NpntEMYyvPx%)++/0.xYA7ю,2ԫ Qgx1< }@_&'MiEo[NQ+ >s>Kφ=ؼO[QqH˽¯g#Kն>c^j5C:k_3TWO@_}l'ϡH/h=ynn=[wVU<9r]?O[dz& 1e#/rd@`D%pGNEW~N]׫J1 +X+/:R\yz>{6{o{ys=UϽHo=o؆)Km~>u[5i1?G}U{3~*ie;υxn+Iu#`,fV]GSпlgot/{ȹLruNWޟc\poDv`bw^׋'r{*Es"ˏ{܇5-Bg=lE̬S b[:( +}h<2yY9/,C>_ +v:utëbyʙYZ +_MC7f#Я0gȣUs A8V^ ٽTӶs '9!SMs.Xz.68q.zt[]o?qp85Ssّw'& l][ ~Hȍ< ^cvxS}Jo|ikі#\Yt(g_ }<mx +>U)s"v2ѣ?\#3h;KQz*?Eq!}8x({y{k)p-6rhd )g'@CXpyԹ$@r| ^C#h# ED g3DO=ih}`l8G;YT^xL;Eֺ5gAni8Gc}GZXFBW7 ᚐ:1t=)A5c켰=0&)ww|da۹O@=U`Lr>w,G; < +sv3򾷼ȏI3.GY;Uu_b/.ۋv]gf/vD؋ENo/x⧻;]{{񫝧j}sʥG' ?eϥ߯zoV仙Q(a<ʐw{Si'ExNu_>B屄w6+bpSCz6:7;ї^orq/]sgL]3k!O9uL@>sS5w}RGfҥ)eY:?Iǟ4{Z 0LDX_|Osg&dbE<;}5wgW'y&oo[Yx\=ٷyWzkx/_H:C=DّK{Cfiʻ7rh޴ZΡŸhhX 8r>4qyu'ۈ>I#x*X7^~óu,M +b/^aciEy6Z`q ="YiUsRQ(G]{5{㻥ߢ3<o{CmA7B8})~Ip0>'wvLhᲊ:e{ghǹ/ 4k.vm_ ^(/쯬J?4]t^ ȃy@m"v}I=>-Uk_ӆ/r"ad|̲}’r_iR/{OZxCue]%וGcZ8g^7}w ==$8jl9c + ݌`25|~q2wؕAsBRuqd?jtB磅݌0Geb#k)(ƴHB,ǿ)w[Sǭ739n}Nv=}%5nu3hD{8W0,0rb1<{=_WSǨ38U;b񶗍W7Kwsq~ ǹ\DO mmPnge"أ 1Si:d<2yAN/Dޟz!߆"iz$tי&ƾA.fRv;ĸ=C-g.줜^Z_߼z]W*wemc?KIM9cƯIs~b-X/ yl*qTOz.{ p/w,{#j;#e|+mr_=1җ:2a_#^?es]r|]WG9;Wg~Z?e/E(IyGov֥ȯ e#/ц?S,.֦jy8 9Md|dH7}necӜK7rPoo+ 8rn.r"/b|u@ȳd9?|pgV('~ k1Z#KUyη?9_UXEYвĜe!vq~5/u=/c^NAWwɉs> XoYz%me)'>>;r͜ǟL伝+U?S;.,5ݪ1@ڽgJr al~#hSSc1Kz᧏{fr_UVW'_*Z&WwvAsbWN[_;osUqAk?/04)'uM}SHFW/Q%r"Bnw[M]v\hkO2Pӻ tļp׋JޜMOȽl#H=i˖7x(SM?dm._Iػ=s>(6'=;δ[>6QĊ^@*2XcwbSt"D^Hmw9&󠉶Y3nǩJ3;k;3148oiH{uTt)؜k=<k3h|,} -uY/n&}%sm/vp1N::!EkS/sM="Qel/Yⲕ^bLڰ{Fw0ykyZb[fӤ]$FE8V+e$e"T==Ʉ_/(8"qXF(# HR.F'2z ҿ)w[9"1O?w㯀l@]&gk?@iSAw)/N~O᧐xQd?~93&Ec/O_?9&a/٘|܌Nu΍腞yܟ=W3-.k+2H:m}N~%O  [_N&.|PmUC +xH&x)|xUE'SЛtm15oO3F; Gx*?T[;SEnaωS~=W7SS9=[ϳZΗ뽿!ȿ/M }p/rFdyVytjP͋9_1ag1ͳ8lxZǫO;Js"zp)yvU?mtOv-y~brmz6aN-qO6MG=-X3|D?8eǙlC`RRŦV6 VCƗ?4PJ|=?'X"nKcPt>ܮ♦Azx&.0ns2v=xN6H{mn~?dfAbF7=+=c71{x~Hzxo /~|qĹ[{/w4s| +g{*V%vnn|7E?!k9 iv3=Bٯ{h/:2惇g;Trv*v7Kem T|+H,>w-ݞ#rai0#цDA 8~~TiӸ񢮟u s?g?yxbG34>0/5xAs8ec9u6 *Ioo9-iD[|I+pZ/h/E~[=wkz~?I3Gp*g5[6{CtoIQVlSߚ6\֕oOLK\{ց _ǥ}Rc4h ;ya-u&Cڋ|zxFZkr'ך~ZCja)*kM{ŴC>Ҡ[:? yh_lVac}Ʊ 8RmLϖ>yV޳a[vmSSr/isNS8Q9֝hzZwZqN?$'5"ƽܛA97͊<%3r;E,^ bC_yW>ϸ⩏Ge⎗ՙcԞ]R+K;T_SON4*^D!?ḧ ?lz}M{9޶ +=FW[+R*Y=03E\rn",9Ux=*v XX؇:x+V+&omr +l80-b9&g9H:`!xw{5%,<" }{60F#F]胢4qf7S\ynAV\+ VA"!qcSDL!.B~]~l9>̋v1}[߫?UWٿo.g%^%z*>ɋ<r[L\r&;~Wq@F>`՞}O1MO O@'>1T;3;7#~~GoUo7{DZ8v(go_^tRa;=16oTw.}.:mM 6..cwh4 $?[C\e^< XGq4voP*]Ve2ĪV^LנJ|8JC-&.p[ $:ƛW/ϡZC.*ǁ^qpA=#9/3"}5t htjJh߱`[rX|LCBao07mSq5@;8:,ϙ*ɶ>C:VgT,j>YPgT~_=j_W.Ia_ +}-wC$t^wY ;;{}wT}㎐^?]o%}!ui |I7 + tttt8=3΄~$!/Oӆ>j:y{˞9hO9_6X26ʎÓ~u&Yx\8mJgEyqԽY_k[l{?Ύ:|%?s3cxV jbn:#yԭC oD!)'F~oF}#;S瞋W GS|(\+oA3pi\ɎdQGۦmšd}{M_g>s{)|P9 trαcUbE6ŐC7Ζc1'r,WY^؈9Ŝ+:orUa,^N1+ɯyDK(Gک38eo͉gG2Sq]ZvRmo^-X!nJu:ԲNggTgw=wi{^5~g휎߳N_{w:잵 Ru|CTwyb>L=C>-S$;Ȕ\iX xF6Y΁xphǺ JG|Çq yʺUȾ_*;c9qp<Î`|9Gh|gzCO:-J8 sfD}/ SĻ fN`hzUx|\><[qޚ/XN:&oOOB(ޞ׻p>' %,0o_, E\/\V<e[:cmk#KzP c17cjƓ7um>o5aBw5׬+WzQux[BDbC}EO7{>EױxJ{ͽ!=Yй;zkӗ~M"j%1v{3].Y҈i-"oes \RVyH ~kq~o]:^yHaרޫoUQM4=D[ǁg +]kzN[l=!#OVN7{L~0ދ[1MuEwaJ&Fr2)-]>ؖg6u-vy({ff-6?1o=vƉ|l>[tyԺ"or-xx84(ϾvpiaKj!]+ц MIl[c& 0Ք1oߧEhGN}6yO79;|ǭc +F6:ץ6v{! b2ߧe{컬NgVNKc.-. cm؋ɻs~N "'cRy"'@?y7Ab(k lå?0xLX oIw5 +#$uİ~Odu}4QIzdE+!Ӎ};ޛ~ 8)4Ю7v\COi<fӞqչOéG~v{Δ)<;Μ}Pآ+ eAwt[bOJK?k_+Y6>UmnH)Sr9~OO~k +><r֔l_=nQ7eqe~K.Mc[,uv)q|ʕUރ'>i'kk''yȵ:zD(睲C< PŮqwAWQ]Yo-<驱7{|p}cWPyշT fĩ~b{܇!EPoQ_ ơk#iw Q}zqMorB=F`Q q~Sck2D=O]3w1rSr~x^('_c2@y>`y07?ZZww&γջ:>`^Gí6PK|?{n kWdeV/-6ߡ8dޑ!>[g”[#rVˏxFx>nȷ[wdNS}dx2~B~/Nu[Cwrq{w7BS0T~yAd(i7a[* =_^EA)/qVsހr4 P{7Pq!޸c7>7/ +%{fSϘq\j?/czK22r ʩmz[2;\Q2;TxޏߊK<oڥP>{zC^=? .ǩ/oxL~ua&Z}MەNO;Hghz.ۧFf2^?yW֥3<S|w{(7U2WUw?a{m{!OmvE{S&MPfC#q5%ܔD;)Q?QUO}+ENPo|1_ >Εt_}I~۪#;R$r7s= .ay@tn~:Ǔ _>:4,%x 1+#עv"%%!vYoSJ[2->x6\K܋MZ_9g}x4noJ;:aQp_NְǙݡCh+2;@ߝˇ >!3kzOW>;Cב> up )Xb1!#a683ѣG`գú@\&ϲ%MI7n|I[N{Gø{<_MܧhK'ʈUG{SeƵ;eQ&R55;mY)\}~$%ugLi}a` :a:q7u߫3R!trgxbLt %͊țD~+Bq +0J׭A\rwǐukL|lGCIpؑ' csvopr"Dl yVcp_+mp]_eeI{՚ 纒%}_^ٽܧ\v kx}_Aw?4MӁٯ27] +O9l,|wSc6M|lUkhIlϤ4Asfrع#}@~?sonVdSʶҮtsI{x|'Ҷ8?<^117<__/b=qos#E /WB_o`fn]St𸺸6}M AYJfcQxֈk-Ŷ}Be_}e]:/'7I"ؤMa -u$ZG^pF#&<,8Kȿ8K=郻X[}oq6j_:ܷHs +b㏩yuꔿ}ִ3~ + ͔C~7C#>Ԯda7:8eAD]rnfy75א>D%w̳~p뮟> -Yr>t뮌?D + ]|EGO3g|1sΥ#9org8ou_xclGBǂҠ~/HoQ{_bYq_Ĭq/']R}xr#GD]E" +x.ze&%ܻ [}f-Sόy>7c|=yEykCTndC{2"79'Yz 9FR0$jVztZMпF7Q/R³5R_9ώW7\{1-h'\xb Vk zMC yo߫z0e6ic8*? aSrZ=9r#/C6W=\_`Klk%!4gmk)4.IKa7Q}YvcsS\{0mW؀ڨR_x]ocLJI?2{=^^z> "R3C|yyj*ڥ W3iX}'ƴ$~GQ`\t<œ繋᫾45Ӹ^_ى 峼Ce"*} "f-,¯ujx+z|+9.9G_!߼-F\ z9HgofSɖ݁~Go~foy/f8 ퟎ' ;:QyсГ77tw64?87=%Ѷ~qށx>>1]?_O/HO^_;lYvmGBoϞG9 r^뭺'☽-oyMot^8] ۔^<|eSyjYF?YvuQOQ~$#{܅[߼ )Y5fM#= .}`!xEfEl1=_ڶ;?_?UfLї_^ȯ߫oVU 3ꪆu@ݬ:o<Š/*%tU_@U5tz@f5̾:7k}EIʼwQ6.EIm߅r:L;yMmͼY O%3f57̟ͪzau%jjn_[Su#}nuݼfnXe۞UsfTϼ^Xdfus&WSSU +$ e>ɹ)0- B7V74WoT]R}OS3j*gTTՂIu53t3ꊹgTBj%t}K?ofͬ$ܔ]UUĹ +eo|3KU u8TU=/P"߂꺙7z^U}  kYC"5a=P}_]=6ϬK[`_N6 MUWv76,hl dolkk$@jRWTx=W$yJVQoCk+.P3OVod磁Ν^^:bAm㬚y= <{HWuU~9ݑ_8$%|Z.UL0p櫅t^;.%QCMFT^=~#:_t2[N!Ŀ *fTW62ڀ +S}s] %o7rkyM7O2bko|̿`21+GiAϝQ[Q7&_kf3)g_nmQ&>_770JFU̪W {f(m kP3g5 )I8rS_0V̞9Z+d5 UO>,-I_5sk恮*[0)3.Hiy :KeM^S7H]Q_5zFYrVHJRԻd-].0o ~aCI$j\ v ̪>fn}o"rZu#JI>A'ԙw1VVЉ :%Ժ G,;#Jb$W(f;m{+0&t{ɠGix90W`d?h(PL*%L+(̨^o>P_A签 +hU5qQ3ҊdFo`hFckf [0+ʠoPQ1k^cE…_Q# !)WL"O6Xk8«7ΣcuFdW[Pǎ t%%)Ob rgwU`(Oۿdd`wcMeɂ=Uz% +x]?Fu PM%U 䀾ΛuҌj5I<N}*jQ{9'/e0Uy+ Fo3*dХC,X{(d'T{(~%KUϭi h@$G;8󗥼99"]Oo=D|xO(B?޿RTiؔ_v[Me;ޯpq_)D ӿzy>q]ƕ6ʦOͷOeG M,WώXlj];cFa}R>et/__v˭7vOO}/z>9jT[Ƨ͉Th*{*fUmޯt^=4ܹ>T,4uAum3yzɴ~|g6HTZ:p8CtuOM㿒otʍSnLzfd$I`+d*P3IdԐrG'Rk=Уxg̗qfͼ$x53GVkYZv`C"saLoeMkKqde]kHgd:yoLҚ^h%s_rvS _{8:mKI+QKq4n^յӪgqJ>+~*ݤR.N>z~d= {+7\=y*ihSNwumfFJ/oZf*yUtՓs u:%UJ~:wwJ]__ص :ޤ!5,^ 1"a jPHW5&͆xhOAc$9'ՔqJg<64 +ѥrp"keeS%\_kzZgjޙj +PU#Z<&|w#Z" "R;0>*r@jz7SK0N3G_77۩S* Bz Or-P_5Esa(m=IQcr"d ynxA3*t%rа{TP#]睚{zQ]7u +{;PPeOM *fj +";_Zә&([PѢ sTQW-$:UHEg{e5Ɵ%6cf*erF=dG宬̟Wj%zxszz]S%ӂh^0!R+5:o (Qso/ yWҥKpie95oj̚:#$z/OE:%r%crL[2:C&îM|zBa_֫A@91Id-ӸL 5%DLʢZPM(gkoՊ +=#Ehi#F}yfq0HxkBW%Q))€WZ- xl^w&dQ<Y<'/3f(?top[m|6r"W>ǚFj)cS +~O[Y[x"sܦSv 1Zinſ:Fչz0M%<75έْMdέ՜JN\wǀY Q ܟ:ROܓၒs9@Iw.[TgWsJ^K|37!{A*`RR>n +BrdDVV|N[BΘ,G6`t}c TiR} 9Jo6>E<>Rz^Ψy+D_!Չ!+MUmzjFvh:b9"V"E*R3%* )GISsCuy~NB7%xId0mV1 3i>^Ru)N d@i3=(MHdodT[PW3>8v~cMK)(AHDb(k(U¥HrIJLW/K20fMl"6ĔYN2:M!)*rZZzNO!DLcc7@M=ϑUߥRU/L{w\'t|4=bt'2^/w꜖saVo0̺SyNS:=Uȝx$Y69:@;OԬ1#_m#La24Γn\2t8D1hD$rh ̫g3яY-{ >/%eD?P7˄*ϩ4$z[S|*j~s+S7PӐÝ^nVATSImVNjkO#kј0&ioGy]$1uWdjZ1,Ur) R9c* 8i<Ž%PKx=d_in洗tU"05zOo)~,l;eM*gyQY)jw='=#]ʇo̹ZKӴ%/sBJ#[ :ധ޻P#V_djr-JqJH͗ Lt )a#[RSTg:.@MH !=s=\Șs(F)J3aozTC).s fІWЛ][3oozgH`f4Ɩ*:s"A->,8J:ˁ53Ƨ1 4ұFjћn23]XWGu;QͺCj q}nF2bDF22]/ykYʫs{Hp +LNͲ6.Γ-h@SI̙V\Tԧ`C:Tzm*3#*S94<`#N)?`^['^^΅?aZWНu9FD g9:]<G%Dgd|@!>ijOx.ȍ\gԃoyٹWoa<4Ӱz<xz> ,"z]~+LC{ djAVxۆ8~څv6Z`>n]@?wRz`.`?``}߆waGA3 rN~>Nsa'`7xNÑ>ߥ0* lg'y'i5ҥ7ښ {^j0,-3AK>*$4>#\#>O;sO>pA|rSm"xGM|2Cp&K !h251"_F{> {{=-kw;uN1:j +@mQzkSVⶒ+A-fov^o9+/kn%|^kҲZ;5o֮i٪G_{=4`bNY9qXMW \2q Ws5&ݣ(j_c!秫v6+ +[ȃBޙTmB^֕x~! lL1o%m,hJ8O]ZFD ZSgAs|K\KѝQ$8YVcmzć&:ޢH4UO m6toԮqȮ_:,* ;m:qOXl֗X (͢f 㯿6.ͫ(j,"BmB,I݌ Wkh]/ZؽqSgaS5f6aǬkp?VyZ[mLOŘeC[|>&x7|N[s H&re7d[.eu?okYѹRLQXvcȨ;,oԡ}j{!%[ܾ`D?DF=;|s0ocU< /4`]ظL2$%%q" + g|ĤC̓VnEQ_|2?1ik]d3XdFxxES0#6\b rÇv#q?Lxx]c]?-WlV3޺˵6sQSq_{G iH$ pG W#NL-'hZw~-7s52Uե+:ɶm VyWS8ZVH\Q(pVd+qX fm8Xal&qqw5rF>{H [)aXRDGq2?{5ŕVW(73@{ق}5!=r&y!\\x`貜WrgMV-[W)y8W2[[waFLOLlK\VC8Jteqyp|w5>_7r}5HZu~%w-lMI֥%9[; ^L._jS!h/H$9OM\;Զ֑Xfk{w$:&&hq.=[ptr \28~O{$qSs%:K0n)3_/N}I+[cl,Fcq{J.bG=9G>ݿv? LEp!Vj5y-ƃ4eO\_uըNpg +#og rIYY|JO'ˡQ34kiI)bsUoQĸ1FYhIQ(ix,Mh>_ٰ'դTB6y2#q>_dӜf]npcr;W{Tk̳:K !#yzj@KSfM梫y>, 9shwިZ3̍\wB! +_W"=1rueVCmClӢ 1~.pSֹ<\/pYpn܍$q/0V +yj/pKWYLq{Z {Zd.vƚoܹ &Y*L(P`__Q WMw?ɼ_$ 4rTCM퓎=샹 ٌvrAwl6{̏_9OMg9qS\oW\0,/,][];#y!"CV\V@CaGuםYO6ҹz]bq.'ayꏻΣz?n= tj[Gs`ڿk"P=HÕ/M@P|o.&E8efBhfMSD(!OML^qj޹CtHΓ:l@0c4bѷ}X;mho쉳 #ֱ_6><qX.]j5!^eԟ J'yb^J.784/ȦA$ dՋ~},u2s;a:L7*i wj-g՟y1; as_sñ&m)')Y۞k?hjw/2`ŀ2myߙv Fn5{;;t׵S'jյ4*}Co2<9ý^ ]nG;<&黝ޔ5z kjWDžkMOvڍN8e6769K>\FN-9mD_\Gnt~ҧY{94/mYҺػ#`<ҨOBVA>rZjoANV; uN*bn{?Adȳ\[ K'z rK|nss8ܽDBpi?to=x |}Tu/^^s<&wO^j,[ yoϫ7\[{@13WZ~~g\Y.n^ݚز]FGc6`(yWW#-Z ?͋X-3F:͟(j}†֖Eֶ͋넽-!:l /r]?/-.*6Z5Fw%ې77}γ+xB9~K_:Kn_^7k~J1 N|-giT +;")vDl ; IAs_5Ol$Ѷf~ky.`18wHVaԇ'ܠj#sM\sr@ ?̎fS,OlIZ'96JfQ2Q,9Mm#֯#w356vmцOS;c'?fy&C L;@">'};GEњڽ?,yGAd>/}AC\-IkE;-mj.o~?PϗBۭu-=3',u;cwŷ5-,jM.0?|j[U*CO?zʣϧM QHb(֨geMof5v[/Dn.to47h`F1lبOG[Fr֋pRk2gB7^Y\cf=fq +حMk:k I;B(6M4ױV[1}FvKӇڐPH)jju!_ng{A%M?݌Cfvֹ9vݬ`6'f:0LJO`[ӽE`=[3 ڢe+a&n㞌#MK)E3 |ύE!jhٕlЀ\ <%ii-Mxk/r@Xe74  8TfݣZz>[];58B? بѵ]% Mmؠ؍JЈ`JSk9n9|ov%. f~.;egл@ /Z6T޿yB}h-$'Q\n&AآֱKױ-HXc}K,ֱ%ֽr†Z-aY]\ka5264K}X0˺Ɲ&ϙ4I.=q=i ڌ#% Z} 6mbhc>Bs;ʻf<,`gX!F<1?:^5o[A98鳐F[즁庅EEԩ=[:kiSniEdabS2zZt6fZ2] I EkNK,͑!{Af(Xd3Ylޕ1 *]4N.F1 9Wf~+ ,8 pv#k$Q xo{_7P )~nybǵnmTL7/`7?Bap>@as$d'OqNT>x%Mzwq<:]Oo&gi(4.= Y7 9!kvZ.1lD۾RKLѯk xF?.w/h QioY@]@sr޸Q rgQ&G_<37Dוr~[ K3uE $dO)̒\"5e[9!Gr1~~|)jMZtv+Z+sW&UtNIW)wcX/ܔ0$Ly4iw٨_1䪿r:\!ֈ7kF\ыpc8gL;%Xc66Kfkfa3Io@E{=Ev[aףu{5ˇa{.b9.`zHOBUP.%LOBUL|"8+abg4jJ |&_/ϯKUJ+_țVy ݻ +8_r~9݃"~Xi)󮏿 +kһDhyg,_~$ %+OY$TU PlQ1m{kzVKn\}wI(+6|\nEb干ۿVi!~B>hiP`c?bIyH]Β!}Ciu4M6? ђ4gXmؼ!Ͳ)5-#u3nCmy]rmr6-}xg%^Z{꤀qE-ĉkq"Gn6]`Z=mp;e5sgZZgnUB䔐IU\AzpːBA6] +M47J*z9͓oanSjW~HEj>U A|@AzP_tO_ +|BlL_[ZA?lNE`:W}O'tϖ_' +$~s(#_Fxq/g&*+EAEJh`8ի/YUd ȯWU^J Jeɧ`VyA | +3Kh,d  >0O %yӌW*J_R%L3$䟑xUBWj^B4jW~4ɂW_ +sd PYO&T /LxoX6u(OH7C-6V(9vx\K7ʗnt8ǏNweF*(۶m%ҷmNKR7oKے,PjXBoؚNuzΪ%0Dg9ɝsǷC;u=Q_-%qWO6xBؚ>D?isZf2QgE{N=@q{ue.:M-U5F 1Rɨ ΍}Y9ν)ֲ2; y{ +(J_G/(?5?? Sw&DQ=TBfg^wA' +Pf jIyN)x8?i -(6rL s̖pXfUl% IJ.T }S#1"QA&hjC[5 +XA3TyZC +t 6$ C!xSkST>O.ղA +"ZcUΞ'X]^y龒_k?Bt1#vko`7ܿb!Y /ְ lYD[ey5_ kbuSleJXR&t/: >a}>K>/&|߽*<~vUA gCrD A;Lr~*OR8V,|WEï#z >!KU%}, ,|!Fh=Q#ct})}6G藒X8S>KYB("}?ЏG^s8<ݦ gA"D9?'=3;ߎ' @^L **fz,>DZ[ϐʡ$A*gBN*m4!"7|N+ߔ7 +T,DϠB&%ދ8-S}cOY) QIDR%|ħ% +e@3RY#9(-XOwg| +So4~/ X"E/a@g[R砒-~%1nnvK9}Rjﰉ.!G&"홲P3>J{.z6-?z֛XJ}f8WYߒ^!&Ь4>wK?OKAFj3'X!3xi-RNI*UE1쬴scyG\Jdg&G_y $jНYXB4I[S %}G ZZw+\#ق.|O=vta6{JkeYԕ[UHAM1#z J-,qu$Z}NcWQUYV@baOKqgvN"acIw}4NTX򌫨Vw(N+e:O=UN.9^ZBDRwZ;p +WmmS|)bM]\ڬ}io ۃk(?^T zhUt\Wnɵ1Q)މu?f% +HoZ; y9Bw:,;Z4}"럳G&r"8Y_M)05.>W] pMl +4B)yPƎ0`اfpuArڭv#:= S4Z>(il3ZP@zW\|rF}%lU4Y(x2]͕߳QvO̯t^]UqT&Ջ>8=stgҶ,•Vq*e+%6UuEޯtRw ֊\י >/c^yi_G0+¬]iʵ|:;hzfk)+ܼZmK%Ck3;{|]5tsyO/P/WY}3+JUA_x8㡎ot( ʹ9sdC!\ F}@Z+|ό3kgj'Լ&oPxO+s +fAMަunWߩǘ(Q'oDrSgͨsUQSxyR2޹+iro~cW&ܯ 3oqJ1>3*3]m/Hu[)tQPk-`]n׭m:g+z?[S&R ao>g~~2.K[4qY 8>b`p/n=#8>07]" s7_p/*9ી[ J;p"K'p?*1瀏op G3OoFxMYGn} xkrp~\N=4p\>s\ځ; +2MaώѱJ,pA.D8'On=Ks389Ue)p|TJֳx[OR |pppd?y~|OUO~D'o> )>ুV9| + pg*mohYn 1Gc J"mwOap\![ |yYK㣞V |pyóY=V|6pۀ#o~~x>= (O|ুp|Qx6x-pmp8/7Y&K"EOx*w<_ +Jˀ{=VY|9*+on^{wޭR S~<TQEOo^ ু?|5 ۀox'pj|:1ˁ_<NӀW 7Or:޿kM4Ӟ Ī"ڡ6MȤkm'i[d&AۤK@Gz賤I㶀nºAAA_#aݟt2聤=.GzA"}8M9fXr~Г9?t:AAA{8VXAA/s~r~q~%?;p~9?Mfz+ O9?G8?8?}SA?#_8?8?9??p~Oragm=,!7u+}AAAGPܰO:@ЃI# t郠G> z&ɜVXr~Г9?t:AAA{8a}'}󃾇^AAApa^Ao7s~[9?9?8?]~~~A?A?A? n1(ͷK<.,>_Yr |^7X\-u?i曵~#8/:FrJ5z{cx "I5F&G|< )]]'Pn:F0>HCVDs)>Qs)"I;7/C܉b miT:k񸓅f11bbq![Q,WmJ]P-RKv@ҶЈ|Mv6Q{ץ ?ǧn/ +tާ9GsJcdB6o0]<)5bC(ڹ[moS|s|T(8IxG D;/;&zb>e +7|8<ޣe\k3)+n5@~fjd"4X4//;1*e&ʸ5  [c{_nWq&~Yq_h+/:~T?_Xcn_+//Ŋ3 +~.0|ߏT?0qJ~٪_0&~pG%~%k W|avA_p쿁6OKO ?oxD2O/9G~yG +vwTDuOK+e^QbA6WVwHs=G vUH* 9Jg۩F8vU(#As__WyG\ _hq~T?dR_#β_o꧍a:4=VdF?V`o+~'fP=NvevK3M<~!_Nc4Q5_5>PjzjW;Ix9og5~ r˷,_,CZߡνT?J%wS)OS}TwQ8O zuTգ~$DNzW")yzJh<"OJcyz &viD -ۣi:ۣ_1x"6iΈ4};zH/_r&x-hwno ɱptS1UW>FK tйCNojzM=h Wz ͱ]5Ԧ|MoyToϹ=%4FhŜ[9Mt0x#BoO5C޼SS)&8_+wZG'B!j?92~ qɿi[?Ok՚7M mn7Qk4ˬdibWt\DKJ쿖񢵒; M` 4JfK'rѴX? +vB +μ1zSYO֭ + o%cƗxXfѺWcM=T~Ym^+6Zj:\mմ%V]u=p?(h}\msbắW%W]ݖ ?b}~1}=l"a݌j{CºWۇ ?ھVxO[1'wyFVj3[3ڲEǼ.lVK;p͢nf^ v6+ [H v6Ok|6ga؟؞ǪxolOSnLڙ12Fk;uqӗC%қx.t2ӗw"})eۧNߥ9RwX_w軕}Dݯغ.uct_{tc%i.WHOi5YĆL;Vz\De*D~L/Y?gCiϮs=IWgIFZl=E(2NAVn;8;9-}yuto}MԞ99yф@rG y)v(Qܿlź.LP&yG?ۏt[#!ߜ}UiD*i&@sڧɶ:?ƿ?ƅ}ƁS +-'5_bĿ +SKEӗ{̼Dǿf8B%~fwǿϓ_zxkjkWZbڼjG'6zTjdG:K1.Ưέs꽒qj;Ρ +"MFxc5zUy{xcXO%T'eҦű:,#}5ljciq,#}5ljciqf>HﳲT}r,p |uk^a˩`;9\qOU:ƱL`y O8{{8#T߷8֛6&O8$zAIkqΧ37-yYN:M 7-۞IoaWIˠu /^N[ϗg^M&uN}&ynz935 +d_&DInzB)2ջ 垽_VpӋR~N:M"7=Q$^M&BEuҫϤ7M/V$_"Lzg哤ךIo^X>Fzk3+KIo{&|7=Q"䗝A^DAI%DީIoJ޾v%LznzRy_&.7xV/knz2C%Lz/dH/Z7xD/'^PI=*2*QˤM?LIO酇J~ns2%Lz72rӋ/s}-ŏP~_P~.vӋ Lzd[8ۤטI/Io=X^k&nzr<%hzEe\}_.'=_>R7_>䗹b^/[2e%Lzw*2}ҥ׷BޢI=7=_&a>3%Lz3X*uc~gv8Vc}G3s*7*M%Lq+FJw *yf7yg&nzyg&_NÔ<3qӋ (9fMO(2Yt (2չENvS~.u#/}M/4RI/_DӫqӋI/_Dӛ?I@z"nzKNp'˕#eûW;]ndy/uu +Xk]n=%瓞kN.[Iϵ_}7)FszS5HדGkz"ߊy\q]m:que\ڍ\?u1;q]^\~\sp}AƵqu-e\:\G׉nµWwţcoq{'+gpS~,'<)~=Z,OwV #35:uމ_ a$w +{d>kS5H;NĪ`[u{&/J-m24s<(lOay2p#ޏv6ZǰJİcL؟2C`{j bXCLW|=u1x?ƮVq*İvU솱&İn maD"d kP*İA1қgbXkM `Z k`F2m&LrP1YŽYa-fư~*^%N *518 +cwlzİ va7_obXL kdx`| uVݦN fqTŰ^31hKkcޙ:mOŰ>~Ot3vڶa]cXWY}m1Ħ=ú&)b<1~.1,kT ki?(-A{x=xOkA{4kZ:X\ocX'3@F kd d k}V sS1LŰ35iZV?IŰ34R1,/S1C;a\ڞúTŰ =&~vJ_1d +pbX֍;3cX\7C.؎5&~r݃6|ur}z)y|Ja%f=[ViΖ> ׺J>_5]-#6`tz*;9[oXM= ڷznu szF˛LX5Aġ5h_{qƪ~fŌI}u S*v+v6Πmgtrb1F/=l!`ݟ4YA"ܟcѠ=kiu/ÎRmOt!U v0+*ک+*N%-# hW)i{hw  g>cs2S׷.}SBǮ۩mM]Q=LdJPW"cN/F.Ɉ]dĝDžUޑbW\ .̉]ǝ.ׁkty>u/VKU$ⅇx8K%P|yKx m yջ2Yn;?T`m,M(wgH3'T`(c)ze6q E>K+Z4"fIĕq%9W(N4ڠlVXH'~ĘŨlTST]Y-/E\  _6 e'efo诞XcFL_Bomtg#y[#dOzșxVkE>Gxxe&_#|kYK3Ymrʋlo;|9j̳*Ly>y*%&_'O`jXϒ)dy7)/K3S^=2eK,<)/K\|,gK/gxANyr?t᳕e.|!&Ϫ|Y^)/GgA,Vsˑ<ϟ+gyN5ȗ3ʵxB>o)/W>gr~&_ Q ^8}(+VZ.{Wg!/_|(TL:Yy3)]W#j/Mz HHLFS˱uhz&jI&[nEBڀtC}eէJXr8 ˪fY5^yZYV.߫xju{CzM9U0+{>yުw:[ >$:PyX߲'+$6;ĪFߢ?%.lVv]``A8OÜ|B+n ^0/䳽E&akF8':g?lm9dՃ>ù'mG6g1W?sUZn>0뵏[dZihN `Y 219f=Sjl`$]f=L'/Jab iV\+4a[%1^1̊ uK'IWc=oNC?Ja/D>wͰ P>sm v\}\=g˒9|lq\}_=]3 P0F|g.[a\6A/[n3mP e#cs|]ԁ&]}khB>.3וi4*4I>#+2Og-ߊ ۂߛOW!&x!6cAZkjVv432+nVnٿsS6w6ښt~Α~}\oY~S8˽\guU^yK7{Wu;['@)6(?9vj_$5L_ 3^utl]uGntg ݸzsl]5ŏ?bL'y\#L=砯L }.t5co9>N`j-s-к$X ךDžnz1N:MM/2HJz3$ב{RNwWFWI,NCaҫZ}֏'IIS~߳'BN:^|&u]h}Lg_!ݗ|LS;Zt Hwk*d:#pUk)}N>}꼠}Ғ=5hZO^|ѮOtro}ѓh$н4֊zW F=q6쑫Pڠyg^rMٵ/6~ + e - +U +y>v5&Xj! +{f xNZʬ\EN6 +L.~ BkӀq?fDŠ,vh#g YvDH*=x_'b/W3<8⛀+s=E"r\g-x9p:R#Y'7N>i?u2mOK Uv?~@|O.0K4|}|r>gYj2&3Cv z,)14#K pehn[0diϔ2{AК,3;ͤ %g24:͖?o}eǽyo}ooqi@3fYcNyy);}zi\P.&Tq_i~wLZY,Pk[fN=](yl<Ǧ@w:g[_f]l UY?v-G3BsFly:澤m(/fϖ'6cbڋ]}|_oEZC>:B.O$m=ԳRԶW KAȁu@B<un-!&AUw` +:ޛp76Z49Ly|PDֹ/ mqo~cPIUܷYgAeZqs:Ň|i *;rQ^ռ8Z˥{?,py^=2V>`?jeZ~%j'O?5|fNe0)ڧ!v`h!)lfRA`i~| n ط \y`_cMLsY+-ESyCŽrz~=}=N}=օG'+t#gm%pmv|/𷹢iHo/n5{G&CZ5M@j zsbuX}_m:qgip[OJP?o&x~j(? ޥ3O{i0" OD9šgՁS7X}q + +o .+| L<+Ms+LP%HA' |I + jwk< L/x^(P_SvGm A֣~I[g~DN3y'0xUxwhMAO/pS+'xH/Jܟga:1~çǁW9|_xGΊ~—/vLA +?^gÿ?X_O<ÿos'2 9L|~?x\^(@Tk|:*|KUE +s)b <q|R5lv ߊn,32~7^G:Cc_ +xh-9toP +x?<ۡC<{':E~'p +-~+ ^G<0 ޠW( ެkZ[ I\T*'_5xJ񫀿!*?Ưxl/? + +:$3t4>I+/)9$ڏ>$\h?DoKx\eaz_~@%C:Ӥ|HG^h?@S/]R/OuWo 5%Y0xO?kI\}?6COOka.ZO<]/wW>z/vW59Я}mO<8}e>zzG4<>z͓OqW5W'8O} j?Q}?<ߡOܯ?'n\G>]ܓ,|)S|Tz7kKxD7nNB?7wig_3O!  9i{r'~wv'~T\_^|ÿ៸;w\ ៸(Q5~:Ӵ`cb%\Xsm!Go_3/./Q|vNY6NK։H]Å˧EV+柳Dqx߃*^Z}+:m2 77+Pq߻M`bh{+QLV뮸NBLgŽS mX[H_!ĺs67̫8\Љ[) כ̫+GF:0!c|)<Mv= u~=Xᩡj1A?F}3* +槟~ЋЗF3˘cL/S8[#0m9t(g d%Psg?%s^BUzG]3N/y,#ڼ(f3F_x*1,ܙFOʔ{gw75_鑷}'#ġ[^0q5cC,E죴6·ܘ?(˚C=Q +\+;|6oiпx=*3gxM6A;≅FJSBN{Q^e(gC{D#d{[zC>.Fg&QꛟG{}ǥwXw(Y52\bջ{ M.}Xߑrm}]`džjۑy/{@a/) +X_uQoߎ'/6C:;N4h1'6\emg?`0׳X_';</rE۹2GMuYhiv-){1'\r1\M}"k3\ ~H/<{Hw*9W["M?<[} .|Z?eV2Xڶ_~‡Z6H_>ZNn)=W}j;Q^_灸EHH ؜osFy`!wm.4~;|H+ꡓwNv41ZM KUAQ~'~n__@ ϹXe+zqG?!4Ƨ7&p|g_?ƲIo?ߨ4='_,O~WlyZj48Y1o<#9C}ҷ{}z9v4 =vշݪk$.N8oق|OyUu*FNx\>~1 MDS ?}%MιYDŘy>Q 6q"ϧBQ0/ﺾ;u93zU.<0-y>r=e:Xlorپhw}F+cOq-D9f)pqgng}sV_!gϟCu5bC eт5QwVgeyUxY^ uauWsxW }GپXQ_?w +PuK[i~d"?y$3||j/X>ƲO]C,ڃ~kk;ӄyylJx؟Evbv@7ưaW9DGe0ʘ\>o4>eeu({Բ~͓j}ΌVK5[y!7 o4啢zQ#Н<ᝧ;;Z68b,kp4X/BYUY_V1QgʺQlڮe5,󣻖66;zYG 9{8Ն,{RsMe2 7'M9k/Ab̗8(/A7<}tC<7' zs~H<1vN"txi7'_p_'.c`HB5mO $9Wy{@;) +-Q'K{6C ?^y6Wbn= E&T@>СN?HrIMFK']~c$i(x.0N{KT{7CYx7z!s>gx.ߢ}/򣻑O'T. Hy|դ }`en AFtW '>9cH0Z_耾̬>EOsDYKUiORw˶ht`>IF|?F`g~Xh\ C0<@;&!M% OhSX(=Z6~\̧i04z=3w 44/X$/Y:wxDJޢM(]˪FXBs(A]=,]<{V}ײV}"eqjrű 16 t= "7(Z L,|O} +a狎w0iyZsE@ +<ɨk ]"gVfmlk,1={d1_8A,/VII? {`-JS`>:XgQwW=sOڋ32Eղ7?Λ~\ش5oas +y]_ZܹB.%mG{r>؝zc35H)w +{DmD0xhqs@;Kʸi NMkk5iYb]goZ:͟9os8%فG{{=xR>\lz8OrEqu>bl7IT$Q}1&zƅr O z͈25 ] Y5x؉YsYFݛ0/߫P@\l)@&W`^β +.֑u;EỆE BY.Ȃ?؟ |bV+}ԔWncP&cm;n10d`ynb1rII0IJJ/%ne7J¬WIw˝,kx{Ms”sSuDrzƩpYs@< ((L=-^s]a)+MBVfYq[i>,=}4< t>l[MoI )c&k(2ǎ|zCǚnOx\HdȂE1.W`|[>Bs\uXXYDy>T 4}.{x(,g >H"fle rưr ++q/&Y#Dj􋽰_O, QW%6'u5z$rpdJ `:^K_uah߉- ힻ`ҡ}þ)}MpwlE1UPw|B 5N_ j,_.rh♌9cږǸ`cMyYzIsA9ӳA蚇>4,PLg:ܨ;:^; }Ú3vzC)f}B2@ߏp܁Nʠzzi9G͙#^oi8>1J4QN+ۛhsߓ4ԭ6am6KqOl}%Ms(}F*@ya@G'Puĩ& 9Ss)vo~'We ~QhA ,2Qg#lb<-m0s1!6um0MKk.3t]g] y:#o[9<<闥/pOVAdڕCe'bKR}kW"jj'wLe7,X7{Nbzi:9wֿKWO}\ߙG9{6$}}WGA 9<Бׇ>|G `_׭kNL .,_9 1XGzw0{bu\ ~\\+ 25O<[SG}'yk˪E78F=wWLAg& Oud6a;<~xHxvyMD]:A='-j]39xm:f[ϑ<"#'t gb}1!G 4z;.~SPhFYA7i,)K75~/HJρyuBaf Y\9:WN>E)e':2nn?n^o[z7іO 2u'\}^Y.۽jݠ=ⷮK{@7#kEGKŇHQ#|k (Mcޫ*g;[NR@woI,g>U?];\b\5C}oqlԍ{Tld- +E戎@#rc 2߾>I< 4#;' 2.n tL':װF[-di'C1yڴ\N9bԈ h|iWu7 bu +h??2&f^5,U{Es==,|ܞZٹrPAuAN4uj]hPbLڕ{Ykփ^smrf+M2dwWs"ȒԤ̸@7.Wk*wKs&,[%jƵ nЀ\y5}yb?)2.ZM_QżgrJFu!;2R-ۘomll:8Q-#ʞ4;O1`Xݣ@Iԡ[`/_s&m={8/cJvEЋiλXͱd6c]wfc|>]-Hژ7鼌 237@u}M!mv!KQ.Yf]cmvcYo̿Z~aT6i^9=yuW#0M7 &`ڪ<5FvR_1Ol|VdCbᓠلl<-ZAce3icY;cY3 SlϕC[^G}ikwyˆч9cYiwKߴVW}ύ]OX R9226}\0}\1dPs hz'שqKԫжih};3*wll s$,3sb!I)O6ЮX_6WǾ,}T[aEЇi[8tmOT0&m q5;cƴ[)=翂OV }P{#c^=d]or>&jWɋ>:+[1nHo{Hzy@ߏʬy P0.2@E8nyoy=!i_[%)[9lrꦙCgP1O~{gt} 7Fۦkuo~l;_qmUJ3s [W9X<[Y;(\;76qi굂b>5}'\&.NM;}m;ԣ ӯj T:՘~GTJ,h2&X'QƇ1J&vnP6o>*c]$"I :"XH\^_]T/z6SO!/^iN SԾI\[$j7 6<6|w%B.o;Ln7وa+KFԋ8oȿ!cSyZ:F#B|W>/e8BY!_Kepm*;4v6}{;z:qݺ#ɵ5^+e:Jn_^8~wQ VJ8ŠwPر?F~$m3{4E^dk_ɓnuy1KOE +;R4BiG>%c)9@3 m*b\A{ t:'L1INw9g/Az'#'6M9lt~M(JZdž,w +kks1ƪ_NVƪNQI z5 49]/TRegcv yϳ>ٟiA_x~ExozP^lcOn@ϵ"ʊr)wz^a;aPS]%%ct{v[)vsU9؅6dc"{yW.{s}x@[AlG~:$'K7fֻb#PYC=:f)_wA_fݹ+'ǁ.)I~'De#rꔖ ȅ{ٹnqlp?3^8 +=:/~YeӢQ&+5(c erw{6E]yy ~y.Ys/%RgrzeuHzN.t+a,@yā;٧L{V`Ծ1y?ȍ!}m hRݭkӣ c + +_XmU/y)lOK6`+䇼D.b9SSj=ߙ%+]9ؗ_NQ-NG/461g׃mCZNgѳ)iz+iu':ҹsZJ4}+9JG\֋~ҟsIO>E[OGE/}Cjlu/!h݄ˑv3L}'ΙVNmhβOg FݮQ%_'ׯ}WfԮeJٮ}fMwy7YgEQ/^aoBըNȀ\en_r[qO]Ǵu02^0?.!vkݡ}G$V^b>%Mzk,O r;u0xZ u!.sT W*#[;!eH@Hw\e )µTʰQ~aجYS~?c }翃Xoo#/y,Ȍb|YYy2{ߴŖnL{X/:޿,YNMϗr= l>NG9`&W6:z|s>Ǒ+|v5+jwY۰Ce +;#ȿ@t!]=#|FY@DMZ}ƃD yާٯ{i6޹BϥX5YO\8W˅6 ծ]+'x֓ c ^p=۫ߝK=[3K|*~u?0_H 4xK\}яb{R}:2:2:~ +Ze(;vϼӷÎ9gƼ韩~ lL;qf9=e+k9{|7k: V7?R{yۡD;Um؞?#ϧm];?%/j{?o.Y|w˗?jsg\d`};gA{zO)0lnR7t+΍)AfNzk뒲i &MӾD;ee>;H˨G@bl:?u>Uxt}*7ӊMA^Om:kүp٤ۼ zľY+C6z*7S͟f8M6iGzŘ߯ޯ:/3+;Z,@qZ.fywuM~B0=heRY ! ?160_Tdz;kQ Q˶H1ciL%Y}ϝw/ kaN:ùWU1__Ԧadz̚?.~P!]nYd]ǹ ɤGS/Y_8ztt^fl_bs5ӑ槾Q..3b/؏~Ou V{O|W{͝MƤ"cA.qQre;>ߞOwmEڷ!3 2iwcCO(izZyyʼL|W6P +/(M<WϷ<Zmԙ>ԗ`=QgYs2]R\l3 o4BrYϫa:NNG1y37jO#;x8Tk;!ozo7tc\>SЎE7O Y݈r#4r=gO6Ժ9D/[l]MQG |W8],ߺ}|/0^xƋ{Ƌ?x"Nj7^4?/> Gru磓6GP\cZ !#x?xC^=ς%eC"zs'=e2㭴cN 1Wĵr+wR wCewtlo`#||QʖHw'^3^r?{S1Xѱ+O~ḰwPѓ+яy?F  9+T`+T1PzTTGVh(7翕qvTSp 5#ƕԗJ<ѶX]Tzy^V8uD[0>I§>Usg y(<}U]{ ;"<-/˺m?~;1ƃOs?j^Dgهٗ8$$A/>=)1 ercN; ?՝~gz?~~6dW"Siudh|3wb-GG 㟠9н,P?[/zz + = z**9VcymA-^&Qwb2y(:v=tJ\~&EOcZOa4V_>}=-|=+|=2/k |d>gYȻ8⯙9iSY=ͿlWZM`= f!?)YyYdp<;Yd3NM]#N4HʺJ:+;u6!qe;)K;1sF}(QHgGnpz YrĮ/ gr١^}__\捧?޼iWlzw}#GN?3~_m`6ktǜצR>/=^5P'Zxߧ)3FsvCㆹ:0閁ȧv'׋ɽ^N ;ܛv|<\_-0G]s#(Mӎ:,w|J\>pXO}ϲ-N=N4N k$Z,OSv/>и ~>cu։HnJ'b} ޛNr~z։pe1u$-doJ?.#~>}#w{>vRϮ])C( _G 6ao}_|JCyv~9sZ=OrsU#i%R>ho{{OY8~<n^zGҭgu>H#cOlF<ܾls'U"~j6׏03y뫕=r7dquxzNV"P(W"zdU^ge+`{4x|5Pba+3 [Mti,ZփiX_!B;Ceku{+cWǴumk%he(ts\=R->>#Z>T],=V깩3V6 ]WC/MJzѢ>o;?Ա=I%~hgBy?û>E4{C+4ջCjޅs1|y9O?m,mj;sb&}a/]\s9o4SRu5Րs۞$ױ&4 {r3H\;*qZНct?.߲IHG/":=F]]^Z%W_ij\^Oz1MZ}>pj|^ԃur/+3iZ֊ +ދ@#:},/?Bݞ7LO9j>s42 Pg"9b "WqMސoSp7K,lY7cK~[S?H4-G>o#<σYbr^/^bᑯa<ܩ//yXɽ}ϗoX +gS1IpimSrw}?2~D<﷞~!*=~:4>.Z@fw9Jƻ㌫L:0Y2Ќ?1uO~HL,XfYA3dv'';:2쥡pYb5yo }ƭ+31n.=B-5N'5oc&x)]Z*8^˜|+;vkz~d%y>>V7'ӾkgxO3x*뇱U~:ںVO[̻zV/P>60z_1|c_4{CR|S>gB?xQRśx/}<:֔MŚ~WCj%Xt!J5~/๧a.11gb^6:`7rnQKs6zksPfehwQqǝS{I3}c;d4w[) RJ9uBOۅo3;*ro]E=q{b1;qGϜ;Q&W&G' +y&yqcdE3x.e/wCύOsf}~|*ut_wcLNkWYz +eM}3,̽O?pi(Hqˉtmwe_{uxRRX5˴Uq6͜<,5KaSwIt+';?j^㉅<0=@Bϋ0;m]%ǜ;5M M@M<; m'oȧo7=?iC'f[fցǝ6kwҟOCء1}M2_/B;@?:< GM WL1m >xg[x"ŵecMK}J 䊦5?#4 m'*'8֬y?3W:'F"x㴇(r!Qplqd]n.Ii/߳5+">^~;{065o|mφ!=s1͸׾/;꜆CzWgpZg1gj͞ uA ebC{Z䓜s5LE i݉e/iV=sWΩ섄M!mΫOE݆P^w-e,EĘ +na UcH"8d p~8,3-:ɺqM C빨ӎgfoBZ :3>K,e@ߚW Y$/"mRٱW~g:oq&uyj_(#1f_]y64(F\tj5q87*JiNw:t,|፞eSlfY18ܬ=9/+9Qλ>(\k(ˑ6-Z$<c1mHCGZ?Z3\^1C}y>OZH{W5||QGȴq1GixXc?wcia~ǹx~-Ϡ-޷,A;} HćfU kI<>tv{hϳ2ls5{^Pg=uskuasۙo; ,A2S7 7 _ [5ۀqÇW ׫oĜ#CJO}nwe`̵ +B@~+"y=Kts0s7mSqk}'[9kdy{T?^Pf<>zʎk]҇γoQ<њЍ쯯B/O/F\* Vu(Wxw/ 6iym~+t(g#쇧ƾo^-nH.O,8Ϻ791_-PV/dYǡ;8w:vyqδ}g/ϓwdLƎ˻2)9kBr m?lvpY{bv9kw(}~G<ˣ9P?rzrOyn: OJQ'z\]@wܴs7$\ȟUӣB;ag`g>{~zΏoxzѽ"|* zZ8ܲ _{ND{/S=ijN癸BxڦMvkm}uŢ<5_;/8I߸lwJD-u# {ӛްus"WvgGyqS#=-a0\b"qoq kQ co?>5I?4ZY Y$n.!Sj2ormr\驃lQ)Oh(kofBH! jEkikz%$@BJh&3_)< AsE%W*bPl=נ߱rDbO|3ۛoX^{^{}hyeAy̗m̏Y3+!݇ĝ>\;~|/?&zVHKbr./>˜%XuO)#xbdVSX oFAkO˸Z]ht2~buo=euʽcyF[zX߄L31x-C޿H:NVzZ}C<~:m[eȗϒ8w+~ +y|/Oy"Ư~gڮg|4q]6|!qJ1er3rzi9s9|}9޷V=\'ϦˆoJ~ \8oo݇pΎK]kiϥ#.#q#];~Wɳ7\U W @Z<8 k\9Yb_ϼ'h~X3x'Ogw /ۜqt Cڨ_qlgJ6snyw-<q ʶ.t7n/G>Gg|w'k_ͼK>g;v+wڸzocg&) m/Dx G0NJa=x*?vO쇮"GuV˳YćoO3OB ~9 i~^J=|.g=\?sGvF\I>S&|:.k~TZ2t*gmq>mI[1mR#HvD,|k +1x5x'[S9zq p)\\rԳYXc'u73W& W觌K;ȵ+p<_9_θ˵ݮїN0NgxƼ2uvm0k?<m D~ugtb ݥ)a.`6= cQ +fګ8w;Yh|? ._Bp'6;j]3Џ?ʨ{kMj]kCcu rvϵdg ï!rgvGSs'`rߦ{}{1ɷ7e6y`[~GAmⱽ:Agf~k빏5\oE6;ObwFK=eu7vni/,6֜\/%iotþ2_:O#;yY"5R_hS/w0pǽ~?i#c ++e E!ߏ]]',&M؄kR!m:wyN}3O{2zߣ=ޏ &}9zz}Y7n>ͱϞ^q\} cwnpvpv;[TG_3.nw$HX~oY§^Sqփ?g:@??L :u~M8-n/+{{ Ì[6 |-ψ':@Y*B8>g՛nYW'tZ[jO˄bsc.<\4|Ygȗ}O=o܅賫go˸ߤi]~5{T=ڹYc]<ϓ}G~W7d)Y*JBE] 5U*T~1/{7WҋAraޝ䷭r*6ƾv}so]{[ |Kg_%C=3{G=߷xvnΏ5궢߈^+i;_);e7{Z ts'X1N\3iԤ5s^ݹC7GW\oI +7v5\A̵J7 +y$Kc+2΁KmC'8jnƄO?Sw#־ 'b5cQGql8z\\s7}~tcRg27ܙn,h ;{xF9 aE_zQ?ytwXkj(6K['vbs-c]9E+?vY5Wo8vsK~"otW.=F&35>=w۲²4^G00D&=3Ezc%;A̩{3 w3&D)0?(|ʉGyg;5=#/C]6"3N[. oc{tY9d |r[E{ "Ե*'sV~ۀ'^6~pywX}ݾ \ICv~^,WyW]S7-/b:ԕ[ۦp;\s,B p]hsj۸Sȕa~. =lSZ_ؾ}{U9gnAcc{Q7\]10~Xaԥ˃8=BWhFo@ n)ub#U/ldP Ն[`>BȕrF $l2<䰗.΍ {ܗ qk[lYzG[-*0[sG=/Z `^!Y–6Vug#cPvJ1 ^ȉQ^@ o˹ϽfmM/5:SY@AYI^vy^1kR=GL#q7B'_3i&'={DU/\˔sh\yĵv#;W=3U^zƧۃ9)6/w1-BO rgzp q5%8c}B'P619qxhg8w2{w+пb܍zIACetgxOA uߟ/e98w>7ųǿ~j添qGyn!Xb][=<ҧ;j<#c@>AwAO~2T˻G^D\zo *̭E>?rK7~j')kͰ)!#hÏn>O33^PsQi=Ƴoy'! q~tخmZw3" ʾy4[O;)vv҆[]?E_K=xn~_qw{dۧ|>|Njg+1Ԏ A}n=z{-kވb)捧 eSFwέ=1 *]ԟ/ >:{gOU/`XKt^gC{FٱzOS#ol>g={d5kiy(q/Ә 7!-{GuDžF;0Q0C^x?:ưc EwysOA_Ԓk_QztqÇzEf߹=Xĸc>|[ }3\ ~9ϩo}f ]wGRIy 3u-=uFkgx3mK+ @wƾ^pcNyu4yǭ=7c|>W&#wr3]_8;߇}:yO?Ч[sM˩wzwF=/&U)☽stB7~>ץ+^^$q*rSx΅ŸCYǷ{MMU0UjP#S("quR>V>; =}rߝHݱ4%U_2r,zwgV]ǖđO}ǷvqnwU_s ~^3 y3ώ5^wǸЗQç'ܦߡߝo௅odЌfO/JϜ^It0R` Lo23gLH h&@h'ë̩WZ!/j$ ѤHT,,4H~],pĬN7 \GY*mE"l6kg&_1#hcE - |d*֬538-p1њX$l)o6cT9* +Dzld +Eۉ`)l6T e51 +3%Xn&*ᠩeH#@(0)ٟlٌJf450tBaT +קSf@Hf_GB<YXȌ"B =cцpc&_k +#(lC̗, +m +&3yHx CSf4P*^L4,D?"*mFxjؒ؂9lgf Dx#S7$ ҕu]k\g zH>!:CWe%q8.2t*NU-Q"HHQKAN0I!^ُ32tDy*5T$>bc JQѨL'vJɑb-˪ȯ+#p*QØ7W 2'ef1-(RIUrLexjGt>"yDV,o@u4Y3ɘ# +/EMѦd~5/2G~ AؿXf}Wt 4 IA7TNE=֧̄r=yI}6>8vOY-f)ǰJS`2EOʭve8lrm(Lm>Ÿ"=/tW`8FPߘ31.knW/VLV+HYYkz '@_hCLw;xn!Sv(Ib@4(}OfԄmBˁ!_W"Br)D ڨB^Pɿط/@'"ܜ F^.1DbEb 9+ +J͘? ++֯0xBڮʗy~"o9UNaV1&2rA#DPZ (_6zPC3%Ԋˎ|Bf,&VpgL cԦO/`&ͪճhli>Ï [a3*+ aMM2Y 2?KG1ft֋p$ zM=$Vj+ρxFs9qb3lBWh4g-ƀC l;UR OoD fVȒkgun++6͔ +[/ aceCŁ_3o+ +p}Y<̘sSP Le ڤaiq `\ .Oι<]z͔Wyh+o8<9L9+rUgWu˕]U[s/O{Mt$劬6EZ!P0C2)/;]ItBsǘLjrɤg椯e}9|9|Yfd g}3ig{LEYgdӿ6=EL*É99krҳ vv˴ߜ}%%t%Ӌkb5%b]2"9h%w7J`#]/S~Z,[koA6;.Q̌Z~F`TOG/@I놝θ~7$tU.)!3CO026n\8j:eKѐ 5V25F&_bl70=W` +++OS,J _ƅtIWgxwj@dr2LiɏLg|.˱7! pU68Mw!K}X:Xr3'- +DIX;jae] #ʞρ̩歪Vߴpai8 3;ICr#o^vK,,M1,kХԌqoÌ,GJO%uI90k+g&WU1"˗q`dJbɴ\yTJ Ñ΢Lܬq #bgE C:\%ZSzg/`eU +2_w5LrF`Di/1a^xQ2byd&\esLbOb'M.?v1;\xx:|z^y/MrW68[O CXG~|aD,]"D2lL;ʭ[zga|VPLԕmt3  j02:L'tJrh ` ^?-c&q|N6U>`7Vy#,Y:& +q;n`=TF}]F#RQq~v0zo=600}oM:0v@@~k` BH@>1S^T8֏ϐ?퀽A~kRat.4~%,1,@cYqQp:QhY%)SdY%[a ,kpG>`/`ив<>Ʋ#@we{[Voe4&Ze#_bYG 8wN=^ز)^jY.O `˅ȿ|Ҳц8* pņׁ8k:`g߀Z Aߣupge} t,gY,k4߲~ػƀBcMXWmY> xke-X Y܌v~Dzj&ԥ(a42_އzƞ,e< h܎z/=l< +xp/p!Qe})zpTeLl0Lܾh2E! X?(ׂ>؊z V'nk_mYNm,vLov~@zZ<#zWRMւI a=SeM|A[Az:و|Mxp3| ؊~C>E`gF e ;[o/GGW@`cp*< yMn뮄=="YQN4c~}/O^5( ת%FA%#&Ynti_{CvW @B~{?~lZgD&.y521G.{x#7nRnXy-U/*o[_aV;7ЧC%^*<%fep 8O'eǀ{6nk-:-SV,#x!׻^>`Tҋ?<+֍h^~؆zuIX" X+YG vo{Qe]ފh\&\A +a([;V6G+l[_ѽu0j@ש$erksWnt/:Ta<%0oC߮F\X0Yi|mۿ WVn_r/vS9ШqcN] +yx#+jfkw-ZaQ +~# t eƖnmFBF!n #e[!Ȫ.:зefa~y6 X.?_:S)h$D;B;`2V.^/#nr؛ҢRP͕"҄alïqa>u ŸcUlvoqUAUx FoJrke;u +Vc-V橥kCS)ƎĿ|(ǂg1ocѦ7l}ma7~9:jpː<xXtH~`si[g<*mVp.ߺG\|뷹6luUnڴٵykFo׶.ϝ~N9W`}S`"Vqq]ˢ-n <ϗwx܋uVmI:~hwU?v{;|ץ܄7_v7&+ޝ?``cM.Iku+ofgbrh4n$k;& i&? fHRHT*f`l-Ri> Utsߛ@RgRFλ{=^&q@A .d/J/l,E בz*\tXĴf^w /o)̥0 F$haR|٬N6++r(F<N~TCC{TkƼM{iSU+o' u&)|#j7 ^S$f:Z\a+_> TSQ)COrUXtfE_R]H >_(:C)#Ę5n!r})j kDF 94(V߃MД?')֡=hף~k⥌ }v9/\|8eQ .xrm$>U:ɱ"T8#e1{WN==$%-X^2!5t +TjaU0~a+ +)vɧEAcӆv %@ZIA8Zy +7X03 0q\Vyq7m .#dg(KKǴ"mF1vo46Nf^3AC`AbAk{r}Q!)֦#ιaYfH4WOyQZr!Ÿ*#` Y9N}.zDl1.M-bb\_*[ѳسW"6Kaa+ц(;NiIm6 #L`` +X{s/Knvƚ2`|<#RTqPEnpO^4&b@i ^VuiBsc MRps%Tl|oSF+.-˵ԥ\BJL!R)`7NQ'h9?"!J,njw>>D{N{UCw[D?RJ#+*yO2Z}H8M o. W3vׅmiߺ@2q(ԋ(?Q|&'f:%ߍ}3~(V #GdvbtGR9zՀiz04B eZj#N=\߾$zQ /fä%ƗDgMx5 (gz!9{zAw//OѨdv?G>PAy3Ri~o1vL 4lևRPиz.rXXJgGGhzMiګh 'f ?/?PʃZ_8 DTuDKHn&4'güD FGb.ʵhsP3^9st|Q%y>fe1\Q ]V_Z%(hff$✺Ha~7{y]ͫ5Z@sL!j t>RII!b'R̄u"RXփ#\]M㝳41C'Q ‚.¯k_8)_ݞ. jZ y]?@zd.-RUG"?L)ᇵ$x]nc1? y=yl8Z u}5ΛKjx" )e:Ck n"}y5sWl)׃؅&<*I->J@JYD^_ M^/ABIcXՏ| ͏ƐÄ?D,oK)g@{`GSmxa?>d|Άa4NqBU'9,Tn(Izf+|@#~fnfK}J{>%]ƘPl䢾v?|F~O~44I{x 7,%p5]M_6Q;Sչ'@33( .h +يS=q!N:{:o|㟮\jZݵ4Jjȳ-j}#G,/+/,wF +]$XFm<\1йL= TWkᚮEKpF[Yn/ǼF *:n3{`g%m!+OVqc^௖'iw M&5dWRΨsT+"{r]V' 1gCBB +E὜=}Q1wԯ9Zċ;x@Ch}3{ɓoG9gПhfZUJtN9G-[XذYٔ}V*ѻZYBq+yR2XOq[ٴ,5 V%xNZञe'G=1xt=!ILgy/{Ӎ<-%-llQ:¶%TyU A(7yo {}3M|e6|e;I{N5٤Qs8f%5XXA=^zocx6ߤ}M^3m z~ϝdN>de,̀ c!<rdd&#Ye?oJ}<#!oKRJ&-ф'<;BA36$bFc2M '59!Y.A 3, +%q&9 S<'L7eQk a(P3l4(d#[ʧ졣陃٤Y'ndь,Y;|V3,Rx%odc.>ȶ\7@nG6Y]?wVg1yf7j3n6^[?fZi`۵aѲg'2Pޛ)#ՏY‡RΧdY]Mx|Һ̆HH/ƚԟ9ؚ§mҌ9T(SVzX-'kNMg6l]Nm,PMu`FG}OIl4h$collPm_T%hQmΆ92(To[)v!Y=ѠmD%Jr:ؼQsl;7Q?< #ySq&ǹX񒝌[x&m>2-,ed#]zSRBJ|χDay>ՋG,o_3WΕ=!􌕯+m4V +eLa*YL0ljjHj#\JVc YO/F1Ugݙ$ll^Ǐ32 ̌l~(EiF7 +5}X}!hE+G'mWImTX;ǘY6qnuCV;ӎgׇ"YsxӓUO,d)^o +9I/I㴽j8AZ0aD~^;4X4e 'Z ~CE RÁ 'i^uDZ"~v׍G).iWQKv7 r).R(wq0E$'H> 6'h ?}'JrhɏKTЁ@I +B +O +t &{ +O~肦?#:o3@W?|s Q:jH)9D\E!mB0:z};ʯSoӁ 1&Ptn%JAk'B>>~*DNQfv+.ܠ<9 q "EnUIm +EsKҭZP9||={Ea Pb9U\bZf`]Oˈ"nƨ gBKU<^)v n?͏@;%d,{~<rbľxC" +9ī-Ö2Ap5\Jn=9J]qC4@".//^/.*rPTߕXKtʈ3;TZgS,R3eCYy>lq >eP ;I#r]L108c-!} %Ti*3G@B;`wW˫w"1 +NMiEB–[6&lԓlndnRL)}_YPOuKK-~r*> ڳ+ZK[ ϊ+d8<hFYشYWr'ra5p$9Z"CXE.df4l߁}MȚvaRڈfh3UTus[9`n69<")D R:To ga"G?-soۚfRҹ%%RzPB +*TPB +*TPB +*lؘY \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/install.sh b/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/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/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/version.info b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh b/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.cpp b/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b6088c2b523c51507103f655da29412dc0bf2f30 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.cpp @@ -0,0 +1,199 @@ +#include +#include "graph/types.h" +#include "aclnn_add_custom.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,SOC_VERSION_ASCEND310P,SOC_VERSION_ASCEND910A,SOC_VERSION_ASCEND910B}; +uint32_t socSupportListLen = 4; + +TensorDesc inputDesc0_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc0_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list0_0 = {inputDesc0_0, 2, outputDesc0_0, 1}; +SupportInfo supportInfo0[1] = {list0_0}; +OpSocSupportInfo socSupportInfo0= {supportInfo0, 1}; + +TensorDesc inputDesc1_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc1_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list1_0 = {inputDesc1_0, 2, outputDesc1_0, 1}; +SupportInfo supportInfo1[1] = {list1_0}; +OpSocSupportInfo socSupportInfo1= {supportInfo1, 1}; + +TensorDesc inputDesc2_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc2_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list2_0 = {inputDesc2_0, 2, outputDesc2_0, 1}; +SupportInfo supportInfo2[1] = {list2_0}; +OpSocSupportInfo socSupportInfo2= {supportInfo2, 1}; + +TensorDesc inputDesc3_0[2] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}, + {ge::DT_FLOAT16, ge::FORMAT_ND}}; +TensorDesc outputDesc3_0[1] = + {{ge::DT_FLOAT16, ge::FORMAT_ND}}; +SupportInfo list3_0 = {inputDesc3_0, 2, outputDesc3_0, 1}; +SupportInfo supportInfo3[1] = {list3_0}; +OpSocSupportInfo socSupportInfo3= {supportInfo3, 1}; + +OpSocSupportInfo opSocSupportList[4] = {socSupportInfo0, socSupportInfo1, socSupportInfo2, socSupportInfo3}; +OpSupportList supportList = {opSocSupportList, 4}; + +[[maybe_unused]] uint32_t NNOPBASE_AddCustom = 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 aclnnAddCustomGetWorkspaceSize( + const aclTensor *x, + const aclTensor *y, + const aclTensor *out, + uint64_t *workspaceSize, + aclOpExecutor **executor) +{ + uint64_t timeStamp = NnopbaseMsprofSysTime(); + static NnopbaseDfxId dfxId = {0x60000, __func__, false}; + static NnopbaseDfxId tilingId = {0x60000, "aclnnAddCustomTiling", false}; + void *nnopExecutor; + static void *executorSpace = NULL; + const char *opType = "AddCustom"; + char inputDesc[] = {1, 1}; + char outputDesc[] = {1}; + char attrDesc[] = {}; + + NNOPBASE_ASSERT_NOTNULL_RETVAL(x); + NNOPBASE_ASSERT_NOTNULL_RETVAL(y); + 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, y, 1)); + 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 aclnnAddCustom( + 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/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h b/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.h similarity index 100% rename from Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h rename to Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.h diff --git a/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910-ops-info.ini b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini new file mode 100644 index 0000000000000000000000000000000000000000..7570a0699d112a4aba7f95193aad894a7a6c0719 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini @@ -0,0 +1,24 @@ +[AddCustom] +input0.name=x +input0.dtype=float16 +input0.format=ND +input0.shape=all +input0.paramType=required +input1.name=y +input1.dtype=float16 +input1.format=ND +input1.shape=all +input1.paramType=required +output0.name=z +output0.dtype=float16 +output0.format=ND +output0.shape=all +output0.paramType=required +dynamicCompileStatic.flag=true +dynamicFormat.flag=true +dynamicRankSupport.flag=true +dynamicShapeSupport.flag=true +needCheckSupport.flag=false +precision_reduce.flag=true +opFile.value=add_custom +opInterface.value=add_custom diff --git a/Increase_Hsot_compute/No_increase/build_out/autogen/custom_compile_options.ini b/Increase_Hsot_compute/No_increase/build_out/autogen/custom_compile_options.ini new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Hsot_compute/No_increase/build_out/autogen/libascend_all_ops.so b/Increase_Hsot_compute/No_increase/build_out/autogen/libascend_all_ops.so new file mode 100644 index 0000000000000000000000000000000000000000..c665cab1ab3949ca78a467e07f2d1abd1be3e814 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/autogen/libascend_all_ops.so differ diff --git a/Increase_Hsot_compute/No_increase/build_out/autogen/op_proto.cc b/Increase_Hsot_compute/No_increase/build_out/autogen/op_proto.cc new file mode 100644 index 0000000000000000000000000000000000000000..ea46ba47b545dc908a6c1eb639b05377ac58b9bf --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/autogen/op_proto.cc @@ -0,0 +1,5 @@ +#include "op_proto.h" +namespace ge { + +} + diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h b/Increase_Hsot_compute/No_increase/build_out/autogen/op_proto.h similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h rename to Increase_Hsot_compute/No_increase/build_out/autogen/op_proto.h diff --git a/Increase_Hsot_compute/No_increase/build_out/cmake_install.cmake b/Increase_Hsot_compute/No_increase/build_out/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..250558726b3371dfeadc81d4d28198c43f23ba05 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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("/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/Increase_Hsot_compute/No_increase/build_out/custom_opp_ubuntu_aarch64.run b/Increase_Hsot_compute/No_increase/build_out/custom_opp_ubuntu_aarch64.run new file mode 100644 index 0000000000000000000000000000000000000000..022b2a733ff87a1da51396432a1e368099c23c77 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/custom_opp_ubuntu_aarch64.run @@ -0,0 +1,1053 @@ +#!/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="2835312895" +MD5="00000000000000000000000000000000" +SHA="b3d249e7bca2e07e1f4fd21448cc311a34c096ea76b23a1b5fca49aec030e014" +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='' +targetdir="makeself-1306832-20240526095442" +filesizes="130481" +totalsize="130481" +keep="n" +nooverwrite="n" +quiet="n" +accept="n" +nodiskspace="n" +export_conf="n" +decrypt_cmd="" +skip="671" + +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: 372 KB + echo Compression: gzip + if test x"n" != x""; then + echo Encryption: n + fi + echo Date of packaging: Sun May 26 09:54:42 CST 2024 + echo Built with Makeself version 2.4.5 + echo Build command was: "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.sh \\ + \"--header\" \\ + \"/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 372 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 372; then + echo + echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (372 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 +bRf< pŕZaBk-xlFec Ivƣّvݙ̬%8KAQuQ E T"$rw㒫+:8cb: `tMw~,"{_~{d0WN 5%hE^0t,X%[QSEUۡWtI5K-b7lZ=b#9#S.鱬9C C%Cw{BYXP1zتU\ODQusmK6t_v mk^k9 +J.MdmqjI- ԳAjVuu\;0Qykxb#k%[ɪ޶XXH,҅kW.~v&oKkmtKF͙؞X[h4У=qmus:s=rmMUhj &"nw_ƾm:V0! U*[K}piC +0"!3"vZRf)-^ΔG4] !#  +OTrn Bbz^ MW6#=c~J|NRj +𚣗9%AEu[us IR±tвQ+7.0`oK%a[/NzCu ^E6NZ" =48QbS\d85Svuǥ6}oƫ!<~%F|mǰL6Yjh)Zn*tqo-yucXuQRZ+X`0byU)keQԫ[ZLa-6XBv1\Z`IgJ" ո ̪#&C 'o_]꼭_p: 𕥙2mC9EN/qSKjRd)ޅOfh mݶ-wFSUl\ȁXSbb+oUɩ&<U49^LU+XYWrwm-V^2e0K +'g@FyQZ[`OIO‹dO=C6Dޑԡ! 59"t:!Q_p"'x#LkV? ~tͿx|y'{7}k#?~[)0^1)tZlWLWR[kKϪ<>j} +;2~ȓ`:(Zڀ#Vw(&1YwE$;Y9nXw [[1g%lu(R,[ t<ܢ".*᝜d +YF(?K!@/2 R9Კ~G,^z.VV<; x۫嗵c2?Bz6l"~vg,?Lo/)t!J"sT_H jy +%pmCu/EÇ&_%OH{a]nOa̲5"/lWZ6ưan,z(jckLleX=:RW˲^T=UUC%SCuk\z-FnV +<Ӈ^ޮt@b6d80꠱++,S\wzCh:jW\ +D5MM2لwBPU[˭h-Wnze4ڼsI.#=u +V[iIf /AAD 6¯F)g7~,y +`&=$J>q;Nsc6fY~މ;~,IJ7"EyLB'f!|)D?<DEtz" +џCM.FOD{C]~8*/$EDDv@Z z%pf.K3%zN%ы]D{%: +&ϑ$:"'Dcߺ<)e>#/$<^N'diB:Ǐ*m4s7{&5ӆ"xuB]y%"OM I?,ϡ-ז`Sl_ۗ_`~ۗ_c +/ᇱ<hd7wMoLKak'Vd->X52>LΟp}q>yL6x߼`"o$16H6pC '~25uo3E/ sdy_:~;}x̔'Fǿ ۇW#ㇿH5y+N6~ўIof3 |ְd,?s<߅|/!=K';_%dxtG?}0k+u{>^<'z& yGY0/4Ay!opLTX42A`77qw4q珁|grГmeƎ!wWGr϶c=P>}o_o$W}~Xk"0 C/Q/ `*d'YMvn\52)p'{˴h< o;!'w?ke؞qݞU(x ~2YWaƹԽYdR̍k37!/ԡp=}Gy}mF߽;hS?/5ķlVfLxdgS7*<,Z2lwUƽ5tZK6n fɩ".&a` ~PV(BwQʥ rNGG?<{wj*둆XGv Qi·"c.}h ^yE/ bžO#C@}_U@A&9MGn]Y}?'B.A)L_e#_5wރ E_yٳ _ $A:ƻ]w7鏽˹cNɣߜz|؈1w_:yw}yXCHTV05O쪭wE{쭠Dd#QxEpf`f`f`f`>|P +\x)xV*x)x }Jܓ}ܞ9.?/03?3|)7DT93O8Ks*8gX'rB^>KQ^_Qxb}OIgJt ZIm,nf2d:)yh--tbN&$vAgs=9l%#MYa9ɑdvt +tmV߮ +z^EFw ߮> +~#YYUIR);*J.k1Pi>EWqCOڶ:tߨj@rYI:IYiUj ؉0煼Bk!/(7EB^_<@qG"ʫ[B^cQpP#D#.(O.E[a0N8(JYm9|"n㯑|8s$Ay?<<@AB ˉfN[HP8or /ߐ9$st8a{= [/gob<glb-CX {_Bw%.E~M}G27 4!?ϣ ]CXa? +ehyxZ9>l8?bIqJE=XE'e°R}ә2e֙#͸I_Y!5Kq@ 9]ORKY=jyTlI_73\u Dٲ3>KKJ ia[P=KZ>?^TsX-Ib !3ю6([@wQ]}% 6e=6+! j%b*%jVڲo$fxip]'qfƴdBRq6Mڎjw ә46{yᄏo%a7{5{{2930 Eca^ð&\+*5-:ϱp, =Pk3ZHKٖԶGa sCx)ƗMPvOv؍J[łFaU aؙYiXkDnަiUZH +H`F$'dF2Nk$ ِ,f ẺZ¡BPtImD\,Xz#g~Rt%2t0R3†Fr@C m +U9OxtA?Ce0U +Sț mkTBDXQ%̝?ov70_& c1ȫ!To[/8[6P|i* Z6VZ-OnhѕV. t\傎 (GvV}ߕAɗz+'WZW|Y"#+zq 'iU_ZuSjEa9G']>uOT c]7Yh;553Xo.M{&43 i{FQ6A|8el7&4޲7ntk3`/AMg򝳧NBr|jz5}ͳOTM/''i͢wVAsEoߵs͚ߞ&p0HH]X$b?z\4É' M],4/%;f3.g5[1E^wq, nxjաi66ER澋WkzRNI<O yOi~|RX}Fg+:WE}<=casqF X/Uּ'*#>|*W>S9Ho`Rth x/dp y +,gKzgԯ p=C\Ke^fn x/iΏm-΢^}-s<s/:R{g|Ʈ?՟BPhk_`A% wYt&LOoB&E[^z_bnws} ܮ@.yҥDܲ<]{ؑ%Goz// +RVV\UܯѾѾT xrkX{{b0_Rżam`m?"L聬(6H L"V<"ґd6]$5Uo?+kv ;""%\Rl+jKE>:YYhv,kkEeqLZոu5}@Oa +8UIz@Z.ӝdGO"g9heUfƄ5* 6)^:'VkY:d$Ai<9U&]p/v;x,. ++uVglHH"].JBLɌ]*AR\f+}r^ˌu,W EA󖛟GCC=DdըXXC8 ̼:,k:MX,f/7jN&E7:Q Rѡ* LEduY0zlY]5Dpj%u8΄-= ^j +ZQ$o1(N!U/F^[ZXv#_qNSp2ѷ[jҢbB.]F*S}ͱ_?pPV,9SyS\wƋФjykA}r+hzcvñRcf'>0R+dvl8Ra ,oBLSJO|F> Uw4[E5.1S1~9ĪSH&mITG/(2fNlpG1Mlrdaq4LJBdo`ފ{QWW[۝1cl~ة5vFo@4n;@?&CʅϪXGE Mӷ= fxS\Mʵaqpm!a*7>3+ EhD1z@F +AWG,+Kl]i0jG`A&IwيIWOp)v笽9G 5SrK//]1/S59ύP"S >lYs˭O uƎϪF?RV* +?|yH<|JJ8cV{1^t^BA`ި-dD*zDGV@᧧x7cq>@Wwhyxj:V\u|ps̓ckUA!nd# h۰9 y8C|A٘ŹHx]ut/7 +\S-ͥt oOU*ynݽmKURQ,a1"uBR5F+XE )`Ą1@q ? +pB2Wp|2,0h$,Ϟ y^'ucQeԆxX)R,dJsoFvAi'sϭLe:%;Iof!5ƚkR$&.2Rk1}2cFkD< 1mrJqʰ>2#"@ +E(dH!r/@[f8\TLk#W%A”'E_ +Wf8AT't>(o@vzkFw!%(p_Aܞ̠pO|{O=7eW*֡%,w:aYч."a3MDb^ʼ/P8˛BM<#3Q.%FfnO&K+b=1Ok" Ξqv"mLj^MVp\N-R$XX4W}U$cH-Zx}hSbfJbEL %am6ADH/JbGJ;^]ZݺK +7U..V6H.ToD/> +bp,GXz +(n-,Ek|Zm3[2򃹰B`6g+m8-#GwC}i i*:+1&7ѵ8Ap韔tݣ^h3'd$‰x2 +EHJ#D4iB]DW)bu5%M]X:cuBoq )ȓq[nB<,9jG ?2馻R/tɒ樰8< dRa +5un!kŝP.ƉBK\oLgXKjT3L{.-CUc#ӟ{X>OX<^Pyw1㲇i`Y[.~i ޻7J. } +_wvG䊆ipϳ¹E 1d?-V^8G8Tb}^ +?6_ g5;3Lð"+>5]ysւ6l@C8W 1y|5?_&3} څ`q&0ACHXa;np.s>7e=~\uu}S> * +N18wށ7+Քna:A[6 ;$Б𠄇%<"᠄$ !xД}L5;L#ggr ͩ3 +88:ַ`6CفgN+]S +0x;!kYtl;?T @:S: ~7r?i3ψou<wO;g!5y4$̬4yd =GؗYT3c5r2'b!ΝVƠ͠k&Ğm9MACp cYOPK-h/,~; /mSTjZ\ "QbDE4+ !.1nO_ 1f yuv_N;l粫 +5hqTS h?^m]}Yw>hr5k! j1ư %ߘf ^B܄F1B^H^֥5k[<$F숇M򰜿$M<ŀ, 9maw=BS*;ďulY~ʳ3'k3}JOE*JuIe_P|InT['x)^A2o`%/`?>.qJG},WYVt|FK}MnQY;pST =fmT,ɾNO^ӵW+>#k/P̬=_1;k_ڬ]x*9 kg+ޠ+]pg<8YqA4:|K\ȴW^ ЯE,⋭P ߲-LmIl +*dtV*j(UP늍)dЌɆ8gr1.(IݫCyuts&u[=޵pwouoNϰDo`S w2t.MvibN =JﯢR-Kw-#'zt?[q( h%Q.S ;8N]JC\g<<|_n/mc0GhC_ca۵O-#-!m`ݶcB͝Vg(OpgWs,bMds4DL&ҕDRhscdS"'iWk eApP~NJB eA!Lb?p(\l&f+~ c?UrI PP}XCGk7Sf&rX.޿r"=wS7!σCV`%~3;}/sP7̣i: ΍cGx~~ Ń#ߪD>Np4L߼u(m I[{u*I@: #<Œ 7~Z9Tyܓ'xPBG^ ;$lЖВ0()!HxsK8( 0[`UI?`•c{?| Ympg6v xCdV]*\O fljxtu>t-h!8w[D%ѫ88m$>$ -4P >o;j#(%tonېL:<8 4`%8;^?H>X>7"9F~W}"q,Ҵ6 ~{]RvG9/䃮o6τ f0lԿ}B'⡚M<}6dNT^F2GmGҝ c!m2yFehsne2JOاt_B?ͦ!7Qlfd7bA w掴cv?ʁeo,? }gѶkǪ `!gϺ6,hc[ Xd4߳a*k-oH|JL'@H$CedWE +A2Rs%OH'[ +Gx# +"n" lAX#rggF1@؄J=Yi"=2}@?p3kSfe~EG(zU~XёLJk"ٰ\vWf=gr%sNޤpOmN*:}= +m{6 VPPPP'|Y)(Qo(ҟ~ϴȫH l]gy&Y/jo8> |#>8LjTxA490A"< +%c_د$!v,BKƒǕAO%__09bh?{߽X"lպ?O*ǭX"cL$љpWg)t8ĢD9݉)L'X\Y?1?ͥc)P))T)~U?V,+qh4u[@?_n4v k!7HTB硳⫚oS(?I|{y\ۡܶ=?J@zA1ap~uIN4{ +ן 2=c_>*QFtg s>T!oWmΜyuý{Y:G|a 1F8ν#~#"<+9:3 ܛh^YȗFa3O=IA~18No:aS^u4w/3r]7O;3Μx7䯂N\}L6Mu0Zm0ac{1`܇ 0w`| 118471Vaܓ|0 o˽{sosʽaqvm(FYiʚax0guJcհ8@,WCv qCZ +@ ]V_3t~qm'Q;" qT<,f18H>?m }Y3 KW`t^H4[84lmy̾Z_Hc X SM`'zn a 0Aa䋕woU8&+PO la@!NT\1/Pb&ԋ\-.kĥ,X$.FQ= tTEN4 |g _w:H:&|BKGEKҤvwQEP0*:GtgUqr8.,Ȏ#;ztG>}4!0t弼WUݺuw_{-)ϧE2<3iK!2M9f›s(Ծ2w1m {Fkg/NAwsQ"(3n_tE3u z|ԾiE׼C.o32Yzj_}5r`EՋԾEP/*Ѿ׍!^n_T;qz}cEE3/:ѾaܾB"xEԾq^+EX/ga_}…}…}…}…}>q"|E,Yᳰ/B¾}EO/:_mrALL0$r`igC59W#䦘|ăL*Ké&cT5ϿDZ~7U/56})+q<+?C#4G_;v؞Yd~+|.@H ΚX!V**啊CimQZ +f)eJ\ZaիG+4v>}Ĉbk->cȕ>ꟽ} 'G?0aG`B}-<6o:?B}Ұ)owI})uUi'dzi [G>:'p t|H5ꓢ6V_2*?ai֙@^4di*Hf&wz,To5iyr^Y.=|ǫ,:8wx*(ksW{ב敓5|őנfi64\g&/]KFŦ'\^l"%$kΩ.{Mf^hQ9M|؄uXyk}fbyj3Gɵ@9JVS`=M#Wj jAG rWN&EŖ\7^kYo}o*DFkW&]]}h{ _=Eѷ}~g1Κ܂[&tMN1_X׍ qs~h8OsrL9?} c%YIiA}53nLSF_Z2c]r] 0}qY}:<; g -Ëɨ-^W}љ3 _ݚp]ӽYO>_ z"ϳCܨoAn<}%poL}T .d^=:W? W;%OO3_N1nӷд3U?$3$y ns_\FlmY^3#8ύ~oaxߢ F6dC6dC6dC6dC6e(M'7_` f&~-` +[Ğ&ӬpDtBuଐ Z8t+jN Ug[4I՛+f(JyBI1. >`s b^<[WO _=5jK `џK%4bͅ."$iGu+xo$vEGx~o28|翎|28-ݦ6_Kpf+9P݊;IFBۏBF +(t8Anad*8uh%$r\`z`XdcS?x'120g{fEήhk"X|e@d4aZGBU[!zop()^q9+b07Z;4EB]|g- )f Xo-F"8da 6NtSN︮ l5T? +NI?Jg$3%Y (Y8n"v-wF]Ϟ֏ݯa$Ev2TϘtSNgPO>(Uh[\?GY?Q2+O|2FV?ÐrZaO<Lɮg"/Ndx 3nWd3YU?e +Ug?0t~\~9h1N~dLys)̾|f,I ;pDmuVxЇo%+6yw'"^v% \WjZ^H-kC?dkJ5?<G?Prw5r-GOuǰȇo1_Q(K/H܅-ᵋznsr}iYT^yqNb~_˓?YW1E"]x=yⵅ(=C&;?I. 6}l6GN-A\L47:uZL.0D+St3S-$//ZW].)5\\.@k9\?pNV{Z :>J\|G cp='a^k{xotӓk;8wv߲u9vIwZJb/??\wQ}6gw~5^eۿk1_]ɞ׍AUM]v=rh}iOTu ;uK,{yOv~5=ݽumo-&7>[KVf}23;/&wheǸ]Ssj,x-O׳.i,0 K. ~1!%{͵壿jzDcb /~>m1|xc8T ƥaa^ccc?7=LkL~8K;GI},0QI{]-S?ޘ8o!lQrK.6?sqۈq?xJS+2ƿu1%^Is=1N?|1|d5Ii?Bo$xJ懍Yd V ZI?T%xM0Uy$Wuĸ]~<~Ho<7I#Wh<%뻟d~HR)Ì/1^$aHc|IfJe&1JA]%,r@#גyi%G_%ooO%rg7te/99 +I,3S?fq3|9P2lcFێqNG#Yyn[_.d-pE ^? yy7 YO?p;ovN3[l!_nvwqm|}xD}@_@ +s~n_soZ"I2ӂ7=O,.#syY"yY\k/_,.^g!Y|RH61rOx-NM _AMjgdza)v#>~5-;X1lÒq!/xp k +dzQI;W%}_1Y\|^,i&q9YU:~w-#JԆjۼ}۴MZOgߨk>=nXF6:m0qtvj0v.v+ZBUr ^R1B=R\G [Rjl + +f;ggglZ8 }0*r/R6@τ@hG D>d\ɗfX;Gx9$qc{ۄiN,p*=ؚAb!`&zNX9k05Lǚ9 ){BH=M4,0ew$/EaW)ñ*HaR(H_u=\BZ!NCy +E\d =qP r|A4^Yr2pv0{KU  1"mPg6ua~u4VB  >icSg&/|5{l@1ZQ6`9n;4|TmY"~> `"7 Kl8i*T6xZuŎ "HDa& ޸pZu~C'HV%ixafm:X.Ἕ(A8TAƹL+NW yx):B*k@B +i!08xoZfégFo%0#]m鉼^/Lkx$_0QQFk<#ϕ^ DƪsnrgP$!oFth>OS>.sٲe5??x䱗!VEiV.gSv!84uZw k)2G$N2$!NpAX (mg$K\4X`ŏt4#ީ.48 3IVj5H. zO RKIiL?Yr9aSt>qT)>騇+NbPC3pN!jA\RHNmϞQn+L~bNJN9A/A fKAPkmzH9GzREM&xwCb !"7Sɛ66z,+m, "`lYaic ?X!%-@P- =̜۫rcx'MH:Id.gFFV@~dz +C{iKm:F44NW7k$x,e4LUsG*!G0uRL_!PHkta"QK?IJxu7!A (D"KG+Hp &PPW!Ɉ3ppWdWݕ+8ZA1#p0U駮ΜӒ;J9g x[G1V ܞg=gθ5 ;q; +Ci?< ܙǭ8>}8>|8cn_IӁw &:{)Bt\>x^>x\A~KC7/~-~?@8>x/wivx1p88 8ύuZ +g繸N8yW| >xKd]5 | W淋u{;s5? Q7u)ˁwi/\;wN2? |;p?p.Q \();~6}+\O8ǩVwlp[g[?||7_j&E;_eKku,sM0Kg_B/q~>pu&Զ]_{}'h݊7;tL92\'yZ-k-q>|6@Lz7>Izx[@ApqAs~r~9?+w2/랤A@ݗЩ7N' t6#nGz=.p~8?;9?hdz}=ApҸ^A?A/Ws~k9?g8? t\?AAAAAAAt~~-}~>ǜq$9u;}>AA_p~s~r?.{}it_ @:.٤Lt>C8?aAO ?!'s~8?{8?Yz ׋8?9?cjz- s~/p~/q~/s~Яp~Яr~Яs*I$v!A S}f}U.;g{\W|7[|+.UjfG}vP'CU /;2J.[6zW ?ɧ lҶߔ(Z|ik##LeD0Ϗ:V|Es4c|D`Hu$ +9ڶs6}i_(gI Kt9ch "O#^Q$bgJ5Sz5%jD*ZHo/EZ}>$_V~+T`ZVj\?'.7_Ӳ\?߽_0[_ۯ\k_'#ٯWsE3s?_헫wo(Xsb~U?sxݪϣmV~wxk+ ~ ڪ>X,;V߿~EU?'.XsZ IV~U?3WLb~n__ 9*=O5lnߧ)>L qrxd_uEQu{<êczr{@q=~U?@_o?_o.ٯwgu~M=TM+pb~yXsݨ7Z~n?W{xŪO^UCYs}c0Dl`onShUc'9׵?yb9sD*r'.yW'/\(f_ogWW[W۩"Jد?& +)2.HqzQ@^Ϡ~"/rꫨNFWQ"+M R?}ϧ~?*ꛨ_JGԯ?FoEQO7ԿF%7SEV}ԷSߛ'S_G}ϡ~/ Ԑ."H$WNO Ȳ1-# /x<5' ;i* }VzdJ!M|!cabiV {;kWN>ǬQ3OX2"ؚc"muF:*v\DDM4yקʴx9E¤B~k{(Yc{j~]c|||eno4&ҾZZ;k9<אtɴDZNNhO'4#d|bOӸ16t|rs|^7T2qXK%:J۞q  0d ҾOY'MfAatmgDͪ4;{v&*4q ގ^VMҭsւ^H7[6ɣm])Z9zG$AO {:yu9!}Rpu7FÕ}={ ¹s5ѻel?rmsz}Oݐw4v m1<߯g"k{y9 W:bzoNMx8.Î%V0Hh!zcXĬfLjՎ!f뒮i<4fw?s깮 me\wUV>suh?yyx?g~[9{?3#9^D:4{sN}Ymqr4V"FzƐEq#+2 9lArKoo2xcqh!sX ymI t1=LeK%Ff4zАXӸcbh!XӘah!=i /!SޓC )Y[C~ǚ4BOiq+!v xp]u8cP3g?C7zߐGYϷǚ<֔&fy/=K ˶ߠOg_/7:}دe _/?M#j6TxڶSbOd!##r<=3D #jr*zU8@ֽHr1Um 8;;2xu[`[)h}" t,hׂkّG_wĆw lxg9zρSN$qlx^r}AckG +J +ڤqE~"u[ّHE|G +B|45> 8J 2|b/|pzI;KG±9꧄eyNd<ϼSmc\N+2JҥS(Eٶ2f1 !G$y^LI?ҟqǗ )ˬwrV}cK1>3슥Elò>^:Ի;Z*re>ceR+iѭjZjiI2Ur-(vrIH[bʕ \hՈSn:'Y֑vr; ,7>HsL}n.א-MQ.)iH+2嶢\[n@ZNkrneMFZ Qj˅\֗>S_:]8%QM7KYWt}nB%Q_Tos[E)rnӴDJSb -cQL>?S4:=ID}(ԗfASn?KYVӢ?S_Ur:Ӭ}ϔۊrY]_-r#PΝcD}?].#reOc=4ԇrM}OTL]_3J3t>SnVKԇr+ut3ZX__UNdX?aE:3>ղM3}N0=ȷ~ +6ga9iAWMScO_$OCT,dw (§i +EA{|#sGQW6a3xejl[XkAôQj<Вa͒tK=e.|"K(wq&%OΆS1op˺ˆt]/ʉE-7 I7ӚxHXS7>YmS*"ʝLV'ڄuʴqJ'>X=[rU:ZIX/3}|XS*YcݓaGyxnC.Oml_?>4ƈesƹ{y[n1pl74k!a׊1}n? gӬ=]t(ߏ:D3+:/cR=y\0, hA 39IK^"/|(ʼJ|L/|O1 퍀\ +ؘ=K)_=K c.ءo;N>tr,8`tr[el6l~   Ю%grK8o*a˩0<t}0x׍1؏% W +o,;H!w/"og<6h"f*뤯m#.kns]?W?%U"JAG=OI+|ˆm>M]OZ +k` &w_t2U"OڡC'*Ω%BgEOvO{n"\ [zL>ڜHv"p]`gMΑ_D9[՞T|"O˽ZL>O϶|WHOD>͗b+|ٗȧb5/-|F^Xsɧ%'}!Vԫ{&OEdY#o<m}vg^_uW2z'}, ]OSg{Yِd{ȧCd[M{U\UnYμlkd>*3_(*p[n='r| XTi+[5μ븄%|A6˽Ifs@ȵ)LJ μ\OzUR[27zS҉+gmgRĉ3 T|#&g +֯O%JͷZ3I|N|ޡ֏oɧā?4O )C'>Q`-K''>u_*W,ɿT|/8Y_Ku KEF'a&K'>pk_*f'pk_*9u.K}'>9V_*Xyw c%o_9G/Utk>!R]N|s?!RMs⋞kȆ:'>o%w_I|-8uZ mF9oo*>/`c0܋O=Ikj_ɯx^'~fFJ~?y)E%P"ַ%?SՉ/Tl=(ӉO%?Sqj$?SaUH~rbV'֭&·ى7ҺA/߯#ɿT|;uK[;_*N|=*'> ?Ms⋞o3N| cgLƕe}ݙ7tu@’ʝ '&7';%^_nr9`=O|S]Y$Sې +_>`-A#aϹo|⌻—z[O _k×9j/v._Q?M MޟaW\0y0_/vӨs[I셟e[4cEwc]JFD_,,?`m&Gj[-d꫋,%_R ȺY†ER54!_KvIK p^xS_F_B/ +݀f5e^Cߠ̀ouY#N]`V_~;nՏAl64 .QVp['>F(#}Db;o\b;'V}WDVn(ECi>1q[2QO}nwXoֆx(bYབྷXal/b'xybhw}Exb=^ڏ7$Vy]bG%lXyq>]pH"U_8G0{!B{=fN0[#m:x}C ?:5w@G9+r+۲ސmY|LQC2[|Fo˭kkG\Jwr6`r[WZ»Y{|.H9KS9P +M ?!|k(o+;׹sJ >67i/eY\v`1]} O6N7^qbtQz|DD9y>Tf*:y/77I^egO{<{<\7 ȽWX2%R5싽O^K^kO 鋽äv)ߋKjmmxjm!M5YSOVaSOmݫaSGc5/~ft(gܑi7 +BN e%5<@xH^ R>5p_ ~Nx^(#Pp"aݡaܫEX`? ti Y]i_>p( OĴk+|iI/VMs)WC_'!;_Hpq?*>I(o'+Np%.; _*OKe;cx|35%F{/'C/'r Okީ!%GH_&ƒc%|/'|%%w/锹lئoI{ut[؆;AWA* g } +>}'J ^-wXG$-"A_k$sҗ%$= +^ +pߗ$j5_~ȥZC{{3uހ{>`+Ks +]f &2"k~K_~!C܀G|S5pK/;\>Q~ƿ/x<~K5IWCį>BK}cR3#{?O_wOxxC?t xM?A1 \dHfj^_oJ#K?"C +Sjx ᢯K2U _BeC?Q>%=% *Rk$7 )=pY_e~w0K%| /OxOә GZ -> )U7%!>~_/O?K//͖bn |8 T\b'<#5JZ [a逕%\Y^>Mx4O7t˗C_j$;_0t*>M@~#zm }$|g<|xzK Iw?x<SxLϕ̀%2? 4I/_wUW^ \įkUËI*_6,p m~_[_Sa~_/ 0;O$_3_Q?Np +)4O?̯v?G|I?ģe!_xSQ17"ܯK1 2YuC?>vC? + W kw07e~C'A>ɴpsOfU Gц~T燎OxT?C?/~"C? + 4T~hx^ *K^/?G]iW~£Qƒʏ G4DW}ʿ^x/!<M8jx^O'oh^£ +#wk+Qh'<~_OxT?m'ܧo3OxPe~ xS<? {>Yw 6-s}Bo|7 +oS;$~OM|%<~\O?ɺ+"; +jx ~O] ,  +~>CO:/w _+VC?AfC?^O zCRL >YK~'#fo0 O}bU_?'ܯ/4 T?>'\eCP.JÄ"z~곀2G?6ީO7W~j+kxQ5{sk + ;^DxH?5 /!<S߹~}.7za%~_>xpw.|zY G )?s&MSs-\gǛ2JcB=Ah̸o_6Xύ]ϸ)s[ƒzp^$ܥ;C{Ya奔es#yE0X.'u֙urCj*;k>c=[]=zn< G)V2ExNB΢ǧr-=WJ"!_dEKVv 1ʖ~85V)˺e{y|4pK}|.1VT*@~ m~=_iR1A*a~q;?O,z:̶~n/w^ ?]Wֹ=նqj,{˳"@˒!~8?r>;k~x?#.o}~/?垎߹NʎWsw+'Z6ǺD;uY&|4_|u p-N9nxF|,o^̰_Ӱ۵$O`>dIswa 3 zKޛNȢ[&T\͵g޽n&Y 3 JɻFkOl:U-$J<jO.p >9a?h+O[ϤOܞ>H9[Ӵ7+:wmkXw;7gWkzG{/uwݿϟL#g{/lxG{^ު&=XJ&@Ǐ%#٠_17P + 0Ռ۠Cz zdC#8gs䋭CtCϿ:oSGh=)YۆX/º{shg~be֫?]NsChm@CKE"oވx?x4 mǻr"yx?LHLˎ z /xm=("' _|tƐ[Dû8}.k;ӎ -J9P`cNj~ﶂ8yWH} W<)~J>!^6-2=taEǡک3?1&m9bEq:̰^!o|:O{l2Ν1Y.@?^&>0,HbҞU(MQv.;P-9/7 uiߏ]"V%.4ߧOI7yqA[W{\aȣ!`魝y+<'g|CEvW5B~Lіܕ 㯤W3lKL+$O^W'|o½%_q'޽:{vuWV PkF2=hSGGKӠK?z`w۽|(^ybs$¯dn'}I㫻ldB{KK׈4<up,H9fZW|~'WяOdXk<[4 Q~_I>{-?,( -[~a=FW-e}˚׭8fRlSNB%,%39_,{/qM8$]ɩ_}L@xL~vɹ4Q> ǡKϋ|m+{!Kdlh -+@uM[7Xv_h] RA/~Om;G"ptWgȺ5<8`VZYz8/rm,cqX~k<= G.U KwYvrx3y>&})hϟ7Dx|…EOp5\C.Ui໾p#ꡌ?%}pneE^`*8i_yӨ#_BOTB?:ݰ!"V$YvG}D} wa]i]\>m]3-Ry Q׻'/ N&ֵ멾;+ܹL7UyN[q rUᢨ*W{QpZU7uHu yy >wmk:lYVgѳgAؿ8ه*{˽лɘhŪ+ݗ)MX_ᭈVXǀ78ctX&gizI ._蠞D2 7"6i_s1xMz6և0wHғKOl, UN@z +I^~P7\Ы'm{ '7bbⓓ/v=o^ _>C`wP,!wSwѺ"MI?rg޺I +`GĘ .ڡk&o/cyDm{ٷ_|Y~K|\g|م'óWw ϋClyɅ͒%ߖKkϲD쐌#gߒ9O~NEbȗ[`] W_?RDZo* kK!g,A2[ཌྷ.kA$N(90}98gK~ѿO +I^j>B8 N'F榣Gr6wYޓ~ +X|gG'9'&+9?pycya,w<GlSs8 OA_ŃWX%xiwg9e0e`oP_ܛS۰\))SN{A d{EV  WM/=*9 ~joj@ h|{.4]йQ3y=34tFAO9;Q(ۉ<91>I[׬2Gh{OwV˲}zW!p ?vw5?5K5m?>XI;#N({/MfvwlLR<4 cQWnrӵp"]WԝŴԺ|ih[9|Y=4eNJÅMW:u:_S!P̪)džsUkc̷N&]|_w$x2d(xA8i+ ƥlݻD="v.MkQ?MhdScx׹Y tygxպ2 +]YV_᡽|ndB',xu ]ŨOpײ?W/{;Ub'|}.sY;AK;`xJS4e<_y߉[ֵtZ)C}Wo3,) CW!zぎbYflB} bKZ2w.B_(]>?Nv*x|ª<^dؕ~gk/Cgtm!w3ڷM\V>Ks`aZZEXfC@h7ib#DlFR__Y_{M>v-}ǒ+.뱫C@m?pV ò#'ua^"u u 4_ք6uʽk }|AQw~tE=#Y!?zao?^# %"@먟j('WZUEg9i"?XJ K]iS?Nh1"ȁ : +{!$Nxy|#Of;m MWg.Tu9#wnNMQjGrwaU[(˸t,ƻ,w H{W2ޜ }*pMd`/5Ib <ͱsHͿ"ϫtIyQs;<7ӻ<[Zzg*eswNg*|Ͻ󊓽wN*y^bKޡV}6].ѿOkwq_ 'zXElGtp3~仿;Ҫ23"s[ba7wq(ۧyM>GW[O@f& N3~[5_cN,/zۍei ډ67Jwnf%Vsŝ>V>OT2A\x"*\%9kBWL[zGP.]r|h~cH⥮O: yhדa;e:mD%m845_&v } yrJ(j +; =yޛM~Zobν]`F O,u$cxk\KѦ׆}'c}8zm`k]/NwЦ]=Xo~omfPwxγ }Q{o^%g$8WwQ#HC#W"^<>ƹn0_Q36֫ !.qHzu8A9O6m_;ǐmF!\h@-_б~㰷/I}N=Ӕ68؊=7(YϠ %7< }9c@a7R:>(tp.*yU1iiK},{:ؾSt! S*˹-3{uhf?N/P/ye;ݪ:{l7 o:h[ +\IWvGv+:6U~W}PWiW +[}T!Yǂ#KN˥Qq/ҵ{)/[$}G޽AE?sY֕&K +~pVe(e zK!w}[X\ogyʷs=&l|٧`6AvS"cVz]+֏iSMCS/δ8ؙYk_Zx7cw|>0{XCicӆFr޶ٰ I_ooYfiemUv߅:5vse&S[ m'L;&mf@wPp,uW$;4c8g#mٽݫm7-xmPnزS/?\e#a{+Ֆ/[`˚0 OMe\[:K];xڵ-NclЮ%i6P {^{c+T;֌X%+=pd]yvvݮkF5>>ۭڏoз>އ궞~h׷D?| }z5hڿ>+ܱo>Tm.1GnAw9G{#\">Sm SQ4Ģ {Y a S0x,O&FOrD2=tyE6牱AC;bz1YvXd(u=ّy(Go +1P*.ʷ, -];F2sJ\}K'!oa ~}÷lyCa/KLlzؖNKzRѡ_P4LO~7sgT{Zb K +BDbay!rMJ`QEQUMf0uۥ?X +"O0=v|y |15nSGn9o~EIh-Ÿ+AFMezѯXX,cCQ|L\WbW<_n VPyJ;xO +Nl a!7$|]..yMI{(&~*I/Tm*$}xE}Vv3[QkE[>9DGa>*>x|+.((y^}C֗iG]./(97U=+z֮woKNSskih'C˯9]52Wl`<~yP'ߛFbw!g>+~ؗoFҞrL{Ea6@^1A ~6}F:UnE/饀df{X?䷝!{>vuh:cXŇAY{ypM!rt/\*3G~ƙ!8'0 w¼ZIͿ*U:1w3`{qvd'גMIցw,$OAW Ĺp2ތ8>Y~h5F=As>)*zNO` nS_w\GPA^{Tǎҧ#g2s"GxWO93+(upOwcGD6ݏI$sT38d,&µ2~w+}L?: >:Yv?tϤݻR ~!5ESO9IOj9u(=헣{Q&?|9ז ? )S'lǏO|[{ez 5{c+OOqxMqqQk.ǔpfnT5'7a o(,>.cr>^eȿeqd+k2 ,[>jurL|0Yv+(__x"}tX%ّ/2?pH5yH+tߐ>9cjmMIi q!ڽi#y +>5KRVʊ/aީR)orxs<}MYh39dy)s L[ij9g~FhI?ϹwFruIY$S}OYCwҹLy&wsOVdN!,߰r}-eae*CҳG]c/Qv}%E뤾sk^ݤzO?Y޴GZ[v xvB? y9&(o[ G@t!V'x꺶]<6UeЇ:>m߻GX}Qc"="wD5߿Gqoȿn*>}<52] pA-o?Ȼ ]k5zUM>oo@w,:tKI9V0>0?H}>ȪeՃgk/gYgAwٚgWyI#?^xMCɅi^NpntEMYyvPx%)++/0.xYA7ю,2ԫ Qgx1< }@_&'MiEo[NQ+ >s>Kφ=ؼO[QqH˽¯g#Kն>c^j5C:k_3TWO@_}l'ϡH/h=ynn=[wVU<9r]?O[dz& 1e#/rd@`D%pGNEW~N]׫J1 +X+/:R\yz>{6{o{ys=UϽHo=o؆)Km~>u[5i1?G}U{3~*ie;υxn+Iu#`,fV]GSпlgot/{ȹLruNWޟc\poDv`bw^׋'r{*Es"ˏ{܇5-Bg=lE̬S b[:( +}h<2yY9/,C>_ +v:utëbyʙYZ +_MC7f#Я0gȣUs A8V^ ٽTӶs '9!SMs.Xz.68q.zt[]o?qp85Ssّw'& l][ ~Hȍ< ^cvxS}Jo|ikі#\Yt(g_ }<mx +>U)s"v2ѣ?\#3h;KQz*?Eq!}8x({y{k)p-6rhd )g'@CXpyԹ$@r| ^C#h# ED g3DO=ih}`l8G;YT^xL;Eֺ5gAni8Gc}GZXFBW7 ᚐ:1t=)A5c켰=0&)ww|da۹O@=U`Lr>w,G; < +sv3򾷼ȏI3.GY;Uu_b/.ۋv]gf/vD؋ENo/x⧻;]{{񫝧j}sʥG' ?eϥ߯zoV仙Q(a<ʐw{Si'ExNu_>B屄w6+bpSCz6:7;ї^orq/]sgL]3k!O9uL@>sS5w}RGfҥ)eY:?Iǟ4{Z 0LDX_|Osg&dbE<;}5wgW'y&oo[Yx\=ٷyWzkx/_H:C=DّK{Cfiʻ7rh޴ZΡŸhhX 8r>4qyu'ۈ>I#x*X7^~óu,M +b/^aciEy6Z`q ="YiUsRQ(G]{5{㻥ߢ3<o{CmA7B8})~Ip0>'wvLhᲊ:e{ghǹ/ 4k.vm_ ^(/쯬J?4]t^ ȃy@m"v}I=>-Uk_ӆ/r"ad|̲}’r_iR/{OZxCue]%וGcZ8g^7}w ==$8jl9c + ݌`25|~q2wؕAsBRuqd?jtB磅݌0Geb#k)(ƴHB,ǿ)w[Sǭ739n}Nv=}%5nu3hD{8W0,0rb1<{=_WSǨ38U;b񶗍W7Kwsq~ ǹ\DO mmPnge"أ 1Si:d<2yAN/Dޟz!߆"iz$tי&ƾA.fRv;ĸ=C-g.줜^Z_߼z]W*wemc?KIM9cƯIs~b-X/ yl*qTOz.{ p/w,{#j;#e|+mr_=1җ:2a_#^?es]r|]WG9;Wg~Z?e/E(IyGov֥ȯ e#/ц?S,.֦jy8 9Md|dH7}necӜK7rPoo+ 8rn.r"/b|u@ȳd9?|pgV('~ k1Z#KUyη?9_UXEYвĜe!vq~5/u=/c^NAWwɉs> XoYz%me)'>>;r͜ǟL伝+U?S;.,5ݪ1@ڽgJr al~#hSSc1Kz᧏{fr_UVW'_*Z&WwvAsbWN[_;osUqAk?/04)'uM}SHFW/Q%r"Bnw[M]v\hkO2Pӻ tļp׋JޜMOȽl#H=i˖7x(SM?dm._Iػ=s>(6'=;δ[>6QĊ^@*2XcwbSt"D^Hmw9&󠉶Y3nǩJ3;k;3148oiH{uTt)؜k=<k3h|,} -uY/n&}%sm/vp1N::!EkS/sM="Qel/Yⲕ^bLڰ{Fw0ykyZb[fӤ]$FE8V+e$e"T==Ʉ_/(8"qXF(# HR.F'2z ҿ)w[9"1O?w㯀l@]&gk?@iSAw)/N~O᧐xQd?~93&Ec/O_?9&a/٘|܌Nu΍腞yܟ=W3-.k+2H:m}N~%O  [_N&.|PmUC +xH&x)|xUE'SЛtm15oO3F; Gx*?T[;SEnaωS~=W7SS9=[ϳZΗ뽿!ȿ/M }p/rFdyVytjP͋9_1ag1ͳ8lxZǫO;Js"zp)yvU?mtOv-y~brmz6aN-qO6MG=-X3|D?8eǙlC`RRŦV6 VCƗ?4PJ|=?'X"nKcPt>ܮ♦Azx&.0ns2v=xN6H{mn~?dfAbF7=+=c71{x~Hzxo /~|qĹ[{/w4s| +g{*V%vnn|7E?!k9 iv3=Bٯ{h/:2惇g;Trv*v7Kem T|+H,>w-ݞ#rai0#цDA 8~~TiӸ񢮟u s?g?yxbG34>0/5xAs8ec9u6 *Ioo9-iD[|I+pZ/h/E~[=wkz~?I3Gp*g5[6{CtoIQVlSߚ6\֕oOLK\{ց _ǥ}Rc4h ;ya-u&Cڋ|zxFZkr'ך~ZCja)*kM{ŴC>Ҡ[:? yh_lVac}Ʊ 8RmLϖ>yV޳a[vmSSr/isNS8Q9֝hzZwZqN?$'5"ƽܛA97͊<%3r;E,^ bC_yW>ϸ⩏Ge⎗ՙcԞ]R+K;T_SON4*^D!?ḧ ?lz}M{9޶ +=FW[+R*Y=03E\rn",9Ux=*v XX؇:x+V+&omr +l80-b9&g9H:`!xw{5%,<" }{60F#F]胢4qf7S\ynAV\+ VA"!qcSDL!.B~]~l9>̋v1}[߫?UWٿo.g%^%z*>ɋ<r[L\r&;~Wq@F>`՞}O1MO O@'>1T;3;7#~~GoUo7{DZ8v(go_^tRa;=16oTw.}.:mM 6..cwh4 $?[C\e^< XGq4voP*]Ve2ĪV^LנJ|8JC-&.p[ $:ƛW/ϡZC.*ǁ^qpA=#9/3"}5t htjJh߱`[rX|LCBao07mSq5@;8:,ϙ*ɶ>C:VgT,j>YPgT~_=j_W.Ia_ +}-wC$t^wY ;;{}wT}㎐^?]o%}!ui |I7 + tttt8=3΄~$!/Oӆ>j:y{˞9hO9_6X26ʎÓ~u&Yx\8mJgEyqԽY_k[l{?Ύ:|%?s3cxV jbn:#yԭC oD!)'F~oF}#;S瞋W GS|(\+oA3pi\ɎdQGۦmšd}{M_g>s{)|P9 trαcUbE6ŐC7Ζc1'r,WY^؈9Ŝ+:orUa,^N1+ɯyDK(Gک38eo͉gG2Sq]ZvRmo^-X!nJu:ԲNggTgw=wi{^5~g휎߳N_{w:잵 Ru|CTwyb>L=C>-S$;Ȕ\iX xF6Y΁xphǺ JG|Çq yʺUȾ_*;c9qp<Î`|9Gh|gzCO:-J8 sfD}/ SĻ fN`hzUx|\><[qޚ/XN:&oOOB(ޞ׻p>' %,0o_, E\/\V<e[:cmk#KzP c17cjƓ7um>o5aBw5׬+WzQux[BDbC}EO7{>EױxJ{ͽ!=Yй;zkӗ~M"j%1v{3].Y҈i-"oes \RVyH ~kq~o]:^yHaרޫoUQM4=D[ǁg +]kzN[l=!#OVN7{L~0ދ[1MuEwaJ&Fr2)-]>ؖg6u-vy({ff-6?1o=vƉ|l>[tyԺ"or-xx84(ϾvpiaKj!]+ц MIl[c& 0Ք1oߧEhGN}6yO79;|ǭc +F6:ץ6v{! b2ߧe{컬NgVNKc.-. cm؋ɻs~N "'cRy"'@?y7Ab(k lå?0xLX oIw5 +#$uİ~Odu}4QIzdE+!Ӎ};ޛ~ 8)4Ю7v\COi<fӞqչOéG~v{Δ)<;Μ}Pآ+ eAwt[bOJK?k_+Y6>UmnH)Sr9~OO~k +><r֔l_=nQ7eqe~K.Mc[,uv)q|ʕUރ'>i'kk''yȵ:zD(睲C< PŮqwAWQ]Yo-<驱7{|p}cWPyշT fĩ~b{܇!EPoQ_ ơk#iw Q}zqMorB=F`Q q~Sck2D=O]3w1rSr~x^('_c2@y>`y07?ZZww&γջ:>`^Gí6PK|?{n kWdeV/-6ߡ8dޑ!>[g”[#rVˏxFx>nȷ[wdNS}dx2~B~/Nu[Cwrq{w7BS0T~yAd(i7a[* =_^EA)/qVsހr4 P{7Pq!޸c7>7/ +%{fSϘq\j?/czK22r ʩmz[2;\Q2;TxޏߊK<oڥP>{zC^=? .ǩ/oxL~ua&Z}MەNO;Hghz.ۧFf2^?yW֥3<S|w{(7U2WUw?a{m{!OmvE{S&MPfC#q5%ܔD;)Q?QUO}+ENPo|1_ >Εt_}I~۪#;R$r7s= .ay@tn~:Ǔ _>:4,%x 1+#עv"%%!vYoSJ[2->x6\K܋MZ_9g}x4noJ;:aQp_NְǙݡCh+2;@ߝˇ >!3kzOW>;Cב> up )Xb1!#a683ѣG`գú@\&ϲ%MI7n|I[N{Gø{<_MܧhK'ʈUG{SeƵ;eQ&R55;mY)\}~$%ugLi}a` :a:q7u߫3R!trgxbLt %͊țD~+Bq +0J׭A\rwǐukL|lGCIpؑ' csvopr"Dl yVcp_+mp]_eeI{՚ 纒%}_^ٽܧ\v kx}_Aw?4MӁٯ27] +O9l,|wSc6M|lUkhIlϤ4Asfrع#}@~?sonVdSʶҮtsI{x|'Ҷ8?<^117<__/b=qos#E /WB_o`fn]St𸺸6}M AYJfcQxֈk-Ŷ}Be_}e]:/'7I"ؤMa -u$ZG^pF#&<,8Kȿ8K=郻X[}oq6j_:ܷHs +b㏩yuꔿ}ִ3~ + ͔C~7C#>Ԯda7:8eAD]rnfy75א>D%w̳~p뮟> -Yr>t뮌?D + ]|EGO3g|1sΥ#9org8ou_xclGBǂҠ~/HoQ{_bYq_Ĭq/']R}xr#GD]E" +x.ze&%ܻ [}f-Sόy>7c|=yEykCTndC{2"79'Yz 9FR0$jVztZMпF7Q/R³5R_9ώW7\{1-h'\xb Vk zMC yo߫z0e6ic8*? aSrZ=9r#/C6W=\_`Klk%!4gmk)4.IKa7Q}YvcsS\{0mW؀ڨR_x]ocLJI?2{=^^z> "R3C|yyj*ڥ W3iX}'ƴ$~GQ`\t<œ繋᫾45Ӹ^_ى 峼Ce"*} "f-,¯ujx+z|+9.9G_!߼-F\ z9HgofSɖ݁~Go~foy/f8 ퟎ' ;:QyсГ77tw64?87=%Ѷ~qށx>>1]?_O/HO^_;lYvmGBoϞG9 r^뭺'☽-oyMot^8] ۔^<|eSyjYF?YvuQOQ~$#{܅[߼ )Y5fM#= .}`!xEfEl1=_ڶ;?_?UfLї_^ȯ߫oVU 3ꪆu@ݬ:o<Š/*%tU_@U5tz@f5̾:7k}EIʼwQ6.EIm߅r:L;yMmͼY O%3f57̟ͪzau%jjn_[Su#}nuݼfnXe۞UsfTϼ^Xdfus&WSSU +$ e>ɹ)0- B7V74WoT]R}OS3j*gTTՂIu53t3ꊹgTBj%t}K?ofͬ$ܔ]UUĹ +eo|3KU u8TU=/P"߂꺙7z^U}  kYC"5a=P}_]=6ϬK[`_N6 MUWv76,hl dolkk$@jRWTx=W$yJVQoCk+.P3OVod磁Ν^^:bAm㬚y= <{HWuU~9ݑ_8$%|Z.UL0p櫅t^;.%QCMFT^=~#:_t2[N!Ŀ *fTW62ڀ +S}s] %o7rkyM7O2bko|̿`21+GiAϝQ[Q7&_kf3)g_nmQ&>_770JFU̪W {f(m kP3g5 )I8rS_0V̞9Z+d5 UO>,-I_5sk恮*[0)3.Hiy :KeM^S7H]Q_5zFYrVHJRԻd-].0o ~aCI$j\ v ̪>fn}o"rZu#JI>A'ԙw1VVЉ :%Ժ G,;#Jb$W(f;m{+0&t{ɠGix90W`d?h(PL*%L+(̨^o>P_A签 +hU5qQ3ҊdFo`hFckf [0+ʠoPQ1k^cE…_Q# !)WL"O6Xk8«7ΣcuFdW[Pǎ t%%)Ob rgwU`(Oۿdd`wcMeɂ=Uz% +x]?Fu PM%U 䀾ΛuҌj5I<N}*jQ{9'/e0Uy+ Fo3*dХC,X{(d'T{(~%KUϭi h@$G;8󗥼99"]Oo=D|xO(B?޿RTiؔ_v[Me;ޯpq_)D ӿzy>q]ƕ6ʦOͷOeG M,WώXlj];cFa}R>et/__v˭7vOO}/z>9jT[Ƨ͉Th*{*fUmޯt^=4ܹ>T,4uAum3yzɴ~|g6HTZ:p8CtuOM㿒otʍSnLzfd$I`+d*P3IdԐrG'Rk=Уxg̗qfͼ$x53GVkYZv`C"saLoeMkKqde]kHgd:yoLҚ^h%s_rvS _{8:mKI+QKq4n^յӪgqJ>+~*ݤR.N>z~d= {+7\=y*ihSNwumfFJ/oZf*yUtՓs u:%UJ~:wwJ]__ص :ޤ!5,^ 1"a jPHW5&͆xhOAc$9'ՔqJg<64 +ѥrp"keeS%\_kzZgjޙj +PU#Z<&|w#Z" "R;0>*r@jz7SK0N3G_77۩S* Bz Or-P_5Esa(m=IQcr"d ynxA3*t%rа{TP#]睚{zQ]7u +{;PPeOM *fj +";_Zә&([PѢ sTQW-$:UHEg{e5Ɵ%6cf*erF=dG宬̟Wj%zxszz]S%ӂh^0!R+5:o (Qso/ yWҥKpie95oj̚:#$z/OE:%r%crL[2:C&îM|zBa_֫A@91Id-ӸL 5%DLʢZPM(gkoՊ +=#Ehi#F}yfq0HxkBW%Q))€WZ- xl^w&dQ<Y<'/3f(?top[m|6r"W>ǚFj)cS +~O[Y[x"sܦSv 1Zinſ:Fչz0M%<75έْMdέ՜JN\wǀY Q ܟ:ROܓၒs9@Iw.[TgWsJ^K|37!{A*`RR>n +BrdDVV|N[BΘ,G6`t}c TiR} 9Jo6>E<>Rz^Ψy+D_!Չ!+MUmzjFvh:b9"V"E*R3%* )GISsCuy~NB7%xId0mV1 3i>^Ru)N d@i3=(MHdodT[PW3>8v~cMK)(AHDb(k(U¥HrIJLW/K20fMl"6ĔYN2:M!)*rZZzNO!DLcc7@M=ϑUߥRU/L{w\'t|4=bt'2^/w꜖saVo0̺SyNS:=Uȝx$Y69:@;OԬ1#_m#La24Γn\2t8D1hD$rh ̫g3яY-{ >/%eD?P7˄*ϩ4$z[S|*j~s+S7PӐÝ^nVATSImVNjkO#kј0&ioGy]$1uWdjZ1,Ur) R9c* 8i<Ž%PKx=d_in洗tU"05zOo)~,l;eM*gyQY)jw='=#]ʇo̹ZKӴ%/sBJ#[ :ധ޻P#V_djr-JqJH͗ Lt )a#[RSTg:.@MH !=s=\Șs(F)J3aozTC).s fІWЛ][3oozgH`f4Ɩ*:s"A->,8J:ˁ53Ƨ1 4ұFjћn23]XWGu;QͺCj q}nF2bDF22]/ykYʫs{Hp +LNͲ6.Γ-h@SI̙V\Tԧ`C:Tzm*3#*S94<`#N)?`^['^^΅?aZWНu9FD g9:]<G%Dgd|@!>ijOx.ȍ\gԃoyٹWoa<4Ӱz<xz> ,"z]~+LC{ djAVxۆ8~څv6Z`>n]@?wRz`.`?``}߆waGA3 rN~>Nsa'`7xNÑ>ߥ0* lg'y'i5ҥ7ښ {^j0,-3AK>*$4>#\#>O;sO>pA|rSm"xGM|2Cp&K !h251"_F{> {{=-kw;uN1:j +@mQzkSVⶒ+A-fov^o9+/kn%|^kҲZ;5o֮i٪G_{=4`bNY9qXMW \2q Ws5&ݣ(j_c!秫v6+ +[ȃBޙTmB^֕x~! lL1o%m,hJ8O]ZFD ZSgAs|K\KѝQ$8YVcmzć&:ޢH4UO m6toԮqȮ_:,* ;m:qOXl֗X (͢f 㯿6.ͫ(j,"BmB,I݌ Wkh]/ZؽqSgaS5f6aǬkp?VyZ[mLOŘeC[|>&x7|N[s H&re7d[.eu?okYѹRLQXvcȨ;,oԡ}j{!%[ܾ`D?DF=;|s0ocU< /4`]ظL2$%%q" + g|ĤC̓VnEQ_|2?1ik]d3XdFxxES0#6\b rÇv#q?Lxx]c]?-WlV3޺˵6sQSq_{G iH$ pG W#NL-'hZw~-7s52Uե+:ɶm VyWS8ZVH\Q(pVd+qX fm8Xal&qqw5rF>{H [)aXRDGq2?{5ŕVW(73@{ق}5!=r&y!\\x`貜WrgMV-[W)y8W2[[waFLOLlK\VC8Jteqyp|w5>_7r}5HZu~%w-lMI֥%9[; ^L._jS!h/H$9OM\;Զ֑Xfk{w$:&&hq.=[ptr \28~O{$qSs%:K0n)3_/N}I+[cl,Fcq{J.bG=9G>ݿv? LEp!Vj5y-ƃ4eO\_uըNpg +#og rIYY|JO'ˡQ34kiI)bsUoQĸ1FYhIQ(ix,Mh>_ٰ'դTB6y2#q>_dӜf]npcr;W{Tk̳:K !#yzj@KSfM梫y>, 9shwިZ3̍\wB! +_W"=1rueVCmClӢ 1~.pSֹ<\/pYpn܍$q/0V +yj/pKWYLq{Z {Zd.vƚoܹ &Y*L(P`__Q WMw?ɼ_$ 4rTCM퓎=샹 ٌvrAwl6{̏_9OMg9qS\oW\0,/,][];#y!"CV\V@CaGuםYO6ҹz]bq.'ayꏻΣz?n= tj[Gs`ڿk"P=HÕ/M@P|o.&E8efBhfMSD(!OML^qj޹CtHΓ:l@0c4bѷ}X;mho쉳 #ֱ_6><qX.]j5!^eԟ J'yb^J.784/ȦA$ dՋ~},u2s;a:L7*i wj-g՟y1; as_sñ&m)')Y۞k?hjw/2`ŀ2myߙv Fn5{;;t׵S'jյ4*}Co2<9ý^ ]nG;<&黝ޔ5z kjWDžkMOvڍN8e6769K>\FN-9mD_\Gnt~ҧY{94/mYҺػ#`<ҨOBVA>rZjoANV; uN*bn{?Adȳ\[ K'z rK|nss8ܽDBpi?to=x |}Tu/^^s<&wO^j,[ yoϫ7\[{@13WZ~~g\Y.n^ݚز]FGc6`(yWW#-Z ?͋X-3F:͟(j}†֖Eֶ͋넽-!:l /r]?/-.*6Z5Fw%ې77}γ+xB9~K_:Kn_^7k~J1 N|-giT +;")vDl ; IAs_5Ol$Ѷf~ky.`18wHVaԇ'ܠj#sM\sr@ ?̎fS,OlIZ'96JfQ2Q,9Mm#֯#w356vmцOS;c'?fy&C L;@">'};GEњڽ?,yGAd>/}AC\-IkE;-mj.o~?PϗBۭu-=3',u;cwŷ5-,jM.0?|j[U*CO?zʣϧM QHb(֨geMof5v[/Dn.to47h`F1lبOG[Fr֋pRk2gB7^Y\cf=fq +حMk:k I;B(6M4ױV[1}FvKӇڐPH)jju!_ng{A%M?݌Cfvֹ9vݬ`6'f:0LJO`[ӽE`=[3 ڢe+a&n㞌#MK)E3 |ύE!jhٕlЀ\ <%ii-Mxk/r@Xe74  8TfݣZz>[];58B? بѵ]% Mmؠ؍JЈ`JSk9n9|ov%. f~.;egл@ /Z6T޿yB}h-$'Q\n&AآֱKױ-HXc}K,ֱ%ֽr†Z-aY]\ka5264K}X0˺Ɲ&ϙ4I.=q=i ڌ#% Z} 6mbhc>Bs;ʻf<,`gX!F<1?:^5o[A98鳐F[즁庅EEԩ=[:kiSniEdabS2zZt6fZ2] I EkNK,͑!{Af(Xd3Ylޕ1 *]4N.F1 9Wf~+ ,8 pv#k$Q xo{_7P )~nybǵnmTL7/`7?Bap>@as$d'OqNT>x%Mzwq<:]Oo&gi(4.= Y7 9!kvZ.1lD۾RKLѯk xF?.w/h QioY@]@sr޸Q rgQ&G_<37Dוr~[ K3uE $dO)̒\"5e[9!Gr1~~|)jMZtv+Z+sW&UtNIW)wcX/ܔ0$Ly4iw٨_1䪿r:\!ֈ7kF\ыpc8gL;%Xc66Kfkfa3Io@E{=Ev[aףu{5ˇa{.b9.`zHOBUP.%LOBUL|"8+abg4jJ |&_/ϯKUJ+_țVy ݻ +8_r~9݃"~Xi)󮏿 +kһDhyg,_~$ %+OY$TU PlQ1m{kzVKn\}wI(+6|\nEb干ۿVi!~B>hiP`c?bIyH]Β!}Ciu4M6? ђ4gXmؼ!Ͳ)5-#u3nCmy]rmr6-}xg%^Z{꤀qE-ĉkq"Gn6]`Z=mp;e5sgZZgnUB䔐IU\AzpːBA6] +M47J*z9͓oanSjW~HEj>U A|@AzP_tO_ +|BlL_[ZA?lNE`:W}O'tϖ_' +$~s(#_Fxq/g&*+EAEJh`8ի/YUd ȯWU^J Jeɧ`VyA | +3Kh,d  >0O %yӌW*J_R%L3$䟑xUBWj^B4jW~4ɂW_ +sd PYO&T /LxoX6u(OH7C-6V(9vx\K7ʗnt8ǏNweF*(۶m%ҷmNKR7oKے,PjXBoؚNuzΪ%0Dg9ɝsǷC;u=Q_-%qWO6xBؚ>D?isZf2QgE{N=@q{ue.:M-U5F 1Rɨ ΍}Y9ν)ֲ2; y{ +(J_G/(?5?? Sw&DQ=TBfg^wA' +Pf jIyN)x8?i -(6rL s̖pXfUl% IJ.T }S#1"QA&hjC[5 +XA3TyZC +t 6$ C!xSkST>O.ղA +"ZcUΞ'X]^y龒_k?Bt1#vko`7ܿb!Y /ְ lYD[ey5_ kbuSleJXR&t/: >a}>K>/&|߽*<~vUA gCrD A;Lr~*OR8V,|WEï#z >!KU%}, ,|!Fh=Q#ct})}6G藒X8S>KYB("}?ЏG^s8<ݦ gA"D9?'=3;ߎ' @^L **fz,>DZ[ϐʡ$A*gBN*m4!"7|N+ߔ7 +T,DϠB&%ދ8-S}cOY) QIDR%|ħ% +e@3RY#9(-XOwg| +So4~/ X"E/a@g[R砒-~%1nnvK9}Rjﰉ.!G&"홲P3>J{.z6-?z֛XJ}f8WYߒ^!&Ь4>wK?OKAFj3'X!3xi-RNI*UE1쬴scyG\Jdg&G_y $jНYXB4I[S %}G ZZw+\#ق.|O=vta6{JkeYԕ[UHAM1#z J-,qu$Z}NcWQUYV@baOKqgvN"acIw}4NTX򌫨Vw(N+e:O=UN.9^ZBDRwZ;p +WmmS|)bM]\ڬ}io ۃk(?^T zhUt\Wnɵ1Q)މu?f% +HoZ; y9Bw:,;Z4}"럳G&r"8Y_M)05.>W] pMl +4B)yPƎ0`اfpuArڭv#:= S4Z>(il3ZP@zW\|rF}%lU4Y(x2]͕߳QvO̯t^]UqT&Ջ>8=stgҶ,•Vq*e+%6UuEޯtRw ֊\י >/c^yi_G0+¬]iʵ|:;hzfk)+ܼZmK%Ck3;{|]5tsyO/P/WY}3+JUA_x8㡎ot( ʹ9sdC!\ F}@Z+|ό3kgj'Լ&oPxO+s +fAMަunWߩǘ(Q'oDrSgͨsUQSxyR2޹+iro~cW&ܯ 3oqJ1>3*3]m/Hu[)tQPk-`]n׭m:g+z?[S&R ao>g~~2.K[4qY 8>b`p/n=#8>07]" s7_p/*9ી[ J;p"K'p?*1瀏op G3OoFxMYGn} xkrp~\N=4p\>s\ځ; +2MaώѱJ,pA.D8'On=Ks389Ue)p|TJֳx[OR |pppd?y~|OUO~D'o> )>ুV9| + pg*mohYn 1Gc J"mwOap\![ |yYK㣞V |pyóY=V|6pۀ#o~~x>= (O|ুp|Qx6x-pmp8/7Y&K"EOx*w<_ +Jˀ{=VY|9*+on^{wޭR S~<TQEOo^ ু?|5 ۀox'pj|:1ˁ_<NӀW 7Or:޿kM4Ӟ Ī"ڡ6MȤkm'i[d&AۤK@Gz賤I㶀nºAAA_#aݟt2聤=.GzA"}8M9fXr~Г9?t:AAA{8VXAA/s~r~q~%?;p~9?Mfz+ O9?G8?8?}SA?#_8?8?9??p~Oragm=,!7u+}AAAGPܰO:@ЃI# t郠G> z&ɜVXr~Г9?t:AAA{8a}'}󃾇^AAApa^Ao7s~[9?9?8?]~~~A?A?A? n1(ͷK<.,>_Yr |^7X\-u?i曵~#8/:FrJ5z{cx "I5F&G|< )]]'Pn:F0>HCVDs)>Qs)"I;7/C܉b miT:k񸓅f11bbq![Q,WmJ]P-RKv@ҶЈ|Mv6Q{ץ ?ǧn/ +tާ9GsJcdB6o0]<)5bC(ڹ[moS|s|T(8IxG D;/;&zb>e +7|8<ޣe\k3)+n5@~fjd"4X4//;1*e&ʸ5  [c{_nWq&~Yq_h+/:~T?_Xcn_+//Ŋ3 +~.0|ߏT?0qJ~٪_0&~pG%~%k W|avA_p쿁6OKO ?oxD2O/9G~yG +vwTDuOK+e^QbA6WVwHs=G vUH* 9Jg۩F8vU(#As__WyG\ _hq~T?dR_#β_o꧍a:4=VdF?V`o+~'fP=NvevK3M<~!_Nc4Q5_5>PjzjW;Ix9og5~ r˷,_,CZߡνT?J%wS)OS}TwQ8O zuTգ~$DNzW")yzJh<"OJcyz &viD -ۣi:ۣ_1x"6iΈ4};zH/_r&x-hwno ɱptS1UW>FK tйCNojzM=h Wz ͱ]5Ԧ|MoyToϹ=%4FhŜ[9Mt0x#BoO5C޼SS)&8_+wZG'B!j?92~ qɿi[?Ok՚7M mn7Qk4ˬdibWt\DKJ쿖񢵒; M` 4JfK'rѴX? +vB +μ1zSYO֭ + o%cƗxXfѺWcM=T~Ym^+6Zj:\mմ%V]u=p?(h}\msbắW%W]ݖ ?b}~1}=l"a݌j{CºWۇ ?ھVxO[1'wyFVj3[3ڲEǼ.lVK;p͢nf^ v6+ [H v6Ok|6ga؟؞ǪxolOSnLڙ12Fk;uqӗC%қx.t2ӗw"})eۧNߥ9RwX_w軕}Dݯغ.uct_{tc%i.WHOi5YĆL;Vz\De*D~L/Y?gCiϮs=IWgIFZl=E(2NAVn;8;9-}yuto}MԞ99yф@rG y)v(Qܿlź.LP&yG?ۏt[#!ߜ}UiD*i&@sڧɶ:?ƿ?ƅ}ƁS +-'5_bĿ +SKEӗ{̼Dǿf8B%~fwǿϓ_zxkjkWZbڼjG'6zTjdG:K1.Ưέs꽒qj;Ρ +"MFxc5zUy{xcXO%T'eҦű:,#}5ljciq,#}5ljciqf>HﳲT}r,p |uk^a˩`;9\qOU:ƱL`y O8{{8#T߷8֛6&O8$zAIkqΧ37-yYN:M 7-۞IoaWIˠu /^N[ϗg^M&uN}&ynz935 +d_&DInzB)2ջ 垽_VpӋR~N:M"7=Q$^M&BEuҫϤ7M/V$_"Lzg哤ךIo^X>Fzk3+KIo{&|7=Q"䗝A^DAI%DީIoJ޾v%LznzRy_&.7xV/knz2C%Lz/dH/Z7xD/'^PI=*2*QˤM?LIO酇J~ns2%Lz72rӋ/s}-ŏP~_P~.vӋ Lzd[8ۤטI/Io=X^k&nzr<%hzEe\}_.'=_>R7_>䗹b^/[2e%Lzw*2}ҥ׷BޢI=7=_&a>3%Lz3X*uc~gv8Vc}G3s*7*M%Lq+FJw *yf7yg&nzyg&_NÔ<3qӋ (9fMO(2Yt (2չENvS~.u#/}M/4RI/_DӫqӋI/_Dӛ?I@z"nzKNp'˕#eûW;]ndy/uu +Xk]n=%瓞kN.[Iϵ_}7)FszS5HדGkz"ߊy\q]m:que\ڍ\?u1;q]^\~\sp}AƵqu-e\:\G׉nµWwţcoq{'+gpS~,'<)~=Z,OwV #35:uމ_ a$w +{d>kS5H;NĪ`[u{&/J-m24s<(lOay2p#ޏv6ZǰJİcL؟2C`{j bXCLW|=u1x?ƮVq*İvU솱&İn maD"d kP*İA1қgbXkM `Z k`F2m&LrP1YŽYa-fư~*^%N *518 +cwlzİ va7_obXL kdx`| uVݦN fqTŰ^31hKkcޙ:mOŰ>~Ot3vڶa]cXWY}m1Ħ=ú&)b<1~.1,kT ki?(-A{x=xOkA{4kZ:X\ocX'3@F kd d k}V sS1LŰ35iZV?IŰ34R1,/S1C;a\ڞúTŰ =&~vJ_1d +pbX֍;3cX\7C.؎5&~r݃6|ur}z)y|Ja%f=[ViΖ> ׺J>_5]-#6`tz*;9[oXM= ڷznu szF˛LX5Aġ5h_{qƪ~fŌI}u S*v+v6Πmgtrb1F/=l!`ݟ4YA"ܟcѠ=kiu/ÎRmOt!U v0+*ک+*N%-# hW)i{hw  g>cs2S׷.}SBǮ۩mM]Q=LdJPW"cN/F.Ɉ]dĝDžUޑbW\ .̉]ǝ.ׁkty>u/VKU$ⅇx8K%P|yKx m yջ2Yn;?T`m,M(wgH3'T`(c)ze6q E>K+Z4"fIĕq%9W(N4ڠlVXH'~ĘŨlTST]Y-/E\  _6 e'efo诞XcFL_Bomtg#y[#dOzșxVkE>Gxxe&_#|kYK3Ymrʋlo;|9j̳*Ly>y*%&_'O`jXϒ)dy7)/K3S^=2eK,<)/K\|,gK/gxANyr?t᳕e.|!&Ϫ|Y^)/GgA,Vsˑ<ϟ+gyN5ȗ3ʵxB>o)/W>gr~&_ Q ^8}(+VZ.{Wg!/_|(TL:Yy3)]W#j/Mz HHLFS˱uhz&jI&[nEBڀtC}eէJXr8 ˪fY5^yZYV.߫xju{CzM9U0+{>yުw:[ >$:PyX߲'+$6;ĪFߢ?%.lVv]``A8OÜ|B+n ^0/䳽E&akF8':g?lm9dՃ>ù'mG6g1W?sUZn>0뵏[dZihN `Y 219f=Sjl`$]f=L'/Jab iV\+4a[%1^1̊ uK'IWc=oNC?Ja/D>wͰ P>sm v\}\=g˒9|lq\}_=]3 P0F|g.[a\6A/[n3mP e#cs|]ԁ&]}khB>.3וi4*4I>#+2Og-ߊ ۂߛOW!&x!6cAZkjVv432+nVnٿsS6w6ښt~Α~}\oY~S8˽\guU^yK7{Wu;['@)6(?9vj_$5L_ 3^utl]uGntg ݸzsl]5ŏ?bL'y\#L=砯L }.t5co9>N`j-s-к$X ךDžnz1N:MM/2HJz3$ב{RNwWFWI,NCaҫZ}֏'IIS~߳'BN:^|&u]h}Lg_!ݗ|LS;Zt Hwk*d:#pUk)}N>}꼠}Ғ=5hZO^|ѮOtro}ѓh$н4֊zW F=q6쑫Pڠyg^rMٵ/6~ + e - +U +y>v5&Xj! +{f xNZʬ\EN6 +L.~ BkӀq?fDŠ,vh#g YvDH*=x_'b/W3<8⛀+s=E"r\g-x9p:R#Y'7N>i?u2mOK Uv?~@|O.0K4|}|r>gYj2&3Cv z,)14#K pehn[0diϔ2{AК,3;ͤ %g24:͖?o}eǽyo}ooqi@3fYcNyy);}zi\P.&Tq_i~wLZY,Pk[fN=](yl<Ǧ@w:g[_f]l UY?v-G3BsFly:澤m(/fϖ'6cbڋ]}|_oEZC>:B.O$m=ԳRԶW KAȁu@B<un-!&AUw` +:ޛp76Z49Ly|PDֹ/ mqo~cPIUܷYgAeZqs:Ň|i *;rQ^ռ8Z˥{?,py^=2V>`?jeZ~%j'O?5|fNe0)ڧ!v`h!)lfRA`i~| n ط \y`_cMLsY+-ESyCŽrz~=}=N}=օG'+t#gm%pmv|/𷹢iHo/n5{G&CZ5M@j zsbuX}_m:qgip[OJP?o&x~j(? ޥ3O{i0" OD9šgՁS7X}q + +o .+| L<+Ms+LP%HA' |I + jwk< L/x^(P_SvGm A֣~I[g~DN3y'0xUxwhMAO/pS+'xH/Jܟga:1~çǁW9|_xGΊ~—/vLA +?^gÿ?X_O<ÿos'2 9L|~?x\^(@Tk|:*|KUE +s)b <q|R5lv ߊn,32~7^G:Cc_ +xh-9toP +x?<ۡC<{':E~'p +-~+ ^G<0 ޠW( ެkZ[ I\T*'_5xJ񫀿!*?Ưxl/? + +:$3t4>I+/)9$ڏ>$\h?DoKx\eaz_~@%C:Ӥ|HG^h?@S/]R/OuWo 5%Y0xO?kI\}?6COOka.ZO<]/wW>z/vW59Я}mO<8}e>zzG4<>z͓OqW5W'8O} j?Q}?<ߡOܯ?'n\G>]ܓ,|)S|Tz7kKxD7nNB?7wig_3O!  9i{r'~wv'~T\_^|ÿ៸;w\ ៸(Q5~:Ӵ`cb%\Xsm!Go_3/./Q|vNY6NK։H]Å˧EV+柳Dqx߃*^Z}+:m2 77+Pq߻M`bh{+QLV뮸NBLgŽS mX[H_!ĺs67̫8\Љ[) כ̫+GF:0!c|)<Mv= u~=Xᩡj1A?F}3* +槟~ЋЗF3˘cL/S8[#0m9t(g d%Psg?%s^BUzG]3N/y,#ڼ(f3F_x*1,ܙFOʔ{gw75_鑷}'#ġ[^0q5cC,E죴6·ܘ?(˚C=Q +\+;|6oiпx=*3gxM6A;≅FJSBN{Q^e(gC{D#d{[zC>.Fg&QꛟG{}ǥwXw(Y52\bջ{ M.}Xߑrm}]`džjۑy/{@a/) +X_uQoߎ'/6C:;N4h1'6\emg?`0׳X_';</rE۹2GMuYhiv-){1'\r1\M}"k3\ ~H/<{Hw*9W["M?<[} .|Z?eV2Xڶ_~‡Z6H_>ZNn)=W}j;Q^_灸EHH ؜osFy`!wm.4~;|H+ꡓwNv41ZM KUAQ~'~n__@ ϹXe+zqG?!4Ƨ7&p|g_?ƲIo?ߨ4='_,O~WlyZj48Y1o<#9C}ҷ{}z9v4 =vշݪk$.N8oق|OyUu*FNx\>~1 MDS ?}%MιYDŘy>Q 6q"ϧBQ0/ﺾ;u93zU.<0-y>r=e:Xlorپhw}F+cOq-D9f)pqgng}sV_!gϟCu5bC eт5QwVgeyUxY^ uauWsxW }GپXQ_?w +PuK[i~d"?y$3||j/X>ƲO]C,ڃ~kk;ӄyylJx؟Evbv@7ưaW9DGe0ʘ\>o4>eeu({Բ~͓j}ΌVK5[y!7 o4啢zQ#Н<ᝧ;;Z68b,kp4X/BYUY_V1QgʺQlڮe5,󣻖66;zYG 9{8Ն,{RsMe2 7'M9k/Ab̗8(/A7<}tC<7' zs~H<1vN"txi7'_p_'.c`HB5mO $9Wy{@;) +-Q'K{6C ?^y6Wbn= E&T@>СN?HrIMFK']~c$i(x.0N{KT{7CYx7z!s>gx.ߢ}/򣻑O'T. Hy|դ }`en AFtW '>9cH0Z_耾̬>EOsDYKUiORw˶ht`>IF|?F`g~Xh\ C0<@;&!M% OhSX(=Z6~\̧i04z=3w 44/X$/Y:wxDJޢM(]˪FXBs(A]=,]<{V}ײV}"eqjrű 16 t= "7(Z L,|O} +a狎w0iyZsE@ +<ɨk ]"gVfmlk,1={d1_8A,/VII? {`-JS`>:XgQwW=sOڋ32Eղ7?Λ~\ش5oas +y]_ZܹB.%mG{r>؝zc35H)w +{DmD0xhqs@;Kʸi NMkk5iYb]goZ:͟9os8%فG{{=xR>\lz8OrEqu>bl7IT$Q}1&zƅr O z͈25 ] Y5x؉YsYFݛ0/߫P@\l)@&W`^β +.֑u;EỆE BY.Ȃ?؟ |bV+}ԔWncP&cm;n10d`ynb1rII0IJJ/%ne7J¬WIw˝,kx{Ms”sSuDrzƩpYs@< ((L=-^s]a)+MBVfYq[i>,=}4< t>l[MoI )c&k(2ǎ|zCǚnOx\HdȂE1.W`|[>Bs\uXXYDy>T 4}.{x(,g >H"fle rưr ++q/&Y#Dj􋽰_O, QW%6'u5z$rpdJ `:^K_uah߉- ힻ`ҡ}þ)}MpwlE1UPw|B 5N_ j,_.rh♌9cږǸ`cMyYzIsA9ӳA蚇>4,PLg:ܨ;:^; }Ú3vzC)f}B2@ߏp܁Nʠzzi9G͙#^oi8>1J4QN+ۛhsߓ4ԭ6am6KqOl}%Ms(}F*@ya@G'Puĩ& 9Ss)vo~'We ~QhA ,2Qg#lb<-m0s1!6um0MKk.3t]g] y:#o[9<<闥/pOVAdڕCe'bKR}kW"jj'wLe7,X7{Nbzi:9wֿKWO}\ߙG9{6$}}WGA 9<Бׇ>|G `_׭kNL .,_9 1XGzw0{bu\ ~\\+ 25O<[SG}'yk˪E78F=wWLAg& Oud6a;<~xHxvyMD]:A='-j]39xm:f[ϑ<"#'t gb}1!G 4z;.~SPhFYA7i,)K75~/HJρyuBaf Y\9:WN>E)e':2nn?n^o[z7іO 2u'\}^Y.۽jݠ=ⷮK{@7#kEGKŇHQ#|k (Mcޫ*g;[NR@woI,g>U?];\b\5C}oqlԍ{Tld- +E戎@#rc 2߾>I< 4#;' 2.n tL':װF[-di'C1yڴ\N9bԈ h|iWu7 bu +h??2&f^5,U{Es==,|ܞZٹrPAuAN4uj]hPbLڕ{Ykփ^smrf+M2dwWs"ȒԤ̸@7.Wk*wKs&,[%jƵ nЀ\y5}yb?)2.ZM_QżgrJFu!;2R-ۘomll:8Q-#ʞ4;O1`Xݣ@Iԡ[`/_s&m={8/cJvEЋiλXͱd6c]wfc|>]-Hژ7鼌 237@u}M!mv!KQ.Yf]cmvcYo̿Z~aT6i^9=yuW#0M7 &`ڪ<5FvR_1Ol|VdCbᓠلl<-ZAce3icY;cY3 SlϕC[^G}ikwyˆч9cYiwKߴVW}ύ]OX R9226}\0}\1dPs hz'שqKԫжih};3*wll s$,3sb!I)O6ЮX_6WǾ,}T[aEЇi[8tmOT0&m q5;cƴ[)=翂OV }P{#c^=d]or>&jWɋ>:+[1nHo{Hzy@ߏʬy P0.2@E8nyoy=!i_[%)[9lrꦙCgP1O~{gt} 7Fۦkuo~l;_qmUJ3s [W9X<[Y;(\;76qi굂b>5}'\&.NM;}m;ԣ ӯj T:՘~GTJ,h2&X'QƇ1J&vnP6o>*c]$"I :"XH\^_]T/z6SO!/^iN SԾI\[$j7 6<6|w%B.o;Ln7وa+KFԋ8oȿ!cSyZ:F#B|W>/e8BY!_Kepm*;4v6}{;z:qݺ#ɵ5^+e:Jn_^8~wQ VJ8ŠwPر?F~$m3{4E^dk_ɓnuy1KOE +;R4BiG>%c)9@3 m*b\A{ t:'L1INw9g/Az'#'6M9lt~M(JZdž,w +kks1ƪ_NVƪNQI z5 49]/TRegcv yϳ>ٟiA_x~ExozP^lcOn@ϵ"ʊr)wz^a;aPS]%%ct{v[)vsU9؅6dc"{yW.{s}x@[AlG~:$'K7fֻb#PYC=:f)_wA_fݹ+'ǁ.)I~'De#rꔖ ȅ{ٹnqlp?3^8 +=:/~YeӢQ&+5(c erw{6E]yy ~y.Ys/%RgrzeuHzN.t+a,@yā;٧L{V`Ծ1y?ȍ!}m hRݭkӣ c + +_XmU/y)lOK6`+䇼D.b9SSj=ߙ%+]9ؗ_NQ-NG/461g׃mCZNgѳ)iz+iu':ҹsZJ4}+9JG\֋~ҟsIO>E[OGE/}Cjlu/!h݄ˑv3L}'ΙVNmhβOg FݮQ%_'ׯ}WfԮeJٮ}fMwy7YgEQ/^aoBըNȀ\en_r[qO]Ǵu02^0?.!vkݡ}G$V^b>%Mzk,O r;u0xZ u!.sT W*#[;!eH@Hw\e )µTʰQ~aجYS~?c }翃Xoo#/y,Ȍb|YYy2{ߴŖnL{X/:޿,YNMϗr= l>NG9`&W6:z|s>Ǒ+|v5+jwY۰Ce +;#ȿ@t!]=#|FY@DMZ}ƃD yާٯ{i6޹BϥX5YO\8W˅6 ծ]+'x֓ c ^p=۫ߝK=[3K|*~u?0_H 4xK\}яb{R}:2:2:~ +Ze(;vϼӷÎ9gƼ韩~ lL;qf9=e+k9{|7k: V7?R{yۡD;Um؞?#ϧm];?%/j{?o.Y|w˗?jsg\d`};gA{zO)0lnR7t+΍)AfNzk뒲i &MӾD;ee>;H˨G@bl:?u>Uxt}*7ӊMA^Om:kүp٤ۼ zľY+C6z*7S͟f8M6iGzŘ߯ޯ:/3+;Z,@qZ.fywuM~B0=heRY ! ?160_Tdz;kQ Q˶H1ciL%Y}ϝw/ kaN:ùWU1__Ԧadz̚?.~P!]nYd]ǹ ɤGS/Y_8ztt^fl_bs5ӑ槾Q..3b/؏~Ou V{O|W{͝MƤ"cA.qQre;>ߞOwmEڷ!3 2iwcCO(izZyyʼL|W6P +/(M<WϷ<Zmԙ>ԗ`=QgYs2]R\l3 o4BrYϫa:NNG1y37jO#;x8Tk;!ozo7tc\>SЎE7O Y݈r#4r=gO6Ժ9D/[l]MQG |W8],ߺ}|/0^xƋ{Ƌ?x"Nj7^4?/> Gru磓6GP\cZ !#x?xC^=ς%eC"zs'=e2㭴cN 1Wĵr+wR wCewtlo`#||QʖHw'^3^r?{S1Xѱ+O~ḰwPѓ+яy?F  9+T`+T1PzTTGVh(7翕qvTSp 5#ƕԗJ<ѶX]Tzy^V8uD[0>I§>Usg y(<}U]{ ;"<-/˺m?~;1ƃOs?j^Dgهٗ8$$A/>=)1 ercN; ?՝~gz?~~6dW"Siudh|3wb-GG 㟠9н,P?[/zz + = z**9VcymA-^&Qwb2y(:v=tJ\~&EOcZOa4V_>}=-|=+|=2/k |d>gYȻ8⯙9iSY=ͿlWZM`= f!?)YyYdp<;Yd3NM]#N4HʺJ:+;u6!qe;)K;1sF}(QHgGnpz YrĮ/ gr١^}__\捧?޼iWlzw}#GN?3~_m`6ktǜצR>/=^5P'Zxߧ)3FsvCㆹ:0閁ȧv'׋ɽ^N ;ܛv|<\_-0G]s#(Mӎ:,w|J\>pXO}ϲ-N=N4N k$Z,OSv/>и ~>cu։HnJ'b} ޛNr~z։pe1u$-doJ?.#~>}#w{>vRϮ])C( _G 6ao}_|JCyv~9sZ=OrsU#i%R>ho{{OY8~<n^zGҭgu>H#cOlF<ܾls'U"~j6׏03y뫕=r7dquxzNV"P(W"zdU^ge+`{4x|5Pba+3 [Mti,ZփiX_!B;Ceku{+cWǴumk%he(ts\=R->>#Z>T],=V깩3V6 ]WC/MJzѢ>o;?Ա=I%~hgBy?û>E4{C+4ջCjޅs1|y9O?m,mj;sb&}a/]\s9o4SRu5Րs۞$ױ&4 {r3H\;*qZНct?.߲IHG/":=F]]^Z%W_ij\^Oz1MZ}>pj|^ԃur/+3iZ֊ +ދ@#:},/?Bݞ7LO9j>s42 Pg"9b "WqMސoSp7K,lY7cK~[S?H4-G>o#<σYbr^/^bᑯa<ܩ//yXɽ}ϗoX +gS1IpimSrw}?2~D<﷞~!*=~:4>.Z@fw9Jƻ㌫L:0Y2Ќ?1uO~HL,XfYA3dv'';:2쥡pYb5yo }ƭ+31n.=B-5N'5oc&x)]Z*8^˜|+;vkz~d%y>>V7'ӾkgxO3x*뇱U~:ںVO[̻zV/P>60z_1|c_4{CR|S>gB?xQRśx/}<:֔MŚ~WCj%Xt!J5~/๧a.11gb^6:`7rnQKs6zksPfehwQqǝS{I3}c;d4w[) RJ9uBOۅo3;*ro]E=q{b1;qGϜ;Q&W&G' +y&yqcdE3x.e/wCύOsf}~|*ut_wcLNkWYz +eM}3,̽O?pi(Hqˉtmwe_{uxRRX5˴Uq6͜<,5KaSwIt+';?j^㉅<0=@Bϋ0;m]%ǜ;5M M@M<; m'oȧo7=?iC'f[fցǝ6kwҟOCء1}M2_/B;@?:< GM WL1m >xg[x"ŵecMK}J 䊦5?#4 m'*'8֬y?3W:'F"x㴇(r!Qplqd]n.Ii/߳5+">^~;{065o|mφ!=s1͸׾/;꜆CzWgpZg1gj͞ uA ebC{Z䓜s5LE i݉e/iV=sWΩ섄M!mΫOE݆P^w-e,EĘ +na UcH"8d p~8,3-:ɺqM C빨ӎgfoBZ :3>K,e@ߚW Y$/"mRٱW~g:oq&uyj_(#1f_]y64(F\tj5q87*JiNw:t,|፞eSlfY18ܬ=9/+9Qλ>(\k(ˑ6-Z$<c1mHCGZ?Z3\^1C}y>OZH{W5||QGȴq1GixXc?wcia~ǹx~-Ϡ-޷,A;} HćfU kI<>tv{hϳ2ls5{^Pg=uskuasۙo; ,A2S7 7 _ [5ۀqÇW ׫oĜ#CJO}nwe`̵ +B@~+"y=Kts0s7mSqk}'[9kdy{T?^Pf<>zʎk]҇γoQ<њЍ쯯B/O/F\* Vu(Wxw/ 6iym~+t(g#쇧ƾo^-nH.O,8Ϻ791_-PV/dYǡ;8w:vyqδ}g/ϓwdLƎ˻2)9kBr m?lvpY{bv9kw(}~G<ˣ9P?rzrOyn: OJQ'z\]@wܴs7$\ȟUӣB;ag`g>{~zΏoxzѽ"|* zZ8ܲ _{ND{/S=ijN癸BxڦMvkm}uŢ<5_;/8I߸lwJD-u# {ӛްus"WvgGyqS#=-a0\b"qoq kQ co?>5I?4ZY Y$n.!Sj2ormr\驃lQ)Oh(kofBH! jEkikz%$@BJh&3_)< AsE%W*bPl=נ߱rDbO|3ۛoX^{^{}hyeAy̗m̏Y3+!݇ĝ>\;~|/?&zVHKbr./>˜%XuO)#xbdVSX oFAkO˸Z]ht2~buo=euʽcyF[zX߄L31x-C޿H:NVzZ}C<~:m[eȗϒ8w+~ +y|/Oy"Ư~gڮg|4q]6|!qJ1er3rzi9s9|}9޷V=\'ϦˆoJ~ \8oo݇pΎK]kiϥ#.#q#];~Wɳ7\U W @Z<8 k\9Yb_ϼ'h~X3x'Ogw /ۜqt Cڨ_qlgJ6snyw-<q ʶ.t7n/G>Gg|w'k_ͼK>g;v+wڸzocg&) m/Dx G0NJa=x*?vO쇮"GuV˳YćoO3OB ~9 i~^J=|.g=\?sGvF\I>S&|:.k~TZ2t*gmq>mI[1mR#HvD,|k +1x5x'[S9zq p)\\rԳYXc'u73W& W觌K;ȵ+p<_9_θ˵ݮїN0NgxƼ2uvm0k?<m D~ugtb ݥ)a.`6= cQ +fګ8w;Yh|? ._Bp'6;j]3Џ?ʨ{kMj]kCcu rvϵdg ï!rgvGSs'`rߦ{}{1ɷ7e6y`[~GAmⱽ:Agf~k빏5\oE6;ObwFK=eu7vni/,6֜\/%iotþ2_:O#;yY"5R_hS/w0pǽ~?i#c ++e E!ߏ]]',&M؄kR!m:wyN}3O{2zߣ=ޏ &}9zz}Y7n>ͱϞ^q\} cwnpvpv;[TG_3.nw$HX~oY§^Sqփ?g:@??L :u~M8-n/+{{ Ì[6 |-ψ':@Y*B8>g՛nYW'tZ[jO˄bsc.<\4|Ygȗ}O=o܅賫go˸ߤi]~5{T=ڹYc]<ϓ}G~W7d)Y*JBE] 5U*T~1/{7WҋAraޝ䷭r*6ƾv}so]{[ |Kg_%C=3{G=߷xvnΏ5궢߈^+i;_);e7{Z ts'X1N\3iԤ5s^ݹC7GW\oI +7v5\A̵J7 +y$Kc+2΁KmC'8jnƄO?Sw#־ 'b5cQGql8z\\s7}~tcRg27ܙn,h ;{xF9 aE_zQ?ytwXkj(6K['vbs-c]9E+?vY5Wo8vsK~"otW.=F&35>=w۲²4^G00D&=3Ezc%;A̩{3 w3&D)0?(|ʉGyg;5=#/C]6"3N[. oc{tY9d |r[E{ "Ե*'sV~ۀ'^6~pywX}ݾ \ICv~^,WyW]S7-/b:ԕ[ۦp;\s,B p]hsj۸Sȕa~. =lSZ_ؾ}{U9gnAcc{Q7\]10~Xaԥ˃8=BWhFo@ n)ub#U/ldP Ն[`>BȕrF $l2<䰗.΍ {ܗ qk[lYzG[-*0[sG=/Z `^!Y–6Vug#cPvJ1 ^ȉQ^@ o˹ϽfmM/5:SY@AYI^vy^1kR=GL#q7B'_3i&'={DU/\˔sh\yĵv#;W=3U^zƧۃ9)6/w1-BO rgzp q5%8c}B'P619qxhg8w2{w+пb܍zIACetgxOA uߟ/e98w>7ųǿ~j添qGyn!Xb][=<ҧ;j<#c@>AwAO~2T˻G^D\zo *̭E>?rK7~j')kͰ)!#hÏn>O33^PsQi=Ƴoy'! q~tخmZw3" ʾy4[O;)vv҆[]?E_K=xn~_qw{dۧ|>|Njg+1Ԏ A}n=z{-kވb)捧 eSFwέ=1 *]ԟ/ >:{gOU/`XKt^gC{FٱzOS#ol>g={d5kiy(q/Ә 7!-{GuDžF;0Q0C^x?:ưc EwysOA_Ԓk_QztqÇzEf߹=Xĸc>|[ }3\ ~9ϩo}f ]wGRIy 3u-=uFkgx3mK+ @wƾ^pcNyu4yǭ=7c|>W&#wr3]_8;߇}:yO?Ч[sM˩wzwF=/&U)☽stB7~>ץ+^^$q*rSx΅ŸCYǷ{MMU0UjP#S("quR>V>; =}rߝHݱ4%U_2r,zwgV]ǖđO}ǷvqnwU_s ~^3 y3ώ5^wǸЗQç'ܦߡߝo௅odЌfO/JϜ^It0R` Lo23gLH h&@h'ë̩WZ!/j$ ѤHT,,4H~],pĬN7 \GY*mE"l6kg&_1#hcE - |d*֬538-p1њX$l)o6cT9* +Dzld +Eۉ`)l6T e51 +3%Xn&*ᠩeH#@(0)ٟlٌJf450tBaT +קSf@Hf_GB<YXȌ"B =cцpc&_k +#(lC̗, +m +&3yHx CSf4P*^L4,D?"*mFxjؒ؂9lgf Dx#S7$ ҕu]k\g zH>!:CWe%q8.2t*NU-Q"HHQKAN0I!^ُ32tDy*5T$>bc JQѨL'vJɑb-˪ȯ+#p*QØ7W 2'ef1-(RIUrLexjGt>"yDV,o@u4Y3ɘ# +/EMѦd~5/2G~ AؿXf}Wt 4 IA7TNE=֧̄r=yI}6>8vOY-f)ǰJS`2EOʭve8lrm(Lm>Ÿ"=/tW`8FPߘ31.knW/VLV+HYYkz '@_hCLw;xn!Sv(Ib@4(}OfԄmBˁ!_W"Br)D ڨB^Pɿط/@'"ܜ F^.1DbEb 9+ +J͘? ++֯0xBڮʗy~"o9UNaV1&2rA#DPZ (_6zPC3%Ԋˎ|Bf,&VpgL cԦO/`&ͪճhli>Ï [a3*+ aMM2Y 2?KG1ft֋p$ zM=$Vj+ρxFs9qb3lBWh4g-ƀC l;UR OoD fVȒkgun++6͔ +[/ aceCŁ_3o+ +p}Y<̘sSP Le ڤaiq `\ .Oι<]z͔Wyh+o8<9L9+rUgWu˕]U[s/O{Mt$劬6EZ!P0C2)/;]ItBsǘLjrɤg椯e}9|9|Yfd g}3ig{LEYgdӿ6=EL*É99krҳ vv˴ߜ}%%t%Ӌkb5%b]2"9h%w7J`#]/S~Z,[koA6;.Q̌Z~F`TOG/@I놝θ~7$tU.)!3CO026n\8j:eKѐ 5V25F&_bl70=W` +++OS,J _ƅtIWgxwj@dr2LiɏLg|.˱7! pU68Mw!K}X:Xr3'- +DIX;jae] #ʞρ̩歪Vߴpai8 3;ICr#o^vK,,M1,kХԌqoÌ,GJO%uI90k+g&WU1"˗q`dJbɴ\yTJ Ñ΢Lܬq #bgE C:\%ZSzg/`eU +2_w5LrF`Di/1a^xQ2byd&\esLbOb'M.?v1;\xx:|z^y/MrW68[O CXG~|aD,]"D2lL;ʭ[zga|VPLԕmt3  j02:L'tJrh ` ^?-c&q|N6U>`7Vy#,Y:& +q;n`=TF}]F#RQq~v0zo=600}oM:0v@@~k` BH@>1S^T8֏ϐ?퀽A~kRat.4~%,1,@cYqQp:QhY%)SdY%[a ,kpG>`/`ив<>Ʋ#@we{[Voe4&Ze#_bYG 8wN=^ز)^jY.O `˅ȿ|Ҳц8* pņׁ8k:`g߀Z Aߣupge} t,gY,k4߲~ػƀBcMXWmY> xke-X Y܌v~Dzj&ԥ(a42_އzƞ,e< h܎z/=l< +xp/p!Qe})zpTeLl0Lܾh2E! X?(ׂ>؊z V'nk_mYNm,vLov~@zZ<#zWRMւI a=SeM|A[Az:و|Mxp3| ؊~C>E`gF e ;[o/GGW@`cp*< yMn뮄=="YQN4c~}/O^5( ת%FA%#&Ynti_{CvW @B~{?~lZgD&.y521G.{x#7nRnXy-U/*o[_aV;7ЧC%^*<%fep 8O'eǀ{6nk-:-SV,#x!׻^>`Tҋ?<+֍h^~؆zuIX" X+YG vo{Qe]ފh\&\A +a([;V6G+l[_ѽu0j@ש$erksWnt/:Ta<%0oC߮F\X0Yi|mۿ WVn_r/vS9ШqcN] +yx#+jfkw-ZaQ +~# t eƖnmFBF!n #e[!Ȫ.:зefa~y6 X.?_:S)h$D;B;`2V.^/#nr؛ҢRP͕"҄alïqa>u ŸcUlvoqUAUx FoJrke;u +Vc-V橥kCS)ƎĿ|(ǂg1ocѦ7l}ma7~9:jpː<xXtH~`si[g<*mVp.ߺG\|뷹6luUnڴٵykFo׶.ϝ~N9W`}S`"Vqq]ˢ-n <ϗwx܋uVmI:~hwU?v{;|ץ܄7_v7&+ޝ?``cM.Iku+ofgbrh4n$k;& i&? fHRHT*f`l-Ri> Utsߛ@RgRFλ{=^&q@A .d/J/l,E בz*\tXĴf^w /o)̥0 F$haR|٬N6++r(F<N~TCC{TkƼM{iSU+o' u&)|#j7 ^S$f:Z\a+_> TSQ)COrUXtfE_R]H >_(:C)#Ę5n!r})j kDF 94(V߃MД?')֡=hף~k⥌ }v9/\|8eQ .xrm$>U:ɱ"T8#e1{WN==$%-X^2!5t +TjaU0~a+ +)vɧEAcӆv %@ZIA8Zy +7X03 0q\Vyq7m .#dg(KKǴ"mF1vo46Nf^3AC`AbAk{r}Q!)֦#ιaYfH4WOyQZr!Ÿ*#` Y9N}.zDl1.M-bb\_*[ѳسW"6Kaa+ц(;NiIm6 #L`` +X{s/Knvƚ2`|<#RTqPEnpO^4&b@i ^VuiBsc MRps%Tl|oSF+.-˵ԥ\BJL!R)`7NQ'h9?"!J,njw>>D{N{UCw[D?RJ#+*yO2Z}H8M o. W3vׅmiߺ@2q(ԋ(?Q|&'f:%ߍ}3~(V #GdvbtGR9zՀiz04B eZj#N=\߾$zQ /fä%ƗDgMx5 (gz!9{zAw//OѨdv?G>PAy3Ri~o1vL 4lևRPиz.rXXJgGGhzMiګh 'f ?/?PʃZ_8 DTuDKHn&4'güD FGb.ʵhsP3^9st|Q%y>fe1\Q ]V_Z%(hff$✺Ha~7{y]ͫ5Z@sL!j t>RII!b'R̄u"RXփ#\]M㝳41C'Q ‚.¯k_8)_ݞ. jZ y]?@zd.-RUG"?L)ᇵ$x]nc1? y=yl8Z u}5ΛKjx" )e:Ck n"}y5sWl)׃؅&<*I->J@JYD^_ M^/ABIcXՏ| ͏ƐÄ?D,oK)g@{`GSmxa?>d|Άa4NqBU'9,Tn(Izf+|@#~fnfK}J{>%]ƘPl䢾v?|F~O~44I{x 7,%p5]M_6Q;Sչ'@33( .h +يS=q!N:{:o|㟮\jZݵ4Jjȳ-j}#G,/+/,wF +]$XFm<\1йL= TWkᚮEKpF[Yn/ǼF *:n3{`g%m!+OVqc^௖'iw M&5dWRΨsT+"{r]V' 1gCBB +E὜=}Q1wԯ9Zċ;x@Ch}3{ɓoG9gПhfZUJtN9G-[XذYٔ}V*ѻZYBq+yR2XOq[ٴ,5 V%xNZञe'G=1xt=!ILgy/{Ӎ<-%-llQ:¶%TyU A(7yo {}3M|e6|e;I{N5٤Qs8f%5XXA=^zocx6ߤ}M^3m z~ϝdN>de,̀ c!<rdd&#Ye?oJ}<#!oKRJ&-ф'<;BA36$bFc2M '59!Y.A 3, +%q&9 S<'L7eQk a(P3l4(d#[ʧ졣陃٤Y'ndь,Y;|V3,Rx%odc.>ȶ\7@nG6Y]?wVg1yf7j3n6^[?fZi`۵aѲg'2Pޛ)#ՏY‡RΧdY]Mx|Һ̆HH/ƚԟ9ؚ§mҌ9T(SVzX-'kNMg6l]Nm,PMu`FG}OIl4h$collPm_T%hQmΆ92(To[)v!Y=ѠmD%Jr:ؼQsl;7Q?< #ySq&ǹX񒝌[x&m>2-,ed#]zSRBJ|χDay>ՋG,o_3WΕ=!􌕯+m4V +eLa*YL0ljjHj#\JVc YO/F1Ugݙ$ll^Ǐ32 ̌l~(EiF7 +5}X}!hE+G'mWImTX;ǘY6qnuCV;ӎgׇ"YsxӓUO,d)^o +9I/I㴽j8AZ0aD~^;4X4e 'Z ~CE RÁ 'i^uDZ"~v׍G).iWQKv7 r).R(wq0E$'H> 6'h ?}'JrhɏKTЁ@I +B +O +t &{ +O~肦?#:o3@W?|s Q:jH)9D\E!mB0:z};ʯSoӁ 1&Ptn%JAk'B>>~*DNQfv+.ܠ<9 q "EnUIm +EsKҭZP9||={Ea Pb9U\bZf`]Oˈ"nƨ gBKU<^)v n?͏@;%d,{~<rbľxC" +9ī-Ö2Ap5\Jn=9J]qC4@".//^/.*rPTߕXKtʈ3;TZgS,R3eCYy>lq >eP ;I#r]L108c-!} %Ti*3G@B;`wW˫w"1 +NMiEB–[6&lԓlndnRL)}_YPOuKK-~r*> ڳ+ZK[ ϊ+d8<hFYشYWr'ra5p$9Z"CXE.df4l߁}MȚvaRڈfh3UTus[9`n69<")D R:To ga"G?-soۚfRҹ%%RzPB +*TPB +*TPB +*lؘY \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/custom_opp_ubuntu_aarch64.run.json b/Increase_Hsot_compute/No_increase/build_out/custom_opp_ubuntu_aarch64.run.json new file mode 100644 index 0000000000000000000000000000000000000000..894245f7a56a85ec609fa86b377b8ca6764469c1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/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" : "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out", + "installationTypes" : [], + "projectName" : "opp", + "subDirectory" : "/" + } + ], + "setDestdir" : false, + "stripFiles" : false, + "warnOnAbsoluteInstallDestination" : false +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fcb26a122b6159e15d1f2652e6d8fa654507ca4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/progress.marks b/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Increase_Hsot_compute/No_increase/build_out/framework/Makefile b/Increase_Hsot_compute/No_increase/build_out/framework/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..a51bee29d08c0427083721ad372e9f11b22e4cff --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/Makefile @@ -0,0 +1,211 @@ +# 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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# 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" +.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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/cmake_install.cmake b/Increase_Hsot_compute/No_increase/build_out/framework/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19bd1a3d3131b234c5c2f13b21811afac60df217 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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("/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/cmake_install.cmake") +endif() + diff --git a/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fcb26a122b6159e15d1f2652e6d8fa654507ca4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bf55caf4d3c532ce02444c650ad9af930efb5b5f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc" "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o" "gcc" "framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2cdf8ef870ccf33f2d4013f3779258b2872cf3d2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Include any dependencies generated for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make + +# Include the progress variables for this target. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make + +# Include the compile flags for this target's objects. +include framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: ../framework/tf_plugin/tensorflow_add_custom_plugin.cc +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o -MF CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o -c /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc > CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i + +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_plugin.cc.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc -o CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s + +# Object files for target cust_tf_parsers +cust_tf_parsers_OBJECTS = \ +"CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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_add_custom_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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_tf_parsers.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a9bb611dde79737be869ff0056a9bb5f34c9ea5 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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_add_custom_plugin.cc.o" + "CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..6bf20290ca96884571d87a4b2da962e5ad556d47 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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_add_custom_plugin.cc.o + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..6c28a2fdcdf617e2a67adf3f62934e2a19e655f6 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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_add_custom_plugin.cc.o: ../framework/tf_plugin/tensorflow_add_custom_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/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/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/aarch64-linux-gnu/sys/select.h: + +../framework/tf_plugin/tensorflow_add_custom_plugin.cc: + +/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/stl_construct.h: + +/usr/include/aarch64-linux-gnu/bits/typesizes.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/c++/11/bits/cpp_type_traits.h: + +/usr/include/pthread.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/aarch64-linux-gnu/c++/11/bits/gthr-default.h: + +/usr/include/aarch64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/11/bits/char_traits.h: + +/usr/include/aarch64-linux-gnu/bits/wordsize.h: + +/usr/include/c++/11/functional: + +/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/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ab564b315366e9116e7e5f75105bbec566fea95a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e471fdc8bd7fbf949f581db94fd24c02afe34b2c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..c535bf42276cdcd86c6127c4fd95adfb8535b346 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..062c6316bae87bff6aafc9afe9c4103aff08b755 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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_add_custom_plugin.cc.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lgraph diff --git a/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..b700c2c902219d74619014853aade0d7ec177030 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..b72c4be62481c8c358978f27edc091b5b2724300 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o differ diff --git a/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..ad894cfd87652d22520dac3dcc88d1021c4d1215 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o.d @@ -0,0 +1,184 @@ +framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..0cfbf08886fca9a91cb753ec8734c84fcbe52c9f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/Makefile b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..de64dc52e8d56b4f73129593fd8f84cc170d88ed --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 framework/tf_plugin/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_add_custom_plugin.o: tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.o + +# target to build an object file +tensorflow_add_custom_plugin.cc.o: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.o +.PHONY : tensorflow_add_custom_plugin.cc.o + +tensorflow_add_custom_plugin.i: tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.i + +# target to preprocess a source file +tensorflow_add_custom_plugin.cc.i: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.i +.PHONY : tensorflow_add_custom_plugin.cc.i + +tensorflow_add_custom_plugin.s: tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_plugin.s + +# target to generate assembly for a file +tensorflow_add_custom_plugin.cc.s: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/build.make framework/tf_plugin/CMakeFiles/cust_tf_parsers.dir/tensorflow_add_custom_plugin.cc.s +.PHONY : tensorflow_add_custom_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_add_custom_plugin.o" + @echo "... tensorflow_add_custom_plugin.i" + @echo "... tensorflow_add_custom_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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/cmake_install.cmake b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a260e50e65681ff8a58fa7aeafdeda3227de59b4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/cmake_install.cmake @@ -0,0 +1,67 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/framework/tf_plugin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so similarity index 76% rename from Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so rename to Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so index 5b560a882596ffbbc8311dabc96005caee719128..87e886ca87b5fb794d40c594a132a06e9113ac99 100644 Binary files a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so and b/Increase_Hsot_compute/No_increase/build_out/framework/tf_plugin/libcust_tf_parsers.so differ diff --git a/Increase_Hsot_compute/No_increase/build_out/install_manifest.txt b/Increase_Hsot_compute/No_increase/build_out/install_manifest.txt new file mode 100644 index 0000000000000000000000000000000000000000..1aee2a74dc0988d391ac02aba7ec1e0e2dcd7ea7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/install_manifest.txt @@ -0,0 +1,33 @@ +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.py +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./upgrade.sh +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/./install.sh +/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fcb26a122b6159e15d1f2652e6d8fa654507ca4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..06b8ec7e86297df6bed58056ada4674733570a68 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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" + "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..4a3beb18b4699ad9920afd1910077c009b44e433 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o.d new file mode 100644 index 0000000000000000000000000000000000000000..67eeaa34fd365c0c76a06215b6c749ad77ddf424 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/op_proto.cc \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..7ec5a8f5ffe581fbbf1ea9762d5b94655863f4a2 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..0f7ec2c63578485f14dec5b038eb26bfdada1e1f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d @@ -0,0 +1,263 @@ +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom_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/graph/utils/type_utils.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 diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..94e7f27a353c46caba002bb41e1ecf2aa9cd415b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/flags.make +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -MF CMakeFiles/cust_op_proto.dir/add_custom.cpp.o.d -o CMakeFiles/cust_op_proto.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_op_proto.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp > CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_op_proto.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp -o CMakeFiles/cust_op_proto.dir/add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object op_host/CMakeFiles/cust_op_proto.dir/__/autogen/op_proto.cc.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libcust_opsproto_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..76762a8e098c581958fbe1179c4be461e3dfdd2e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/add_custom.cpp.o" + "CMakeFiles/cust_op_proto.dir/add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..24d78d4ac4611b74eebbd65a8fc163715cb8e696 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.internal @@ -0,0 +1,612 @@ +# 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 + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/op_proto.cc + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom_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/graph/utils/type_utils.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 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..ee32f0f36abb2694305ebda34f6858e1d0f62872 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.make @@ -0,0 +1,1194 @@ +# 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/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/graph/utils/type_utils.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/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/graph/utils/type_utils.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: + +/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: + +../op_host/add_custom_tiling.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: + +../op_host/add_custom.cpp: + +/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/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/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/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: + +/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..00aea2a2166cd0cf975b12f723dcde014eadd86f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..437958170a48b3a6c7d205ebff07d609573ed7a7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..500116bd6ec74c07207f47a6f4768ee037614eec --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1980c4be60686983f9e3e4ea3aaf58a3d196a6e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_op_proto.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..4b14cc1dc1aa37d472dbfc8a2fa41782337787bc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e52bea9d2f332f219cbacef77d423e527371bc51 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.cpp" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..6f7c1889d179b57235d243a0ef45c41d29c4ed6e Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..36402126133f38f8ad70d39be649c2eba6349720 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d @@ -0,0 +1,142 @@ +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.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 \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6685cccd3228f255ac6beeda67b66983ae672e30 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/flags.make +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: autogen/aclnn_add_custom.cpp +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o: op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -MF CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o.d -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.cpp + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.cpp > CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i + +op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.cpp -o CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s + +# Object files for target cust_opapi +cust_opapi_OBJECTS = \ +"CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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_add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opapi.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_opapi.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9d876da097b6be339a44bbaad98b35165c800459 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o" + "CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..98f77cd20f5ba941a68a1f5b4a78ac641438e9a9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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_add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.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 + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..56ef6b61098e09cde993f76dbda7b9df045f32af --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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_add_custom.cpp.o: autogen/aclnn_add_custom.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_add_custom.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: + +/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: + +/usr/include/c++/11/ext/numeric_traits.h: + +/usr/include/c++/11/bits/atomic_base.h: + +/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/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: + +autogen/aclnn_add_custom.h: + +/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: + +autogen/aclnn_add_custom.cpp: + +/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b3bb157ef98b31b6076bead4dea655c2f5a1372c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..dae58d60b8fdca49c5c52471d0043c3eafbf4b20 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..f4b2f4fafda7e2aaa1a9da9823cd1f14c66759d1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5142feae62c78720184d9560ea460c7bf6b55931 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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_add_custom.cpp.o -L/usr/local/Ascend/ascend-toolkit/latest/lib64 -Wl,-rpath,/usr/local/Ascend/ascend-toolkit/latest/lib64: -lascendcl -lnnopbase diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_opapi.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..3a86673aa7c1868ad77aa16c631effd83be0da02 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cfda379ffa0953d176b9aee6167d936f141f6f3b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 + "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp" "op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" "gcc" "op_host/CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..b3dd80e44a9fd2f6a32e6930439b0caab468e366 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d new file mode 100644 index 0000000000000000000000000000000000000000..5a21657d0785366248c6a25204a4b68ac5ef45ee --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d @@ -0,0 +1,263 @@ +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom_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/graph/utils/type_utils.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 diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..70e2c1f30284ef95dde05155e46f5747cf7ff6f1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/flags.make +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o -MF CMakeFiles/cust_optiling.dir/add_custom.cpp.o.d -o CMakeFiles/cust_optiling.dir/add_custom.cpp.o -c /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cust_optiling.dir/add_custom.cpp.i" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp > CMakeFiles/cust_optiling.dir/add_custom.cpp.i + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cust_optiling.dir/add_custom.cpp.s" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp -o CMakeFiles/cust_optiling.dir/add_custom.cpp.s + +# Object files for target cust_optiling +cust_optiling_OBJECTS = \ +"CMakeFiles/cust_optiling.dir/add_custom.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/add_custom.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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library libcust_opmaster_rt2.0.so" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/cust_optiling.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..35e371cfbc32ed11a1b1737449b7c9175dc8945a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/cust_optiling.dir/add_custom.cpp.o" + "CMakeFiles/cust_optiling.dir/add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..1df63c7b9d3b266d6d12c422d128de9f1dd92fc8 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.internal @@ -0,0 +1,314 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp + /usr/include/stdc-predef.h + /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host/add_custom_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/graph/utils/type_utils.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 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..1fdb2c40f10d188fe858ee010fa581029fc425b8 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.make @@ -0,0 +1,893 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o: ../op_host/add_custom.cpp \ + /usr/include/stdc-predef.h \ + ../op_host/add_custom_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/graph/utils/type_utils.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/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/graph/utils/type_utils.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/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/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/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/bits/types/struct_itimerspec.h: + +/usr/include/aarch64-linux-gnu/c++/11/bits/gthr.h: + +../op_host/add_custom_tiling.h: + +/usr/include/c++/11/debug/debug.h: + +/usr/include/features-time64.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: + +/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/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/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/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/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/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/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/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/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: + +../op_host/add_custom.cpp: + +/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/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: + +/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..74472e36eba2a28932ae542c70b920de2f6fda33 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe68c7fa27e765cc54c7a4b724d3af19e0f40b0c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..6d98162bed09f0ecad0e8a6d9c9ec8a6dcf6fd1c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..5406749e2144ba093cf2e4588d7fd78273ea4006 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/add_custom.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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/cust_optiling.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..72bb7dd025afc5824222cbd3a1e64841afc2792c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..0a9e340c9f53323cd417888445797c5d6e906e47 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host && ln -sf lib/linux/aarch64/libcust_opmaster_rt2.0.so /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_host/CMakeFiles/optiling_compat.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d6c62180661baf2894b2e39b1390c4aad97bd7e7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f6005bcf9aa9a636cea7c8c99afc1c47b58651ec --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..218ad6e5c7fb31bec1c5dc1c351cf18dde37c686 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/optiling_compat.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/progress.marks b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..7f8f011eb73d6043d2e6db9d2c101195ae2801f2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/CMakeFiles/progress.marks @@ -0,0 +1 @@ +7 diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/Makefile b/Increase_Hsot_compute/No_increase/build_out/op_host/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..31b1e391240c4004d5da8a2e844b2b24edbc7464 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_host//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_host/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_add_custom.o: __/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.o + +# target to build an object file +__/autogen/aclnn_add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.o +.PHONY : __/autogen/aclnn_add_custom.cpp.o + +__/autogen/aclnn_add_custom.i: __/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.i + +# target to preprocess a source file +__/autogen/aclnn_add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.i +.PHONY : __/autogen/aclnn_add_custom.cpp.i + +__/autogen/aclnn_add_custom.s: __/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.s + +# target to generate assembly for a file +__/autogen/aclnn_add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_opapi.dir/build.make op_host/CMakeFiles/cust_opapi.dir/__/autogen/aclnn_add_custom.cpp.s +.PHONY : __/autogen/aclnn_add_custom.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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 + +add_custom.o: add_custom.cpp.o +.PHONY : add_custom.o + +# target to build an object file +add_custom.cpp.o: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.o + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.o +.PHONY : add_custom.cpp.o + +add_custom.i: add_custom.cpp.i +.PHONY : add_custom.i + +# target to preprocess a source file +add_custom.cpp.i: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.i + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.i +.PHONY : add_custom.cpp.i + +add_custom.s: add_custom.cpp.s +.PHONY : add_custom.s + +# target to generate assembly for a file +add_custom.cpp.s: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_op_proto.dir/build.make op_host/CMakeFiles/cust_op_proto.dir/add_custom.cpp.s + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_host/CMakeFiles/cust_optiling.dir/build.make op_host/CMakeFiles/cust_optiling.dir/add_custom.cpp.s +.PHONY : add_custom.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_add_custom.o" + @echo "... __/autogen/aclnn_add_custom.i" + @echo "... __/autogen/aclnn_add_custom.s" + @echo "... __/autogen/op_proto.o" + @echo "... __/autogen/op_proto.i" + @echo "... __/autogen/op_proto.s" + @echo "... add_custom.o" + @echo "... add_custom.i" + @echo "... add_custom.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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_host/cmake_install.cmake b/Increase_Hsot_compute/No_increase/build_out/op_host/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a9f3b956776b9f189c34dbbf7a2124423b0bf23d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_host/cmake_install.cmake @@ -0,0 +1,125 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_host + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aclnn_add_custom.h") +endif() + diff --git a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so b/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opapi.so similarity index 86% rename from Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so rename to Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opapi.so index b49919b0e8ae7dd623b5eb673ee9cf1721bae62c..41fa718f34536d8db08a00262f00d08b9801448a 100644 Binary files a/Increase_DataCopy_case/No_Increase/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so and b/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opapi.so differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opmaster_rt2.0.so b/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opmaster_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..bd2cb023c76abb43bb75b2e2a67a397c81c2fad8 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opmaster_rt2.0.so differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opsproto_rt2.0.so b/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opsproto_rt2.0.so new file mode 100644 index 0000000000000000000000000000000000000000..0459b73172cd1bca378cf90d584d525738c18cd8 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_host/libcust_opsproto_rt2.0.so differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fcb26a122b6159e15d1f2652e6d8fa654507ca4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..87bd0a6b97357398761d4f309449e110af595491 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..533ecfc39068edc37496c5f20d46fe6ca8911459 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b57b3514902bdc581ce7b6f2090f38b51b58a5cd --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0e4fa1ebcb2d0d5d7bebf601f98e8703328cd19a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1599ddf37b1c18685b4c9f4a61bf16deb07e35a3 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom + +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0 +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build: ascendc_bin_ascend310b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..38a06b015c3e023560a0fa9de37b73b7ca57a255 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e95ee76f3d9703ef8091b70a19582e24d00f765f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..58b558eb68c6d807294185f925ed321477ea370e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_0. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..e5834f1fc2dcc74c826ec81bd243bae6e19d9217 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py + +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build: ascendc_bin_ascend310b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..46fb4bc6149a3535eb17d2477be0ede99f4fc0e7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..c5c85be36aa5e2e6f74f004b38461136d888143a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..2635634fb6bd8928b3caefb8d8fab2e8b1004af4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_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_add_custom_copy. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..99992a7561646b56bdfe28e5173e2200a0a60a2f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6f66b202c51cb2544ad945a29170b9591ddf78a4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src + +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make +.PHONY : ascendc_bin_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build: ascendc_bin_ascend310p +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..29f1345fc9496c14675f26c06edf36673e952b07 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..5905ecc160820e0a73ef8d9bb75d28c635236a3c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ee634a4c1431b0c147efb29f842a0061cc5ac0d3 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend310p. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..58b37c1a816db823b3937e7623083c37ab87319a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom + +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0 +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build: ascendc_bin_ascend310p_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e22e93688a2b67642c9f4ea4be7806cfbdfc1139 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..96558e28e2f2220fcfa72e786f4e140209c94145 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..568ee864e609387cc4655a71bf5bc8315bf1d85b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_0. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d7d51d6c6c54c53fc59a555a775d5fbfddb0c7e4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py + +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build: ascendc_bin_ascend310p_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bfd0aecad835c1738fb6a7a02c1c579a3d07ff26 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..bbac3f403d04baf37b7a81e85e98a1b1bb699664 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..6d72996dc703fc20b387c132ea53db85586061e8 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_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_ascend310p_add_custom_copy. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..9ca635455858b3f96d52024fd4130ee2d700dde2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend310p_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin -s ascend310p + +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build: ascendc_bin_ascend310p_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..04065814d838ba423c04e3b879f86464249e7b06 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend310p_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..fe676784dbc4032caa6e617f8440676aa5d85d8c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend310p_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..d8cac7b847c351fe38d0b55d0d4b1564feff044c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_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_ascend310p_gen_ops_config. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..78db642c930faa08e8455eb5e445b21cccca90b3 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src + +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910 +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make +.PHONY : ascendc_bin_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build: ascendc_bin_ascend910 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e6f6e4c8ff20dc23a2d6b62c17b66c8ef37a8289 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..782969025ccb8c64e90b3b22abd4daaf6d5e72ae --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e030b5a7ee789c10785cf720bb0c2605543765a9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..00efba039267b6bd726df9ec94cbd0b420d7b92a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910 && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom + +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0 +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build: ascendc_bin_ascend910_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cb374e5db0ced9e34a5ac46e2962bc620e08e54c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..898dbaf4004189058a9b387b9b8c39959fae588b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..264efb0f0ac0357179489a980a560be33bcc9861 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_0. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..70f97268cb45a351ef3ed31bfa3d33f7d4ad535a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py + +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build: ascendc_bin_ascend910_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b5f35f6ac75713d63c5c8fb9c0df5ff72051fc34 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e6d1a4abe9bcb0c340eafa5bfced1f241c6da4db --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..03123d7544bd32f82ee9ff827e0db03153450acb --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_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_ascend910_add_custom_copy. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..d59824c069f129699cf878cbd3f87b801f223040 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin -s ascend910 + +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build: ascendc_bin_ascend910_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..8fe935158535a5294b1f23ef6ba62e3cba945ce4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..4c78feda9afd2a04955572c876aced5cf1834441 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c021ce2d8f944d05bc1b308af92e7bfd7b3bef9d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_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_ascend910_gen_ops_config. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..8943a6e9307e1f76bc449f0b11d35af971f4dee2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp -r /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel/*.* /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src + +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make +.PHONY : ascendc_bin_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build: ascendc_bin_ascend910b +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0f5b4484aadb7aa885dce07b651783d494277a56 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..356ef894a7b9d628fe6440122b9c3d40dccdf797 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..88d46aa9ddd231b41e53be097939e3070552bb3a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ascendc_bin_ascend910b. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..e57d50c69d70c2c266dc4358b0df751213a5e1c5 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_0. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b && export HI_PYTHON=python3 && bash /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom + +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0 +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build: ascendc_bin_ascend910b_add_custom_0 +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0a2d54cf3dc6fd67677dc7081d5fc8616f0d7a3e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d4ce4f8ba12b1dba8f69fbe9508e807e22c45fae --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_0. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..0950b6704c2d696eaece186f438bab6549dfd872 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_0. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7c7687329da4adb6ce30003e3a1b075708c3c5b5 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_add_custom_copy. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && cp /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py + +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build: ascendc_bin_ascend910b_add_custom_copy +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..6dd19a79d6e41007f82f301f87634d311ff2b00b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_add_custom_copy" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..0ad143cb482336abd1bbad6feaad0cff158367a3 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_add_custom_copy. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..ecb8ebe977207b0b9c883f1660ca50fad522f8a5 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_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_ascend910b_add_custom_copy. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..3129907d454cb758294f2a2f75aa019cf4c20152 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ascendc_bin_ascend910b_gen_ops_config. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/insert_simplified_keys.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/ascendc_ops_config.py -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin -s ascend910b + +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build: ascendc_bin_ascend910b_gen_ops_config +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/clean + +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..82891cada87e395484a36d9497ca43aadafa6e0d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ascendc_bin_ascend910b_gen_ops_config" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..caede33a485c69655d3a61af2f2bf72a4c2473fd --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ascendc_bin_ascend910b_gen_ops_config. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..e5c001f3af05083708095ee4d076b182fd30525f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_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_ascend910b_gen_ops_config. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..bfb61892ad6c0a57accef92c72cce0015573dddb --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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-ascend310p-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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/.impl_timestamp" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && mkdir -m 700 -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/ascendc_impl_build.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini "" "" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && rm -rf /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/.impl_timestamp + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && touch /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0dabd8217f51de05d3c48e464f9ed87a459cca1a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e4c9fac661464ec05ea1a443edb0dc2b0b41806f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..b895e90a30e456d3811a0bb2e4d043284245aacd --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..781c7de277467a8195d562b5d08164806763e9bb --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ascendc_impl_gen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..4da71fa810150c540c1d1d9a875899e71cd8e66f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/binary.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9ae76984f5565d466b92a810925e025e54471e63 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..e688fdae426435b7338ad5ae7e9a8b33847b35f2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f22f6ab4259e686344dd2262cc15fc223bd41f47 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/binary.dir/progress.make @@ -0,0 +1 @@ + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..16edbd9c13f99821cba9cebc4d8a7b62bbf01dde --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/npu_supported_ops.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && ../../cmake/util/gen_ops_filter.sh /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..74257cf6ebf8321bd1cdf1fd3b9dff6f31a88317 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..9f8bf5f55283f2af94a1d6c3d002e1abf9fb06be --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..391e044314f82c750bb472ea75da0830fe80882c --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..e42d498a89857163707bdf7455d3193d8ed5bfe2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/npu_supported_ops.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 12 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..55380d543a035dd44b992699cb952678bdf005b9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310b-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0873ef7dbd668d16556df9538a9fa0bf4a335d09 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..b1c31a685ba07abf8d9ee8e5c14347e18147775b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..48b406611124e445506c38d8a534c940c16a3dcf --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..7e0358250d669f4e34f1dc4a0fb4d44932f34e28 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 13 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..fb4e2f61eb2c77542db35d07809d9240b7a968e7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ops_info_gen_ascend310p. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend310p-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json + +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p +ops_info_gen_ascend310p: op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make +.PHONY : ops_info_gen_ascend310p + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build: ops_info_gen_ascend310p +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..4f287b559bc0c027efc13763de2e2365c2d70d15 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend310p" + "tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend310p.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..d19bb709bb14351506df228db182aa100cbbb8f6 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend310p. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..c42f277a097a418418ede14a7bec2dc336c18cc9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.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_ascend310p. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..db9f2e439e11ef2781ec53779fc020fa01a2ea5b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 14 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6a89912e7a1872518085e7ef15db682c2f81bd46 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ops_info_gen_ascend910. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910 + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json + +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910 +ops_info_gen_ascend910: op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make +.PHONY : ops_info_gen_ascend910 + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build: ops_info_gen_ascend910 +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ddda5e8fddad294c116e69843a8829f4e7611789 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910" + "tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f0018fab5ff3d8a40c1b63606bbdb60145ae6134 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..f38b3613acab3544a1ca93d23556ddb0900d2d90 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.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_ascend910. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..6bdbd1465365992dad3be11acb9be72443f38ce5 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 15 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..dc55e44b5556fc28ad7acb84f1df08a5aef15b8d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..018c439653502ce0d6382b2f63a4e1f1fd70bac1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out + +# Utility rule file for ops_info_gen_ascend910b. + +# Include any custom commands dependencies for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make + +# Include the progress variables for this target. +include op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make + +op_kernel/CMakeFiles/ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && mkdir -p /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && python3 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/cmake/util/parse_ini_to_json.py /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/autogen/aic-ascend910b-ops-info.ini /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json + +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b +ops_info_gen_ascend910b: op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make +.PHONY : ops_info_gen_ascend910b + +# Rule to build all files generated by this target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build: ops_info_gen_ascend910b +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel && $(CMAKE_COMMAND) -P CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/clean + +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/depend + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2a4652c5b2ad65cb30b012f83f4c93bb1aca0dde --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/ops_info_gen_ascend910b" + "tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ops_info_gen_ascend910b.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make new file mode 100644 index 0000000000000000000000000000000000000000..de46960c131f3e7df591cd8804f02fdb8ad3d1b3 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ops_info_gen_ascend910b. +# This may be replaced when dependencies are built. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/compiler_depend.ts new file mode 100644 index 0000000000000000000000000000000000000000..92989fc6e53d3136aec2bcc4e72270f683fa176a --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.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_ascend910b. diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..0b890e87759b3c0771a961d0361c64e8e5d7fd17 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 16 + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/progress.marks b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..1e8b314962144c26d5e0e50fd29d2ca327864913 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/CMakeFiles/progress.marks @@ -0,0 +1 @@ +6 diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/Makefile b/Increase_Hsot_compute/No_increase/build_out/op_kernel/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..c6306daa8c2ae1259db0b812471ba1e5c165a1d5 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/Makefile @@ -0,0 +1,556 @@ +# 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 = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && /usr/bin/cpack --config ./CPackSourceConfig.cmake /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel//CMakeFiles/progress.marks + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/all + $(CMAKE_COMMAND) -E cmake_progress_start /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule + +# Convenience name for target. +ops_info_gen_ascend310p: op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/rule +.PHONY : ops_info_gen_ascend310p + +# fast build rule for target. +ops_info_gen_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend310p.dir/build +.PHONY : ops_info_gen_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_impl_gen.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_ascend310p.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p: op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/rule +.PHONY : ascendc_bin_ascend310p + +# fast build rule for target. +ascendc_bin_ascend310p/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p.dir/build +.PHONY : ascendc_bin_ascend310p/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend310p_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend310p_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend310p_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310p_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310p_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310p_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310p_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310p_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_bin_ascend310b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend310b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend310b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend310b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend310b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend310b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910: op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/rule +.PHONY : ops_info_gen_ascend910 + +# fast build rule for target. +ops_info_gen_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910.dir/build +.PHONY : ops_info_gen_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910: op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/rule +.PHONY : ascendc_bin_ascend910 + +# fast build rule for target. +ascendc_bin_ascend910/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910.dir/build +.PHONY : ascendc_bin_ascend910/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule + +# Convenience name for target. +ops_info_gen_ascend910b: op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/rule +.PHONY : ops_info_gen_ascend910b + +# fast build rule for target. +ops_info_gen_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build.make op_kernel/CMakeFiles/ops_info_gen_ascend910b.dir/build +.PHONY : ops_info_gen_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b: op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/rule +.PHONY : ascendc_bin_ascend910b + +# fast build rule for target. +ascendc_bin_ascend910b/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b.dir/build +.PHONY : ascendc_bin_ascend910b/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_gen_ops_config: op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/rule +.PHONY : ascendc_bin_ascend910b_gen_ops_config + +# fast build rule for target. +ascendc_bin_ascend910b_gen_ops_config/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_gen_ops_config.dir/build +.PHONY : ascendc_bin_ascend910b_gen_ops_config/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_copy: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_copy + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_copy/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_copy.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_copy/fast + +# Convenience name for target. +op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule + +# Convenience name for target. +ascendc_bin_ascend910b_add_custom_0: op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/rule +.PHONY : ascendc_bin_ascend910b_add_custom_0 + +# fast build rule for target. +ascendc_bin_ascend910b_add_custom_0/fast: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out && $(MAKE) $(MAKESILENT) -f op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build.make op_kernel/CMakeFiles/ascendc_bin_ascend910b_add_custom_0.dir/build +.PHONY : ascendc_bin_ascend910b_add_custom_0/fast + +# Convenience name for target. +op_kernel/CMakeFiles/npu_supported_ops.dir/rule: + cd /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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_add_custom_0" + @echo "... ascendc_bin_ascend310b_add_custom_copy" + @echo "... ascendc_bin_ascend310b_gen_ops_config" + @echo "... ascendc_bin_ascend310p" + @echo "... ascendc_bin_ascend310p_add_custom_0" + @echo "... ascendc_bin_ascend310p_add_custom_copy" + @echo "... ascendc_bin_ascend310p_gen_ops_config" + @echo "... ascendc_bin_ascend910" + @echo "... ascendc_bin_ascend910_add_custom_0" + @echo "... ascendc_bin_ascend910_add_custom_copy" + @echo "... ascendc_bin_ascend910_gen_ops_config" + @echo "... ascendc_bin_ascend910b" + @echo "... ascendc_bin_ascend910b_add_custom_0" + @echo "... ascendc_bin_ascend910b_add_custom_copy" + @echo "... ascendc_bin_ascend910b_gen_ops_config" + @echo "... ascendc_impl_gen" + @echo "... binary" + @echo "... npu_supported_ops" + @echo "... ops_info_gen_ascend310b" + @echo "... ops_info_gen_ascend310p" + @echo "... ops_info_gen_ascend910" + @echo "... ops_info_gen_ascend910b" +.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 /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.json diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json similarity index 70% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json index 401839dc988b6ab1fa1637112cf90fd39f3ca73d..750d8560cfb35993ff96cf3d122e88b75bd0e1cf 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -1,15 +1,15 @@ { - "binFileName": "AddCustom_ed9fc09970baaf94d89a7a5a66099e58", + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "binFileSuffix": ".o", "blockDim": -1, "coreType": "VectorCore", "core_type": "AIV", - "kernelName": "AddCustom_ed9fc09970baaf94d89a7a5a66099e58", + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", "magic": "RT_DEV_BINARY_MAGIC_ELF", "memoryStamping": [], - "opParaSize": 32, + "opParaSize": 24, "parameters": [], - "sha256": "198f7071d86cfe01aed022666412210dccb1b5d2cbd4e8384c989ed0ba7e8a2d", + "sha256": "a72d7cae92e44648fafbee2c99955debde936e315245eda1f7047bc4351466d0", "workspace": { "num": 1, "size": [ @@ -21,7 +21,7 @@ }, "kernelList": [ { - "kernelName": "AddCustom_ed9fc09970baaf94d89a7a5a66099e58_0" + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" } ], "optionalInputMode": "gen_placeholder", @@ -31,15 +31,15 @@ "int64Mode": false, "simplifiedKeyMode": 0, "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", "inputs": [ { "name": "x", "index": 0, - "dtype": "int8", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -49,7 +49,7 @@ { "name": "y", "index": 1, - "dtype": "int8", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ @@ -61,7 +61,7 @@ { "name": "z", "index": 0, - "dtype": "int8", + "dtype": "float16", "format": "ND", "paramType": "required", "shape": [ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..0b215321d0182a7d7a7dd979be14bd30a795b459 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_UB_case/No_fill_UB/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 b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json similarity index 30% rename from Increase_UB_case/No_fill_UB/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 rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json index 581186ddc39430611a8dd64d21c7bc26d14da152..cd033194cc2c1dc7c1e17c0584cfb1b8ea55ead1 100644 --- a/Increase_UB_case/No_fill_UB/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 +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/binary_info_config.json @@ -12,36 +12,6 @@ "coreType": 2, "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", "binPath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/0,2/0,2/0,2", - "binPath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/0,2/0,2/0,2", - "binPath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/2,2/2,2/2,2", - "binPath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/2,2/2,2/2,2", - "binPath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/3,2/3,2/3,2", - "binPath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/3,2/3,2/3,2", - "binPath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" } ] } diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..6da22a82fa8ff9f2ab77110ebd80219721fecd4e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f23075eec9b20b0afd9eed1d4643704f427ace22 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5a5f2327f755e67f0bd1513913390a2407c9b21d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/src/add_custom.cpp @@ -0,0 +1,108 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, + uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + + + uint32_t coreNum = CoreNum; + uint32_t inputLength = AllNum * sizeof(half); + uint32_t inputBytes = inputLength / AllNum; + uint32_t tileBlockNum = (UbSize / BLOCK_SIZE / BUFFER_NUM) / CoreNum; + uint32_t tileDataNum = (tileBlockNum * BLOCK_SIZE) / inputBytes; + + uint32_t inputLengthAlgin32 = (((inputLength + BLOCK_SIZE - 1) / BLOCK_SIZE) * BLOCK_SIZE); + + uint32_t everyCoreInputBlockNum = inputLengthAlgin32 / BLOCK_SIZE / coreNum; + uint32_t tailBlockNum = (inputLengthAlgin32 / BLOCK_SIZE) % coreNum; + uint32_t smallCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t smallTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalSmallTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? smallTileNum : smallTileNum + 1; + // Tail block calculation for small chunks of data + uint32_t smallTailDataNum = smallCoreDataNum - (tileDataNum * smallTileNum); + smallTailDataNum = smallTailDataNum == 0 ? tileDataNum : smallTailDataNum; + + + everyCoreInputBlockNum += 1; + uint32_t bigCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t bigTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalBigTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? bigTileNum : bigTileNum + 1; + uint32_t bigTailDataNum = bigCoreDataNum - tileDataNum * bigTileNum; + bigTailDataNum = bigTailDataNum == 0 ? tileDataNum : bigTailDataNum; + + ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); + + uint32_t globalBufferIndex = bigCoreDataNum * AscendC::GetBlockIdx(); + this->tileDataNum = tileDataNum; + + if (coreNum < tailBlockNum) { + this->coreDataNum = bigCoreDataNum; + this->tileNum = finalBigTileNum; + this->tailDataNum = bigTailDataNum; + } + else { + this->coreDataNum = smallCoreDataNum; + this->tileNum = finalSmallTileNum; + this->tailDataNum = smallTailDataNum; + globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (AscendC::GetBlockIdx() - tailBlockNum); + } + + + + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + uint32_t coreDataNum; + uint32_t tileNum; + uint32_t tileDataNum; + uint32_t tailDataNum; + uint32_t processDataNum; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310p/add_custom.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.json diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..228a24504ff7ba141028dd6277c607ba9345082e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 24, + "parameters": [], + "sha256": "19b0b1e7857c2bf955c75562a94ece44aee3fde46cdf4720c15bda68882aa31c", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..d1d5aa24d67270fa09d05052eecf0444856f4bcc Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json new file mode 100644 index 0000000000000000000000000000000000000000..659723f6f8504e86c48ce6f2b3face31e966d909 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.json @@ -0,0 +1,18 @@ +{ + "AddCustom": { + "dynamicRankSupport": true, + "simplifiedKeyMode": 0, + "binaryList": [ + { + "coreType": 1, + "simplifiedKey": "AddCustom/d=0,p=0/1,2/1,2/1,2", + "binPath": "ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" + }, + { + "coreType": 1, + "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", + "binPath": "ascend310p/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" + } + ] + } +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..ce57b847850b3ec8951d1b1ac7adb05d9bf67043 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend310P3 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend310P3] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..54e97eb64dc4b78054eebd28a71d15083d922a23 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5a5f2327f755e67f0bd1513913390a2407c9b21d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/src/add_custom.cpp @@ -0,0 +1,108 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, + uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + + + uint32_t coreNum = CoreNum; + uint32_t inputLength = AllNum * sizeof(half); + uint32_t inputBytes = inputLength / AllNum; + uint32_t tileBlockNum = (UbSize / BLOCK_SIZE / BUFFER_NUM) / CoreNum; + uint32_t tileDataNum = (tileBlockNum * BLOCK_SIZE) / inputBytes; + + uint32_t inputLengthAlgin32 = (((inputLength + BLOCK_SIZE - 1) / BLOCK_SIZE) * BLOCK_SIZE); + + uint32_t everyCoreInputBlockNum = inputLengthAlgin32 / BLOCK_SIZE / coreNum; + uint32_t tailBlockNum = (inputLengthAlgin32 / BLOCK_SIZE) % coreNum; + uint32_t smallCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t smallTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalSmallTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? smallTileNum : smallTileNum + 1; + // Tail block calculation for small chunks of data + uint32_t smallTailDataNum = smallCoreDataNum - (tileDataNum * smallTileNum); + smallTailDataNum = smallTailDataNum == 0 ? tileDataNum : smallTailDataNum; + + + everyCoreInputBlockNum += 1; + uint32_t bigCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t bigTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalBigTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? bigTileNum : bigTileNum + 1; + uint32_t bigTailDataNum = bigCoreDataNum - tileDataNum * bigTileNum; + bigTailDataNum = bigTailDataNum == 0 ? tileDataNum : bigTailDataNum; + + ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); + + uint32_t globalBufferIndex = bigCoreDataNum * AscendC::GetBlockIdx(); + this->tileDataNum = tileDataNum; + + if (coreNum < tailBlockNum) { + this->coreDataNum = bigCoreDataNum; + this->tileNum = finalBigTileNum; + this->tailDataNum = bigTailDataNum; + } + else { + this->coreDataNum = smallCoreDataNum; + this->tileNum = finalSmallTileNum; + this->tailDataNum = smallTailDataNum; + globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (AscendC::GetBlockIdx() - tailBlockNum); + } + + + + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + uint32_t coreDataNum; + uint32_t tileNum; + uint32_t tileDataNum; + uint32_t tailDataNum; + uint32_t processDataNum; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910/add_custom.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.json diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..429a1af53a21355ee9465d2522c4f4cde63f084f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,79 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "AiCore", + "globalworkspace_spec_workspace": { + "size": 32, + "type": 0 + }, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF", + "memoryStamping": [], + "opParaSize": 24, + "parameters": [], + "sha256": "c8c770958d74251be38b8552d2fbd6d700d2c6b2e54abb829db404a2bd8a7576", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o new file mode 100644 index 0000000000000000000000000000000000000000..67c0a336749e90b38ac7bc5cba888487b073a17f Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4ebc0f48dd9b0918b1edaf6e41aa6d61a2f674d7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.json @@ -0,0 +1,18 @@ +{ + "AddCustom": { + "dynamicRankSupport": true, + "simplifiedKeyMode": 0, + "binaryList": [ + { + "coreType": 1, + "simplifiedKey": "AddCustom/d=0,p=0/1,2/1,2/1,2", + "binPath": "ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" + }, + { + "coreType": 1, + "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", + "binPath": "ascend910/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" + } + ] + } +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..1c51a082747a1dea053e24b924fdb5ccbdcb632d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910A --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910A] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..571432146034809b436f237a43dc6f4cc30d07f1 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5a5f2327f755e67f0bd1513913390a2407c9b21d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/src/add_custom.cpp @@ -0,0 +1,108 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, + uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + + + uint32_t coreNum = CoreNum; + uint32_t inputLength = AllNum * sizeof(half); + uint32_t inputBytes = inputLength / AllNum; + uint32_t tileBlockNum = (UbSize / BLOCK_SIZE / BUFFER_NUM) / CoreNum; + uint32_t tileDataNum = (tileBlockNum * BLOCK_SIZE) / inputBytes; + + uint32_t inputLengthAlgin32 = (((inputLength + BLOCK_SIZE - 1) / BLOCK_SIZE) * BLOCK_SIZE); + + uint32_t everyCoreInputBlockNum = inputLengthAlgin32 / BLOCK_SIZE / coreNum; + uint32_t tailBlockNum = (inputLengthAlgin32 / BLOCK_SIZE) % coreNum; + uint32_t smallCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t smallTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalSmallTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? smallTileNum : smallTileNum + 1; + // Tail block calculation for small chunks of data + uint32_t smallTailDataNum = smallCoreDataNum - (tileDataNum * smallTileNum); + smallTailDataNum = smallTailDataNum == 0 ? tileDataNum : smallTailDataNum; + + + everyCoreInputBlockNum += 1; + uint32_t bigCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t bigTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalBigTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? bigTileNum : bigTileNum + 1; + uint32_t bigTailDataNum = bigCoreDataNum - tileDataNum * bigTileNum; + bigTailDataNum = bigTailDataNum == 0 ? tileDataNum : bigTailDataNum; + + ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); + + uint32_t globalBufferIndex = bigCoreDataNum * AscendC::GetBlockIdx(); + this->tileDataNum = tileDataNum; + + if (coreNum < tailBlockNum) { + this->coreDataNum = bigCoreDataNum; + this->tileNum = finalBigTileNum; + this->tailDataNum = bigTailDataNum; + } + else { + this->coreDataNum = smallCoreDataNum; + this->tileNum = finalSmallTileNum; + this->tailDataNum = smallTailDataNum; + globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (AscendC::GetBlockIdx() - tailBlockNum); + } + + + + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + uint32_t coreDataNum; + uint32_t tileNum; + uint32_t tileDataNum; + uint32_t tailDataNum; + uint32_t processDataNum; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json similarity index 100% rename from Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.json diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json new file mode 100644 index 0000000000000000000000000000000000000000..0344c4df1979169758318e9124cabf119be88ee6 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json @@ -0,0 +1,77 @@ +{ + "binFileName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "binFileSuffix": ".o", + "blockDim": -1, + "coreType": "VectorCore", + "core_type": "AIV", + "intercoreSync": 0, + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "magic": "RT_DEV_BINARY_MAGIC_ELF_AIVEC", + "memoryStamping": [], + "opParaSize": 24, + "parameters": [], + "sha256": "278468141fd1de74092321b51844b6f70e95c00b093127f3c43f03cb1010dc28", + "workspace": { + "num": 1, + "size": [ + -1 + ], + "type": [ + 0 + ] + }, + "kernelList": [ + { + "kernelName": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_0" + } + ], + "optionalInputMode": "gen_placeholder", + "compileInfo": {}, + "supportInfo": { + "implMode": "", + "int64Mode": false, + "simplifiedKeyMode": 0, + "simplifiedKey": [ + "AddCustom/d=0,p=0/1,2/1,2/1,2", + "AddCustom/d=1,p=0/1,2/1,2/1,2" + ], + "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "opMode": "dynamic", + "optionalInputMode": "gen_placeholder", + "deterministic": "ignore" + } +} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o similarity index 32% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o index e00636560bc0a583cdb851392fc4d3934c288e02..34b52b412b25dcadc3820ebf133ef4016b90e955 100644 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json similarity index 30% rename from Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json index c0321e5abb8b50e01c4af5b5acc70ea857f1f407..98899fdcc7a7c4a9e0e6913b955d27b2a331c6c6 100644 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.json @@ -12,36 +12,6 @@ "coreType": 2, "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", "binPath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/2,2/2,2/2,2", - "binPath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/2,2/2,2/2,2", - "binPath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/0,2/0,2/0,2", - "binPath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/0,2/0,2/0,2", - "binPath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/3,2/3,2/3,2", - "binPath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/3,2/3,2/3,2", - "binPath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" } ] } diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh new file mode 100644 index 0000000000000000000000000000000000000000..8c879ad32f46a2128769683061da789b0478a222 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom-add_custom-0.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b ..." +opc $1 --main_func=add_custom --input_param=/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json --soc_version=Ascend910B1 --output=$2 --impl_mode="" --simplified_key_mode=0 --op_mode=dynamic + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json not generated!" + exit 1 +fi + +if ! test -f $2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o ; then + echo "$2/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o not generated!" + exit 1 +fi +echo "[Ascend910B1] Generating AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b Done" diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json new file mode 100644 index 0000000000000000000000000000000000000000..834fc7a6f44c0aec4f39011295a70b3fd36bdde7 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/gen/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b_param.json @@ -0,0 +1,42 @@ +{ + "op_type": "AddCustom", + "op_list": [ + { + "bin_filename": "AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b", + "inputs": [ + { + "name": "x", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + }, + { + "name": "y", + "index": 1, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ], + "outputs": [ + { + "name": "z", + "index": 0, + "dtype": "float16", + "format": "ND", + "paramType": "required", + "shape": [ + -2 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/AddCustom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63fc0c09b7f74fea0274929131bf5e8825694d1b Binary files /dev/null and b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/__pycache__/AddCustom.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5a5f2327f755e67f0bd1513913390a2407c9b21d --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/src/add_custom.cpp @@ -0,0 +1,108 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, + uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + + + uint32_t coreNum = CoreNum; + uint32_t inputLength = AllNum * sizeof(half); + uint32_t inputBytes = inputLength / AllNum; + uint32_t tileBlockNum = (UbSize / BLOCK_SIZE / BUFFER_NUM) / CoreNum; + uint32_t tileDataNum = (tileBlockNum * BLOCK_SIZE) / inputBytes; + + uint32_t inputLengthAlgin32 = (((inputLength + BLOCK_SIZE - 1) / BLOCK_SIZE) * BLOCK_SIZE); + + uint32_t everyCoreInputBlockNum = inputLengthAlgin32 / BLOCK_SIZE / coreNum; + uint32_t tailBlockNum = (inputLengthAlgin32 / BLOCK_SIZE) % coreNum; + uint32_t smallCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t smallTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalSmallTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? smallTileNum : smallTileNum + 1; + // Tail block calculation for small chunks of data + uint32_t smallTailDataNum = smallCoreDataNum - (tileDataNum * smallTileNum); + smallTailDataNum = smallTailDataNum == 0 ? tileDataNum : smallTailDataNum; + + + everyCoreInputBlockNum += 1; + uint32_t bigCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t bigTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalBigTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? bigTileNum : bigTileNum + 1; + uint32_t bigTailDataNum = bigCoreDataNum - tileDataNum * bigTileNum; + bigTailDataNum = bigTailDataNum == 0 ? tileDataNum : bigTailDataNum; + + ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); + + uint32_t globalBufferIndex = bigCoreDataNum * AscendC::GetBlockIdx(); + this->tileDataNum = tileDataNum; + + if (coreNum < tailBlockNum) { + this->coreDataNum = bigCoreDataNum; + this->tileNum = finalBigTileNum; + this->tailDataNum = bigTailDataNum; + } + else { + this->coreDataNum = smallCoreDataNum; + this->tileNum = finalSmallTileNum; + this->tailDataNum = smallTailDataNum; + globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (AscendC::GetBlockIdx() - tailBlockNum); + } + + + + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + uint32_t coreDataNum; + uint32_t tileNum; + uint32_t tileDataNum; + uint32_t tailDataNum; + uint32_t processDataNum; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/cmake_install.cmake b/Increase_Hsot_compute/No_increase/build_out/op_kernel/cmake_install.cmake new file mode 100644 index 0000000000000000000000000000000000000000..15a5b60953a7de352ad2eb8f7634de53f8e50774 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/cmake_install.cmake @@ -0,0 +1,120 @@ +# Install script for directory: /Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/ascend310p" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/ascend310p" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom") +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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/add_custom.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/ascend310p" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310p/bin/binary_info_config.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/config/ascend310b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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/kernel/ascend310b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom") +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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend310b/bin/add_custom.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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-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/kernel/ascend910" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom") +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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/add_custom.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/ascend910" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910/bin/binary_info_config.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/config/ascend910b" TYPE FILE FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-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/kernel/ascend910b" TYPE DIRECTORY OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom") +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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/add_custom.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/ascend910b" TYPE FILE OPTIONAL FILES "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/build_out/op_kernel/binary/ascend910b/bin/binary_info_config.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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/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 "/Test_performance/Operator-performance/Increase_Hsot_compute/No_increase/op_kernel/add_custom.cpp") +endif() + diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/.impl_timestamp b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/.impl_timestamp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py new file mode 100644 index 0000000000000000000000000000000000000000..87d5aa00dc31410d6bbfb8c2122e53991fc0afe9 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/dynamic/add_custom.py @@ -0,0 +1,152 @@ + +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 _build_args(x, y, z): + __inputs__ = [] + for arg in [x, y]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __inputs__.append(arg[0]) + else: + __inputs__.append(arg) + __outputs__ = [] + for arg in [z]: + if arg != None: + if isinstance(arg, (list, tuple)): + if len(arg) == 0: + continue + __outputs__.append(arg[0]) + else: + __outputs__.append(arg) + __attrs__ = [] + return __inputs__, __outputs__, __attrs__ + +@tbe_register.register_operator("AddCustom") +@para_check.check_op_params(para_check.REQUIRED_INPUT, para_check.REQUIRED_INPUT, para_check.REQUIRED_OUTPUT, para_check.KERNEL_NAME) +def add_custom(x, y, z, kernel_name="add_custom", impl_mode=""): + if get_current_build_config("enable_op_prebuild"): + return + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + options = get_dtype_fmt_options(__inputs__, __outputs__) + options += ["-x", "cce"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "add_custom" + ascendc_src_dir = "add_custom" + ascendc_src_file = "add_custom.cpp" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) + + print("start compile Ascend C operator AddCustom. kernel name is add_custom") + op_type = "AddCustom" + 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, y], origin_outputs = [z]) + compile_op(src, origin_func_name, op_info, options, code_channel, '{}') + +def op_select_format(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("op_select_format", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") + +def get_op_specific_info(x, y, z, impl_mode=""): + __inputs__, __outputs__, __attrs__ = _build_args(x, y, z) + result = check_op_cap("get_op_specific_info", "AddCustom", __inputs__, __outputs__, __attrs__) + return result.decode("utf-8") diff --git a/Increase_double_bufer/Is_double_buffer/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 b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json similarity index 83% rename from Increase_double_bufer/Is_double_buffer/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 rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/Is_double_buffer/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 +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310b/aic-ascend310b-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json similarity index 83% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend310p/aic-ascend310p-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json similarity index 83% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910/aic-ascend910-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json similarity index 83% rename from Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json index 9170d3b5130295e262715bd02ac63b5caf622306..a83db22671a6f1554c9ffa3d0105e15707a51a9c 100644 --- a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +++ b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/ascend910b/aic-ascend910b-ops-info.json @@ -17,16 +17,14 @@ "format":"ND", "name":"x", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "input1":{ "dtype":"float16", "format":"ND", "name":"y", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "needCheckSupport":{ "flag":"false" @@ -42,8 +40,7 @@ "format":"ND", "name":"z", "paramType":"required", - "shape":"all", - "unknownshape_format":"ND" + "shape":"all" }, "precision_reduce":{ "flag":"true" diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json b/Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json similarity index 100% rename from Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json rename to Increase_Hsot_compute/No_increase/build_out/op_kernel/tbe/op_info_cfg/ai_core/npu_supported_ops.json diff --git a/Increase_Hsot_compute/No_increase/build_out/scripts/install.sh b/Increase_Hsot_compute/No_increase/build_out/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/scripts/upgrade.sh b/Increase_Hsot_compute/No_increase/build_out/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/build_out/version.info b/Increase_Hsot_compute/No_increase/build_out/version.info new file mode 100644 index 0000000000000000000000000000000000000000..0ec7257bc8c51008d81469bdc9ce996ed34b998b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/build_out/version.info @@ -0,0 +1 @@ +custom_opp_compiler_version=7.3.T10.0.B528 diff --git a/Increase_Hsot_compute/No_increase/cmake/config.cmake b/Increase_Hsot_compute/No_increase/cmake/config.cmake new file mode 100644 index 0000000000000000000000000000000000000000..886119daadd85495676c07dfb0b629e3deab8ccf --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/func.cmake b/Increase_Hsot_compute/No_increase/cmake/func.cmake new file mode 100644 index 0000000000000000000000000000000000000000..ad187e7d6c0a7c801d0d791d3fab38b2e9d4e71f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/func.cmake @@ -0,0 +1,228 @@ + +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_ops_replay_targets) + cmake_parse_arguments(OPREPLAY "" "OPS_INFO;COMPUTE_UNIT;IMPL_DIR;OUT_DIR;INSTALL_DIR" "OPS_BATCH;OPS_ITERATE" ${ARGN}) + # ccec compile options + set(ccec_base_opts -c -O2 --cce-aicore-only -mllvm -cce-aicore-function-stack-size=16000 + -mllvm -cce-aicore-record-overflow=false -std=c++17) + set(ccec_extopts_ascend310p --cce-aicore-arch=dav-m200 -mllvm -cce-aicore-fp-ceiling=2) + set(ccec_extopts_ascend910 --cce-aicore-arch=dav-c100) + set(ccec_extopts_ascend910b --cce-aicore-arch=dav-c220-cube) + file(MAKE_DIRECTORY ${OPREPLAY_OUT_DIR}) + execute_process(COMMAND ${ASCEND_PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/cmake/util/ascendc_replay_build.py + ${OPREPLAY_OPS_INFO} + "${OPREPLAY_OPS_BATCH}" "${OPREPLAY_OPS_ITERATE}" + ${OPREPLAY_IMPL_DIR} + ${OPREPLAY_OUT_DIR} + ${OPREPLAY_COMPUTE_UNIT} + ) + file(GLOB replay_kernel_entries ${OPREPLAY_OUT_DIR}/*.cce) + if (NOT "${replay_kernel_entries}x" STREQUAL "x") + foreach(replay_kernel_file ${replay_kernel_entries}) + get_filename_component(replay_kernel_file_name "${replay_kernel_file}" NAME) + string(REPLACE "_entry.cce" "" op_kerne_name ${replay_kernel_file_name}) + file(GLOB replay_lib_src ${OPREPLAY_OUT_DIR}/${op_kerne_name}*.cpp) + set(OP_TILING_DATA_H_PATH ${OPREPLAY_OUT_DIR}/${op_kerne_name}_tiling_data.h) + add_library(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} SHARED ${replay_lib_src}) + if(EXISTS ${OP_TILING_DATA_H_PATH}) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -include ${OP_TILING_DATA_H_PATH} + ) + endif() + target_compile_definitions(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + ${op_kerne_name}=${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + ) + target_compile_options(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE + -D__ASCENDC_REPLAY__ + ) + target_link_libraries(replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} PRIVATE intf_pub + tikreplaylib::${OPREPLAY_COMPUTE_UNIT} + register + ) + add_custom_command(OUTPUT ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + COMMAND ccec ${ccec_base_opts} ${ccec_extopts_${OPREPLAY_COMPUTE_UNIT}} ${replay_kernel_file} + -o ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DEPENDS ${replay_kernel_file} + ) + add_custom_target(replay_kernel_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} ALL + DEPENDS ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + ) + install(TARGETS replay_${op_kerne_name}_${OPREPLAY_COMPUTE_UNIT} + LIBRARY DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + install(FILES ${OPREPLAY_OUT_DIR}/${op_kerne_name}_entry_${OPREPLAY_COMPUTE_UNIT}.o + DESTINATION packages/vendors/${vendor_name}/op_impl/ai_core/tbe/op_replay + ) + endforeach() + 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} + 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 + ) +endfunction() diff --git a/Increase_Hsot_compute/No_increase/cmake/intf.cmake b/Increase_Hsot_compute/No_increase/cmake/intf.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2f362c396622d66132f80f54492a8cc3204882fb --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/makeself.cmake b/Increase_Hsot_compute/No_increase/cmake/makeself.cmake new file mode 100644 index 0000000000000000000000000000000000000000..48c565bfb4f2edc6534a81abaa8565c4cf2dfc30 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/__init__.py b/Increase_Hsot_compute/No_increase/cmake/util/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c4ddc893a9275672e046b1311c6ee2d1578f405e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/__pycache__/const_var.cpython-39.pyc b/Increase_Hsot_compute/No_increase/cmake/util/__pycache__/const_var.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17209c56b1ef8a407b91bbf88887186466943205 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/cmake/util/__pycache__/const_var.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/No_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc b/Increase_Hsot_compute/No_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34d42eb9e1357ed507ba0233abe33531a399d7e2 Binary files /dev/null and b/Increase_Hsot_compute/No_increase/cmake/util/__pycache__/opdesc_parser.cpython-39.pyc differ diff --git a/Increase_Hsot_compute/No_increase/cmake/util/ascendc_bin_param_build.py b/Increase_Hsot_compute/No_increase/cmake/util/ascendc_bin_param_build.py new file mode 100644 index 0000000000000000000000000000000000000000..decf34544880c68fd89e809b15d415844b9882e6 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/ascendc_bin_param_build.py @@ -0,0 +1,129 @@ +#!/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] + 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] + 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() + atype = atype.replace('list', 'list_') + 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 = 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/Increase_Hsot_compute/No_increase/cmake/util/ascendc_impl_build.py b/Increase_Hsot_compute/No_increase/cmake/util/ascendc_impl_build.py new file mode 100644 index 0000000000000000000000000000000000000000..7fe177da1e5e8c0931189a1810f83fc3f42d9204 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/ascendc_impl_build.py @@ -0,0 +1,446 @@ +#!/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 stat +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", "int8_t"], + "bfloat16": ["DT_BF16", "bfloat16_t"]} + +def get_dtype_fmt_options(__inputs__, __outputs__): + options = [] + for x in __inputs__ + __outputs__: + x_n = x.get("param_name").upper() + x_fmt = x.get("format") + x_dtype = x.get("dtype") + options.append("-DDTYPE_{n}={t}".format(n=x_n, t=DTYPE_MAP.get(x_dtype)[1])) + options.append("-DORIG_DTYPE_{n}={ot}".format(n=x_n, ot=DTYPE_MAP.get(x_dtype)[0])) + options.append("-DFORMAT_{n}=FORMAT_{f}".format(n=x_n, f=x_fmt)) + 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 + +''' + +IMPL_API = ''' +@tbe_register.register_operator("{}") +@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"] + ccec = os.environ.get('CCEC_REAL_PATH') + if ccec is None: + ccec = shutil.which("ccec") + if ccec != None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_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 = "{}" + ascendc_src_file = "{}" + src = os.path.join(PYF_PATH, "..", "ascendc", ascendc_src_dir, ascendc_src_file) + if not os.path.exists(src): + src = os.path.join(PYF_PATH, ascendc_src_file) +''' + +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 {}") + 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 = [{}]) + 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', 'listInt': '[]', + 'listFloat': '[]', 'listBool': '[]', 'listListInt': '[[]]', 'str': ''} + + +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 + + +class AdpBuilder(opdesc_parser.OpDesc): + def __init__(self: any, op_type: str): + self.argsname = [] + 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() + att_type = att_type.replace('LIST', 'LIST_') + 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) + + 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(' __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(' __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(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, kern_name, self.op_type, ', '.join(self.input_name),\ + ', '.join(self.output_name), 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/Increase_Hsot_compute/No_increase/cmake/util/ascendc_ops_config.py b/Increase_Hsot_compute/No_increase/cmake/util/ascendc_ops_config.py new file mode 100644 index 0000000000000000000000000000000000000000..7a97180beda87facffebb18a9784264f6e0e8964 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/ascendc_ops_config.py @@ -0,0 +1,114 @@ +#!/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, 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') + 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} + 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') + 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, 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/Increase_Hsot_compute/No_increase/cmake/util/ascendc_replay_build.py b/Increase_Hsot_compute/No_increase/cmake/util/ascendc_replay_build.py new file mode 100644 index 0000000000000000000000000000000000000000..1cac7d911b84df4f3ef3a83ce9cac65ce2e89e0b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/batch_replay_impl.temp b/Increase_Hsot_compute/No_increase/cmake/util/batch_replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..0e88346642009514af64265b4da24c9946e3ebbf --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/code_channel_infer.py b/Increase_Hsot_compute/No_increase/cmake/util/code_channel_infer.py new file mode 100644 index 0000000000000000000000000000000000000000..137c9f39fa8609cd0cf672388c1066e85aff792f --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/code_channel_infer.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. +""" +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 ccec 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 + if params.compile_options is None: + compile_options = [] + else: + compile_options = params.compile_options + ccec = shutil.which("ccec") + if ccec is not None: + ccec_path = os.path.dirname(ccec) + tikcpp_path = os.path.realpath(os.path.join(ccec_path, "..", "..", "tikcpp")) + else: + tikcpp_path = os.path.realpath("/usr/local/Ascend/latest/compiler/tikcpp") + compile_options.append("-I" + tikcpp_path) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "impl")) + compile_options.append("-I" + os.path.join(tikcpp_path, "tikcfw", "interface")) + compile_options += ["-include", params.tiling_header] + arch = "dav-c220-cube" + sub_core_type = "AIC" + optional_core = "AiCore" + compile_cmd = [shutil.which("ccec"), '-c', '-O3'] + compile_cmd += compile_options + temp_file_name_tag = "_" + str(os.getpid()) + "_temp.o" + dst_file = os.path.join(kernel_meta_dir, kernel_name + temp_file_name_tag) + compile_cmd += [params.src_file, "--cce-aicore-arch={}".format(arch), + "--cce-aicore-only", "-o", dst_file, + "-mllvm", "-cce-aicore-function-stack-size=16000", + "-mllvm", "-cce-aicore-record-overflow=true", + "-mllvm", "-cce-aicore-addr-transform"] + compile_cmd += ["-std=c++17"] + print('get_code_channel: ', ' '.join(compile_cmd)) + proc = subprocess.Popen( + compile_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel coretype compile error: ', out.decode()) + msg = "compile %s error :%s\n" % (params.src_file, out.decode()) + raise Exception(f"get_code_channel coretype error, msg is{msg}") + objdump_cmd = ['objdump', '-s', '-j', '.text', '{}'.format(dst_file)] + + proc = subprocess.Popen( + objdump_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (out, _) = proc.communicate() + if proc.returncode != 0: + print('get_code_channel objdump error: ', out.decode()) + msg = "get_code_channel objdump %s error :%s\n" % (src_file, out.decode()) + raise Exception(f"get_code_channel objdump error, msg is{msg}") + os.remove(dst_file) + lines = out.decode('utf-8').split('\n') + for line in lines: + insts = line.strip().split() + if len(insts) < 5: + continue + for inst in insts[1:]: + if len(inst) != 8: + continue + if inst[6] == 'f': + return CODE_MIX + return CODE_VEC diff --git a/Increase_Hsot_compute/No_increase/cmake/util/const_var.py b/Increase_Hsot_compute/No_increase/cmake/util/const_var.py new file mode 100644 index 0000000000000000000000000000000000000000..8b32c3b915d0aaaf1f366cf95cf1a337e8959c89 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/gen_impl_and_mrege_json.sh b/Increase_Hsot_compute/No_increase/cmake/util/gen_impl_and_mrege_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..55e12e5edff6d1d39207db0c439a15fcb8656951 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/gen_impl_and_mrege_json.sh @@ -0,0 +1,57 @@ +#!/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 ai_core operators implements +# tbe_impl_files_num=$(ls $project_path/tbe/impl/* 2> /dev/null | wc -l) +# if [[ "$tbe_impl_files_num" -gt 0 ]];then +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/ai_core/tbe/customize_impl +# cp -r ${project_path}/tbe/impl/* ${build_path}/makepkg/packages/vendors/$vendor_name/op_impl/vector_core/tbe/customize_impl +# 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 + +# merge aicpu.ini and aicore.ini to generate npu_supported_ops.json +# mkdir -p ${build_path}/framework/op_info_cfg +# mkdir -p ${build_path}/framework/op_info_cfg/aicpu_kernel +# mkdir -p ${build_path}/framework/op_info_cfg/ai_core + +# if [[ -d "${project_path}/tbe/op_info_cfg/ai_core" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/tbe/op_info_cfg/ai_core ${build_path}/framework/op_info_cfg/ai_core +# fi + +# if [[ -d "${project_path}/cpukernel/op_info_cfg/aicpu_kernel" ]]; then +# bash ${project_path}/cmake/util/gen_ops_filter.sh ${project_path}/cpukernel/op_info_cfg/aicpu_kernel ${build_path}/framework/op_info_cfg/aicpu_kernel +# fi + +# aicpu_filter_file=${build_path}/framework/op_info_cfg/aicpu_kernel/npu_supported_ops.json +# aicore_filter_file=${build_path}/framework/op_info_cfg/ai_core/npu_supported_ops.json +# if [[ -f "${aicpu_filter_file}" ]] && [[ ! -f "${aicore_filter_file}" ]]; then +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi +# if [[ -f "${aicore_filter_file}" ]] && [[ ! -f "${aicpu_filter_file}" ]]; then +# cp $aicore_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + +# if [[ -f "${aicore_filter_file}" ]] && [[ -f "${aicpu_filter_file}" ]]; then +# chmod u+w ${aicpu_filter_file} +# python3 ${project_path}/cmake/util/insert_op_info.py ${aicore_filter_file} ${aicpu_filter_file} +# chmod u-w ${aicpu_filter_file} +# cp $aicpu_filter_file ${build_path}/makepkg/packages/vendors/$vendor_name/framework/tensorflow +# fi + diff --git a/Increase_Hsot_compute/No_increase/cmake/util/gen_ops_filter.sh b/Increase_Hsot_compute/No_increase/cmake/util/gen_ops_filter.sh new file mode 100644 index 0000000000000000000000000000000000000000..d4c27d17feb8617dfee0f6fd3262c36583033339 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/gen_version_info.sh b/Increase_Hsot_compute/No_increase/cmake/util/gen_version_info.sh new file mode 100644 index 0000000000000000000000000000000000000000..a06cfc78d29482807d086b880375533cd0a3679e --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/insert_op_info.py b/Increase_Hsot_compute/No_increase/cmake/util/insert_op_info.py new file mode 100644 index 0000000000000000000000000000000000000000..28ba08757c9301391a8f4005ae8fb0b290e43950 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/insert_simplified_keys.py b/Increase_Hsot_compute/No_increase/cmake/util/insert_simplified_keys.py new file mode 100644 index 0000000000000000000000000000000000000000..ace727b903b1de37e6feece649cd20f242d94798 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/insert_simplified_keys.py @@ -0,0 +1,248 @@ +#!/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 glob +import json +import argparse +import const_var + + +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, + 'string': 13, + 'dual': 14, + 'dual': 15, + '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') + bin_suffix = contents.get('binFileSuffix') + # '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/Increase_Hsot_compute/No_increase/cmake/util/kernel_entry.py b/Increase_Hsot_compute/No_increase/cmake/util/kernel_entry.py new file mode 100644 index 0000000000000000000000000000000000000000..2b77c970d4e6c1f0aaca07572cd8c7221ac00e22 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/kernel_impl.temp b/Increase_Hsot_compute/No_increase/cmake/util/kernel_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..5079a1043a25cd6b73449e708ceae40807cb03a1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/COPYING b/Increase_Hsot_compute/No_increase/cmake/util/makeself/COPYING new file mode 100644 index 0000000000000000000000000000000000000000..d159169d1050894d3ea3b98e1c965c4058208fe1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/README.md b/Increase_Hsot_compute/No_increase/cmake/util/makeself/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b41f0168201e8596e6cb8dc8754d606581d18dcf --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/VERSION b/Increase_Hsot_compute/No_increase/cmake/util/makeself/VERSION new file mode 100644 index 0000000000000000000000000000000000000000..59aa62c1fa4c234af19118ff8d8572c1d50437fd --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/makeself/VERSION @@ -0,0 +1 @@ +2.4.5 diff --git a/Increase_Hsot_compute/No_increase/cmake/util/makeself/make-release.sh b/Increase_Hsot_compute/No_increase/cmake/util/makeself/make-release.sh new file mode 100644 index 0000000000000000000000000000000000000000..b5692d49071716e68c821688b9ded040bd3a11c4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself-header.sh b/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself-header.sh new file mode 100644 index 0000000000000000000000000000000000000000..9409031483e2bc377d344d64b34b13877a0afd7b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.1 b/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.1 new file mode 100644 index 0000000000000000000000000000000000000000..81bf6e4ff4cfeb226c0a0992d8e6d2b94dd4f172 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.lsm b/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.lsm new file mode 100644 index 0000000000000000000000000000000000000000..3c4cea8c18982e288f0d51eba9b4d97f0f708f32 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.sh b/Increase_Hsot_compute/No_increase/cmake/util/makeself/makeself.sh new file mode 100644 index 0000000000000000000000000000000000000000..c8ea565971c5ac03c775a665596a593287881708 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/makeself/run-tests.sh b/Increase_Hsot_compute/No_increase/cmake/util/makeself/run-tests.sh new file mode 100644 index 0000000000000000000000000000000000000000..31ee1651156c64caddfdadd683d4dc2d0be3ddc4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/merge_aicpu_info_json.sh b/Increase_Hsot_compute/No_increase/cmake/util/merge_aicpu_info_json.sh new file mode 100644 index 0000000000000000000000000000000000000000..a977bd51d2e98a1511db4296070a8dda6b90a262 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/opdesc_parser.py b/Increase_Hsot_compute/No_increase/cmake/util/opdesc_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..c38e79edc89a80b528581afafdbc119db68ea590 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/opdesc_parser.py @@ -0,0 +1,260 @@ +#!/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", + "ascend910b3": "ascend910b", + "ascend910b4": "ascend910b", + "ascend310p1": "ascend310p", + "ascend310p3": "ascend310p", + "ascend310p3vir01": "ascend310p", + "ascend310p3vir02": "ascend310p", + "ascend310p3vir04": "ascend310p", + "ascend310p3vir08": "ascend310p", + "ascend310b1": "ascend310b", + "bs9sx1aa": "bs9sx1a" +} + + +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_type = [] + self.input_dtype = [] + self.input_fmt = [] + self.output_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_name.append(self._parse_str(conf)) + 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_name.append(self._parse_str(conf)) + 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) + + 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._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/Increase_Hsot_compute/No_increase/cmake/util/parse_ini_to_json.py b/Increase_Hsot_compute/No_increase/cmake/util/parse_ini_to_json.py new file mode 100644 index 0000000000000000000000000000000000000000..721465fee306bfca8895e2991ba06d1547c9eb2b --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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"] +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: + # Only the owner and group have rights + os.chmod(json_file_real_path, stat.S_IWGRP + 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/Increase_Hsot_compute/No_increase/cmake/util/preset_parse.py b/Increase_Hsot_compute/No_increase/cmake/util/preset_parse.py new file mode 100644 index 0000000000000000000000000000000000000000..8f1124b1db30f552915958bc14066b8783f6ef74 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/replay_codegen.py b/Increase_Hsot_compute/No_increase/cmake/util/replay_codegen.py new file mode 100644 index 0000000000000000000000000000000000000000..1baa364ef8b3a7dee9ea1f9ce53e7c06641a2d02 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/replay_impl.temp b/Increase_Hsot_compute/No_increase/cmake/util/replay_impl.temp new file mode 100644 index 0000000000000000000000000000000000000000..1d30dd8658e0a72200b3d5222e11d29170e21f57 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/cmake/util/tiling_data_def_build.py b/Increase_Hsot_compute/No_increase/cmake/util/tiling_data_def_build.py new file mode 100644 index 0000000000000000000000000000000000000000..a96304261c9369c9b2e24c5f2485615c0835f277 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/cmake/util/tiling_data_def_build.py @@ -0,0 +1,84 @@ +#!/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 += ' memcpy(const_data, tiling, sizeof({}));\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/Increase_Hsot_compute/No_increase/framework/CMakeLists.txt b/Increase_Hsot_compute/No_increase/framework/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6be9b492610f4d45b25bb7725648df9aac39a12 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/framework/tf_plugin/CMakeLists.txt b/Increase_Hsot_compute/No_increase/framework/tf_plugin/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6aba5c207d3b85ad16fdea69dd813dd6cc371b1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc b/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_plugin.cc new file mode 100644 index 0000000000000000000000000000000000000000..2cd837ce58d9aba9d65d15d57c5fe74adac868c4 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/framework/tf_plugin/tensorflow_add_custom_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("AddCustom") + .FrameworkType(TENSORFLOW) // type: CAFFE, TENSORFLOW + .OriginOpType("Add") // name in tf module + .ParseParamsByOperatorFn(AutoMappingByOpFn); +} // namespace domi diff --git a/Increase_Hsot_compute/No_increase/op_host/CMakeLists.txt b/Increase_Hsot_compute/No_increase/op_host/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..40dd51cfac524b0a9607b7d8b2813edd2210c509 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp b/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..bb3d01967b96ff4dfa12627334767bd81ef1e5e1 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/op_host/add_custom.cpp @@ -0,0 +1,87 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2023-2024. 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 "add_custom_tiling.h" +#include "register/op_def_registry.h" +#include "graph/utils/type_utils.h" +#include "tiling/platform/platform_ascendc.h" + + +namespace optiling { +const uint32_t BLOCK_DIM = 8; +const uint32_t TILE_NUM = 8; +static ge::graphStatus TilingFunc(gert::TilingContext *context) +{ + TilingData tiling; + uint32_t totalLength = context->GetInputShape(0)->GetOriginShape().GetShapeSize(); + context->SetBlockDim(1); + uint64_t ubSize; + auto ascendcPlatform = platform_ascendc::PlatformAscendC(context->GetPlatformInfo()); + ascendcPlatform.GetCoreMemSize(platform_ascendc::CoreMemType::UB, ubSize); + uint32_t AllNum = context->GetInputShape(0)->GetStorageShape().GetShapeSize(); + tiling.set_UbSize(ubSize); + tiling.set_AllNum(AllNum); + tiling.set_CoreNum(7); + + + + 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 optiling + +namespace ge { +static 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 ge + +namespace ops { +class AddCustom : public OpDef { +public: + explicit AddCustom(const char *name) : OpDef(name) + { + this->Input("x") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Input("y") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + this->Output("z") + .ParamType(REQUIRED) + .DataType({ge::DT_FLOAT16}) + .Format({ge::FORMAT_ND}); + + this->SetInferShape(ge::InferShape).SetInferDataType(ge::InferDataType); + this->AICore() + .SetTiling(optiling::TilingFunc) + .AddConfig("ascend910") + .AddConfig("ascend310p") + .AddConfig("ascend310b") + .AddConfig("ascend910b"); + } +}; +OP_ADD(AddCustom); +} // namespace ops diff --git a/Increase_Hsot_compute/No_increase/op_host/add_custom_tiling.h b/Increase_Hsot_compute/No_increase/op_host/add_custom_tiling.h new file mode 100644 index 0000000000000000000000000000000000000000..60d17f629979d15f6998f3c915c56f5989b11951 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/op_host/add_custom_tiling.h @@ -0,0 +1,26 @@ +/** + * @file add_custom_tiling.h + * + * Copyright (C) 2023-2024. 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 ADD_CUSTOM_TILING_H +#define ADD_CUSTOM_TILING_H +#include "register/tilingdata_base.h" + +namespace optiling { +BEGIN_TILING_DATA_DEF(TilingData) +TILING_DATA_FIELD_DEF(uint32_t, totalLength); +TILING_DATA_FIELD_DEF(uint32_t, tileNum); + TILING_DATA_FIELD_DEF(uint32_t, CoreNum); + TILING_DATA_FIELD_DEF(uint32_t, AllNum); + TILING_DATA_FIELD_DEF(uint32_t, UbSize); + +END_TILING_DATA_DEF; + +REGISTER_TILING_DATA_CLASS(AddCustom, TilingData) +} // namespace optiling +#endif // ADD_CUSTOM_TILING_H diff --git a/Increase_Hsot_compute/No_increase/op_kernel/CMakeLists.txt b/Increase_Hsot_compute/No_increase/op_kernel/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d31a444cd71b6e455dc206b9b89159dea9f4ce2 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/op_kernel/CMakeLists.txt @@ -0,0 +1,61 @@ +# 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}) + 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() + +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/Increase_Hsot_compute/No_increase/op_kernel/add_custom.cpp b/Increase_Hsot_compute/No_increase/op_kernel/add_custom.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c311bb77fea4bb745080a176dc01da7a35440c57 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/op_kernel/add_custom.cpp @@ -0,0 +1,109 @@ +/** + * @file add_custom.cpp + * + * Copyright (C) 2022-2024. 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 "kernel_operator.h" +constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue +const uint32_t BLOCK_SIZE = 32; +class KernelAdd { +public: + __aicore__ inline KernelAdd() {} + __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, + uint32_t tileNum,uint32_t CoreNum,uint32_t AllNum,uint32_t UbSize,AscendC::TPipe * cur_pipe) + { + + + uint32_t coreNum = CoreNum; + uint32_t inputLength = AllNum * sizeof(half); + uint32_t inputBytes = inputLength / AllNum; + uint32_t tileBlockNum = (UbSize / BLOCK_SIZE / BUFFER_NUM) / CoreNum; + uint32_t tileDataNum = (tileBlockNum * BLOCK_SIZE) / inputBytes; + + uint32_t inputLengthAlgin32 = (((inputLength + BLOCK_SIZE - 1) / BLOCK_SIZE) * BLOCK_SIZE); + + uint32_t everyCoreInputBlockNum = inputLengthAlgin32 / BLOCK_SIZE / coreNum; + uint32_t tailBlockNum = (inputLengthAlgin32 / BLOCK_SIZE) % coreNum; + uint32_t smallCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t smallTileNum = everyCoreInputBlockNum / tileBlockNum; + + uint32_t finalSmallTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? smallTileNum : smallTileNum + 1; + // Tail block calculation for small chunks of data + uint32_t smallTailDataNum = smallCoreDataNum - (tileDataNum * smallTileNum); + smallTailDataNum = smallTailDataNum == 0 ? tileDataNum : smallTailDataNum; + + + everyCoreInputBlockNum += 1; + uint32_t bigCoreDataNum = everyCoreInputBlockNum * BLOCK_SIZE / inputBytes; + uint32_t bigTileNum = everyCoreInputBlockNum / tileBlockNum; + uint32_t finalBigTileNum = (everyCoreInputBlockNum % tileBlockNum) == 0 ? bigTileNum : bigTileNum + 1; + uint32_t bigTailDataNum = bigCoreDataNum - tileDataNum * bigTileNum; + bigTailDataNum = bigTailDataNum == 0 ? tileDataNum : bigTailDataNum; + + ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); + + uint32_t globalBufferIndex = bigCoreDataNum * AscendC::GetBlockIdx(); + this->tileDataNum = tileDataNum; + + if (coreNum < tailBlockNum) { + this->coreDataNum = bigCoreDataNum; + this->tileNum = finalBigTileNum; + this->tailDataNum = bigTailDataNum; + } + else { + this->coreDataNum = smallCoreDataNum; + this->tileNum = finalSmallTileNum; + this->tailDataNum = smallTailDataNum; + globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (AscendC::GetBlockIdx() - tailBlockNum); + } + + + + xGm.SetGlobalBuffer((__gm__ half *)x , 131072); + pipe=cur_pipe; + pipe->InitBuffer(inQueueX, 1, 65536 * sizeof(half)); + pipe->InitBuffer(inQueueY, 1, 65536 * sizeof(half)); + this->copyParams.blockCount = 16; + this->copyParams.blockLen = 128; // 搬运的单位为DataBlock(32Byte),每个DataBlock内有8个float + this->copyParams.srcStride = 128; // 表示两次搬运src之间的间隔,单位为DataBlock + this->copyParams.dstStride = 0; + } + __aicore__ inline void Process() + { + AscendC::LocalTensor xLocal = inQueueX.AllocTensor(); + AscendC::DataCopy(xLocal, xGm, this->copyParams); + inQueueX.EnQue(xLocal); + xLocal = inQueueX.DeQue(); + AscendC::DataCopy(xGm,xLocal, this->copyParams); + inQueueX.FreeTensor(xLocal); + } + + +private: + AscendC::TPipe *pipe; + AscendC::TQue inQueueX, inQueueY; + AscendC::DataCopyParams copyParams; + AscendC::GlobalTensor xGm; + uint32_t coreDataNum; + uint32_t tileNum; + uint32_t tileDataNum; + uint32_t tailDataNum; + uint32_t processDataNum; + +}; + +extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) +{ + GET_TILING_DATA(tiling_data, tiling); + AscendC::TPipe cur_pipe; + KernelAdd op; + op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum, + tiling_data.CoreNum,tiling_data.AllNum,tiling_data.UbSize, + &cur_pipe); + op.Process(); +} + diff --git a/Increase_Hsot_compute/No_increase/output/AddCustom_case_20240821114242.json b/Increase_Hsot_compute/No_increase/output/AddCustom_case_20240821114242.json new file mode 100644 index 0000000000000000000000000000000000000000..4b5f7932922660fa7eab026bdabdc3b6fa67a782 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/output/AddCustom_case_20240821114242.json @@ -0,0 +1,58 @@ +[ + { + "case_name": "Test_AddCustom_001", + "op": "AddCustom", + "input_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "x" + }, + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "data_distribute": [ + "uniform" + ], + "value_range": [ + [ + 0.1, + 1.0 + ] + ], + "name": "y" + } + ], + "output_desc": [ + { + "format": [ + "ND" + ], + "type": [ + "float16" + ], + "shape": [], + "name": "z" + } + ] + } +] \ No newline at end of file diff --git a/Increase_Hsot_compute/No_increase/scripts/install.sh b/Increase_Hsot_compute/No_increase/scripts/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8468c5a256f2c77fad5bf78ab108ca5b62aad672 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/No_increase/scripts/upgrade.sh b/Increase_Hsot_compute/No_increase/scripts/upgrade.sh new file mode 100644 index 0000000000000000000000000000000000000000..e091734858534a6aa10bb5204b87302438004926 --- /dev/null +++ b/Increase_Hsot_compute/No_increase/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/Increase_Hsot_compute/README.md b/Increase_Hsot_compute/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b9708255ff10a259797c08158cc70d746f23c15e --- /dev/null +++ b/Increase_Hsot_compute/README.md @@ -0,0 +1,109 @@ +## 概述 +本样例基于AddCustom算子工程,介绍了将不必要的计算放在host侧对算子性能的差异。 + +本样例只考虑搬运,未包含计算。 + +## 目录结构介绍 +``` +├── Increase_the_number_of_aicore //使用框架调用的方式调用Add算子 +│ ├── AclNNInvocation // 通过aclnn调用的方式调用AddCustom算子 +│ ├── No_Increase // AddCustom算子工程 未改良版 在kernel侧计算 +│ +│ └── Is_increase // AddCustom算子工程 改良版 在host侧计算 +``` +## 算子工程介绍 +其中,算子工程目录AddCustom包含算子实现的模板文件、编译脚本等,如下所示: +``` +├── AddCustom //Add自定义算子工程 +│ ├── 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\Operator-performance\Increase_Hsot_compute + ``` + + - 修改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) + +### 6. 在310B4环境上本样例基于AddCustom算子工程,介绍了将不必要的计算放在host侧对算子性能的差异进行算子性能数据收集。 +| File Name | Op Type|aic_time(us)|aic_scalar_time(us)| +|-------------------|------|------|------| +| No_Increase | vector|9541667|1.097222| +| Is_Increase | vector|9708333|1.107026| + diff --git a/Increase_UB_case/Is_fill_UB/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 b/Increase_UB_case/Is_fill_UB/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 deleted file mode 100644 index df4edec33a7085c2fbfdf6527926b42cb131f423..0000000000000000000000000000000000000000 --- a/Increase_UB_case/Is_fill_UB/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 +++ /dev/null @@ -1,52 +0,0 @@ -{ - "AddCustom":{ - "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":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"y", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "needCheckSupport":{ - "flag":"false" - }, - "opFile":{ - "value":"add_custom" - }, - "opInterface":{ - "value":"add_custom" - }, - "output0":{ - "dtype":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"z", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "precision_reduce":{ - "flag":"true" - } - } -} \ No newline at end of file diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json b/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json deleted file mode 100644 index df4edec33a7085c2fbfdf6527926b42cb131f423..0000000000000000000000000000000000000000 --- a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "AddCustom":{ - "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":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"y", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "needCheckSupport":{ - "flag":"false" - }, - "opFile":{ - "value":"add_custom" - }, - "opInterface":{ - "value":"add_custom" - }, - "output0":{ - "dtype":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"z", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "precision_reduce":{ - "flag":"true" - } - } -} \ No newline at end of file diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp b/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp deleted file mode 100644 index 72f67947f2817e37494063ad973e47d0ade79fd9..0000000000000000000000000000000000000000 --- a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +++ /dev/null @@ -1,135 +0,0 @@ -/* - * 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; -// tensor num for each queue -constexpr int32_t BUFFER_NUM = 2; - -template class KernelAdd { - using T = TYPE_X; -public: - __aicore__ inline KernelAdd() {} - __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t smallCoreDataNum, - uint32_t bigCoreDataNum, uint32_t finalBigTileNum, - uint32_t finalSmallTileNum, uint32_t tileDataNum, - uint32_t smallTailDataNum, uint32_t bigTailDataNum, - uint32_t tailBlockNum) - { - ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); - uint32_t coreNum = GetBlockIdx(); - uint32_t globalBufferIndex = bigCoreDataNum * GetBlockIdx(); - this->tileDataNum = tileDataNum; - if (coreNum < tailBlockNum) { - this->coreDataNum = bigCoreDataNum; - this->tileNum = finalBigTileNum; - this->tailDataNum = bigTailDataNum; - } - else { - this->coreDataNum = smallCoreDataNum; - this->tileNum = finalSmallTileNum; - this->tailDataNum = smallTailDataNum; - globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (GetBlockIdx() - tailBlockNum); - } - xGm.SetGlobalBuffer((__gm__ TYPE_X*)x + globalBufferIndex, this->coreDataNum); - yGm.SetGlobalBuffer((__gm__ TYPE_Y*)y + globalBufferIndex, this->coreDataNum); - zGm.SetGlobalBuffer((__gm__ TYPE_Z*)z + globalBufferIndex, this->coreDataNum); - pipe.InitBuffer(inQueueX, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_X)); - pipe.InitBuffer(inQueueY, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_Y)); - pipe.InitBuffer(outQueueZ, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_Z)); - pipe.InitBuffer(tmp1, this->tileDataNum * sizeof(half)); - pipe.InitBuffer(tmp2, this->tileDataNum * sizeof(half)); - } - __aicore__ inline void Process() - { - int32_t loopCount = this->tileNum; - this->processDataNum = this->tileDataNum; - for (int32_t i = 0; i < loopCount; i++) { - if (i == this->tileNum - 1) { - this->processDataNum = this->tailDataNum; - } - CopyIn(i); - Compute(i); - CopyOut(i); - } - } - -private: - __aicore__ inline void CopyIn(int32_t progress) - { - LocalTensor xLocal = inQueueX.AllocTensor(); - LocalTensor yLocal = inQueueY.AllocTensor(); - DataCopy(xLocal, xGm[progress * this->tileDataNum], this->processDataNum); - DataCopy(yLocal, yGm[progress * this->tileDataNum], this->processDataNum); - inQueueX.EnQue(xLocal); - inQueueY.EnQue(yLocal); - } - __aicore__ inline void Compute(int32_t progress) - { - LocalTensor xLocal = inQueueX.DeQue(); - LocalTensor yLocal = inQueueY.DeQue(); - LocalTensor zLocal = outQueueZ.AllocTensor(); - if constexpr (std::is_same_v) { - auto p1 = tmp1.Get(); - auto p2 = tmp2.Get(); - Cast(p1, xLocal, RoundMode::CAST_NONE, this->processDataNum); - Cast(p2, yLocal, RoundMode::CAST_NONE, this->processDataNum); - Add(p2, p1, p2, this->processDataNum); - Cast(p1.ReinterpretCast(), p2, RoundMode::CAST_RINT, this->processDataNum); - ShiftLeft(p1.ReinterpretCast(), p1.ReinterpretCast(), int16_t(8), this->processDataNum); - ShiftRight(p1.ReinterpretCast(), p1.ReinterpretCast(), int16_t(8), this->processDataNum); - Cast(p2, p1.ReinterpretCast(), RoundMode::CAST_NONE, this->processDataNum); - Cast(zLocal, p2, RoundMode::CAST_NONE, this->processDataNum); - } - else { - Add(zLocal, xLocal, yLocal, this->processDataNum); - } - outQueueZ.EnQue(zLocal); - inQueueX.FreeTensor(xLocal); - inQueueY.FreeTensor(yLocal); - } - __aicore__ inline void CopyOut(int32_t progress) - { - LocalTensor zLocal = outQueueZ.DeQue(); - DataCopy(zGm[progress * this->tileDataNum], zLocal, this->processDataNum); - outQueueZ.FreeTensor(zLocal); - } - -private: - TPipe pipe; - TQue inQueueX, inQueueY; - TQue outQueueZ; - TBuf tmp1, tmp2; - GlobalTensor xGm; - GlobalTensor yGm; - GlobalTensor zGm; - uint32_t coreDataNum; - uint32_t tileNum; - uint32_t tileDataNum; - uint32_t tailDataNum; - uint32_t processDataNum; -}; - -extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) -{ - GET_TILING_DATA(tiling_data, tiling); - KernelAdd op; - op.Init(x, y, z, tiling_data.smallCoreDataNum, - tiling_data.bigCoreDataNum, tiling_data.finalBigTileNum, - tiling_data.finalSmallTileNum, tiling_data.tileDataNum, - tiling_data.smallTailDataNum, tiling_data.bigTailDataNum, - tiling_data.tailBlockNum); - op.Process(); -} - -#ifndef ASCENDC_CPU_DEBUG -// call of kernel function -void add_custom_do(uint32_t blockDim, void* l2ctrl, void* stream, uint8_t* x, uint8_t* y, uint8_t* z, - uint8_t* workspace, uint8_t* tiling) -{ - add_custom<<>>(x, y, z, workspace, tiling); -} -#endif diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json b/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json deleted file mode 100644 index 170cea5694fe4b283b487e731418507d4b78ce27..0000000000000000000000000000000000000000 --- a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "binList": [ - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/1,2/1,2/1,2", - "AddCustom/d=1,p=0/1,2/1,2/1,2" - ], - "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" - ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" - ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" - ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json" - } - } - ] -} \ No newline at end of file diff --git a/Increase_UB_case/Is_fill_UB/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 b/Increase_UB_case/Is_fill_UB/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 deleted file mode 100644 index 581186ddc39430611a8dd64d21c7bc26d14da152..0000000000000000000000000000000000000000 --- a/Increase_UB_case/Is_fill_UB/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 +++ /dev/null @@ -1,48 +0,0 @@ -{ - "AddCustom": { - "dynamicRankSupport": true, - "simplifiedKeyMode": 0, - "binaryList": [ - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/1,2/1,2/1,2", - "binPath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", - "binPath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/0,2/0,2/0,2", - "binPath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/0,2/0,2/0,2", - "binPath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/2,2/2,2/2,2", - "binPath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/2,2/2,2/2,2", - "binPath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/3,2/3,2/3,2", - "binPath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/3,2/3,2/3,2", - "binPath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - } - ] - } -} \ No newline at end of file diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json b/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json deleted file mode 100644 index 7b5aab55315ecb8e1c294baec467279ae47d8596..0000000000000000000000000000000000000000 --- a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "binList": [ - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/1,2/1,2/1,2", - "AddCustom/d=1,p=0/1,2/1,2/1,2" - ], - "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" - ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" - ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" - ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json" - } - } - ] -} \ No newline at end of file diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json b/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json deleted file mode 100644 index f266c034f1ff018c8a81809c8cc9c23addc865b9..0000000000000000000000000000000000000000 --- a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "AddCustom": { - "dynamicRankSupport": true, - "simplifiedKeyMode": 0, - "binaryList": [ - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/1,2/1,2/1,2", - "binPath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", - "binPath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/0,2/0,2/0,2", - "binPath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/0,2/0,2/0,2", - "binPath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/2,2/2,2/2,2", - "binPath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/2,2/2,2/2,2", - "binPath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/3,2/3,2/3,2", - "binPath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/3,2/3,2/3,2", - "binPath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - } - ] - } -} \ No newline at end of file diff --git a/Increase_UB_case/Is_fill_UB/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 b/Increase_UB_case/Is_fill_UB/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 deleted file mode 100644 index 33eb529e6b7a583c50757fa460d1890bc85d125a..0000000000000000000000000000000000000000 Binary files a/Increase_UB_case/Is_fill_UB/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 and /dev/null differ diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so b/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so deleted file mode 100644 index 33eb529e6b7a583c50757fa460d1890bc85d125a..0000000000000000000000000000000000000000 Binary files a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so and /dev/null differ diff --git a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so b/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so deleted file mode 100644 index 5178e8e839c9e6e8922169fbd5f0ee4c531ebc39..0000000000000000000000000000000000000000 Binary files a/Increase_UB_case/Is_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so and /dev/null differ diff --git a/Increase_UB_case/No_fill_UB/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 b/Increase_UB_case/No_fill_UB/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 deleted file mode 100644 index df4edec33a7085c2fbfdf6527926b42cb131f423..0000000000000000000000000000000000000000 --- a/Increase_UB_case/No_fill_UB/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 +++ /dev/null @@ -1,52 +0,0 @@ -{ - "AddCustom":{ - "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":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"y", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "needCheckSupport":{ - "flag":"false" - }, - "opFile":{ - "value":"add_custom" - }, - "opInterface":{ - "value":"add_custom" - }, - "output0":{ - "dtype":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"z", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "precision_reduce":{ - "flag":"true" - } - } -} \ No newline at end of file diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json b/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json deleted file mode 100644 index df4edec33a7085c2fbfdf6527926b42cb131f423..0000000000000000000000000000000000000000 --- a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "AddCustom":{ - "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":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"y", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "needCheckSupport":{ - "flag":"false" - }, - "opFile":{ - "value":"add_custom" - }, - "opInterface":{ - "value":"add_custom" - }, - "output0":{ - "dtype":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"z", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "precision_reduce":{ - "flag":"true" - } - } -} \ No newline at end of file diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp b/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp deleted file mode 100644 index d2bb3b721ab0c9cdff7786e516c6650646c31a3a..0000000000000000000000000000000000000000 --- a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +++ /dev/null @@ -1,135 +0,0 @@ -/* - * 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; -// tensor num for each queue -constexpr int32_t BUFFER_NUM = 2; - -template class KernelAdd { - using T = TYPE_X; -public: - __aicore__ inline KernelAdd() {} - __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t smallCoreDataNum, - uint32_t bigCoreDataNum, uint32_t finalBigTileNum, - uint32_t finalSmallTileNum, uint32_t tileDataNum, - uint32_t smallTailDataNum, uint32_t bigTailDataNum, - uint32_t tailBlockNum) - { - ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); - uint32_t coreNum = GetBlockIdx(); - uint32_t globalBufferIndex = bigCoreDataNum * GetBlockIdx(); - this->tileDataNum = tileDataNum; - if (coreNum < tailBlockNum) { - this->coreDataNum = bigCoreDataNum; - this->tileNum = finalBigTileNum; - this->tailDataNum = bigTailDataNum; - } - else { - this->coreDataNum = smallCoreDataNum; - this->tileNum = finalSmallTileNum; - this->tailDataNum = smallTailDataNum; - globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (GetBlockIdx() - tailBlockNum); - } - xGm.SetGlobalBuffer((__gm__ TYPE_X*)x , this->coreDataNum); - yGm.SetGlobalBuffer((__gm__ TYPE_Y*)y , this->coreDataNum); - zGm.SetGlobalBuffer((__gm__ TYPE_Z*)z , this->coreDataNum); - pipe.InitBuffer(inQueueX, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_X)); - pipe.InitBuffer(inQueueY, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_Y)); - pipe.InitBuffer(outQueueZ, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_Z)); - pipe.InitBuffer(tmp1, this->tileDataNum * sizeof(half)); - pipe.InitBuffer(tmp2, this->tileDataNum * sizeof(half)); - } - __aicore__ inline void Process() - { - int32_t loopCount = this->tileNum; - this->processDataNum = this->tileDataNum; - for (int32_t i = 0; i < loopCount; i++) { - if (i == this->tileNum - 1) { - this->processDataNum = this->tailDataNum; - } - CopyIn(i); - Compute(i); - CopyOut(i); - } - } - -private: - __aicore__ inline void CopyIn(int32_t progress) - { - LocalTensor xLocal = inQueueX.AllocTensor(); - LocalTensor yLocal = inQueueY.AllocTensor(); - DataCopy(xLocal, xGm[progress * this->tileDataNum], this->processDataNum); - DataCopy(yLocal, yGm[progress * this->tileDataNum], this->processDataNum); - inQueueX.EnQue(xLocal); - inQueueY.EnQue(yLocal); - } - __aicore__ inline void Compute(int32_t progress) - { - LocalTensor xLocal = inQueueX.DeQue(); - LocalTensor yLocal = inQueueY.DeQue(); - LocalTensor zLocal = outQueueZ.AllocTensor(); - if constexpr (std::is_same_v) { - auto p1 = tmp1.Get(); - auto p2 = tmp2.Get(); - Cast(p1, xLocal, RoundMode::CAST_NONE, this->processDataNum); - Cast(p2, yLocal, RoundMode::CAST_NONE, this->processDataNum); - Add(p2, p1, p2, this->processDataNum); - Cast(p1.ReinterpretCast(), p2, RoundMode::CAST_RINT, this->processDataNum); - ShiftLeft(p1.ReinterpretCast(), p1.ReinterpretCast(), int16_t(8), this->processDataNum); - ShiftRight(p1.ReinterpretCast(), p1.ReinterpretCast(), int16_t(8), this->processDataNum); - Cast(p2, p1.ReinterpretCast(), RoundMode::CAST_NONE, this->processDataNum); - Cast(zLocal, p2, RoundMode::CAST_NONE, this->processDataNum); - } - else { - Add(zLocal, xLocal, yLocal, this->processDataNum); - } - outQueueZ.EnQue(zLocal); - inQueueX.FreeTensor(xLocal); - inQueueY.FreeTensor(yLocal); - } - __aicore__ inline void CopyOut(int32_t progress) - { - LocalTensor zLocal = outQueueZ.DeQue(); - DataCopy(zGm[progress * this->tileDataNum], zLocal, this->processDataNum); - outQueueZ.FreeTensor(zLocal); - } - -private: - TPipe pipe; - TQue inQueueX, inQueueY; - TQue outQueueZ; - TBuf tmp1, tmp2; - GlobalTensor xGm; - GlobalTensor yGm; - GlobalTensor zGm; - uint32_t coreDataNum; - uint32_t tileNum; - uint32_t tileDataNum; - uint32_t tailDataNum; - uint32_t processDataNum; -}; - -extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) -{ - GET_TILING_DATA(tiling_data, tiling); - KernelAdd op; - op.Init(x, y, z, tiling_data.smallCoreDataNum, - tiling_data.bigCoreDataNum, tiling_data.finalBigTileNum, - tiling_data.finalSmallTileNum, tiling_data.tileDataNum, - tiling_data.smallTailDataNum, tiling_data.bigTailDataNum, - tiling_data.tailBlockNum); - op.Process(); -} - -#ifndef ASCENDC_CPU_DEBUG -// call of kernel function -void add_custom_do(uint32_t blockDim, void* l2ctrl, void* stream, uint8_t* x, uint8_t* y, uint8_t* z, - uint8_t* workspace, uint8_t* tiling) -{ - add_custom<<>>(x, y, z, workspace, tiling); -} -#endif diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json b/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json deleted file mode 100644 index 170cea5694fe4b283b487e731418507d4b78ce27..0000000000000000000000000000000000000000 --- a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "binList": [ - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/1,2/1,2/1,2", - "AddCustom/d=1,p=0/1,2/1,2/1,2" - ], - "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" - ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" - ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" - ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json" - } - } - ] -} \ No newline at end of file diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json b/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json deleted file mode 100644 index 7b5aab55315ecb8e1c294baec467279ae47d8596..0000000000000000000000000000000000000000 --- a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "binList": [ - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/1,2/1,2/1,2", - "AddCustom/d=1,p=0/1,2/1,2/1,2" - ], - "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" - ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" - ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" - ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json" - } - } - ] -} \ No newline at end of file diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json b/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json deleted file mode 100644 index f266c034f1ff018c8a81809c8cc9c23addc865b9..0000000000000000000000000000000000000000 --- a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "AddCustom": { - "dynamicRankSupport": true, - "simplifiedKeyMode": 0, - "binaryList": [ - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/1,2/1,2/1,2", - "binPath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", - "binPath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/0,2/0,2/0,2", - "binPath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/0,2/0,2/0,2", - "binPath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/2,2/2,2/2,2", - "binPath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/2,2/2,2/2,2", - "binPath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/3,2/3,2/3,2", - "binPath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/3,2/3,2/3,2", - "binPath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - } - ] - } -} \ No newline at end of file diff --git a/Increase_UB_case/No_fill_UB/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 b/Increase_UB_case/No_fill_UB/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 deleted file mode 100644 index 0d8526dde4a7208bcde4624960a4539603bcaa0f..0000000000000000000000000000000000000000 Binary files a/Increase_UB_case/No_fill_UB/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 and /dev/null differ diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so b/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so deleted file mode 100644 index 0d8526dde4a7208bcde4624960a4539603bcaa0f..0000000000000000000000000000000000000000 Binary files a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so and /dev/null differ diff --git a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so b/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so deleted file mode 100644 index 3a696cca363d343497dce4935b999e49dd3518b7..0000000000000000000000000000000000000000 Binary files a/Increase_UB_case/No_fill_UB/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so and /dev/null differ diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so b/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so deleted file mode 100644 index 5b560a882596ffbbc8311dabc96005caee719128..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so and /dev/null differ diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json b/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json deleted file mode 100644 index 0d40969af9f517e4ef929988bd983807dbdb3139..0000000000000000000000000000000000000000 --- a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "AddCustom": { - "isGray": false, - "isHeavy": false - } -} diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h b/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h deleted file mode 100644 index 8d8990e1f20e5dfe24b6b231524fbd30d44413fa..0000000000000000000000000000000000000000 --- a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +++ /dev/null @@ -1,49 +0,0 @@ - -/* - * calution: this file was generated automaticlly donot change it. -*/ - -#ifndef ACLNN_ADD_CUSTOM_H_ -#define ACLNN_ADD_CUSTOM_H_ - -#include "aclnn/acl_meta.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/* funtion: aclnnAddCustomGetWorkspaceSize - * parameters : - * x : required - * y : required - * out : required - * workspaceSize : size of workspace(output). - * executor : executor context(output). - */ -__attribute__((visibility("default"))) -aclnnStatus aclnnAddCustomGetWorkspaceSize( - const aclTensor *x, - const aclTensor *y, - const aclTensor *out, - uint64_t *workspaceSize, - aclOpExecutor **executor); - -/* funtion: aclnnAddCustom - * parameters : - * workspace : workspace memory addr(input). - * workspaceSize : size of workspace(input). - * executor : executor context(input). - * stream : acl stream. - */ -__attribute__((visibility("default"))) -aclnnStatus aclnnAddCustom( - void *workspace, - uint64_t workspaceSize, - aclOpExecutor *executor, - aclrtStream stream); - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp b/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp deleted file mode 100644 index 1558d7c2b85c123845eead14cb51b9b60a123845..0000000000000000000000000000000000000000 --- a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +++ /dev/null @@ -1,108 +0,0 @@ -/* - * 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; -constexpr int32_t BUFFER_NUM = 2; // tensor num for each queue - -class KernelAdd -{ -public: - __aicore__ inline KernelAdd() {} - __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) - { - ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); - this->blockLength = totalLength ; - this->tileNum = 512; - ASSERT(tileNum != 0 && "tile num can not be zero!"); - this->man=8; - this->tileLength = this->blockLength /BUFFER_NUM/512; - - xGm.SetGlobalBuffer((__gm__ DTYPE_X *)x , this->blockLength); - yGm.SetGlobalBuffer((__gm__ DTYPE_Y *)y , this->blockLength); - zGm.SetGlobalBuffer((__gm__ DTYPE_Z *)z , this->blockLength); - - pipe.InitBuffer(inQueueX, BUFFER_NUM, this->tileLength * sizeof(DTYPE_X)); - pipe.InitBuffer(inQueueY, BUFFER_NUM, this->tileLength * sizeof(DTYPE_Y)); - pipe.InitBuffer(outQueueZ, BUFFER_NUM, this->tileLength * sizeof(DTYPE_Z)); - } - __aicore__ inline void Process() - { - //int32_t loopCount = (this->tileNum * BUFFER_NUM)/this->man; - int32_t loopCount = this->tileNum* BUFFER_NUM ; - for (int32_t i = 0; i < loopCount; i++) - { - CopyIn(i); - Compute(i); - CopyOut(i); - } - } - - -private: - __aicore__ inline void CopyIn(int32_t progress) - { - LocalTensor xLocal = inQueueX.AllocTensor(); - LocalTensor yLocal = inQueueY.AllocTensor(); - DataCopy(xLocal, xGm[progress * this->tileLength], this->tileLength); - DataCopy(yLocal, yGm[progress * this->tileLength], this->tileLength); - inQueueX.EnQue(xLocal); - inQueueY.EnQue(yLocal); - } - __aicore__ inline void Compute(int32_t progress) - { - LocalTensor xLocal = inQueueX.DeQue(); - LocalTensor yLocal = inQueueY.DeQue(); - LocalTensor zLocal = outQueueZ.AllocTensor(); - - Add(zLocal, xLocal, yLocal, this->tileLength); - outQueueZ.EnQue(zLocal); - - inQueueX.FreeTensor(xLocal); - inQueueY.FreeTensor(yLocal); - } - __aicore__ inline void CopyOut(int32_t progress) - { - LocalTensor zLocal = outQueueZ.DeQue(); - - // DataCopy(zGm[progress * this->tileLength], zLocal, this->tileLength); - DataCopy(zGm[progress * this->tileLength], zLocal, this->tileLength); - outQueueZ.FreeTensor(zLocal); - } - -private: - TPipe pipe; - TQue inQueueX, inQueueY; - TQue outQueueZ; - GlobalTensor xGm; - GlobalTensor yGm; - GlobalTensor zGm; - uint32_t blockLength; - uint32_t tileNum; - uint32_t tileLength; - uint32_t man; -}; - -extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) -{ - GET_TILING_DATA(tiling_data, tiling); - KernelAdd op; - - - op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum); - op.Process(); - - -} -/* -#ifndef __CCE_KT_TEST__ -// call of kernel function -void add_custom_do(uint32_t blockDim, void* l2ctrl, void* stream, uint8_t* x, uint8_t* y, uint8_t* z, - uint8_t* workspace, uint8_t* tiling) -{ - add_custom<<>>(x, y, z, workspace, tiling); -} -#endif*/ diff --git a/Increase_double_bufer/Is_double_buffer/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 b/Increase_double_bufer/Is_double_buffer/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 deleted file mode 100644 index b4c64b77cd0adee64fb7ec056de6ea07809d98f8..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/Is_double_buffer/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 and /dev/null differ diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so b/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so deleted file mode 100644 index b4c64b77cd0adee64fb7ec056de6ea07809d98f8..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so and /dev/null differ diff --git a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so b/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so deleted file mode 100644 index b0bc4a64b784c9d397da4794444b61948c14596f..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/Is_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so and /dev/null differ diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so b/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so deleted file mode 100644 index 5b560a882596ffbbc8311dabc96005caee719128..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so and /dev/null differ diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json b/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json deleted file mode 100644 index 0d40969af9f517e4ef929988bd983807dbdb3139..0000000000000000000000000000000000000000 --- a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "AddCustom": { - "isGray": false, - "isHeavy": false - } -} diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h b/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h deleted file mode 100644 index 8d8990e1f20e5dfe24b6b231524fbd30d44413fa..0000000000000000000000000000000000000000 --- a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +++ /dev/null @@ -1,49 +0,0 @@ - -/* - * calution: this file was generated automaticlly donot change it. -*/ - -#ifndef ACLNN_ADD_CUSTOM_H_ -#define ACLNN_ADD_CUSTOM_H_ - -#include "aclnn/acl_meta.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/* funtion: aclnnAddCustomGetWorkspaceSize - * parameters : - * x : required - * y : required - * out : required - * workspaceSize : size of workspace(output). - * executor : executor context(output). - */ -__attribute__((visibility("default"))) -aclnnStatus aclnnAddCustomGetWorkspaceSize( - const aclTensor *x, - const aclTensor *y, - const aclTensor *out, - uint64_t *workspaceSize, - aclOpExecutor **executor); - -/* funtion: aclnnAddCustom - * parameters : - * workspace : workspace memory addr(input). - * workspaceSize : size of workspace(input). - * executor : executor context(input). - * stream : acl stream. - */ -__attribute__((visibility("default"))) -aclnnStatus aclnnAddCustom( - void *workspace, - uint64_t workspaceSize, - aclOpExecutor *executor, - aclrtStream stream); - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp b/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp deleted file mode 100644 index 408bc6b7f7982fe161b373c1dca50725f5a55ac1..0000000000000000000000000000000000000000 --- a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +++ /dev/null @@ -1,108 +0,0 @@ -/* - * 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; -constexpr int32_t BUFFER_NUM = 1; // tensor num for each queue - -class KernelAdd -{ -public: - __aicore__ inline KernelAdd() {} - __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t totalLength, uint32_t tileNum) - { - ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); - this->blockLength = totalLength ; - this->tileNum = 512; - ASSERT(tileNum != 0 && "tile num can not be zero!"); - this->man=8; - this->tileLength = this->blockLength /2/512; - - xGm.SetGlobalBuffer((__gm__ DTYPE_X *)x , this->blockLength); - yGm.SetGlobalBuffer((__gm__ DTYPE_Y *)y , this->blockLength); - zGm.SetGlobalBuffer((__gm__ DTYPE_Z *)z , this->blockLength); - - pipe.InitBuffer(inQueueX, BUFFER_NUM, this->tileLength * sizeof(DTYPE_X)); - pipe.InitBuffer(inQueueY, BUFFER_NUM, this->tileLength * sizeof(DTYPE_Y)); - pipe.InitBuffer(outQueueZ, BUFFER_NUM, this->tileLength * sizeof(DTYPE_Z)); - } - __aicore__ inline void Process() - { - //int32_t loopCount = (this->tileNum * BUFFER_NUM)/this->man; - int32_t loopCount = this->tileNum* 2 ; - for (int32_t i = 0; i < loopCount; i++) - { - CopyIn(i); - Compute(i); - CopyOut(i); - } - } - - -private: - __aicore__ inline void CopyIn(int32_t progress) - { - LocalTensor xLocal = inQueueX.AllocTensor(); - LocalTensor yLocal = inQueueY.AllocTensor(); - DataCopy(xLocal, xGm[progress * this->tileLength], this->tileLength); - DataCopy(yLocal, yGm[progress * this->tileLength], this->tileLength); - inQueueX.EnQue(xLocal); - inQueueY.EnQue(yLocal); - } - __aicore__ inline void Compute(int32_t progress) - { - LocalTensor xLocal = inQueueX.DeQue(); - LocalTensor yLocal = inQueueY.DeQue(); - LocalTensor zLocal = outQueueZ.AllocTensor(); - - Add(zLocal, xLocal, yLocal, this->tileLength); - outQueueZ.EnQue(zLocal); - - inQueueX.FreeTensor(xLocal); - inQueueY.FreeTensor(yLocal); - } - __aicore__ inline void CopyOut(int32_t progress) - { - LocalTensor zLocal = outQueueZ.DeQue(); - - // DataCopy(zGm[progress * this->tileLength], zLocal, this->tileLength); - DataCopy(zGm[progress * this->tileLength], zLocal, this->tileLength); - outQueueZ.FreeTensor(zLocal); - } - -private: - TPipe pipe; - TQue inQueueX, inQueueY; - TQue outQueueZ; - GlobalTensor xGm; - GlobalTensor yGm; - GlobalTensor zGm; - uint32_t blockLength; - uint32_t tileNum; - uint32_t tileLength; - uint32_t man; -}; - -extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) -{ - GET_TILING_DATA(tiling_data, tiling); - KernelAdd op; - - - op.Init(x, y, z, tiling_data.totalLength, tiling_data.tileNum); - op.Process(); - - -} -/* -#ifndef __CCE_KT_TEST__ -// call of kernel function -void add_custom_do(uint32_t blockDim, void* l2ctrl, void* stream, uint8_t* x, uint8_t* y, uint8_t* z, - uint8_t* workspace, uint8_t* tiling) -{ - add_custom<<>>(x, y, z, workspace, tiling); -} -#endif*/ diff --git a/Increase_double_bufer/No_double_buffer/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 b/Increase_double_bufer/No_double_buffer/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 deleted file mode 100644 index b4c64b77cd0adee64fb7ec056de6ea07809d98f8..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/No_double_buffer/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 and /dev/null differ diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so b/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so deleted file mode 100644 index b4c64b77cd0adee64fb7ec056de6ea07809d98f8..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so and /dev/null differ diff --git a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so b/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so deleted file mode 100644 index b0bc4a64b784c9d397da4794444b61948c14596f..0000000000000000000000000000000000000000 Binary files a/Increase_double_bufer/No_double_buffer/build_out/_CPack_Packages/Linux/External/custom_opp_ubuntu_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so and /dev/null differ diff --git a/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_C.bin b/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_C.bin old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_CXX.bin b/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_CXX.bin old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CompilerIdC/a.out b/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CompilerIdC/a.out old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CompilerIdCXX/a.out b/Increase_the_number_of_aicore/AclNNInvocation/build/CMakeFiles/3.22.0/CompilerIdCXX/a.out old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AclNNInvocation/output/execute_add_op b/Increase_the_number_of_aicore/AclNNInvocation/output/execute_add_op old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/CMakeLists.txt b/Increase_the_number_of_aicore/AddCustom/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build.sh b/Increase_the_number_of_aicore/AddCustom/build.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_C.bin b/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_C.bin old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_CXX.bin b/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CMakeDetermineCompilerABI_CXX.bin old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CompilerIdC/a.out b/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CompilerIdC/a.out old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CompilerIdCXX/a.out b/Increase_the_number_of_aicore/AddCustom/build_out/CMakeFiles/3.22.0/CompilerIdCXX/a.out old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/custom_opp_hce_aarch64.run b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/custom_opp_hce_aarch64.run old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/install.sh b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/install.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so deleted file mode 100755 index bf5f11395aa63ee3105662557af7a5206763516d..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/framework/tensorflow/libcust_tf_parsers.so and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json deleted file mode 100644 index 0d40969af9f517e4ef929988bd983807dbdb3139..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/framework/tensorflow/npu_supported_ops.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "AddCustom": { - "isGray": false, - "isHeavy": false - } -} diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h deleted file mode 100644 index 8d8990e1f20e5dfe24b6b231524fbd30d44413fa..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_api/include/aclnn_add_custom.h +++ /dev/null @@ -1,49 +0,0 @@ - -/* - * calution: this file was generated automaticlly donot change it. -*/ - -#ifndef ACLNN_ADD_CUSTOM_H_ -#define ACLNN_ADD_CUSTOM_H_ - -#include "aclnn/acl_meta.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/* funtion: aclnnAddCustomGetWorkspaceSize - * parameters : - * x : required - * y : required - * out : required - * workspaceSize : size of workspace(output). - * executor : executor context(output). - */ -__attribute__((visibility("default"))) -aclnnStatus aclnnAddCustomGetWorkspaceSize( - const aclTensor *x, - const aclTensor *y, - const aclTensor *out, - uint64_t *workspaceSize, - aclOpExecutor **executor); - -/* funtion: aclnnAddCustom - * parameters : - * workspace : workspace memory addr(input). - * workspaceSize : size of workspace(input). - * executor : executor context(input). - * stream : acl stream. - */ -__attribute__((visibility("default"))) -aclnnStatus aclnnAddCustom( - void *workspace, - uint64_t workspaceSize, - aclOpExecutor *executor, - aclrtStream stream); - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so deleted file mode 100755 index e3544cc0589b01462bfdb91f53a2c65ffd62df7e..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_api/lib/libcust_opapi.so and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b/aic-ascend310b-ops-info.json b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b/aic-ascend310b-ops-info.json deleted file mode 100644 index df4edec33a7085c2fbfdf6527926b42cb131f423..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend310b/aic-ascend310b-ops-info.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "AddCustom":{ - "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":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"y", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "needCheckSupport":{ - "flag":"false" - }, - "opFile":{ - "value":"add_custom" - }, - "opInterface":{ - "value":"add_custom" - }, - "output0":{ - "dtype":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"z", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "precision_reduce":{ - "flag":"true" - } - } -} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json deleted file mode 100644 index df4edec33a7085c2fbfdf6527926b42cb131f423..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "AddCustom":{ - "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":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"y", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "needCheckSupport":{ - "flag":"false" - }, - "opFile":{ - "value":"add_custom" - }, - "opInterface":{ - "value":"add_custom" - }, - "output0":{ - "dtype":"float32,float16,int32,int8", - "format":"ND,ND,ND,ND", - "name":"z", - "paramType":"required", - "shape":"all", - "unknownshape_format":"ND,ND,ND,ND" - }, - "precision_reduce":{ - "flag":"true" - } - } -} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp deleted file mode 100644 index 72f67947f2817e37494063ad973e47d0ade79fd9..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/customize_impl/dynamic/add_custom.cpp +++ /dev/null @@ -1,135 +0,0 @@ -/* - * 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; -// tensor num for each queue -constexpr int32_t BUFFER_NUM = 2; - -template class KernelAdd { - using T = TYPE_X; -public: - __aicore__ inline KernelAdd() {} - __aicore__ inline void Init(GM_ADDR x, GM_ADDR y, GM_ADDR z, uint32_t smallCoreDataNum, - uint32_t bigCoreDataNum, uint32_t finalBigTileNum, - uint32_t finalSmallTileNum, uint32_t tileDataNum, - uint32_t smallTailDataNum, uint32_t bigTailDataNum, - uint32_t tailBlockNum) - { - ASSERT(GetBlockNum() != 0 && "block dim can not be zero!"); - uint32_t coreNum = GetBlockIdx(); - uint32_t globalBufferIndex = bigCoreDataNum * GetBlockIdx(); - this->tileDataNum = tileDataNum; - if (coreNum < tailBlockNum) { - this->coreDataNum = bigCoreDataNum; - this->tileNum = finalBigTileNum; - this->tailDataNum = bigTailDataNum; - } - else { - this->coreDataNum = smallCoreDataNum; - this->tileNum = finalSmallTileNum; - this->tailDataNum = smallTailDataNum; - globalBufferIndex -= (bigCoreDataNum - smallCoreDataNum) * (GetBlockIdx() - tailBlockNum); - } - xGm.SetGlobalBuffer((__gm__ TYPE_X*)x + globalBufferIndex, this->coreDataNum); - yGm.SetGlobalBuffer((__gm__ TYPE_Y*)y + globalBufferIndex, this->coreDataNum); - zGm.SetGlobalBuffer((__gm__ TYPE_Z*)z + globalBufferIndex, this->coreDataNum); - pipe.InitBuffer(inQueueX, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_X)); - pipe.InitBuffer(inQueueY, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_Y)); - pipe.InitBuffer(outQueueZ, BUFFER_NUM, this->tileDataNum * sizeof(TYPE_Z)); - pipe.InitBuffer(tmp1, this->tileDataNum * sizeof(half)); - pipe.InitBuffer(tmp2, this->tileDataNum * sizeof(half)); - } - __aicore__ inline void Process() - { - int32_t loopCount = this->tileNum; - this->processDataNum = this->tileDataNum; - for (int32_t i = 0; i < loopCount; i++) { - if (i == this->tileNum - 1) { - this->processDataNum = this->tailDataNum; - } - CopyIn(i); - Compute(i); - CopyOut(i); - } - } - -private: - __aicore__ inline void CopyIn(int32_t progress) - { - LocalTensor xLocal = inQueueX.AllocTensor(); - LocalTensor yLocal = inQueueY.AllocTensor(); - DataCopy(xLocal, xGm[progress * this->tileDataNum], this->processDataNum); - DataCopy(yLocal, yGm[progress * this->tileDataNum], this->processDataNum); - inQueueX.EnQue(xLocal); - inQueueY.EnQue(yLocal); - } - __aicore__ inline void Compute(int32_t progress) - { - LocalTensor xLocal = inQueueX.DeQue(); - LocalTensor yLocal = inQueueY.DeQue(); - LocalTensor zLocal = outQueueZ.AllocTensor(); - if constexpr (std::is_same_v) { - auto p1 = tmp1.Get(); - auto p2 = tmp2.Get(); - Cast(p1, xLocal, RoundMode::CAST_NONE, this->processDataNum); - Cast(p2, yLocal, RoundMode::CAST_NONE, this->processDataNum); - Add(p2, p1, p2, this->processDataNum); - Cast(p1.ReinterpretCast(), p2, RoundMode::CAST_RINT, this->processDataNum); - ShiftLeft(p1.ReinterpretCast(), p1.ReinterpretCast(), int16_t(8), this->processDataNum); - ShiftRight(p1.ReinterpretCast(), p1.ReinterpretCast(), int16_t(8), this->processDataNum); - Cast(p2, p1.ReinterpretCast(), RoundMode::CAST_NONE, this->processDataNum); - Cast(zLocal, p2, RoundMode::CAST_NONE, this->processDataNum); - } - else { - Add(zLocal, xLocal, yLocal, this->processDataNum); - } - outQueueZ.EnQue(zLocal); - inQueueX.FreeTensor(xLocal); - inQueueY.FreeTensor(yLocal); - } - __aicore__ inline void CopyOut(int32_t progress) - { - LocalTensor zLocal = outQueueZ.DeQue(); - DataCopy(zGm[progress * this->tileDataNum], zLocal, this->processDataNum); - outQueueZ.FreeTensor(zLocal); - } - -private: - TPipe pipe; - TQue inQueueX, inQueueY; - TQue outQueueZ; - TBuf tmp1, tmp2; - GlobalTensor xGm; - GlobalTensor yGm; - GlobalTensor zGm; - uint32_t coreDataNum; - uint32_t tileNum; - uint32_t tileDataNum; - uint32_t tailDataNum; - uint32_t processDataNum; -}; - -extern "C" __global__ __aicore__ void add_custom(GM_ADDR x, GM_ADDR y, GM_ADDR z, GM_ADDR workspace, GM_ADDR tiling) -{ - GET_TILING_DATA(tiling_data, tiling); - KernelAdd op; - op.Init(x, y, z, tiling_data.smallCoreDataNum, - tiling_data.bigCoreDataNum, tiling_data.finalBigTileNum, - tiling_data.finalSmallTileNum, tiling_data.tileDataNum, - tiling_data.smallTailDataNum, tiling_data.bigTailDataNum, - tiling_data.tailBlockNum); - op.Process(); -} - -#ifndef ASCENDC_CPU_DEBUG -// call of kernel function -void add_custom_do(uint32_t blockDim, void* l2ctrl, void* stream, uint8_t* x, uint8_t* y, uint8_t* z, - uint8_t* workspace, uint8_t* tiling) -{ - add_custom<<>>(x, y, z, workspace, tiling); -} -#endif diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o deleted file mode 100644 index 20fecc586d7de02d06c53526d978d3f3176d7b4b..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o deleted file mode 100644 index 10ab7a3d12a3a208726f27215516bdeb8fc625b5..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o deleted file mode 100644 index 6ae64cc9c244f6b9dd6d81be0af0914e166305cc..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o deleted file mode 100644 index 88f77a32bd3fb4f35ab8266ce19de4831b53cc12..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json deleted file mode 100644 index fc78f8db706e65b6fc78f35b40c72a1c867226da..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "binFileName": "AddCustom_ed9fc09970baaf94d89a7a5a66099e58", - "binFileSuffix": ".o", - "blockDim": -1, - "coreType": "VectorCore", - "core_type": "AIV", - "intercoreSync": 0, - "kernelName": "AddCustom_ed9fc09970baaf94d89a7a5a66099e58", - "magic": "RT_DEV_BINARY_MAGIC_ELF_AIVEC", - "memoryStamping": [], - "opParaSize": 32, - "parameters": [], - "sha256": "38a898e49df8b398586113e0b5ed50668ae43b7c3f5264ce0e820b5a1c026fc0", - "workspace": { - "num": 1, - "size": [ - -1 - ], - "type": [ - 0 - ] - }, - "kernelList": [ - { - "kernelName": "AddCustom_ed9fc09970baaf94d89a7a5a66099e58_0" - } - ], - "optionalInputMode": "gen_placeholder", - "compileInfo": {}, - "supportInfo": { - "implMode": "", - "int64Mode": false, - "simplifiedKeyMode": 0, - "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" - ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "opMode": "dynamic", - "optionalInputMode": "gen_placeholder", - "deterministic": "ignore" - } -} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o deleted file mode 100644 index c2818bae2f4465dc53784508297584357c794ab0..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json deleted file mode 100644 index 8858927efb50c393a814945e33fbfc43efb74e3f..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/add_custom.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "binList": [ - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/1,2/1,2/1,2", - "AddCustom/d=1,p=0/1,2/1,2/1,2" - ], - "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" - ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" - ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" - ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json" - } - } - ] -} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/binary_info_config.json b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/binary_info_config.json deleted file mode 100644 index 2fbf51844b72bfd3ea135968cfc8f22892e0d0e0..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend310b/binary_info_config.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "AddCustom": { - "dynamicRankSupport": true, - "simplifiedKeyMode": 0, - "binaryList": [ - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/1,2/1,2/1,2", - "binPath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/1,2/1,2/1,2", - "binPath": "ascend310b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/2,2/2,2/2,2", - "binPath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/2,2/2,2/2,2", - "binPath": "ascend310b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/0,2/0,2/0,2", - "binPath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/0,2/0,2/0,2", - "binPath": "ascend310b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=0,p=0/3,2/3,2/3,2", - "binPath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - }, - { - "coreType": 2, - "simplifiedKey": "AddCustom/d=1,p=0/3,2/3,2/3,2", - "binPath": "ascend310b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.o" - } - ] - } -} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json deleted file mode 100644 index e6f66da1ff966649532759011a422460a283ed6f..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/kernel/config/ascend910b/add_custom.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "binList": [ - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/1,2/1,2/1,2", - "AddCustom/d=1,p=0/1,2/1,2/1,2" - ], - "staticKey": "24db4d78a3a31c0287aa11345320c199348443901fef8fe630f68f86fd5dc348", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float16", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_1e04ee05ab491cc5ae9c3d5c9ee8950b.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/2,2/2,2/2,2", - "AddCustom/d=1,p=0/2,2/2,2/2,2" - ], - "staticKey": "c5adedad86a36c471e50645c88bd4a341fbacc27b6d00160b8572e59da3494f8", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int8", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_ed9fc09970baaf94d89a7a5a66099e58.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/0,2/0,2/0,2", - "AddCustom/d=1,p=0/0,2/0,2/0,2" - ], - "staticKey": "295935613b943d6a71aa3e5b596ee7da1f284cfde70cbf59960f8c546b5d4d30", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "float32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_ccd748392d99d04b8205210970fde2b9.json" - } - }, - { - "simplifiedKey": [ - "AddCustom/d=0,p=0/3,2/3,2/3,2", - "AddCustom/d=1,p=0/3,2/3,2/3,2" - ], - "staticKey": "75047c2edb77e42c0c726fa5413a1b9940aca6072fa87126160fc09d3d307b1a", - "int64Mode": false, - "inputs": [ - { - "name": "x", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - }, - { - "name": "y", - "index": 1, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "outputs": [ - { - "name": "z", - "index": 0, - "dtype": "int32", - "format": "ND", - "paramType": "required", - "shape": [ - -2 - ] - } - ], - "binInfo": { - "jsonFilePath": "ascend910b/add_custom/AddCustom_402e355eb717124771cfc7dbebfe946c.json" - } - } - ] -} \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so deleted file mode 100755 index 96f7ac4f08a3584e39f409f86727a43dc2c66342..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so deleted file mode 120000 index a35ff4dad4a5a92dae0781f18e3439b7caff887b..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_impl/ai_core/tbe/op_tiling/liboptiling.so +++ /dev/null @@ -1 +0,0 @@ -lib/linux/aarch64/libcust_opmaster_rt2.0.so \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h deleted file mode 100644 index a4016e135e9840165662e127bf7c1d44dfa2c82c..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_proto/inc/op_proto.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef OP_PROTO_H_ -#define OP_PROTO_H_ - -#include "graph/operator_reg.h" -#include "register/op_impl_registry.h" - -namespace ge { - -REG_OP(AddCustom) - .INPUT(x, ge::TensorType::ALL()) - .INPUT(y, ge::TensorType::ALL()) - .OUTPUT(z, ge::TensorType::ALL()) - .OP_END_FACTORY_REG(AddCustom); - -} - -#endif diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so deleted file mode 100755 index eaa99d2e226d56d5c4bdd2f531f0040093ca7d5b..0000000000000000000000000000000000000000 Binary files a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/packages/vendors/customize/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so and /dev/null differ diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/upgrade.sh b/Increase_the_number_of_aicore/AddCustom/build_out/_CPack_Packages/Linux/External/custom_opp_hce_aarch64.run/upgrade.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/autogen/libascend_all_ops.so b/Increase_the_number_of_aicore/AddCustom/build_out/autogen/libascend_all_ops.so old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/custom_opp_hce_aarch64.run b/Increase_the_number_of_aicore/AddCustom/build_out/custom_opp_hce_aarch64.run old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/framework/tf_plugin/libcust_tf_parsers.so b/Increase_the_number_of_aicore/AddCustom/build_out/framework/tf_plugin/libcust_tf_parsers.so old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/op_host/libcust_opapi.so b/Increase_the_number_of_aicore/AddCustom/build_out/op_host/libcust_opapi.so old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/op_host/libcust_opmaster_rt2.0.so b/Increase_the_number_of_aicore/AddCustom/build_out/op_host/libcust_opmaster_rt2.0.so old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/op_host/libcust_opsproto_rt2.0.so b/Increase_the_number_of_aicore/AddCustom/build_out/op_host/libcust_opsproto_rt2.0.so old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/op_host/liboptiling.so b/Increase_the_number_of_aicore/AddCustom/build_out/op_host/liboptiling.so deleted file mode 120000 index a35ff4dad4a5a92dae0781f18e3439b7caff887b..0000000000000000000000000000000000000000 --- a/Increase_the_number_of_aicore/AddCustom/build_out/op_host/liboptiling.so +++ /dev/null @@ -1 +0,0 @@ -lib/linux/aarch64/libcust_opmaster_rt2.0.so \ No newline at end of file diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt b/Increase_the_number_of_aicore/AddCustom/build_out/op_kernel/binary/ascend310b/src/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt b/Increase_the_number_of_aicore/AddCustom/build_out/op_kernel/binary/ascend910b/src/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/scripts/install.sh b/Increase_the_number_of_aicore/AddCustom/build_out/scripts/install.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/build_out/scripts/upgrade.sh b/Increase_the_number_of_aicore/AddCustom/build_out/scripts/upgrade.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/func.cmake b/Increase_the_number_of_aicore/AddCustom/cmake/func.cmake old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/intf.cmake b/Increase_the_number_of_aicore/AddCustom/cmake/intf.cmake old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/makeself.cmake b/Increase_the_number_of_aicore/AddCustom/cmake/makeself.cmake old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/__init__.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/__init__.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_bin_param_build.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_bin_param_build.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_impl_build.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_impl_build.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_ops_config.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_ops_config.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_replay_build.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/ascendc_replay_build.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/batch_replay_impl.temp b/Increase_the_number_of_aicore/AddCustom/cmake/util/batch_replay_impl.temp old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/code_channel_infer.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/code_channel_infer.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/const_var.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/const_var.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/gen_impl_and_mrege_json.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/gen_impl_and_mrege_json.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/gen_ops_filter.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/gen_ops_filter.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/gen_version_info.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/gen_version_info.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/insert_op_info.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/insert_op_info.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/insert_simplified_keys.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/insert_simplified_keys.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/kernel_entry.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/kernel_entry.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/kernel_impl.temp b/Increase_the_number_of_aicore/AddCustom/cmake/util/kernel_impl.temp old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/COPYING b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/COPYING old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/README.md b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/README.md old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/VERSION b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/VERSION old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/make-release.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/make-release.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself-header.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself-header.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself.1 b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself.1 old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself.lsm b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself.lsm old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/makeself.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/run-tests.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/makeself/run-tests.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/merge_aicpu_info_json.sh b/Increase_the_number_of_aicore/AddCustom/cmake/util/merge_aicpu_info_json.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/opdesc_parser.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/opdesc_parser.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/parse_ini_to_json.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/parse_ini_to_json.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/preset_parse.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/preset_parse.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/replay_codegen.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/replay_codegen.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/replay_impl.temp b/Increase_the_number_of_aicore/AddCustom/cmake/util/replay_impl.temp old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/cmake/util/tiling_data_def_build.py b/Increase_the_number_of_aicore/AddCustom/cmake/util/tiling_data_def_build.py old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/framework/CMakeLists.txt b/Increase_the_number_of_aicore/AddCustom/framework/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/op_host/CMakeLists.txt b/Increase_the_number_of_aicore/AddCustom/op_host/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/op_kernel/CMakeLists.txt b/Increase_the_number_of_aicore/AddCustom/op_kernel/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/scripts/install.sh b/Increase_the_number_of_aicore/AddCustom/scripts/install.sh old mode 100755 new mode 100644 diff --git a/Increase_the_number_of_aicore/AddCustom/scripts/upgrade.sh b/Increase_the_number_of_aicore/AddCustom/scripts/upgrade.sh old mode 100755 new mode 100644