mindspore 2.4.10__cp39-cp39-manylinux1_x86_64.whl → 2.5.0__cp39-cp39-manylinux1_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mindspore might be problematic. Click here for more details.
- mindspore/.commit_id +1 -1
- mindspore/Third_Party_Open_Source_Software_Notice +39 -0
- mindspore/__init__.py +8 -3
- mindspore/_akg/akg/composite/build_module.py +6 -2
- mindspore/_akg/akg/utils/kernel_exec.py +2 -2
- mindspore/_c_dataengine.cpython-39-x86_64-linux-gnu.so +0 -0
- mindspore/_c_expression.cpython-39-x86_64-linux-gnu.so +0 -0
- mindspore/_c_mindrecord.cpython-39-x86_64-linux-gnu.so +0 -0
- mindspore/_checkparam.py +0 -5
- mindspore/_extends/parallel_compile/akg_compiler/gen_custom_op_files.py +1 -1
- mindspore/_extends/parse/compile_config.py +64 -0
- mindspore/_extends/parse/deprecated/__init__.py +0 -0
- mindspore/_extends/parse/deprecated/deprecated_tensor_method.py +375 -0
- mindspore/_extends/parse/parser.py +23 -5
- mindspore/_extends/parse/standard_method.py +123 -27
- mindspore/_extends/pijit/pijit_func_white_list.py +1 -1
- mindspore/amp.py +7 -1
- mindspore/boost/boost_cell_wrapper.py +136 -41
- mindspore/common/__init__.py +3 -1
- mindspore/common/_register_for_tensor.py +0 -1
- mindspore/common/_stub_tensor.py +25 -4
- mindspore/common/_tensor_cpp_method.py +17 -0
- mindspore/common/_tensor_docs.py +6132 -0
- mindspore/common/api.py +98 -21
- mindspore/common/dtype.py +34 -34
- mindspore/common/dump.py +2 -1
- mindspore/common/file_system.py +8 -3
- mindspore/common/generator.py +2 -0
- mindspore/common/hook_handle.py +3 -1
- mindspore/common/initializer.py +3 -4
- mindspore/common/lazy_inline.py +8 -2
- mindspore/common/mindir_util.py +10 -2
- mindspore/common/parameter.py +31 -15
- mindspore/common/tensor.py +713 -1337
- mindspore/communication/__init__.py +1 -1
- mindspore/communication/_comm_helper.py +5 -0
- mindspore/communication/comm_func.py +215 -173
- mindspore/communication/management.py +23 -20
- mindspore/context.py +285 -191
- mindspore/dataset/__init__.py +23 -19
- mindspore/dataset/callback/ds_callback.py +2 -1
- mindspore/dataset/core/config.py +84 -3
- mindspore/dataset/engine/cache_admin.py +3 -3
- mindspore/dataset/engine/cache_client.py +5 -4
- mindspore/dataset/engine/datasets.py +192 -149
- mindspore/dataset/engine/datasets_audio.py +14 -0
- mindspore/dataset/engine/datasets_standard_format.py +11 -11
- mindspore/dataset/engine/datasets_text.py +38 -1
- mindspore/dataset/engine/datasets_user_defined.py +100 -66
- mindspore/dataset/engine/datasets_vision.py +81 -8
- mindspore/dataset/engine/iterators.py +281 -63
- mindspore/dataset/engine/obs/util.py +8 -0
- mindspore/dataset/engine/queue.py +40 -0
- mindspore/dataset/engine/samplers.py +26 -2
- mindspore/dataset/engine/serializer_deserializer.py +1 -1
- mindspore/dataset/engine/validators.py +43 -11
- mindspore/dataset/transforms/py_transforms_util.py +17 -0
- mindspore/dataset/transforms/transforms.py +29 -12
- mindspore/dataset/vision/validators.py +1 -2
- mindspore/device_context/__init__.py +21 -0
- mindspore/device_context/ascend/__init__.py +25 -0
- mindspore/device_context/ascend/device.py +72 -0
- mindspore/device_context/ascend/op_debug.py +94 -0
- mindspore/device_context/ascend/op_precision.py +193 -0
- mindspore/device_context/ascend/op_tuning.py +127 -0
- mindspore/device_context/cpu/__init__.py +25 -0
- mindspore/device_context/cpu/device.py +62 -0
- mindspore/device_context/cpu/op_tuning.py +43 -0
- mindspore/device_context/gpu/__init__.py +21 -0
- mindspore/device_context/gpu/device.py +70 -0
- mindspore/device_context/gpu/op_precision.py +67 -0
- mindspore/device_context/gpu/op_tuning.py +175 -0
- mindspore/device_manager.py +134 -0
- mindspore/experimental/llm_boost/__init__.py +1 -0
- mindspore/experimental/llm_boost/ascend_native/__init__.py +22 -0
- mindspore/experimental/llm_boost/ascend_native/llama_boost_ascend_native.py +211 -0
- mindspore/experimental/llm_boost/ascend_native/llm_boost.py +52 -0
- mindspore/experimental/llm_boost/atb/boost_base.py +2 -3
- mindspore/experimental/llm_boost/atb/llama_boost.py +6 -1
- mindspore/experimental/llm_boost/register.py +1 -0
- mindspore/experimental/optim/adadelta.py +26 -22
- mindspore/experimental/optim/adam.py +3 -0
- mindspore/experimental/optim/lr_scheduler.py +33 -24
- mindspore/experimental/optim/radam.py +33 -30
- mindspore/hal/device.py +28 -0
- mindspore/hal/event.py +17 -0
- mindspore/hal/memory.py +94 -3
- mindspore/hal/stream.py +91 -6
- mindspore/include/api/context.h +0 -1
- mindspore/lib/libavcodec.so.59 +0 -0
- mindspore/lib/libavdevice.so.59 +0 -0
- mindspore/lib/libavfilter.so.8 +0 -0
- mindspore/lib/libavformat.so.59 +0 -0
- mindspore/lib/libavutil.so.57 +0 -0
- mindspore/lib/libdnnl.so.2 +0 -0
- mindspore/lib/libmindspore_backend.so +0 -0
- mindspore/lib/libmindspore_common.so +0 -0
- mindspore/lib/libmindspore_core.so +0 -0
- mindspore/lib/libmindspore_glog.so.0 +0 -0
- mindspore/lib/libmindspore_gpr.so.15 +0 -0
- mindspore/lib/libmindspore_grpc++.so.1 +0 -0
- mindspore/lib/libmindspore_grpc.so.15 +0 -0
- mindspore/lib/libmindspore_ops.so +0 -0
- mindspore/lib/libmpi_adapter.so +0 -0
- mindspore/lib/libmpi_collective.so +0 -0
- mindspore/lib/libnnacl.so +0 -0
- mindspore/lib/libopencv_core.so.4.5 +0 -0
- mindspore/lib/libopencv_imgcodecs.so.4.5 +0 -0
- mindspore/lib/libopencv_imgproc.so.4.5 +0 -0
- mindspore/lib/libps_cache.so +0 -0
- mindspore/lib/libswresample.so.4 +0 -0
- mindspore/lib/libswscale.so.6 +0 -0
- mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend910_93/aic-ascend910_93-ops-info.json +2048 -0
- mindspore/lib/plugin/ascend/custom_aicpu_ops/op_impl/cpu/aicpu_kernel/impl/libcust_cpu_kernels.so +0 -0
- mindspore/lib/plugin/ascend/custom_aicpu_ops/op_proto/libcust_op_proto.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/lib/libcust_opapi.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/decoder_kv_cache.py +1 -1
- mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/prompt_kv_cache.py +1 -1
- mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/lib/linux/x86_64/libcust_opmaster_rt2.0.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/liboptiling.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910/op_proto/lib/linux/x86_64/libcust_opsproto_rt2.0.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910/version.info +1 -1
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/lib/libcust_opapi.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/config/ascend910_93/aic-ascend910_93-ops-info.json +224 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/all_finite.py +1 -1
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/decoder_kv_cache.py +1 -1
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/prompt_kv_cache.py +1 -1
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.json +78 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.json +78 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.json +78 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.json +156 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.json +165 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.o +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/all_finite.json +139 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/binary_info_config.json +361 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/decoder_kv_cache.json +892 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/prompt_kv_cache.json +892 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/lib/linux/x86_64/libcust_opmaster_rt2.0.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/liboptiling.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/op_proto/lib/linux/x86_64/libcust_opsproto_rt2.0.so +0 -0
- mindspore/lib/plugin/ascend/custom_ascendc_910b/version.info +1 -1
- mindspore/lib/plugin/ascend/custom_compiler/setup.py +1 -1
- mindspore/lib/plugin/ascend/libascend_collective.so +0 -0
- mindspore/lib/plugin/ascend/libdvpp_utils.so +0 -0
- mindspore/lib/plugin/ascend/liblowlatency_collective.so +0 -0
- mindspore/lib/plugin/ascend/libmindspore_cpu_kernels.so +0 -0
- mindspore/lib/plugin/ascend/libmindspore_internal_kernels.so +0 -0
- mindspore/lib/plugin/ascend/libms_ascend_native_boost.so +0 -0
- mindspore/lib/plugin/ascend/libms_atb_boost.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/device/ascend910b/bin/ascend910b.bin +960 -958
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/{acme/include/base_type.h → base_type.h} +25 -20
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/{cast/cast_tiling.h → internal.h} +6 -4
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/internal_op.h +114 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/boost_kernel.h +70 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/llama_impl.h +85 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/model_interface.h +52 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/tensor.h +81 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/op_creator.h +123 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/op_param.h +155 -110
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/{acme/include/tiling_info.h → tiling_info.h} +12 -9
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tiling_utils.h +178 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_layer_norm_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_quant_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_310p_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libcast_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libcompare_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libgelu_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libllama_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmatmul_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libms_kernels_internal.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libms_optiling.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmulti_weight_matmul_kernel_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_nz_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/librms_norm_op.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_f16_nz/internal_pp_matmul_f16_nz.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_f16_nz/internal_pp_matmul_f16_nz_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_i8_nz_compress/internal_pp_matmul_i8_nz_compress.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_i8_nz_compress/internal_pp_matmul_i8_nz_compress_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_int8_nz/internal_pp_matmul_int8_nz.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_int8_nz/internal_pp_matmul_int8_nz_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libadd_rms_norm_quant_ascend310p.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libapply_rotary_pos_emb_310p_impl.so → op_kernels/ascend310p/so_kernels/libapply_rotary_pos_emb_310p_ascend310p.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libcast_ascend310p.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libcompare_ascend310p.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libgelu_ascend310p.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmatmul_ascend310p.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libreshape_and_cache_nz_ascend310p.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_4b60f88cdc28b25a36bad2d8b0a88092.json +163 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_4b60f88cdc28b25a36bad2d8b0a88092.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_cde61da2bd6fededcb1ba310a6ad16ee.json +163 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_cde61da2bd6fededcb1ba310a6ad16ee.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bnsd_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bnsd_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bsh_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bsh_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bnsd_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bnsd_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bsh_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bsh_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix_mix_aic_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix_mix_aiv_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix_mix_aic_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix_mix_aiv_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_bf16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp32.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_bf16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp32.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2_mix_aic_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2_mix_aiv_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_layer_norm_ascend910b.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libadd_rms_norm_impl.so → op_kernels/ascend910b/so_kernels/libadd_rms_norm_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_rms_norm_quant_ascend910b.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libapply_rotary_pos_emb_impl.so → op_kernels/ascend910b/so_kernels/libapply_rotary_pos_emb_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libcast_impl.so → op_kernels/ascend910b/so_kernels/libcast_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libnot_equal_impl.so → op_kernels/ascend910b/so_kernels/libcompare_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libgelu_impl.so → op_kernels/ascend910b/so_kernels/libgelu_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libllama_ascend910b.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libmatmul_impl.so → op_kernels/ascend910b/so_kernels/libmatmul_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libmulti_weight_matmul_kernel_impl.so → op_kernels/ascend910b/so_kernels/libmulti_weight_matmul_kernel_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/libreshape_and_cache_impl.so → op_kernels/ascend910b/so_kernels/libreshape_and_cache_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/{lib/librms_norm_impl.so → op_kernels/ascend910b/so_kernels/librms_norm_ascend910b.so} +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/lib/liblccl_wrapper.so +0 -0
- mindspore/lib/plugin/gpu/libcuda_ops.so.10 +0 -0
- mindspore/lib/plugin/gpu/libcuda_ops.so.11 +0 -0
- mindspore/lib/plugin/gpu10.1/libnccl.so.2 +0 -0
- mindspore/lib/plugin/gpu10.1/libnvidia_collective.so +0 -0
- mindspore/lib/plugin/gpu11.1/libnccl.so.2 +0 -0
- mindspore/lib/plugin/gpu11.1/libnvidia_collective.so +0 -0
- mindspore/lib/plugin/gpu11.6/libnccl.so.2 +0 -0
- mindspore/lib/plugin/gpu11.6/libnvidia_collective.so +0 -0
- mindspore/lib/plugin/libmindspore_ascend.so.2 +0 -0
- mindspore/lib/plugin/libmindspore_gpu.so.10.1 +0 -0
- mindspore/lib/plugin/libmindspore_gpu.so.11.1 +0 -0
- mindspore/lib/plugin/libmindspore_gpu.so.11.6 +0 -0
- mindspore/log.py +12 -0
- mindspore/mindrecord/__init__.py +1 -1
- mindspore/mindrecord/config.py +17 -316
- mindspore/mindrecord/filereader.py +1 -9
- mindspore/mindrecord/filewriter.py +5 -15
- mindspore/mindrecord/mindpage.py +1 -9
- mindspore/mint/__init__.py +824 -218
- mindspore/mint/distributed/__init__.py +66 -4
- mindspore/mint/distributed/distributed.py +2594 -44
- mindspore/mint/linalg/__init__.py +6 -0
- mindspore/mint/nn/__init__.py +473 -14
- mindspore/mint/nn/functional.py +486 -11
- mindspore/mint/nn/layer/__init__.py +17 -4
- mindspore/mint/nn/layer/_functions.py +330 -0
- mindspore/mint/nn/layer/activation.py +169 -1
- mindspore/mint/nn/layer/basic.py +123 -0
- mindspore/mint/nn/layer/conv.py +727 -0
- mindspore/mint/nn/layer/normalization.py +215 -19
- mindspore/mint/nn/layer/padding.py +797 -0
- mindspore/mint/nn/layer/pooling.py +170 -0
- mindspore/mint/optim/__init__.py +2 -1
- mindspore/mint/optim/adam.py +223 -0
- mindspore/mint/optim/adamw.py +26 -19
- mindspore/mint/special/__init__.py +2 -1
- mindspore/multiprocessing/__init__.py +5 -0
- mindspore/nn/cell.py +126 -19
- mindspore/nn/dynamic_lr.py +2 -1
- mindspore/nn/layer/activation.py +6 -6
- mindspore/nn/layer/basic.py +35 -25
- mindspore/nn/layer/channel_shuffle.py +3 -3
- mindspore/nn/layer/embedding.py +3 -3
- mindspore/nn/layer/normalization.py +8 -7
- mindspore/nn/layer/padding.py +4 -3
- mindspore/nn/layer/pooling.py +47 -13
- mindspore/nn/layer/rnn_cells.py +1 -1
- mindspore/nn/layer/rnns.py +2 -1
- mindspore/nn/layer/timedistributed.py +5 -5
- mindspore/nn/layer/transformer.py +48 -26
- mindspore/nn/learning_rate_schedule.py +5 -3
- mindspore/nn/loss/loss.py +31 -36
- mindspore/nn/optim/ada_grad.py +1 -0
- mindspore/nn/optim/adadelta.py +2 -2
- mindspore/nn/optim/adam.py +1 -1
- mindspore/nn/optim/lars.py +1 -4
- mindspore/nn/optim/optimizer.py +1 -1
- mindspore/nn/optim/rprop.py +2 -2
- mindspore/nn/optim/thor.py +2 -1
- mindspore/nn/utils/init.py +13 -11
- mindspore/nn/wrap/cell_wrapper.py +4 -6
- mindspore/nn/wrap/loss_scale.py +3 -4
- mindspore/numpy/array_creations.py +60 -62
- mindspore/numpy/array_ops.py +148 -143
- mindspore/numpy/logic_ops.py +41 -42
- mindspore/numpy/math_ops.py +361 -359
- mindspore/numpy/utils.py +16 -16
- mindspore/numpy/utils_const.py +4 -4
- mindspore/ops/__init__.py +2 -1
- mindspore/ops/_grad_experimental/grad_comm_ops.py +94 -13
- mindspore/ops/_grad_experimental/grad_debug_ops.py +6 -1
- mindspore/ops/_grad_experimental/grad_inner_ops.py +9 -0
- mindspore/ops/_grad_experimental/grad_math_ops.py +2 -1
- mindspore/ops/_op_impl/cpu/__init__.py +1 -0
- mindspore/ops/_op_impl/cpu/raise_op.py +28 -0
- mindspore/ops/_vmap/vmap_array_ops.py +20 -19
- mindspore/ops/_vmap/vmap_base.py +0 -2
- mindspore/ops/_vmap/vmap_grad_nn_ops.py +19 -13
- mindspore/ops/_vmap/vmap_math_ops.py +11 -9
- mindspore/ops/_vmap/vmap_nn_ops.py +20 -34
- mindspore/ops/auto_generate/cpp_create_prim_instance_helper.py +149 -12
- mindspore/ops/auto_generate/gen_arg_handler.py +0 -61
- mindspore/ops/auto_generate/gen_extend_func.py +554 -60
- mindspore/ops/auto_generate/gen_ops_def.py +1621 -115
- mindspore/ops/auto_generate/gen_ops_prim.py +8024 -3409
- mindspore/ops/auto_generate/pyboost_inner_prim.py +183 -79
- mindspore/ops/composite/base.py +1 -1
- mindspore/ops/composite/multitype_ops/_compile_utils.py +229 -30
- mindspore/ops/composite/multitype_ops/pow_impl.py +0 -29
- mindspore/ops/function/__init__.py +12 -0
- mindspore/ops/function/array_func.py +561 -159
- mindspore/ops/function/clip_func.py +64 -0
- mindspore/ops/function/debug_func.py +28 -20
- mindspore/ops/function/image_func.py +1 -1
- mindspore/ops/function/linalg_func.py +5 -4
- mindspore/ops/function/math_func.py +1659 -290
- mindspore/ops/function/nn_func.py +988 -317
- mindspore/ops/function/parameter_func.py +3 -56
- mindspore/ops/function/random_func.py +243 -33
- mindspore/ops/function/sparse_unary_func.py +1 -1
- mindspore/ops/functional.py +18 -5
- mindspore/ops/functional_overload.py +897 -0
- mindspore/ops/operations/__init__.py +3 -2
- mindspore/ops/operations/_embedding_cache_ops.py +4 -4
- mindspore/ops/operations/_grad_ops.py +2 -34
- mindspore/ops/operations/_infer_ops.py +2 -1
- mindspore/ops/operations/_inner_ops.py +38 -8
- mindspore/ops/operations/array_ops.py +45 -303
- mindspore/ops/operations/comm_ops.py +19 -16
- mindspore/ops/operations/custom_ops.py +11 -55
- mindspore/ops/operations/debug_ops.py +42 -47
- mindspore/ops/operations/inner_ops.py +6 -4
- mindspore/ops/operations/linalg_ops.py +3 -2
- mindspore/ops/operations/manually_defined/ops_def.py +185 -104
- mindspore/ops/operations/math_ops.py +11 -216
- mindspore/ops/operations/nn_ops.py +146 -308
- mindspore/ops/primitive.py +23 -21
- mindspore/ops/tensor_method.py +1669 -0
- mindspore/ops_generate/aclnn_kernel_register_auto_cc_generator.py +110 -0
- mindspore/ops_generate/add_tensor_docs_generator.py +54 -0
- mindspore/ops_generate/arg_handler.py +0 -61
- mindspore/ops_generate/auto_grad_impl_cc_generator.py +135 -0
- mindspore/ops_generate/auto_grad_reg_cc_generator.py +93 -0
- mindspore/ops_generate/base_generator.py +11 -0
- mindspore/ops_generate/cpp_create_prim_instance_helper_generator.py +108 -0
- mindspore/ops_generate/functional_map_cpp_generator.py +491 -0
- mindspore/ops_generate/functional_overload_py_generator.py +110 -0
- mindspore/ops_generate/functions_cc_generator.py +233 -0
- mindspore/ops_generate/gen_aclnn_implement.py +110 -114
- mindspore/ops_generate/gen_constants.py +157 -3
- mindspore/ops_generate/gen_ops.py +245 -990
- mindspore/ops_generate/gen_pyboost_func.py +97 -998
- mindspore/ops_generate/gen_utils.py +119 -33
- mindspore/ops_generate/lite_ops_cpp_generator.py +155 -0
- mindspore/ops_generate/op_api_proto.py +206 -0
- mindspore/ops_generate/op_def_py_generator.py +131 -0
- mindspore/ops_generate/op_prim_py_generator.py +480 -0
- mindspore/ops_generate/op_proto.py +373 -108
- mindspore/ops_generate/op_template_parser.py +436 -0
- mindspore/ops_generate/ops_def_cc_generator.py +288 -0
- mindspore/ops_generate/ops_def_h_generator.py +74 -0
- mindspore/ops_generate/ops_name_h_generator.py +68 -0
- mindspore/ops_generate/ops_primitive_h_generator.py +81 -0
- mindspore/ops_generate/pyboost_functions_cpp_generator.py +370 -0
- mindspore/ops_generate/pyboost_functions_h_generator.py +68 -0
- mindspore/ops_generate/pyboost_functions_py_generator.py +148 -0
- mindspore/ops_generate/pyboost_grad_function_cpp_generator.py +154 -0
- mindspore/ops_generate/pyboost_inner_prim_generator.py +131 -0
- mindspore/ops_generate/pyboost_native_grad_functions_generator.py +268 -0
- mindspore/ops_generate/pyboost_op_cpp_code_generator.py +851 -0
- mindspore/ops_generate/pyboost_overload_functions_cpp_generator.py +344 -0
- mindspore/ops_generate/pyboost_utils.py +92 -33
- mindspore/ops_generate/template.py +294 -44
- mindspore/ops_generate/tensor_func_reg_cpp_generator.py +422 -0
- mindspore/parallel/__init__.py +3 -3
- mindspore/parallel/_auto_parallel_context.py +24 -33
- mindspore/parallel/_parallel_serialization.py +13 -2
- mindspore/parallel/_utils.py +4 -1
- mindspore/parallel/algo_parameter_config.py +1 -1
- mindspore/parallel/checkpoint_transform.py +44 -0
- mindspore/parallel/cluster/process_entity/_api.py +131 -37
- mindspore/parallel/cluster/process_entity/_utils.py +41 -6
- mindspore/parallel/cluster/run.py +20 -3
- mindspore/parallel/parameter_broadcast.py +1 -1
- mindspore/parallel/shard.py +3 -0
- mindspore/parallel/transform_safetensors.py +119 -253
- mindspore/profiler/__init__.py +17 -4
- mindspore/profiler/analysis/__init__.py +0 -0
- mindspore/profiler/analysis/parser/__init__.py +0 -0
- mindspore/profiler/analysis/parser/ascend_cann_parser.py +166 -0
- mindspore/profiler/analysis/parser/base_parser.py +158 -0
- mindspore/profiler/analysis/parser/framework_cann_relation_parser.py +45 -0
- mindspore/profiler/analysis/parser/ms_framework_parser.py +142 -0
- mindspore/profiler/analysis/parser/ms_minddata_parser.py +145 -0
- mindspore/profiler/analysis/parser/timeline_assembly_factory/__init__.py +0 -0
- mindspore/profiler/analysis/parser/timeline_assembly_factory/ascend_timeline_assembler.py +261 -0
- mindspore/profiler/analysis/parser/timeline_assembly_factory/base_timeline_assembler.py +40 -0
- mindspore/profiler/analysis/parser/timeline_assembly_factory/trace_view_container.py +84 -0
- mindspore/profiler/analysis/parser/timeline_creator/__init__.py +0 -0
- mindspore/profiler/analysis/parser/timeline_creator/base_timeline_creator.py +44 -0
- mindspore/profiler/analysis/parser/timeline_creator/cpu_op_timeline_creator.py +90 -0
- mindspore/profiler/analysis/parser/timeline_creator/fwk_timeline_creator.py +76 -0
- mindspore/profiler/analysis/parser/timeline_creator/msprof_timeline_creator.py +103 -0
- mindspore/profiler/analysis/parser/timeline_creator/scope_layer_timeline_creator.py +134 -0
- mindspore/profiler/analysis/parser/timeline_event/__init__.py +0 -0
- mindspore/profiler/analysis/parser/timeline_event/base_event.py +233 -0
- mindspore/profiler/analysis/parser/timeline_event/cpu_op_event.py +47 -0
- mindspore/profiler/analysis/parser/timeline_event/flow_event.py +36 -0
- mindspore/profiler/analysis/parser/timeline_event/fwk_event.py +260 -0
- mindspore/profiler/analysis/parser/timeline_event/msprof_event.py +73 -0
- mindspore/profiler/analysis/parser/timeline_event/scope_layer_event.py +53 -0
- mindspore/profiler/analysis/parser/timeline_event/timeline_event_pool.py +146 -0
- mindspore/profiler/analysis/task_manager.py +131 -0
- mindspore/profiler/analysis/time_converter.py +84 -0
- mindspore/profiler/analysis/viewer/__init__.py +0 -0
- mindspore/profiler/analysis/viewer/ascend_communication_viewer.py +333 -0
- mindspore/profiler/analysis/viewer/ascend_integrate_viewer.py +87 -0
- mindspore/profiler/analysis/viewer/ascend_kernel_details_viewer.py +252 -0
- mindspore/profiler/analysis/viewer/ascend_memory_viewer.py +313 -0
- mindspore/profiler/analysis/viewer/ascend_op_memory_viewer.py +322 -0
- mindspore/profiler/analysis/viewer/ascend_step_trace_time_viewer.py +265 -0
- mindspore/profiler/analysis/viewer/ascend_timeline_viewer.py +58 -0
- mindspore/profiler/analysis/viewer/base_viewer.py +26 -0
- mindspore/profiler/analysis/viewer/ms_dataset_viewer.py +97 -0
- mindspore/profiler/analysis/viewer/ms_minddata_viewer.py +581 -0
- mindspore/profiler/analysis/work_flow.py +73 -0
- mindspore/profiler/common/ascend_msprof_exporter.py +138 -0
- mindspore/profiler/common/command_executor.py +90 -0
- mindspore/profiler/common/constant.py +174 -3
- mindspore/profiler/common/file_manager.py +208 -0
- mindspore/profiler/common/log.py +130 -0
- mindspore/profiler/common/msprof_cmd_tool.py +202 -0
- mindspore/profiler/common/path_manager.py +371 -0
- mindspore/profiler/common/process_bar.py +168 -0
- mindspore/profiler/common/process_pool.py +9 -3
- mindspore/profiler/common/profiler_context.py +476 -0
- mindspore/profiler/common/profiler_info.py +304 -0
- mindspore/profiler/common/profiler_output_path.py +284 -0
- mindspore/profiler/common/profiler_parameters.py +210 -0
- mindspore/profiler/common/profiler_path_manager.py +120 -0
- mindspore/profiler/common/record_function.py +76 -0
- mindspore/profiler/common/tlv_decoder.py +76 -0
- mindspore/profiler/common/util.py +75 -2
- mindspore/profiler/dynamic_profiler.py +270 -37
- mindspore/profiler/envprofiler.py +138 -0
- mindspore/profiler/mstx.py +199 -0
- mindspore/profiler/platform/__init__.py +21 -0
- mindspore/profiler/platform/base_profiler.py +40 -0
- mindspore/profiler/platform/cpu_profiler.py +124 -0
- mindspore/profiler/platform/gpu_profiler.py +74 -0
- mindspore/profiler/platform/npu_profiler.py +309 -0
- mindspore/profiler/profiler.py +580 -93
- mindspore/profiler/profiler_action_controller.py +187 -0
- mindspore/profiler/profiler_interface.py +114 -0
- mindspore/profiler/schedule.py +208 -0
- mindspore/rewrite/api/symbol_tree.py +1 -2
- mindspore/run_check/_check_version.py +2 -6
- mindspore/runtime/__init__.py +37 -0
- mindspore/runtime/device.py +27 -0
- mindspore/runtime/event.py +209 -0
- mindspore/runtime/executor.py +148 -0
- mindspore/runtime/memory.py +392 -0
- mindspore/runtime/stream.py +460 -0
- mindspore/runtime/thread_bind_core.py +401 -0
- mindspore/train/__init__.py +2 -2
- mindspore/train/_utils.py +53 -18
- mindspore/train/amp.py +8 -4
- mindspore/train/callback/_checkpoint.py +32 -18
- mindspore/train/callback/_early_stop.py +1 -1
- mindspore/train/callback/_flops_collector.py +105 -69
- mindspore/train/callback/_history.py +1 -1
- mindspore/train/callback/_summary_collector.py +44 -6
- mindspore/train/callback/_tft_register.py +31 -10
- mindspore/train/dataset_helper.py +11 -11
- mindspore/train/metrics/precision.py +4 -5
- mindspore/train/mind_ir_pb2.py +167 -46
- mindspore/train/model.py +13 -15
- mindspore/train/serialization.py +462 -76
- mindspore/train/summary/summary_record.py +1 -2
- mindspore/train/train_thor/model_thor.py +1 -1
- mindspore/utils/__init__.py +4 -2
- mindspore/utils/bin/dataset-cache +0 -0
- mindspore/utils/bin/dataset-cache-server +0 -0
- mindspore/utils/dryrun.py +138 -0
- mindspore/utils/runtime_execution_order_check.py +550 -0
- mindspore/version.py +1 -1
- {mindspore-2.4.10.dist-info → mindspore-2.5.0.dist-info}/METADATA +2 -3
- {mindspore-2.4.10.dist-info → mindspore-2.5.0.dist-info}/RECORD +533 -467
- {mindspore-2.4.10.dist-info → mindspore-2.5.0.dist-info}/entry_points.txt +1 -1
- mindspore/_data_dump.cpython-39-x86_64-linux-gnu.so +0 -0
- mindspore/bin/cache_admin +0 -0
- mindspore/bin/cache_server +0 -0
- mindspore/common/_tensor_overload.py +0 -139
- mindspore/lib/libmindspore_np_dtype.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/include/acme.h +0 -24
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/include/acme_op.h +0 -82
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/include/op_creator.h +0 -113
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/include/op_param.h +0 -193
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/core/dtype_registry.h +0 -90
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/core/kernel_register.h +0 -46
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/core/platform/platform_configs.h +0 -89
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/core/platform/rt_funcs.h +0 -135
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/add_layer_norm_op.h +0 -60
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/add_rms_norm_op.h +0 -50
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/add_rms_norm_quant_op.h +0 -50
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/apply_rotary_pos_emb_nz_op.h +0 -42
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/apply_rotary_pos_emb_op.h +0 -55
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/asd_elewise_op.h +0 -34
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/asd_only_ops.h +0 -94
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/asd_op_base.h +0 -97
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/cast_op.h +0 -52
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/flash_attention_score_op.h +0 -97
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/gelu_op.h +0 -44
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/matmul_add_rmsnorm_op.h +0 -73
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/matmul_op.h +0 -108
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/multi_impls_op.h +0 -64
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/multi_weight_matmul_op.h +0 -91
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/paged_attention_op.h +0 -99
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/reshape_and_cache_nz_op.h +0 -44
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/reshape_and_cache_op.h +0 -44
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/ops/host_src/rms_norm_op.h +0 -64
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/utils/asd_utils.h +0 -179
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/utils/comm_utils.h +0 -69
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/acme/src/utils/profiling_util.h +0 -366
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/add/add_impl.h +0 -56
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/add/kernel/add.h +0 -21
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/add/tiling/add_tiling.h +0 -43
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/apply_rotary_pos_emb_impl.h +0 -46
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb.h +0 -23
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb_base.h +0 -456
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb_bf16.h +0 -217
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb_fp.h +0 -391
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb_fp16.h +0 -126
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb_fp32.h +0 -230
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb_tiling.h +0 -43
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb/kernel/apply_rotary_pos_emb_value.h +0 -27
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb_nz/apply_rotary_pos_emb_nz_impl.h +0 -34
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb_nz/kernel/apply_rotary_pos_emb_nz.h +0 -23
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb_nz/kernel/apply_rotary_pos_emb_nz_base.h +0 -460
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb_nz/kernel/apply_rotary_pos_emb_nz_fp16.h +0 -116
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb_nz/kernel/apply_rotary_pos_emb_nz_fp32.h +0 -230
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb_nz/kernel/apply_rotary_pos_emb_nz_tiling.h +0 -43
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/apply_rotary_pos_emb_nz/kernel/apply_rotary_pos_emb_nz_value.h +0 -27
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/asdop/asd_op_impl.h +0 -74
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/backend_param.h +0 -74
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/cast/cast_impl.h +0 -48
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/cast/kernel/cast_kernel.h +0 -21
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/compare/compare_impl.h +0 -55
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/compare/compare_tiling.h +0 -27
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/compare/kernel/compare_kernel.h +0 -23
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/and_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/div_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/elewise_binary_impl.h +0 -48
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/elewise_binary_tiling.h +0 -25
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/and_kernel.h +0 -46
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/div_kernel.h +0 -46
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/elewise_binary_base.h +0 -260
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/elewise_binary_kernel.h +0 -35
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/max_kernel.h +0 -66
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/min_kernel.h +0 -66
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/mul_kernel.h +0 -66
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/or_kernel.h +0 -46
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/max_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/min_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/mul_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/or_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/abs_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/elewise_unary_impl.h +0 -47
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/elewise_unary_tiling.h +0 -24
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/exp_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/abs_kernel.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/elewise_unary_base.h +0 -148
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/elewise_unary_kernel.h +0 -31
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/exp_kernel.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/ln_kernel.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/not_kernel.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/reciprocal_kernel.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/relu_kernel.h +0 -55
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/rsqrt_kernel.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/sqrt_kernel.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/ln_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/not_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/reciprocal_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/relu_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/rsqrt_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/sqrt_impl.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/flash_attention_score/flash_attention_score_impl.h +0 -68
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/internal_kernel.h +0 -99
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/internal_rtbackend.h +0 -21
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/lccl/lccl_wrapper.h +0 -58
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/ms_int_types.h +0 -91
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/ms_int_utils.h +0 -108
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/paged_attention/paged_attention_impl.h +0 -64
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/add_param.h +0 -68
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/attention_param.h +0 -40
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/cast_param.h +0 -30
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/compare_param.h +0 -31
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/elewise_param.h +0 -41
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/grouped_matmul_param.h +0 -40
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/matmul_ext_param.h +0 -38
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/matmul_qkv_param.h +0 -42
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/sub_param.h +0 -33
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/profiling_util.h +0 -377
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/reshape_and_cache_nz/kernel/reshape_and_cache_nz.h +0 -24
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/reshape_and_cache_nz/reshape_and_cache_nz_impl.h +0 -42
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/reshape_and_cache_nz/reshape_and_cache_nz_tiling.h +0 -27
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/rms_norm/rms_norm_impl.h +0 -46
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/sub/kernel/sub_kernel.h +0 -20
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/sub/sub_impl.h +0 -48
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/sub/sub_tiling.h +0 -25
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tune_repo/matmul_table.h +0 -399
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tune_repo/utils.h +0 -41
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/backend.h +0 -45
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/elewise_tiling.h +0 -29
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/elewise_utils.h +0 -30
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log.h +0 -69
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_core.h +0 -43
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_entity.h +0 -38
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_sink.h +0 -69
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_stream.h +0 -41
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_tiling.h +0 -71
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_utils.h +0 -165
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/math.h +0 -20
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/register/kernel_creator.h +0 -39
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/register/kernel_registry.h +0 -121
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/utils.h +0 -106
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libAdd_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libSub_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_layer_norm_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_quant_acme_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_310p_old_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_old_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_nz_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_nz_old_impl.so +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix.json +0 -19
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix_mix_aic_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix_mix_aiv_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix.json +0 -19
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix_mix_aic_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix_mix_aiv_0.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bnsd_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bnsd_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bsh_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bsh_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bnsd_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bnsd_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bsh_full_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bsh_tri_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_bf16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp32.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_bf16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp16.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp32.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_bf16_bnsd_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_bf16_bsh_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_fp16_bnsd_mix.o +0 -0
- mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_fp16_bsh_mix.o +0 -0
- mindspore/profiler/envprofiling.py +0 -254
- mindspore/profiler/profiling.py +0 -1926
- {mindspore-2.4.10.dist-info → mindspore-2.5.0.dist-info}/WHEEL +0 -0
- {mindspore-2.4.10.dist-info → mindspore-2.5.0.dist-info}/top_level.txt +0 -0
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
mindspore/.commit_id,sha256=
|
|
2
|
-
mindspore/Third_Party_Open_Source_Software_Notice,sha256=
|
|
3
|
-
mindspore/__init__.py,sha256=
|
|
4
|
-
mindspore/_c_dataengine.cpython-39-x86_64-linux-gnu.so,sha256=
|
|
5
|
-
mindspore/_c_expression.cpython-39-x86_64-linux-gnu.so,sha256=
|
|
6
|
-
mindspore/_c_mindrecord.cpython-39-x86_64-linux-gnu.so,sha256=
|
|
1
|
+
mindspore/.commit_id,sha256=LuQZeMZeojGnOyzP_VfgHKWFsXRIX60PgkkrJqANBM0,83
|
|
2
|
+
mindspore/Third_Party_Open_Source_Software_Notice,sha256=cYLAmuS5c_aCfcTFooGbRaapgfK17bnEW6oeDpzzfco,603117
|
|
3
|
+
mindspore/__init__.py,sha256=BbsJfh_bVr18q9qV_EFrZMXXjMu7cjOmQTRp3KY4jGg,2857
|
|
4
|
+
mindspore/_c_dataengine.cpython-39-x86_64-linux-gnu.so,sha256=WInStcf5PA80Oar1TSwcz4mM6vCW4r0x7t5BMd8k0ac,40650696
|
|
5
|
+
mindspore/_c_expression.cpython-39-x86_64-linux-gnu.so,sha256=Bt89-iHalZ39l1nmMyTX6DL_Jl62kGBP6Y_GLkcAjHA,88743496
|
|
6
|
+
mindspore/_c_mindrecord.cpython-39-x86_64-linux-gnu.so,sha256=l-74TW_OkCwxdcNblH3nT1wFPlZ_ekx5Sy_DTdkivHY,2831352
|
|
7
7
|
mindspore/_check_jit_forbidden_api.py,sha256=YVRF95dzKph6ZdM8jTDcGRsG4mrmk5yuReIW0JLYZGU,3901
|
|
8
|
-
mindspore/_checkparam.py,sha256=
|
|
9
|
-
mindspore/_data_dump.cpython-39-x86_64-linux-gnu.so,sha256=6eMd7dHSwzEIrlQKTe73UtsiMuAF5thDjTrX7uPIJZE,370600
|
|
8
|
+
mindspore/_checkparam.py,sha256=tZpERp6jhACCBlpDAp2QU_3uCDOi54E4iibU9x-oPcI,56252
|
|
10
9
|
mindspore/_install_custom.py,sha256=PRHqyz6BzbJHiqJgHGHbJsWic2eFDEyBvNl8oOGFDTo,1748
|
|
11
10
|
mindspore/_profiler.py,sha256=GZMreo0VYf2viAAtwgiLT7JnpbinSgW7I9ZcdzSjv_c,1029
|
|
12
|
-
mindspore/amp.py,sha256=
|
|
13
|
-
mindspore/context.py,sha256=
|
|
11
|
+
mindspore/amp.py,sha256=SlRge6fWdqbqZoSzES_xwoQiy2s8PTCJSeyH3-v25Ig,15793
|
|
12
|
+
mindspore/context.py,sha256=3Lt8ANA5JSRlKMTols6bs08JcuhImEn9WOAkAsLoHSI,135013
|
|
14
13
|
mindspore/default_config.py,sha256=i-NcRS4M0IrdSeiMj7-5epdv0yTzY0-K-kLA-_SCuSQ,50
|
|
15
|
-
mindspore/
|
|
16
|
-
mindspore/
|
|
14
|
+
mindspore/device_manager.py,sha256=TOvvx2u8TTtZjE8fkZfi7_xmSWF_wIl9LpurHKvCZaU,6742
|
|
15
|
+
mindspore/log.py,sha256=DaPHk-oeTujf9OQ0GWZKRX5jQxZKRIw_RT9xbu9flIU,21657
|
|
16
|
+
mindspore/version.py,sha256=UrYf8t6hsIpDaboSlgD4Unb8HSA1LxEBwhZMIxJBY0c,22
|
|
17
17
|
mindspore/_akg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
mindspore/_akg/akg/__init__.py,sha256=J_vlBaC-jAuCyi5Z0SWo3NBD8S-o8sRojbHn04S8wB0,3262
|
|
19
19
|
mindspore/_akg/akg/autodiff.py,sha256=zTofVO4n7cKlyX84K22EE3vll2iOTnqRlipTb8U6x2M,16859
|
|
@@ -24,7 +24,7 @@ mindspore/_akg/akg/backend/__init__.py,sha256=Tz6NAbDePWJfN0lO8VI9I1aNTiPIR6bY26
|
|
|
24
24
|
mindspore/_akg/akg/backend/aic_model.py,sha256=CRNgzVLo_NFvpCPgp2Ku90NIlgi3jCVyfMWs53LkEXo,6099
|
|
25
25
|
mindspore/_akg/akg/backend/parsing_profiling_data.py,sha256=j5yKSY33s-CQb04AAEEjsxA1AU5l2oH_vPw3UrWATDs,8697
|
|
26
26
|
mindspore/_akg/akg/composite/__init__.py,sha256=Hp86rBq9VDxFEMgTv7a7Tbe1wKUM-NcuE8Q34CVhXfU,713
|
|
27
|
-
mindspore/_akg/akg/composite/build_module.py,sha256=
|
|
27
|
+
mindspore/_akg/akg/composite/build_module.py,sha256=LE2sUqEbgi2xndOzTDUVn7t5I-6x4XCfcsheBl2ij0s,41573
|
|
28
28
|
mindspore/_akg/akg/composite/construct_args.py,sha256=bdEdR0vJl5YZ6GpOUxxIRuADuYoLxlhM6F4-3LWoTCE,21789
|
|
29
29
|
mindspore/_akg/akg/composite/graph.py,sha256=riBWNYqMzS7SDrX-tQEUp592IwfsQsMTmmLmauqBnZs,871
|
|
30
30
|
mindspore/_akg/akg/composite/peel.py,sha256=qoUD1MLUwXTdUeeQpRXRIi1b7MdjzGrzahSzyw2VXSU,2622
|
|
@@ -677,7 +677,7 @@ mindspore/_akg/akg/utils/dump_cuda_meta.py,sha256=0eDi82HqBt2-_0coRGEGWhmfX1AssW
|
|
|
677
677
|
mindspore/_akg/akg/utils/dynamic_shape.py,sha256=feG1QhAYprplzLYs7Z2Cx2aqTeame2V9EVlQjzfC3Xs,4469
|
|
678
678
|
mindspore/_akg/akg/utils/format_transform.py,sha256=TwScQRa6iHv28_WKGij_5TFgWGXwopm_rcT925Jxm-E,6208
|
|
679
679
|
mindspore/_akg/akg/utils/gen_random.py,sha256=N432sfWp-hvN8MzQ1SwpOLroq_VLcs4WvbKmBmBgrQQ,8618
|
|
680
|
-
mindspore/_akg/akg/utils/kernel_exec.py,sha256=
|
|
680
|
+
mindspore/_akg/akg/utils/kernel_exec.py,sha256=u2g8t3HDp_cwvYpQxohAh9K0Y9ABt3TE-bmHWxL-mmA,42097
|
|
681
681
|
mindspore/_akg/akg/utils/math.py,sha256=WlcgHHwcSjDAr8XDk4Q6K3nPbWz0HnoEWku101tE8zA,1334
|
|
682
682
|
mindspore/_akg/akg/utils/op_dsl.py,sha256=LjfWLn5qRCONzYSF6t6Uc30NbJpLvtx420FIuGR9Il0,56800
|
|
683
683
|
mindspore/_akg/akg/utils/result_analysis.py,sha256=BteXZBrFfzZdchFkdMW7q-hyxvWkMJavXqUjof8eZlw,16835
|
|
@@ -708,37 +708,37 @@ mindspore/_extends/parallel_compile/akg_compiler/__init__.py,sha256=Ik-9CrEjuciL
|
|
|
708
708
|
mindspore/_extends/parallel_compile/akg_compiler/akg_process.py,sha256=7NsY_qX9b6tUYGtQ5_dgBwZvxLBDpBf_l2LP_5QJSys,10814
|
|
709
709
|
mindspore/_extends/parallel_compile/akg_compiler/build_tbe_kernel.py,sha256=m6zpr6UCib3d3K_GwMS182d4K9z46xh8Aq2FPwOem9I,21111
|
|
710
710
|
mindspore/_extends/parallel_compile/akg_compiler/compiler.py,sha256=G9_kGWEG76J9Xg5Z2Ryv8Wqwj8LC02oQWdLBjjaONmU,2060
|
|
711
|
-
mindspore/_extends/parallel_compile/akg_compiler/gen_custom_op_files.py,sha256=
|
|
711
|
+
mindspore/_extends/parallel_compile/akg_compiler/gen_custom_op_files.py,sha256=Czplqmt4GOzcSfJ3u_8QUr5FgogtyJEPkXKUSovwdxU,4038
|
|
712
712
|
mindspore/_extends/parallel_compile/akg_compiler/get_file_path.py,sha256=SIuevzal3j94x5UOptF65NIBY-pJ4VbVfC1AJrKzgjQ,1586
|
|
713
713
|
mindspore/_extends/parallel_compile/akg_compiler/tbe_topi.py,sha256=rfhWhKVw3wjz12yKCjbcHuIr56_z345AXkhzu0_kbSg,19072
|
|
714
714
|
mindspore/_extends/parallel_compile/akg_compiler/util.py,sha256=BfmUxy4kznuDRFGi03wfn0On-mq556KPzy2sW7PCBDo,5527
|
|
715
715
|
mindspore/_extends/parse/__init__.py,sha256=W1Isu-wymOzwRf5yxYAKmPV6d4z9OIOyfWziulUx2v8,3871
|
|
716
|
-
mindspore/_extends/parse/compile_config.py,sha256=
|
|
716
|
+
mindspore/_extends/parse/compile_config.py,sha256=w7XXDGqJw3mjucsQwnCaEIAxlWLaD0OQ134TcmVT9R0,9266
|
|
717
717
|
mindspore/_extends/parse/namespace.py,sha256=IiwuEX1PPJ4SzQPZg3npYargm7g0cDo9hlfVh07J6SI,4104
|
|
718
|
-
mindspore/_extends/parse/parser.py,sha256=
|
|
718
|
+
mindspore/_extends/parse/parser.py,sha256=s91nqM3oySjA_CNuAk-lag1PwpGe75wt_-aAX7RvAHw,55618
|
|
719
719
|
mindspore/_extends/parse/resources.py,sha256=fjbJuEVir_af1uJtDO_PEeXpHoMyEa_-u6VwCtQsZ3Q,6711
|
|
720
|
-
mindspore/_extends/parse/standard_method.py,sha256=
|
|
720
|
+
mindspore/_extends/parse/standard_method.py,sha256=C2tHcLKw3HFt0vaCugiEwjQUwgXDLMHJz5_02XGb8zc,132162
|
|
721
721
|
mindspore/_extends/parse/trope.py,sha256=CXWWyGy4IOcWeJ_vmwspSWDh2sZgTuV4METDhPhvmvo,3480
|
|
722
|
+
mindspore/_extends/parse/deprecated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
723
|
+
mindspore/_extends/parse/deprecated/deprecated_tensor_method.py,sha256=A_FFClowdDvTPHO1c8bbzQbDbt35wzwdaaI91uVXcRU,6618
|
|
722
724
|
mindspore/_extends/pijit/__init__.py,sha256=scflj2aXueOeGJLsj5NiOyvMtKnbYmmB1oPgNZJUvqQ,825
|
|
723
|
-
mindspore/_extends/pijit/pijit_func_white_list.py,sha256=
|
|
725
|
+
mindspore/_extends/pijit/pijit_func_white_list.py,sha256=qwmWsSWBPge3GcbzHiVz4jK0kLp2xDneCKS86L1h8MM,40555
|
|
724
726
|
mindspore/_extends/remote/__init__.py,sha256=YepkDaoYYZOTh8yKE-RFsZwMpKJ5dUKSZfKpxJBta5s,768
|
|
725
727
|
mindspore/_extends/remote/kernel_build_server.py,sha256=QMwCzv2SDDHpDawM8Q2GlNp9BQW_b3g6WYr8gAcSkMI,5797
|
|
726
728
|
mindspore/_extends/remote/kernel_build_server_akg.py,sha256=5lYmyL_2qWDo85GNg4SjHOgRTEG07eTK_uLsML3fggY,1859
|
|
727
729
|
mindspore/_extends/remote/kernel_build_server_akg_v2.py,sha256=uSI2dvWNf3jOcoaH4d-Akx0rXGnVfEBDFPi82s0UNPs,1872
|
|
728
730
|
mindspore/_extends/remote/kernel_build_server_ascend.py,sha256=rWdF7aoQM_51JCPULLkxWcCrxi0z20ya9HkAkjb5g0o,2638
|
|
729
|
-
mindspore/bin/cache_admin,sha256=_1vKMqHR7t5vNSKiuMB9AIY8xhgAVyopfn5O0qOoAeg,546936
|
|
730
|
-
mindspore/bin/cache_server,sha256=qwnh-bvWXWRdEHPMOCyA4deJoP454bPXQ4hDB_WZrS0,2290240
|
|
731
731
|
mindspore/boost/__init__.py,sha256=jyC0Da8ewY6aX85amd_h6ZRVug40Fsyoa5CyvmKIHIg,1839
|
|
732
732
|
mindspore/boost/adasum.py,sha256=eRNitSGjPY9XYOt9ncWs9xmkwj6JSTYxMUDf5uruyMQ,13869
|
|
733
733
|
mindspore/boost/base.py,sha256=aAT7dXlnWrZySy7thdUNmq-l-WdyN4Pi0JOUvBH1yHY,20090
|
|
734
734
|
mindspore/boost/boost.py,sha256=JCA1R3p_ioyAVWo7rE7HkiTV-tB8db0DC6VpFjOrsmc,15992
|
|
735
|
-
mindspore/boost/boost_cell_wrapper.py,sha256=
|
|
735
|
+
mindspore/boost/boost_cell_wrapper.py,sha256=JEISlibHsgS5yiWnvc60qUUnnJAwKm0AW9Mm-1tDnFE,39535
|
|
736
736
|
mindspore/boost/dim_reduce.py,sha256=7L6pVI8BXDzZxSy7vMdBem--lk8F1PG2fwKkVWeMOI8,13160
|
|
737
737
|
mindspore/boost/grad_accumulation.py,sha256=SljnKl0USSjgrhIIfoY0lXpXkJ0etocpCmFxUumv8SE,3081
|
|
738
738
|
mindspore/boost/grad_freeze.py,sha256=kuEct2jDc0lmVwA6Ll-De77CBz7HJgf3DzipG9x269w,17284
|
|
739
739
|
mindspore/boost/group_loss_scale_manager.py,sha256=sU6VfObSNY-SidL13KivO7MS87iWM8MYvR8X97T0mCU,7015
|
|
740
740
|
mindspore/boost/less_batch_normalization.py,sha256=7DAZGxEWu37ShWbRIuqQFIpekrU6-Pt3uzBvXszgoRk,6904
|
|
741
|
-
mindspore/common/__init__.py,sha256=
|
|
741
|
+
mindspore/common/__init__.py,sha256=tk9CtAFsIVQh9jgAJ8VIqQt_66stZ2bvzfPlSlNIzJ4,3566
|
|
742
742
|
mindspore/common/_auto_dynamic.py,sha256=kwC8uqueKd4tpTHgQRwrfUrothWdTx1Ln8EgpShtCSQ,2412
|
|
743
743
|
mindspore/common/_decorator.py,sha256=3xtc-_ol00MF8mzzHbh9_WUMrCgNBWWC9w9VN4hbaXo,1891
|
|
744
744
|
mindspore/common/_jit_fallback_utils.py,sha256=KqR5VpcbeSCg-cDfFuPMsCwON9k4TXcn3VYB7bbGn20,3859
|
|
@@ -746,46 +746,47 @@ mindspore/common/_monad.py,sha256=yqtATsUy6e7MuSiWZEju_2360MPSNgocsLYcCd0l79A,90
|
|
|
746
746
|
mindspore/common/_pijit_context.py,sha256=xSBjuIm6NrBpAXHsbWR2jALBo_PAnpgP1XAlbuy8RGU,5547
|
|
747
747
|
mindspore/common/_register_for_adapter.py,sha256=U-295bi1eryN4U72waEsoQK9mcWmtzmBlQR7Hvq8Fsw,2678
|
|
748
748
|
mindspore/common/_register_for_recompute.py,sha256=gh1U1BINb1Stj5qSWrb5DbMnDuMY32lpzTCaoyfDwmc,1523
|
|
749
|
-
mindspore/common/_register_for_tensor.py,sha256
|
|
750
|
-
mindspore/common/_stub_tensor.py,sha256=
|
|
751
|
-
mindspore/common/
|
|
749
|
+
mindspore/common/_register_for_tensor.py,sha256=IsSSZDl6QYITGwh-otYYRugfAeLGWR42eq7CdSLt5mA,1471
|
|
750
|
+
mindspore/common/_stub_tensor.py,sha256=x8ntyz_3ZufbQf1uT0eYJabnmnty5vIGt47DqxfFl60,7765
|
|
751
|
+
mindspore/common/_tensor_cpp_method.py,sha256=8BkuPj-WD62DnV6khflcvNvZJBq0BO3q7DI_NMv9exo,2234
|
|
752
|
+
mindspore/common/_tensor_docs.py,sha256=PYEBs7-7BhfqTkTOz4WWSY-d8vm9tMUtj6JgXLVp7iI,216198
|
|
752
753
|
mindspore/common/_utils.py,sha256=drulzpzt-RKHSUc_t5hF2NNeauTforLP6kVMZ5LMlqQ,3845
|
|
753
|
-
mindspore/common/api.py,sha256=
|
|
754
|
+
mindspore/common/api.py,sha256=J7IxTG9O1JZtRoq6DN0BypYN0oJMZY58Olb8j7_vQfE,84576
|
|
754
755
|
mindspore/common/auto_dynamic_shape.py,sha256=ObWgO5AuGMBHucc8U7yGu4QgwLI6WQqShbQxFCZEJUk,21949
|
|
755
|
-
mindspore/common/dtype.py,sha256=
|
|
756
|
-
mindspore/common/dump.py,sha256=
|
|
757
|
-
mindspore/common/file_system.py,sha256=
|
|
758
|
-
mindspore/common/generator.py,sha256=
|
|
759
|
-
mindspore/common/hook_handle.py,sha256=
|
|
760
|
-
mindspore/common/initializer.py,sha256=
|
|
756
|
+
mindspore/common/dtype.py,sha256=KKYU2Oz6fH2Fy9j-8ABLnK17ECeI93OWx8I-297IG_8,10462
|
|
757
|
+
mindspore/common/dump.py,sha256=K4H6hUhpowSFv4XHTFr5Q4ogVBz9lxZA6TILA_LnpQo,5789
|
|
758
|
+
mindspore/common/file_system.py,sha256=ZovcOYX9PiE_ORFqGLOHRof_BDsCkAlcUZy78TXOudU,1708
|
|
759
|
+
mindspore/common/generator.py,sha256=sdtB8zQg4CobtlTBUPEI4MRuWki86zRKQNbM72DCM7c,6995
|
|
760
|
+
mindspore/common/hook_handle.py,sha256=YfRej_FYf7ARGY7R0Kt1gUZzfjDt1EXBdeiKn7BvRdo,5412
|
|
761
|
+
mindspore/common/initializer.py,sha256=yMsmUcCRI3puGMKqjShgVKTVHHi96SUvHSDGKuUOsVg,34525
|
|
761
762
|
mindspore/common/jit_config.py,sha256=WXBZCeG4cPUXlfEMYjt_mYaH1RrrC6L-VPpN0SpWJYc,5603
|
|
762
|
-
mindspore/common/lazy_inline.py,sha256=
|
|
763
|
-
mindspore/common/mindir_util.py,sha256=
|
|
763
|
+
mindspore/common/lazy_inline.py,sha256=eqb9hRTqur5RVb6LPMn4khLteLjq7BfYnqW8bTXDz5Y,10424
|
|
764
|
+
mindspore/common/mindir_util.py,sha256=t_7EvfgYITH-J3B-x6qoKLUqmCS1OPltFJqTffPNuNw,4055
|
|
764
765
|
mindspore/common/mutable.py,sha256=Sserkdhj6ekLBOsGZ2TrOhhZABeu7ZlZz7byXFjPpcY,8888
|
|
765
766
|
mindspore/common/no_inline.py,sha256=-9L8sEcEMbEytjLWqFJ_iu8UktiEusqXz662M5GtxgQ,1653
|
|
766
767
|
mindspore/common/np_dtype.py,sha256=a_kvT1Sm_kQJLaQK-3AunfHY3yztA20SIgqptjgXDZc,1066
|
|
767
|
-
mindspore/common/parameter.py,sha256=
|
|
768
|
+
mindspore/common/parameter.py,sha256=PY3NvtRW7VVlPy4x0fa5rOI0MaMMrGOCG221iqOTYu8,44870
|
|
768
769
|
mindspore/common/recompute.py,sha256=Miki3zJ1XhfDZVxQ0lQwMka2iOrPIIenLGn5aVGjXl4,10889
|
|
769
770
|
mindspore/common/seed.py,sha256=Up_h27rWnSmAciWx4zNDJUlKMscU70jY5-h1F7OCnwE,11098
|
|
770
771
|
mindspore/common/sparse_tensor.py,sha256=aFYJvuQ_Tu1NFxD3D9XTKROraVY01UVSniaB-LBLbQQ,48186
|
|
771
772
|
mindspore/common/symbol.py,sha256=j9zS6G37xzqduK-sGqcFt_v0-WBZAu-EZcx2zNLitJk,5517
|
|
772
|
-
mindspore/common/tensor.py,sha256=
|
|
773
|
-
mindspore/communication/__init__.py,sha256=
|
|
774
|
-
mindspore/communication/_comm_helper.py,sha256=
|
|
773
|
+
mindspore/common/tensor.py,sha256=hI0T_AIy87mCvxfOzd4Bix_IsQsA8G5SKa0zGUW6Q0A,166366
|
|
774
|
+
mindspore/communication/__init__.py,sha256=OVDt24jxroEtMpOKA1tXBgJGuxU3-9lf3yhQ7xU46r4,1754
|
|
775
|
+
mindspore/communication/_comm_helper.py,sha256=brKQHJDVpM8zj8n5TIw9d3q6PoS-u1FE9-jF0T5IuVk,16338
|
|
775
776
|
mindspore/communication/_hccl_management.py,sha256=9et8YEQORdiOspn_2yktER4HVMjRUuqmZD_t5IFc3W4,10555
|
|
776
|
-
mindspore/communication/comm_func.py,sha256=
|
|
777
|
-
mindspore/communication/management.py,sha256=
|
|
777
|
+
mindspore/communication/comm_func.py,sha256=wUvyfzsgppPdhDV2z3v_P7lw82PKbZPG_kxSue5YDi0,60485
|
|
778
|
+
mindspore/communication/management.py,sha256=KHw4j_OoBWNp4mGRsYzPWrnoeQGtJifT6vZDHTeSVZA,28414
|
|
778
779
|
mindspore/config/op_info.config,sha256=6PxRs4lWmYxNK2ewAnNntdEPPiAaoLhHN3JzzEVPLnY,1247801
|
|
779
|
-
mindspore/dataset/__init__.py,sha256=
|
|
780
|
+
mindspore/dataset/__init__.py,sha256=mHJ2YhDelFW3B6wxNWH3lkWgbZRysmbArmOFGZggPVo,5531
|
|
780
781
|
mindspore/dataset/audio/__init__.py,sha256=-6qqWnIRaXJCv57GChaXJu-acC0Sf8D5i1RxfG2glJI,3080
|
|
781
782
|
mindspore/dataset/audio/transforms.py,sha256=aTP-aey5bvDptHbD5GxFKSJCu099DCSniPhZ4n0ADi4,165656
|
|
782
783
|
mindspore/dataset/audio/utils.py,sha256=_aQKxtcOFlggwWzaqQqmIq38q33aS5U4Y0xMWxPK_SI,13752
|
|
783
784
|
mindspore/dataset/audio/validators.py,sha256=0kwHHv6xIi48Pg5asxRDz24p0-YMASpoac5Xbt0cLgA,44307
|
|
784
785
|
mindspore/dataset/callback/__init__.py,sha256=XOBe2xHktnuPquWACPs8eru5_2ppvFnFlpTJ1nNCzi4,871
|
|
785
|
-
mindspore/dataset/callback/ds_callback.py,sha256=
|
|
786
|
+
mindspore/dataset/callback/ds_callback.py,sha256=7y9qs8DJcrKtvpMrBH1rItVlOXGywCeJPdYVCvau5Xk,14933
|
|
786
787
|
mindspore/dataset/callback/validators.py,sha256=fdBsEnf1LJzwnTummLcwmljQavaLQUXS6FVPuLJDlUk,1186
|
|
787
788
|
mindspore/dataset/core/__init__.py,sha256=1_d_PAecW6fb-DMK4P88otioDOdmEIoUnN_YILn3Thw,588
|
|
788
|
-
mindspore/dataset/core/config.py,sha256=
|
|
789
|
+
mindspore/dataset/core/config.py,sha256=IYFyUJJDM-wpgT2clX7k9sQe9qwqXOfU12BD8DV3VEQ,45366
|
|
789
790
|
mindspore/dataset/core/datatypes.py,sha256=j1OZvtIZh1cNDKJT8gi5y1uiR9cPXMLyW6SSQOUgTMI,3247
|
|
790
791
|
mindspore/dataset/core/py_util_helpers.py,sha256=L8zXO4Wh5cGOhBxyJ8Y8_dcZYQnk7n7mHF9jf5aBXQk,2283
|
|
791
792
|
mindspore/dataset/core/validator_helpers.py,sha256=pJpg4-gNmHlTvehqmXZwaaijR4rbL-zvLLidjXiuOgw,29685
|
|
@@ -793,24 +794,24 @@ mindspore/dataset/debug/__init__.py,sha256=wbp8vThn17_E67f8QhvXaVD420zz41-QR7lA3
|
|
|
793
794
|
mindspore/dataset/debug/debug_hook.py,sha256=7BXfcWZB7vKf58Lsk_MPXgbrFZ4jZtxlfJ2JWJ8a9uI,3853
|
|
794
795
|
mindspore/dataset/debug/pre_defined_hook.py,sha256=sZDqT3yOGew1e7SAfwS1XYpZCXbAh1NpsOe5j_LEi3o,2503
|
|
795
796
|
mindspore/dataset/engine/__init__.py,sha256=a6yta4vz-txQhHI1ONvuDjnotO-zrK4NVHddqyzv_ts,5412
|
|
796
|
-
mindspore/dataset/engine/cache_admin.py,sha256=
|
|
797
|
-
mindspore/dataset/engine/cache_client.py,sha256=
|
|
798
|
-
mindspore/dataset/engine/datasets.py,sha256=
|
|
799
|
-
mindspore/dataset/engine/datasets_audio.py,sha256=
|
|
800
|
-
mindspore/dataset/engine/datasets_standard_format.py,sha256=
|
|
801
|
-
mindspore/dataset/engine/datasets_text.py,sha256
|
|
802
|
-
mindspore/dataset/engine/datasets_user_defined.py,sha256=
|
|
803
|
-
mindspore/dataset/engine/datasets_vision.py,sha256=
|
|
804
|
-
mindspore/dataset/engine/iterators.py,sha256=
|
|
797
|
+
mindspore/dataset/engine/cache_admin.py,sha256=0kBPHlaKzDxQxTcKo8UbZqji5Lymv3Dx7Ky804pGvXo,1779
|
|
798
|
+
mindspore/dataset/engine/cache_client.py,sha256=W1SliE696QJomKd0NrvHkjKpOCkA6rn8jB9cI8nTBZc,6081
|
|
799
|
+
mindspore/dataset/engine/datasets.py,sha256=bGlZWQNk1Kuwtmv0ASMugYQmEz1emMAzh7btdcaB5No,200488
|
|
800
|
+
mindspore/dataset/engine/datasets_audio.py,sha256=OaaQU_5OuT2YUg5gKNch30ZeTarVmukyznrLg7jy-N4,47435
|
|
801
|
+
mindspore/dataset/engine/datasets_standard_format.py,sha256=BTPXAx6rjf2nF9TwgM7BkT13S76zDVTKOMsemPQST2k,30631
|
|
802
|
+
mindspore/dataset/engine/datasets_text.py,sha256=PruMuzv1DOH_AK4GHiXNST4zmf0nKc9HjZXF92Fey2w,120472
|
|
803
|
+
mindspore/dataset/engine/datasets_user_defined.py,sha256=xQH6SM1loAb6jJm1fL1e7KjG1Jwpvw20R7tWbKKn6dU,58034
|
|
804
|
+
mindspore/dataset/engine/datasets_vision.py,sha256=eVIA6Dgmf3IlKTEM71pZRvVwzYTimlSWUxKu5KzEyek,255564
|
|
805
|
+
mindspore/dataset/engine/iterators.py,sha256=p7ebctnhFwvO4kKODi4QochDbDLcyhsOgAJJsS6ucDw,21798
|
|
805
806
|
mindspore/dataset/engine/offload.py,sha256=-MNIHZYMdy5LW0-a_tyiwMg4FwvHV6-VvLx8zDEkea4,21071
|
|
806
|
-
mindspore/dataset/engine/queue.py,sha256=
|
|
807
|
-
mindspore/dataset/engine/samplers.py,sha256=
|
|
808
|
-
mindspore/dataset/engine/serializer_deserializer.py,sha256=
|
|
809
|
-
mindspore/dataset/engine/validators.py,sha256=
|
|
807
|
+
mindspore/dataset/engine/queue.py,sha256=QobtMM2gpBXGiDBCJJoSSiZO-zxk6ad5Ahhk4pZ3boY,15530
|
|
808
|
+
mindspore/dataset/engine/samplers.py,sha256=70T0-JhFEb0lh7MhIbG_TqLtrcLgSe1XT-c7ChzF3nk,37599
|
|
809
|
+
mindspore/dataset/engine/serializer_deserializer.py,sha256=fhlUeMhlilslOjN1z-irFi0roa-pSOX5zjcusp_V5pA,6139
|
|
810
|
+
mindspore/dataset/engine/validators.py,sha256=xkxRu9JeZ5lbko3yVdFDal1tKKOj_ZTp9oRplMEmvRE,106999
|
|
810
811
|
mindspore/dataset/engine/obs/__init__.py,sha256=n1zsZ6nMZBGo1b7sC9CGwR76EosHWmwcaib5WEeIzS8,911
|
|
811
812
|
mindspore/dataset/engine/obs/config_loader.py,sha256=73ZOjPp1J6Ysm6Vh5JkWciuLwlKkUe6All8j_QXoq5A,2203
|
|
812
813
|
mindspore/dataset/engine/obs/obs_mindrecord_dataset.py,sha256=R4YuXl6L25EDhSMUiCqtmANLXDs8zbUawcDrM100d_0,20781
|
|
813
|
-
mindspore/dataset/engine/obs/util.py,sha256=
|
|
814
|
+
mindspore/dataset/engine/obs/util.py,sha256=HKuyG3LFMI3gTMeUXbw4Ud0mCQgpXDLi3nN6WYuICXU,16738
|
|
814
815
|
mindspore/dataset/text/__init__.py,sha256=0CJ1RtjTyi2Z1abE9GQIUJVfg6Ai_jtVeAI93dckgFg,2551
|
|
815
816
|
mindspore/dataset/text/transforms.py,sha256=GE8u-Zc46nDNz3kZQxlX51J2iZKg_Gw172M_diTmlZY,79963
|
|
816
817
|
mindspore/dataset/text/utils.py,sha256=47Kv4W13xzTwUmhOYcs85K8cdknOROcpzRefjuM7DhM,29167
|
|
@@ -818,8 +819,8 @@ mindspore/dataset/text/validators.py,sha256=NyNirrM8yGrXUAB5nIE5M5qH6llWVxwGm4GJ
|
|
|
818
819
|
mindspore/dataset/transforms/__init__.py,sha256=9XAq1Lm-qJAzv9AWFEyeA4JM6GTebQtuylFQne5qnP0,1833
|
|
819
820
|
mindspore/dataset/transforms/c_transforms.py,sha256=EJxus-r7GZhFznWcgs8rUA-u97HuIBPYMsu94cF-sQI,22672
|
|
820
821
|
mindspore/dataset/transforms/py_transforms.py,sha256=Hgyee7ohLpcsbCF1x9gx1Ce0bOthggGkjzyJRwaMZYc,15590
|
|
821
|
-
mindspore/dataset/transforms/py_transforms_util.py,sha256=
|
|
822
|
-
mindspore/dataset/transforms/transforms.py,sha256=
|
|
822
|
+
mindspore/dataset/transforms/py_transforms_util.py,sha256=OfGWdqZ4u9dIfVYouExWFjCspMSCkI0BMLsKGdZW5_Y,10720
|
|
823
|
+
mindspore/dataset/transforms/transforms.py,sha256=gV8Gy6TfNGfVRnJ1FPUpy7yLFZWO2veEfFRc0eRUL54,51136
|
|
823
824
|
mindspore/dataset/transforms/validators.py,sha256=0O12janQriXsLJnImDU6OmJXz8ZCsBGXPFi-BoFADZs,13955
|
|
824
825
|
mindspore/dataset/utils/__init__.py,sha256=Q5S_xdiqUe_6pBlr_mB-t__ihR8mxbnxMYvsaHhT_ZI,829
|
|
825
826
|
mindspore/dataset/utils/browse_dataset.py,sha256=OPxWx2u_WPWJRC5xQrJ_DWtIt5Q6pa3l4S0Jqhi-gyk,9893
|
|
@@ -830,30 +831,46 @@ mindspore/dataset/vision/py_transforms.py,sha256=qhuSmupiGfkOD7MZt2b2pQPy5upeL8t
|
|
|
830
831
|
mindspore/dataset/vision/py_transforms_util.py,sha256=t7XEDaGgLFfLyX5JLd6s-Z_AFcAnLI1m8wTzshks5Gc,63485
|
|
831
832
|
mindspore/dataset/vision/transforms.py,sha256=O6JtDQ87UgI8t6Byz14JhIG4UzjizLYZ3H_z-gDin8Q,318848
|
|
832
833
|
mindspore/dataset/vision/utils.py,sha256=lAe8K3uAnqWil4_gyelV5iqU_GwEtjG24q41p1c8PC4,38623
|
|
833
|
-
mindspore/dataset/vision/validators.py,sha256=
|
|
834
|
+
mindspore/dataset/vision/validators.py,sha256=5jcSuCBFX6mLcXoxS-pVPKX9uXfz5F2Y8LmzHjepBzc,56128
|
|
835
|
+
mindspore/device_context/__init__.py,sha256=qRqjOxRca51pZgiHEwBeFzbDpmcvzeoMLmiI7OaLDz4,817
|
|
836
|
+
mindspore/device_context/ascend/__init__.py,sha256=CkRf6RAjnVXcPE9IXSCJA7KyOV1GQBkj5WZZ1NvVoz0,867
|
|
837
|
+
mindspore/device_context/ascend/device.py,sha256=n0swCxDkPoKajvIkqNzUp0Lk24NQ3sMVzlPZD_-ek-M,2480
|
|
838
|
+
mindspore/device_context/ascend/op_debug.py,sha256=sgOEs6qeC2XstrQKZy8pD2-5ZtBCoV2gmPNQPMMHAaU,4049
|
|
839
|
+
mindspore/device_context/ascend/op_precision.py,sha256=jnqlqcY_ONvN49y7CuH6shgKxcjTVyYqgRD-SCzzIEE,9064
|
|
840
|
+
mindspore/device_context/ascend/op_tuning.py,sha256=YLDGDUhHw_BMEinJyphZi29uIPpwLojQIrTXOhAIEGs,5183
|
|
841
|
+
mindspore/device_context/cpu/__init__.py,sha256=VlT7p5iYNmNNHDt-KBPc9qhBNTg7Ca1vFDujpm6sS-M,924
|
|
842
|
+
mindspore/device_context/cpu/device.py,sha256=VpTwUQcwaLMgyV8DYBaeeJ9hX2p3-47LcJVOjKT8HN4,1977
|
|
843
|
+
mindspore/device_context/cpu/op_tuning.py,sha256=1PTTKJqxrz8gEv2mIjP_i0I8ja4e4B-DZOgbboBsBg4,1513
|
|
844
|
+
mindspore/device_context/gpu/__init__.py,sha256=djrRFuG-uYcBkity5hSyWaxLmUvmkHK9IF21lb3kZ-U,851
|
|
845
|
+
mindspore/device_context/gpu/device.py,sha256=fRa6VP-x2dxwlnmozU_ARQsTWdgEV4lfyX2eyDXBruQ,2402
|
|
846
|
+
mindspore/device_context/gpu/op_precision.py,sha256=hgGmw8rUn_eSEezU4Vhzdl9oGsnxbs3-iPDBQO-VwH8,2445
|
|
847
|
+
mindspore/device_context/gpu/op_tuning.py,sha256=T0LDGHo5zIELsiKhf8CFeHkcLOYBqin4_Z32evk3378,10366
|
|
834
848
|
mindspore/experimental/__init__.py,sha256=fAu6XFdC1AsA7J0EPNt4G7MVyaInThD4qr0Q-gKwxgg,859
|
|
835
849
|
mindspore/experimental/map_parameter.py,sha256=LIsx0mIXhbTOJKz4sSKq7tU8rXWjVnjt6sv8qUuc9J0,12670
|
|
836
850
|
mindspore/experimental/es/__init__.py,sha256=MPxbFv92359B15fWgMG9q7FPhVHFkxZG4ER9pHs_rnU,1022
|
|
837
851
|
mindspore/experimental/es/embedding_service.py,sha256=qP2sI67eHwLLQoW1Gm0xDKsZFLUZlEit5kkojULABBA,45281
|
|
838
852
|
mindspore/experimental/es/embedding_service_layer.py,sha256=PA4heWUPlN1rtj2a0dI5QwC2RnUIO8vOzgLg7fHlW1c,29633
|
|
839
|
-
mindspore/experimental/llm_boost/__init__.py,sha256=
|
|
840
|
-
mindspore/experimental/llm_boost/register.py,sha256=
|
|
853
|
+
mindspore/experimental/llm_boost/__init__.py,sha256=8pWxDAySfKE7CJiNbJ3LUHDg3F6Ql3WoQVJR-xZ570U,966
|
|
854
|
+
mindspore/experimental/llm_boost/register.py,sha256=CVkrk2pjhauWlFRIv50QPMneWBcHkf9OjSe1Y9aSg_Y,3888
|
|
841
855
|
mindspore/experimental/llm_boost/utils.py,sha256=KwcToENydN4YNvKiaUU_hv0SgLX2qaHiPTA57e8ZdAY,1033
|
|
856
|
+
mindspore/experimental/llm_boost/ascend_native/__init__.py,sha256=-MtkSr1WgWDlCeONYnXrEJHNfUhRirAXHTDp78uXvLc,914
|
|
857
|
+
mindspore/experimental/llm_boost/ascend_native/llama_boost_ascend_native.py,sha256=9rqo1O77IUpqk6m9MvA8uaRyAyd5cyDcVxgkfyZhhtk,11901
|
|
858
|
+
mindspore/experimental/llm_boost/ascend_native/llm_boost.py,sha256=07D4WnM91RkuKaezWuNX-jx10yT-7JRFFvmkC8hRcKM,1875
|
|
842
859
|
mindspore/experimental/llm_boost/atb/__init__.py,sha256=aEJhreLNF_kFX9xm_ZIwVT1KIU4u_pxkuGgt1T3jjwo,949
|
|
843
|
-
mindspore/experimental/llm_boost/atb/boost_base.py,sha256=
|
|
844
|
-
mindspore/experimental/llm_boost/atb/llama_boost.py,sha256=
|
|
860
|
+
mindspore/experimental/llm_boost/atb/boost_base.py,sha256=AJTXzSwGo4Xaw8iYZ78wE-NoZANYY9mH30JqkZ_8F-E,15518
|
|
861
|
+
mindspore/experimental/llm_boost/atb/llama_boost.py,sha256=Y5lYAlf_8dUgbbJYvFBzM4c2POYW92kDp_pThmCcAx8,5260
|
|
845
862
|
mindspore/experimental/llm_boost/atb/qwen_boost.py,sha256=lejQ885BRDpqEJbOa6YTLXY9U_hci-dowWcEziWu7vo,4845
|
|
846
863
|
mindspore/experimental/optim/__init__.py,sha256=SKb19syLqtHGXcn6L7yNDkf92PpHgNeVkesgpzooSx8,1694
|
|
847
|
-
mindspore/experimental/optim/adadelta.py,sha256
|
|
864
|
+
mindspore/experimental/optim/adadelta.py,sha256=ADaN15o4nY6B9zL77xzmyFEv5IQIrUzNJldk4kH-4tA,7476
|
|
848
865
|
mindspore/experimental/optim/adagrad.py,sha256=ZbRiQj0NxiaWtWKeFJxiPzjKnfPaPBfQjL_S51IRbXs,8133
|
|
849
|
-
mindspore/experimental/optim/adam.py,sha256=
|
|
866
|
+
mindspore/experimental/optim/adam.py,sha256=cnyFhtHDvwWC47gj8mWIyU6xYjP1pMKcxgbGIXMWTA8,10234
|
|
850
867
|
mindspore/experimental/optim/adamax.py,sha256=RslJatG3b9myLyQtyOn0KVyCQDgUZVYJvXhMtrgIEuA,8402
|
|
851
868
|
mindspore/experimental/optim/adamw.py,sha256=QygHR54TKFA4ZRPgsv3RC05Bgac__0HZqfYWTI9fWE0,14835
|
|
852
869
|
mindspore/experimental/optim/asgd.py,sha256=22Lkn9CLfBLuhnSjahYvs638WOu_hlJxhVqlLd7mJUw,6690
|
|
853
|
-
mindspore/experimental/optim/lr_scheduler.py,sha256=
|
|
870
|
+
mindspore/experimental/optim/lr_scheduler.py,sha256=GJNndmYFyDgYBykFPZ56IZkXrbIWYQWA69oupjzd620,61967
|
|
854
871
|
mindspore/experimental/optim/nadam.py,sha256=fRt6frHXBSkYh9Ooj1LVP1rH5YJe-Uk19hDBXSm5N5E,7327
|
|
855
872
|
mindspore/experimental/optim/optimizer.py,sha256=TvJt8XAfwYHd7KcywY9-o4ZMVg4oEz4DeG0cRh-Py_Q,11208
|
|
856
|
-
mindspore/experimental/optim/radam.py,sha256=
|
|
873
|
+
mindspore/experimental/optim/radam.py,sha256=JyKNbcv4rBvysj2ZKj4txupH0p91ifUa-rY0NuiL9uY,9045
|
|
857
874
|
mindspore/experimental/optim/rmsprop.py,sha256=CAbs-F78-QH4wXoYlWRUp6tp2a4Jl0FtQKvI6Hiw8cw,6942
|
|
858
875
|
mindspore/experimental/optim/rprop.py,sha256=BliRsMxAF36EyUdfwUw8k_WD7tg1iomAk4jZ6cUznFk,6829
|
|
859
876
|
mindspore/experimental/optim/sgd.py,sha256=ImVVgMwtckC1yEMk4Cer6UgEffJD9BJd6vkrfkTKArI,7206
|
|
@@ -863,15 +880,15 @@ mindspore/hal/_base.py,sha256=B8f47z3AbL5lxSLOeMl9qqg6edWlxC2ONg8VEU4uVfY,1914
|
|
|
863
880
|
mindspore/hal/_cpu.py,sha256=h-0j3mz1c79TA_KZL3DpdWdZFfnZIEWDvP51Csvx4Hc,1897
|
|
864
881
|
mindspore/hal/_gpu.py,sha256=qsm17MRIbwJhZ_GrHn3rPIEl4i-nE6If6u8SxfW-kOo,1818
|
|
865
882
|
mindspore/hal/contiguous_tensors_handle.py,sha256=xyeoR77rNWaR9LAtKlwzwKZkJD2-0UKhMVCL1KcKvQw,7542
|
|
866
|
-
mindspore/hal/device.py,sha256=
|
|
867
|
-
mindspore/hal/event.py,sha256=
|
|
868
|
-
mindspore/hal/memory.py,sha256=
|
|
869
|
-
mindspore/hal/stream.py,sha256=
|
|
883
|
+
mindspore/hal/device.py,sha256=OuiRzEcEW-4uLroZlcUcZzUooM6bVqgZoYkz6c1Izkc,13762
|
|
884
|
+
mindspore/hal/event.py,sha256=uOhWZTD24Qh3Ky0F8eFeIFUOZTyTWLW1zVF-BdFxvv0,7500
|
|
885
|
+
mindspore/hal/memory.py,sha256=o94FXpBt6QVWA9c1e_vOq9JN4GkXbJpig6vzz5OWLGU,16061
|
|
886
|
+
mindspore/hal/stream.py,sha256=BkQnhuerKVd2U0FClkAwbRtZVxWFeSngmau7Bto7XKI,16020
|
|
870
887
|
mindspore/include/OWNERS,sha256=MCE5SqRIm1sTkDeH2dhooFk7E3YVhphosnH0IrsF4aY,90
|
|
871
888
|
mindspore/include/api/allocator.h,sha256=5SOStfZXpxSANnI_IWuOOhX8vkgVJjsqJUtJCFBkN1g,3283
|
|
872
889
|
mindspore/include/api/cell.h,sha256=7wHPMzKfcaB6KvDPfAoflY8VeOP8PYDEu-fJ4OOZGZw,2806
|
|
873
890
|
mindspore/include/api/cfg.h,sha256=Y85AX4ap-N2JK1zziU1JZ6SjB2fnXvYyZulsBlSze4Q,3148
|
|
874
|
-
mindspore/include/api/context.h,sha256=
|
|
891
|
+
mindspore/include/api/context.h,sha256=5HqcCcUqkc-5WDo-MNVpcpc_ORBuBBKqAqMbTrHOCnE,20852
|
|
875
892
|
mindspore/include/api/data_type.h,sha256=28uEpK1sJT-gKSEr0M6xju6k99H0PwpQDjDtZh9PYls,1400
|
|
876
893
|
mindspore/include/api/delegate.h,sha256=xGQQoWrTVY-zsSbNb8KOi3Fi6_beqB_R4FyEESNCkto,6623
|
|
877
894
|
mindspore/include/api/delegate_api.h,sha256=1ORFdZaPf-rQbqlRei2HczXy_akJwObz8pyy9vZ2zIE,2831
|
|
@@ -913,52 +930,53 @@ mindspore/include/dataset/vision_lite.h,sha256=ytUaNrWLrMDgno5e87VjTFRWA7WRylD8C
|
|
|
913
930
|
mindspore/include/mindapi/base/format.h,sha256=Ii3ZVz8cUMfVkEjoba9FYMzSPEdp-uZQzhHGEHOLczs,3697
|
|
914
931
|
mindspore/include/mindapi/base/type_id.h,sha256=dkilZJqERZYUVRNUbYj-2jE2jvglTiJ_hseEfOZrU-8,3501
|
|
915
932
|
mindspore/include/mindapi/base/types.h,sha256=zSzKZDzt0JtH00KlKvOv0t-bZNFmml5iedkdEjZyiX0,2844
|
|
916
|
-
mindspore/lib/libavcodec.so.59,sha256=
|
|
917
|
-
mindspore/lib/libavdevice.so.59,sha256=
|
|
918
|
-
mindspore/lib/libavfilter.so.8,sha256=
|
|
919
|
-
mindspore/lib/libavformat.so.59,sha256=
|
|
920
|
-
mindspore/lib/libavutil.so.57,sha256=
|
|
921
|
-
mindspore/lib/libdnnl.so.2,sha256=
|
|
933
|
+
mindspore/lib/libavcodec.so.59,sha256=FfZiLROsSCHh7OUj4iJFlKgFOXkzcOS6LDsYPC1DrVU,12512544
|
|
934
|
+
mindspore/lib/libavdevice.so.59,sha256=WzsoCEEm-a0Yh0cfGuJwRurnbrpPgr98MiNIrEGLng8,59192
|
|
935
|
+
mindspore/lib/libavfilter.so.8,sha256=d6fpWKzkxatD5VBuhvmcm3ojtQ7MxEoFgQA72rnWrxc,4183864
|
|
936
|
+
mindspore/lib/libavformat.so.59,sha256=skZ_Jp3EyW9FGCJntmahcMnrIGsZXw3eBBwSNIhXN7A,2717680
|
|
937
|
+
mindspore/lib/libavutil.so.57,sha256=LdY5uWk4iOpaRvdndnk4m5XPNv7IQbxP3z-BwxGv42o,749104
|
|
938
|
+
mindspore/lib/libdnnl.so.2,sha256=Qdr8i9HZmlVAh47VZhYmKlSjo6mVyHKJ08Kt3qz2nJI,41195128
|
|
922
939
|
mindspore/lib/libicudata.so.69,sha256=jd13ByEo_4PXFey2q49rL8AHOvyrEjsja-MJ-mEGVUM,168512
|
|
923
940
|
mindspore/lib/libicui18n.so.69,sha256=6TnAV1GveA3Qf3lweMknE-mfvDOqShlRFWP7mCgrdLU,3344352
|
|
924
941
|
mindspore/lib/libicuuc.so.69,sha256=2bZpyoXq7fLIfpWVoDi8rEWKvftqr4c4pIumBtaDDc0,2152272
|
|
925
942
|
mindspore/lib/libjemalloc.so.2,sha256=Wt45IfQmDrVANmg6c0EvVJW1kDGpLYPSNSkSrkuvJv8,744280
|
|
926
943
|
mindspore/lib/libmindspore_address_sorting.so.15,sha256=qfIDo51O0AOKG_IJcJwvNtANQjnTjFRlujMRoA3oqSY,13984
|
|
927
|
-
mindspore/lib/libmindspore_backend.so,sha256=
|
|
928
|
-
mindspore/lib/libmindspore_common.so,sha256=
|
|
929
|
-
mindspore/lib/libmindspore_core.so,sha256=
|
|
930
|
-
mindspore/lib/libmindspore_glog.so.0,sha256=
|
|
931
|
-
mindspore/lib/libmindspore_gpr.so.15,sha256=
|
|
932
|
-
mindspore/lib/libmindspore_grpc++.so.1,sha256=
|
|
933
|
-
mindspore/lib/libmindspore_grpc.so.15,sha256=
|
|
934
|
-
mindspore/lib/
|
|
935
|
-
mindspore/lib/libmindspore_ops.so,sha256=MuMcTwAOUsaSAgTK2oB7rZRXOi4gEdgr0cCcAwpZiS4,118750352
|
|
944
|
+
mindspore/lib/libmindspore_backend.so,sha256=Ss68eDF0smAPiC_KXO_rfouemESucLKHu2tgR-i0EVk,149741872
|
|
945
|
+
mindspore/lib/libmindspore_common.so,sha256=CPOr9-xaGx6o78hCzMaCiH000Ps8GzdhTMkgQbQpt9g,8066624
|
|
946
|
+
mindspore/lib/libmindspore_core.so,sha256=SkXxkyEUgDq_DC42yPLyXdEYu1afiPJkoRsbeSB6mUI,11779864
|
|
947
|
+
mindspore/lib/libmindspore_glog.so.0,sha256=RN2hYr_hKutmPEOHGO7uez6Ij7JVDErk3mrsFxVJq28,157712
|
|
948
|
+
mindspore/lib/libmindspore_gpr.so.15,sha256=fep-1tS-HDP6HnVBiR1YMuBrmzlELdWM3tjz8iiVfVk,637648
|
|
949
|
+
mindspore/lib/libmindspore_grpc++.so.1,sha256=AWSICp7DBL7uel6gTnFiO2obgl2B7YKmEma_B3nOdD0,620360
|
|
950
|
+
mindspore/lib/libmindspore_grpc.so.15,sha256=_BVRyUpKlsbY34IYswXbVRcZL2AcNRHmVha7IpSSpSk,8056480
|
|
951
|
+
mindspore/lib/libmindspore_ops.so,sha256=L0OlaGUZ4KpsmyFyZwYt2eV-IaTuJuGkkVp40fo55dE,159199504
|
|
936
952
|
mindspore/lib/libmindspore_upb.so.15,sha256=Y0y1WekPgQD_dhn4BiBqHNXtdbAsovPNQp6iQUQDGtk,165912
|
|
937
|
-
mindspore/lib/libmpi_adapter.so,sha256=
|
|
938
|
-
mindspore/lib/libmpi_collective.so,sha256=
|
|
939
|
-
mindspore/lib/libnnacl.so,sha256=
|
|
940
|
-
mindspore/lib/libopencv_core.so.4.5,sha256=
|
|
941
|
-
mindspore/lib/libopencv_imgcodecs.so.4.5,sha256=
|
|
942
|
-
mindspore/lib/libopencv_imgproc.so.4.5,sha256=
|
|
943
|
-
mindspore/lib/libps_cache.so,sha256=
|
|
944
|
-
mindspore/lib/libswresample.so.4,sha256=
|
|
945
|
-
mindspore/lib/libswscale.so.6,sha256=
|
|
953
|
+
mindspore/lib/libmpi_adapter.so,sha256=R4nJqpHmtkZO5nuAa9jFTBn6v-y9PySBOaLCeUDsy9A,59200
|
|
954
|
+
mindspore/lib/libmpi_collective.so,sha256=TVwaXcGv-KzAXbp1j1MucEP9SKD0sfgfGvkHOBtJQDI,75584
|
|
955
|
+
mindspore/lib/libnnacl.so,sha256=PXKIkVkQtecWIAlmxPXlYnIlOEBl3IauatGHOzCMvpw,2187656
|
|
956
|
+
mindspore/lib/libopencv_core.so.4.5,sha256=5kki0jKNEElaBmmBY8SIBBRS7VZ3xwkK89TFkvvexEo,4479480
|
|
957
|
+
mindspore/lib/libopencv_imgcodecs.so.4.5,sha256=YBc_VOz328mmA20VK_hBU8QKRTvH9cXf1OuFNSH86e0,1523560
|
|
958
|
+
mindspore/lib/libopencv_imgproc.so.4.5,sha256=MEPmarukOB7s1ce53adShmeltPPK40uUDrQhw0Fqx2c,6494584
|
|
959
|
+
mindspore/lib/libps_cache.so,sha256=3JcQjj81B-v97M9QcA0a-YPKzdodqgGc3LYRGauWaWM,59200
|
|
960
|
+
mindspore/lib/libswresample.so.4,sha256=pOz5cfdC415PB4MyVKhjh6SkFyY_X05qOtH4mSrovhg,100152
|
|
961
|
+
mindspore/lib/libswscale.so.6,sha256=oq5adHQoJQrUrMoGj_g-8uPwQ0MYgUim6eFxjVMdApw,522040
|
|
946
962
|
mindspore/lib/libtinyxml2.so.8,sha256=jD03G8JofpaxdwqEvAjyTPyddh-PZcJ1H4iQ5S3TKlo,96256
|
|
947
|
-
mindspore/lib/plugin/libmindspore_ascend.so.2,sha256=
|
|
948
|
-
mindspore/lib/plugin/libmindspore_gpu.so.10.1,sha256=
|
|
949
|
-
mindspore/lib/plugin/libmindspore_gpu.so.11.1,sha256=
|
|
950
|
-
mindspore/lib/plugin/libmindspore_gpu.so.11.6,sha256=
|
|
963
|
+
mindspore/lib/plugin/libmindspore_ascend.so.2,sha256=RdUwCaLg7UxW3Gz3l03KBEbWI0w6ZhmP1k1Cr-4GfYc,174144296
|
|
964
|
+
mindspore/lib/plugin/libmindspore_gpu.so.10.1,sha256=Y5Gy1AJC8NygInK0e-mjCwq7zxh6069B8A2srssDAJM,117962936
|
|
965
|
+
mindspore/lib/plugin/libmindspore_gpu.so.11.1,sha256=UOddhmdyIQrx8nGuE2Hz1aBiPCmk__ZzTWxxopMGYUg,121534888
|
|
966
|
+
mindspore/lib/plugin/libmindspore_gpu.so.11.6,sha256=rhGYFWObVro2YSI0wZBJeZzAlbHfhQ4cbI_hp4Y-cXE,123169192
|
|
951
967
|
mindspore/lib/plugin/ascend/libakg.so,sha256=e6RpNoL6gEOzOhKmq60sxHGELclXE-TmoIQ_ZTQ0GI0,39878904
|
|
952
|
-
mindspore/lib/plugin/ascend/libascend_collective.so,sha256=
|
|
953
|
-
mindspore/lib/plugin/ascend/libdvpp_utils.so,sha256=
|
|
968
|
+
mindspore/lib/plugin/ascend/libascend_collective.so,sha256=vuafcgDvlesd9YpOFHfBeI42kj03A77gpEyofVtefrg,75584
|
|
969
|
+
mindspore/lib/plugin/ascend/libdvpp_utils.so,sha256=Th1c0hqi-olT6Zad_lRJ88gHsEtuha01iqP9-rmig-0,1428312
|
|
954
970
|
mindspore/lib/plugin/ascend/libhccl_plugin.so,sha256=b-gTlSajVo84nUPU0NWbpHsB8KIdg1_cKc4XdJmIiTM,50928
|
|
955
|
-
mindspore/lib/plugin/ascend/liblowlatency_collective.so,sha256=
|
|
956
|
-
mindspore/lib/plugin/ascend/libmindspore_cpu_kernels.so,sha256=
|
|
957
|
-
mindspore/lib/plugin/ascend/libmindspore_internal_kernels.so,sha256=
|
|
958
|
-
mindspore/lib/plugin/ascend/
|
|
971
|
+
mindspore/lib/plugin/ascend/liblowlatency_collective.so,sha256=E1C_nxfX5wkmO-wCqV80tTYBdkI8pt0X_B0c1-rEA50,96064
|
|
972
|
+
mindspore/lib/plugin/ascend/libmindspore_cpu_kernels.so,sha256=dit9AdMLsQSnrisS6p4VD7rxczy4qgMGuQH-hc6nDmk,41089184
|
|
973
|
+
mindspore/lib/plugin/ascend/libmindspore_internal_kernels.so,sha256=78Bz3gzyjzPHzYffD1hW3e8NzFnxpGyxJYRiodSw4MI,5289792
|
|
974
|
+
mindspore/lib/plugin/ascend/libms_ascend_native_boost.so,sha256=4-8g0a1xcAW1SlUsAgcyfv5hqKDhAXgn2QI6DLPGYPg,251712
|
|
975
|
+
mindspore/lib/plugin/ascend/libms_atb_boost.so,sha256=JvECFJ2NTQFITn_jTf7YUfPAZyk7yl9e_qEsDrIB2vY,612168
|
|
959
976
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend310/aic-ascend310-ops-info.json,sha256=awy4L9tdj3pGXrYdMGEnXnduZIoGGmnvucUhyYW4fJw,3006
|
|
960
977
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json,sha256=8N0F4jrLQwlXO3mnacqVYFw35F8rnTcWVQPAlbMsJ6w,3896
|
|
961
978
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json,sha256=Vsz6BRCCfUqV0STiJroW5UuCh7r3UVdVad0033GUIBk,48659
|
|
979
|
+
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend910_93/aic-ascend910_93-ops-info.json,sha256=Vsz6BRCCfUqV0STiJroW5UuCh7r3UVdVad0033GUIBk,48659
|
|
962
980
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json,sha256=Vsz6BRCCfUqV0STiJroW5UuCh7r3UVdVad0033GUIBk,48659
|
|
963
981
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/add_dsl.py,sha256=eoqW5IzUFHIQwTvmqjADOufEbt5itL1GLyskKL--sGg,1694
|
|
964
982
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/add_tik.py,sha256=2ulSqSwQAh6KiBd28cGJRwii995CwR9sEaCKsOEfdhU,2226
|
|
@@ -974,19 +992,19 @@ mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/vector_core/tbe/custom_aic
|
|
|
974
992
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/vector_core/tbe/custom_aicore_ops_impl/kv_cache_mgr.py,sha256=sAlWtQbwloWa-tkS8QZzT0HdxwSFmjW1vexaaNWJJNo,11160
|
|
975
993
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/vector_core/tbe/custom_aicore_ops_impl/matmul_tik.py,sha256=B33PG0W5QnJeqTQ1jrB-uU3VKz-ASTjIwAMlqe8CFkA,9975
|
|
976
994
|
mindspore/lib/plugin/ascend/custom_aicore_ops/op_proto/libop_proto.so,sha256=CzJHdSdgrsrNu4ldO8XeegMz4SV5bs8c7N2V6y2nAsk,34624
|
|
977
|
-
mindspore/lib/plugin/ascend/custom_aicpu_ops/op_impl/cpu/aicpu_kernel/impl/libcust_cpu_kernels.so,sha256=
|
|
995
|
+
mindspore/lib/plugin/ascend/custom_aicpu_ops/op_impl/cpu/aicpu_kernel/impl/libcust_cpu_kernels.so,sha256=dit9AdMLsQSnrisS6p4VD7rxczy4qgMGuQH-hc6nDmk,41089184
|
|
978
996
|
mindspore/lib/plugin/ascend/custom_aicpu_ops/op_impl/cpu/config/cust_aicpu_kernel.json,sha256=a_ftfC0BPL_jXHCN5YsZ5pNX1-MHzijXa02kcv_-g8A,469922
|
|
979
|
-
mindspore/lib/plugin/ascend/custom_aicpu_ops/op_proto/libcust_op_proto.so,sha256=
|
|
980
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910/version.info,sha256=
|
|
997
|
+
mindspore/lib/plugin/ascend/custom_aicpu_ops/op_proto/libcust_op_proto.so,sha256=vTuWVtA-iyxjvmhfO4DlzS65Yy2xSxw_lRbRsdZ3qPg,4921152
|
|
998
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910/version.info,sha256=iG4Vox5o4POW2iutLKfh1pXlkBoYU-XI_AfRn9bKnwM,40
|
|
981
999
|
mindspore/lib/plugin/ascend/custom_ascendc_910/framework/npu_supported_ops.json,sha256=9qAkwa5X6XbcmiCp9JAuy93W3PjP4bdug1bzo2yPTGk,140
|
|
982
1000
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/include/aclnn_decoder_kv_cache.h,sha256=aDA-THQjQsjE5yPpc1EVKMSC6pZW2MX6QWljAu1Y09A,1375
|
|
983
1001
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/include/aclnn_prompt_kv_cache.h,sha256=PjP_geKCBzKUp_CuIdDzjVMSERJuGKhR4nLSuaBouwY,1369
|
|
984
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/lib/libcust_opapi.so,sha256=
|
|
1002
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/lib/libcust_opapi.so,sha256=PGdNOtb2ISN8DCK1NOrTncmO0tOmmG4DqsI6NB4uDHI,27248
|
|
985
1003
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json,sha256=0ESo_AVLwigUc7NvLHxnWCd2FQyY66ITVErIY6RwFjc,6073
|
|
986
1004
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/decoder_kv_cache.cpp,sha256=g6De-hkDxcr_zMfJD-vbsds8NcM0ACDVQeS5RXHKjcg,6596
|
|
987
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/decoder_kv_cache.py,sha256=
|
|
1005
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/decoder_kv_cache.py,sha256=q6o_SsfJPA35J_Cd0lU9JO19pIZoL7fLILYJeO1hMrM,10417
|
|
988
1006
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/prompt_kv_cache.cpp,sha256=wNQ_MUnHgTXRq-4O8t9R98z_I0s-WQBiEftGGFsd8R4,10224
|
|
989
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/prompt_kv_cache.py,sha256=
|
|
1007
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/prompt_kv_cache.py,sha256=UA-QmhCjo64KYwEu0jTpdayxRcZyDGzj2MM27R_bZvE,10406
|
|
990
1008
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.json,sha256=z-XspI-zj6jN4mVnaXoOSbxgv3wgm4aPO7nfboT59pw,3318
|
|
991
1009
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.o,sha256=TfFAZM8gniqT8vZ29Ld71i-TXKXwe2xWwy_DPHrCfMY,11248
|
|
992
1010
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.json,sha256=MxkuxrOlurIJaLWggfAPWSNnSrAmUMnVv6nfylDY8hs,3315
|
|
@@ -1022,24 +1040,25 @@ mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend
|
|
|
1022
1040
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json,sha256=rvgKWEtMoGO7PUCHrp7B9uihTta3aC7rITArYSzBp0Y,11793
|
|
1023
1041
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/config/ascend910/decoder_kv_cache.json,sha256=rOy-ME6RAiZDGtqh61XcTjgSge1bkgjwZpS7d7NEUY8,23918
|
|
1024
1042
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/config/ascend910/prompt_kv_cache.json,sha256=I-B2JFIFHs3VcsiC3oOuY_wYqYoJiKm_me-n1TsXHU8,23870
|
|
1025
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/liboptiling.so,sha256=
|
|
1026
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/lib/linux/x86_64/libcust_opmaster_rt2.0.so,sha256=
|
|
1043
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/liboptiling.so,sha256=bAFymx4TJCdf1zE8dgSQ_jUUi4NykmooU00BTXIQnYc,190488
|
|
1044
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/lib/linux/x86_64/libcust_opmaster_rt2.0.so,sha256=bAFymx4TJCdf1zE8dgSQ_jUUi4NykmooU00BTXIQnYc,190488
|
|
1027
1045
|
mindspore/lib/plugin/ascend/custom_ascendc_910/op_proto/inc/op_proto.h,sha256=v3Gam83uGsoJPRew4qmTy53VFnj73N83JXSbH_JNrNw,1005
|
|
1028
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910/op_proto/lib/linux/x86_64/libcust_opsproto_rt2.0.so,sha256=
|
|
1029
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/version.info,sha256=
|
|
1046
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910/op_proto/lib/linux/x86_64/libcust_opsproto_rt2.0.so,sha256=ol1qcjNfnh9PvGalqU2Ph8r9rWe0tY8IRCnMoCDm4qQ,202776
|
|
1047
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/version.info,sha256=iG4Vox5o4POW2iutLKfh1pXlkBoYU-XI_AfRn9bKnwM,40
|
|
1030
1048
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/framework/npu_supported_ops.json,sha256=tFj0BWiJ_tVJOvrhthBOJjQTJ513udgA6lydRVrODkg,204
|
|
1031
1049
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/include/aclnn_all_finite.h,sha256=alUW9o1jNw038bn_h2sbFynM1AkepqUABfqVpbPw1qE,999
|
|
1032
1050
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/include/aclnn_decoder_kv_cache.h,sha256=aDA-THQjQsjE5yPpc1EVKMSC6pZW2MX6QWljAu1Y09A,1375
|
|
1033
1051
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/include/aclnn_prompt_kv_cache.h,sha256=PjP_geKCBzKUp_CuIdDzjVMSERJuGKhR4nLSuaBouwY,1369
|
|
1034
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/lib/libcust_opapi.so,sha256=
|
|
1052
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/lib/libcust_opapi.so,sha256=4YiK05i5QyO6OdzHHaTCBG3d4tCxbBK2XBSLvOf2DlI,31632
|
|
1035
1053
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json,sha256=xvf5zz_wQXBblsffUNKbbWSIKq0D2ZqVr-I2SDXKRL4,7123
|
|
1054
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/config/ascend910_93/aic-ascend910_93-ops-info.json,sha256=xvf5zz_wQXBblsffUNKbbWSIKq0D2ZqVr-I2SDXKRL4,7123
|
|
1036
1055
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json,sha256=xvf5zz_wQXBblsffUNKbbWSIKq0D2ZqVr-I2SDXKRL4,7123
|
|
1037
1056
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/all_finite.cpp,sha256=tzUoIhq4PmdrsnWr6CWwGNkGwrWLR9kpHTW-uXZQy5E,13166
|
|
1038
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/all_finite.py,sha256=
|
|
1057
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/all_finite.py,sha256=6L5K7CZSYLTyq-Xyc5Jl3WyH3azCHd7sLLuZIRamFQ8,9090
|
|
1039
1058
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/decoder_kv_cache.cpp,sha256=g6De-hkDxcr_zMfJD-vbsds8NcM0ACDVQeS5RXHKjcg,6596
|
|
1040
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/decoder_kv_cache.py,sha256=
|
|
1059
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/decoder_kv_cache.py,sha256=q6o_SsfJPA35J_Cd0lU9JO19pIZoL7fLILYJeO1hMrM,10417
|
|
1041
1060
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/prompt_kv_cache.cpp,sha256=wNQ_MUnHgTXRq-4O8t9R98z_I0s-WQBiEftGGFsd8R4,10224
|
|
1042
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/prompt_kv_cache.py,sha256=
|
|
1061
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/prompt_kv_cache.py,sha256=UA-QmhCjo64KYwEu0jTpdayxRcZyDGzj2MM27R_bZvE,10406
|
|
1043
1062
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.json,sha256=77fsQsLgik65NZieht1BFUIRcexjSqjx3syWR5Jaq4g,1792
|
|
1044
1063
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.o,sha256=54aX6lG3AjMAM6HhfOWxAt-Arm2aKfCZ0-l9Nun1cow,17728
|
|
1045
1064
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.json,sha256=Djm91FUkq8xxzyq1xou2-vbQX0yvtDOJwCkATsq0cww,1797
|
|
@@ -1078,6 +1097,44 @@ mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascen
|
|
|
1078
1097
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.o,sha256=xfsZx2smtrBR74smjNRJ7Lk7KVAIm9hCUYfmKb-4F4s,23976
|
|
1079
1098
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.json,sha256=pzrhXx9xrO1mLU_kEGiK0VrW8fZUd1BEgDu2u1spc0s,3536
|
|
1080
1099
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.o,sha256=MSOuYtRfDg0b_tU519JQ_tHK8o3nNmVq7EEkg3tn7ZQ,23976
|
|
1100
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.json,sha256=IpYORt5KCBDw5PVmum-RC_V9XwmNAfn_a7UjGehRWNo,1779
|
|
1101
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.o,sha256=N9AHODDJPwuw59t9esTyN7RGGQPPLY8gt6Qzj0vJ3-c,18040
|
|
1102
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.json,sha256=e72cz57mhkI2vxfWtp6mpltJmyzpP_i-qykGDuSoKvM,1784
|
|
1103
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.o,sha256=ebfcxNG6ua1M-v-LObNbtkdvQMTGNXgSXZB0M-Z8X18,18040
|
|
1104
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.json,sha256=47SUsnmFmMP-t1lRJYfviALgKqmdQ8Bw-d5KOj9rAzE,1779
|
|
1105
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.o,sha256=wnvtdfymDpbePwAO3kc4hmt7fbvoFMFKY2IeU3HlXGc,18040
|
|
1106
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.json,sha256=yH3sndg2JMMkAggsGh3Upgc971-TdhWlaL8dNpJnvdU,3306
|
|
1107
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.o,sha256=rsMTVC6UpfNpc_wen8U3IVrQ5p3r-5raN4m2KWZ7xtA,10976
|
|
1108
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.json,sha256=KWRw93urZCDm6QIIxIX8KdDNB8kIiJLkn3oetuNvnKc,3303
|
|
1109
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.o,sha256=G8awJ0WJcB8L48fufvms5WX2QRWVcH3COO4NndS7wdY,10976
|
|
1110
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.json,sha256=Mw5RrjEPkiK730sD8mReq5Y4-11js6D2vAv6wy7cv2o,3300
|
|
1111
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.o,sha256=gk-R8mQAM_hCY06Rz2Z4R4i4MQxwOJDd2Ik5BUof60c,10976
|
|
1112
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.json,sha256=VfaootB9fFh27rRMOhei4n0EX9VY9f7UjuUHGG4PO30,3297
|
|
1113
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.o,sha256=XsA1o9nO1KiPWFf8N06Ui9YT33SpTvxwBV_kMZhFtsQ,10976
|
|
1114
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.json,sha256=jQgT5mltdww8xfz6Ipox-WpU1HPaomq3yAS5_ubM0l4,3300
|
|
1115
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.o,sha256=nzP8RL6j909hmqXHcBi4Hq2vUsilBmHOFyE2UypwK98,10976
|
|
1116
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.json,sha256=npysUIHucANVP99V1wA4gosOsQDqDbaRxj9qmp0Q8vw,3300
|
|
1117
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.o,sha256=N-KdOEAXazSKhciNK7FJoMyEvyfBPaTogyvnyC96kn0,10976
|
|
1118
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.json,sha256=BNEEyV42WOMe_2iWMWAVmNyb3fNmpadEFnRi8f7R3bA,3321
|
|
1119
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.o,sha256=PgLv4V9RIwm0oPgy-1eelp5-Yrp51E5FeCQXggITq9A,10976
|
|
1120
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.json,sha256=o_Y5JvHuKlnmW1Y2kzij5ZdhUn27HPtgarYFSKmMAvo,3306
|
|
1121
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.o,sha256=TmsbWc8vnv9ia1s3cj74M5t63_md0aHFW_VrGkl4P4E,10976
|
|
1122
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.json,sha256=jqx-NEou3TwcAYKctMpwAP2lt17b9K9_0uCVoKx9rCk,3523
|
|
1123
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.o,sha256=ZPbGntvN8naGX_Q_w5INHQhocJ-mVgAC07M-m9Vb4RM,20632
|
|
1124
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.json,sha256=2DoUwx6-x-FkuGUjy6gWu9eX-luHm0wnuKb7ciB82kY,3526
|
|
1125
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.o,sha256=r0OCr7CcQv1T5yA5xYXqQ_dTzd19iBGAnpirZnnndiU,20632
|
|
1126
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.json,sha256=cv_DWFL5WxjKSXPnjf-RBf0pvacP4fs35UF6YDcnoZQ,3520
|
|
1127
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.o,sha256=eoTb1FJGHMgmA8-007mhM1w9xaEKDzydukUfZ_GCv0o,20632
|
|
1128
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.json,sha256=mY3YcqSZ-fXdIrT2SXXZHJXeyYunHnWctpH9U4zkehw,3529
|
|
1129
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.o,sha256=hxhFt07eDfpK9NWbQEz_kMuLcCvTT6Zu-Vpr8gCjaIg,20632
|
|
1130
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.json,sha256=j8ZNV8EOX2onb7frqD7xC2usnBcmMt7PwBflyiul7Cg,3544
|
|
1131
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.o,sha256=P2vsT40ZVDeT3u-uRlpKfu78OygIEgWgGPg0zQIkymo,20632
|
|
1132
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.json,sha256=kWXhgR7Rf6EMs43hg-_jrrazOh3PPCahpUBLIUH7Imw,3523
|
|
1133
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.o,sha256=CLdGxkOlql-OIA3l4kHAnCqF7ty0xXJBZ4TkR5803hk,20632
|
|
1134
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.json,sha256=LgQGd7cShWkQ2QT3Jfp_Szm5yWHV41qRuVTUU1n1p1s,3529
|
|
1135
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.o,sha256=oKgNUqUUQ2jZf6fdL43PJk2TAL60w4ShDygEGD-Bjt0,20632
|
|
1136
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.json,sha256=5oXgL9SX3UL6UyyPb0RDGXs1ih257NI2GBgefLZeXUE,3523
|
|
1137
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.o,sha256=AKMAugscGljbM6OjcH-js0CYw_UCU5MkPRGxKSxxyzU,20632
|
|
1081
1138
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.json,sha256=w0swbIYELraLFYtOtzde189un78kEc7PYFfaJ-bXIJY,1777
|
|
1082
1139
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.o,sha256=N9AHODDJPwuw59t9esTyN7RGGQPPLY8gt6Qzj0vJ3-c,18040
|
|
1083
1140
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.json,sha256=BTe0CVN-_cv5w2hNOQvzdLvb8GLTSelWABvaODQ6e7g,1782
|
|
@@ -1120,16 +1177,20 @@ mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/confi
|
|
|
1120
1177
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json,sha256=kENDY6DOkRN08TLmKXL-IyFVQxH50_bgSzrijZXmrNE,13661
|
|
1121
1178
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend310p/decoder_kv_cache.json,sha256=ScbXEgugEKTJ5ytb59_mV-AzVNRI2U1P2NIfYDDZWtA,23926
|
|
1122
1179
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend310p/prompt_kv_cache.json,sha256=WHcxTzwvDCyyb60M19ulBZJ9GXGLKkxzHjPnoK21iJM,23878
|
|
1180
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/all_finite.json,sha256=-uIP_84Di2c6tTDibK2XjSg_MxdAKUEQHo56qpu3ETk,3911
|
|
1181
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/binary_info_config.json,sha256=fCWDcqkgb4pAHTC3LgI5hDJpnt3stYC8aVrElZVKlP0,13737
|
|
1182
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/decoder_kv_cache.json,sha256=ovBCHoUPIBXqKYBQqnH2QumtNMFqgtp8bmAZ1-BaCwQ,23942
|
|
1183
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/prompt_kv_cache.json,sha256=aNP2Avb_NyuMPaQ59m02ADBzYNZ8D2z8gmJwT2FxGAg,23894
|
|
1123
1184
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910b/all_finite.json,sha256=xTOcy7CHAX6mP7p5OxL0I0JKmELHUV8dSEBXZaZEWjM,3905
|
|
1124
1185
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json,sha256=aSSae2poDZcv_QWK4ZPcPz1z3foyvlGnSPptMH-A2Ew,13661
|
|
1125
1186
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910b/decoder_kv_cache.json,sha256=2CQGKdceR6E4zTftIUoO7EKJpCGq3yhDCdpi2-d0z9Q,23926
|
|
1126
1187
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910b/prompt_kv_cache.json,sha256=FHC44MmY0FwiUfnM4O7D-j9ZK8HMBYwd-a04AhM3igQ,23878
|
|
1127
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/liboptiling.so,sha256=
|
|
1128
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/lib/linux/x86_64/libcust_opmaster_rt2.0.so,sha256=
|
|
1188
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/liboptiling.so,sha256=5K0rbtmK8Pq97C66lfffoLIXD4rwTEIrjxmDGmWsPkk,210960
|
|
1189
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/lib/linux/x86_64/libcust_opmaster_rt2.0.so,sha256=5K0rbtmK8Pq97C66lfffoLIXD4rwTEIrjxmDGmWsPkk,210960
|
|
1129
1190
|
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_proto/inc/op_proto.h,sha256=UpAERotbgAz6Exhzs3Sc3GrqT3Gs3_9GmTpCxcEugh8,1150
|
|
1130
|
-
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_proto/lib/linux/x86_64/libcust_opsproto_rt2.0.so,sha256=
|
|
1191
|
+
mindspore/lib/plugin/ascend/custom_ascendc_910b/op_proto/lib/linux/x86_64/libcust_opsproto_rt2.0.so,sha256=OEq9It20mv9FgGUDVTNcCGHp7QZvEiWqluKXyPtMsAY,223248
|
|
1131
1192
|
mindspore/lib/plugin/ascend/custom_compiler/OWNERS,sha256=vxgi_f3bvwvNJQ1DFnNYEVBW8npPYhUCxmwqCY00y8Y,122
|
|
1132
|
-
mindspore/lib/plugin/ascend/custom_compiler/setup.py,sha256=
|
|
1193
|
+
mindspore/lib/plugin/ascend/custom_compiler/setup.py,sha256=Kwwur9IER8gLK-UUChwId5y761HIkYD0W80GlrdKTHQ,13813
|
|
1133
1194
|
mindspore/lib/plugin/ascend/custom_compiler/start.sh,sha256=DgZL5lXCFRale0i6o4paaQlPVcs6sL33YBpatkHAeGk,1008
|
|
1134
1195
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/set_env.sh,sha256=jSsAyiDl0kDMc953Qw67603Nll_lPlHpM4uu7C3LOCM,1427
|
|
1135
1196
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/bin/DeviceBin,sha256=aYGQ8tlgk1vxO4JK6HELODEf_mK4FiygTpespI9_szA,335064
|
|
@@ -1168,7 +1229,7 @@ mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/configs/platform_configs/
|
|
|
1168
1229
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/configs/platform_configs/Hi3796CV300ES.ini,sha256=hM2JNoTx9b22SNXbNUMcfkpr32RI_FFryyU8tJeLIp8,5499
|
|
1169
1230
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/configs/platform_configs/SD3403.ini,sha256=JTJyEyjDH9krEkXSWDc8vGvBM3bBdrcT7kTkq6Z0rAc,5868
|
|
1170
1231
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/device/ascend310p/bin/ascend310p.bin,sha256=QIzWUgvmz6senxLSN4LTG79Rptcd5gr1td_C5A04vqM,89376445
|
|
1171
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/device/ascend910b/bin/ascend910b.bin,sha256=
|
|
1232
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/device/ascend910b/bin/ascend910b.bin,sha256=UfjIkxzqw_l9TY_MuRIVMHdgLSYSGqnW32UeJlrpfSQ,51022666
|
|
1172
1233
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/host/libasdops_cann_host.so,sha256=nFnuoDwF3VB9NWaUcEeg6sCrO7J8CSQOFXn2xTrJJO8,239544
|
|
1173
1234
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/host/libasdops_host.so,sha256=WPyQPTVb3l7Fd7tFbQWhFtQ2U9cLfxRAZ1ymmnpVgTk,5631120
|
|
1174
1235
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/kernel_info.h,sha256=FrT5QGg8loinnLnlC3s4SxhJ2QqAapIazbNdPPyI-aI,3347
|
|
@@ -1257,187 +1318,85 @@ mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libasdops.so,sha256=w
|
|
|
1257
1318
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libasdops_static.a,sha256=v6_NhnKBd5zcR2m4pcrytT3VeXcVKM0BcWqDpwa0VyE,2058382
|
|
1258
1319
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/liblcal.so,sha256=HsdmLtgM6dFcBoGRff3fsoNqzPZ6xA4tZ7lXlTDav5I,6776744
|
|
1259
1320
|
mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/liblcal_static.a,sha256=IBiRg_sZjXzdDna-SdHsjg2Rgb5-YuvgaSS3khOECo4,7001312
|
|
1260
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1261
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1262
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1263
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1264
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1265
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1266
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1267
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1268
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1269
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1270
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/
|
|
1271
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1272
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1273
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1274
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1275
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1276
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1277
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1278
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1279
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1280
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1281
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1282
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1283
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1284
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1285
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1286
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1287
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1288
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1289
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1290
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1291
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1292
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1293
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1294
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1295
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1296
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1297
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1298
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1299
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1300
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1301
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1302
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1303
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1304
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1305
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1306
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1307
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1308
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1309
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1310
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1311
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1312
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1313
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1314
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1315
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1316
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1317
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1318
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1319
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1320
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1321
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1322
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1323
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1324
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1325
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1326
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1327
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1328
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1329
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1330
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1331
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1332
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1333
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1334
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1335
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1336
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1337
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1338
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/
|
|
1339
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/mul_kernel.h,sha256=rcKCT1lnQBpP_nZcHIb8zJSsW68b2_hyhdvuyC8Gzqs,2154
|
|
1340
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_binary/kernel/or_kernel.h,sha256=FTUJx9uxcYxsVKnjQStRv2oD1GOaus7ZJeZHZdg1q2s,1565
|
|
1341
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/abs_impl.h,sha256=kwpoq5o56VnHUOf24Scum9ScKSG8GwPHlj88nj6Q-p4,1045
|
|
1342
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/elewise_unary_impl.h,sha256=LXnVPAMq6qofG_MTJIZiTZOt7BBWqN19CESDmEBtAX0,1757
|
|
1343
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/elewise_unary_tiling.h,sha256=2ktuUo_oqUInVlMcgXS1GvAAfr5H00dV-K8pcN53ZMo,984
|
|
1344
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/exp_impl.h,sha256=Hmj4WgBXT5axNxGc_n-r3x5wc5aZxwA1OUh7HMuJoRQ,1087
|
|
1345
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/ln_impl.h,sha256=1FRnIMFeS6cGwd5Hy28M17sSA6jk6aHFvZP9EGYf2RU,1039
|
|
1346
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/not_impl.h,sha256=H3rgPrMBYp3_7yAP8crsSQ_oJ6Np15u1bgjurI3XuZk,1045
|
|
1347
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/reciprocal_impl.h,sha256=llQAjz7vXljipK_nk3TA99rnQsPnke5KrPMTSDx-Kpg,1087
|
|
1348
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/relu_impl.h,sha256=I81UGvVlBuvUi6AHlwDZtjFhB8jEYrn_4l0Nwdo_rQ0,1051
|
|
1349
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/rsqrt_impl.h,sha256=zNtyQptvkBhhQrlrg6-d9_kDMa9QGgT8jAZV-JAZQVw,1057
|
|
1350
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/sqrt_impl.h,sha256=gYOUrxp92YtnPc71wg1MPRKKY-SOZC6ChqzGBt1z0fQ,1051
|
|
1351
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/abs_kernel.h,sha256=7lpg7X66U7ANDv9B2V-iRFSd3lf16pmyZC9tzj6r7NA,1533
|
|
1352
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/elewise_unary_base.h,sha256=dN-jBz7mi0iPXc4gqyVrKwNuHkxfgaJ9QmWSLqXovKI,4933
|
|
1353
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/elewise_unary_kernel.h,sha256=BKenxLMZgRhoiA-iCg5Mu65oM_pZcZ4sLoTKbipA4TI,1828
|
|
1354
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/exp_kernel.h,sha256=YVxW-aVuurnKg0ra4iw8SUs24axBJByydrsdfQaUmwg,1533
|
|
1355
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/ln_kernel.h,sha256=PlegPqB_V2lwwdzgT1Gs1-yZ-s0PeHqxsifl06WNHEU,1520
|
|
1356
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/not_kernel.h,sha256=HEz4u988FsMwTNButNJAmhdYspKlh8Kk9KGszPb7QeQ,1542
|
|
1357
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/reciprocal_kernel.h,sha256=PhoAec4SwP3dfviFRmI6tUbgfAAquOg-hjFngQiJ_ig,1620
|
|
1358
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/relu_kernel.h,sha256=c1-pCPVlNldmNY1kWOcUs2irBjkb5o9OauEHyCza1hE,1834
|
|
1359
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/rsqrt_kernel.h,sha256=blxY4S3FJM994diH4Vcm-lbnY8ftk_N5CWklJJi2Jiw,1557
|
|
1360
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/elewise_unary/kernel/sqrt_kernel.h,sha256=OysA-OJmJlOq4QIeGbXc5bjQme_jeyx1OUPDFP9ntQg,1545
|
|
1361
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/flash_attention_score/flash_attention_score_impl.h,sha256=TcpqJ7dfBocHxzkaxRBnG2fGe0cdu69nSBwG4GlEX9c,2230
|
|
1362
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/lccl/lccl_wrapper.h,sha256=qdzD4HVUvdq-Zs59SgVe812oc1EeSeeC8QKJpy0VSgk,1954
|
|
1363
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/paged_attention/paged_attention_impl.h,sha256=FymrikQxoO5ioY4-yk2lE-ea06fB642jmMKqWG5t9yM,2141
|
|
1364
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/add_param.h,sha256=9avX8T6hJvNkJ7zIrsKGJZMjmwbD1nQc7UD2Xn8aaBY,1975
|
|
1365
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/attention_param.h,sha256=11zRgi009iHFDhM-GQ2kx4gAnNFYpmLW_C6fQn1Z1Es,1115
|
|
1366
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/cast_param.h,sha256=oiPvTsweTr1xKd9dwwpX9KLctDI3TQOL9-jwl0RGGcQ,896
|
|
1367
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/compare_param.h,sha256=s6jXcrh9spGD_WRzQ1RcZUFhnpnutrq27mtx74J5BME,911
|
|
1368
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/elewise_param.h,sha256=9SiZM5u7N2dk8u9ZvhefYB0eDdBmsLFeZkoypU5bmJA,1235
|
|
1369
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/grouped_matmul_param.h,sha256=2VO87wCMSxNqf5ZGrLh3qqs2nuJ1fADh35s5eEBvyyE,1347
|
|
1370
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/matmul_ext_param.h,sha256=jveikoL0pbxr09-TjDhbSWCa-YztedbkmuyIet0rS0w,1074
|
|
1371
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/matmul_qkv_param.h,sha256=8zTWYR2cWWwHpRRcmB37kUtzOF6yzQtOLRbTvy4dhWU,1490
|
|
1372
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/param/sub_param.h,sha256=5ZUrlIWcLnieQzMeWthlGJf5RqbQeyZd3gvVVGYS3g4,957
|
|
1373
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/reshape_and_cache_nz/reshape_and_cache_nz_impl.h,sha256=cP2z-0kzgRSNzPMtJ_Sajp4yfNGhWUJYoNYzkHjQejw,1535
|
|
1374
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/reshape_and_cache_nz/reshape_and_cache_nz_tiling.h,sha256=z6cT1VrWBp6d8SNkxTx0QP_7kMRujtRX4ZhG1bMyxS0,906
|
|
1375
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/reshape_and_cache_nz/kernel/reshape_and_cache_nz.h,sha256=ao3ZydDNawqLNLXcTshSF_mS0ap7iHZVp7nsKWS8Qsk,1048
|
|
1376
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/rms_norm/rms_norm_impl.h,sha256=ulBHDc2m849nApZPMRAM6v4wKE9Dh2kO9BlrLCcPw8U,1719
|
|
1377
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/sub/sub_impl.h,sha256=sc83LVKpyVjEQ9RCZZm3bNzvjnz-kr3bTyg_sBd8Tg0,1661
|
|
1378
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/sub/sub_tiling.h,sha256=osSSxZmqpa55TqdZ50p1x7uYKkdR9Hz1TXD6Z1EWi4A,976
|
|
1379
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/sub/kernel/sub_kernel.h,sha256=ABM6liFEcy-9GqchtH-jzgp1qDZL-uro7mibIP9Izgc,902
|
|
1380
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tune_repo/matmul_table.h,sha256=lqV6ofwcgHNpiiVb5A5nyyW7Bz4nQhEZ02ePF0-FFrg,26315
|
|
1381
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tune_repo/utils.h,sha256=52oTTW9s5ipx1iYy7IhB6s5PAyLpvfP5YPeqX3fz1Xw,1317
|
|
1382
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/backend.h,sha256=BJfra_gFgMPjcxTL1L4cnV2-pn0ai8quXyeOUhAt3FY,1584
|
|
1383
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/elewise_tiling.h,sha256=_5RzLLvD7GM5VEtfN6ndA3y7hlOAQd-DubnWgHbLNX0,1019
|
|
1384
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/elewise_utils.h,sha256=k0fUU321WsKvgCbEONH5A6uWwlOBvF-nOwHv1U-JCjk,1665
|
|
1385
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/math.h,sha256=u2tQlSCq39pAIZ3wFB6J76HKYOyaVzuGhSklXP07laU,794
|
|
1386
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/utils.h,sha256=8S5HS9DDk3DzFQO1lbK8-0BZNd8xiJTNhE2Jw1r-zxg,3341
|
|
1387
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log.h,sha256=0TvkD--qgoW6b7_05DD8TRwsN8SxKPVUKvl20hgBdZQ,4398
|
|
1388
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_core.h,sha256=58BJ7VPqr-GDNRLeu9GBZEFB92Uc6Xp-nKvWfVCYXLk,1324
|
|
1389
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_entity.h,sha256=6dgUCUnqhigyOXIpsErCAFSJc9v31UOowOBVNcxXv74,1145
|
|
1390
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_sink.h,sha256=dmjich9Dt7faqB-N-Z1WcjTjZe4xZOkdQGWFVj7aSXY,1778
|
|
1391
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_stream.h,sha256=BUKjZ2L4rhkb0uMplHf_Q2PBudCcC2fhK2KPTTn8V0E,1194
|
|
1392
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_tiling.h,sha256=W1Hewm_ioH-QuxLrvlW06KscO4lTuxziZfQriPGL6-c,2917
|
|
1393
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/log/log_utils.h,sha256=qJ9XzXLgLzPZ1NZCnAKD__2_UWb0Dq0gnD1Vl7pmgJU,4527
|
|
1394
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/register/kernel_creator.h,sha256=9I4f0uAf2QmmBun1aSQIIxx8bBwucN9P2vj8772_DO8,1387
|
|
1395
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/utils/register/kernel_registry.h,sha256=jLyPY_f0E1sWeCSaZTI0WA2eO9HHKevuskAR5gSSTDk,6943
|
|
1396
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libAdd_impl.so,sha256=N93tSXjJdAyANaplFMxbEcKkPjTPM-H9vnBk9ATGMFo,205600
|
|
1397
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libSub_impl.so,sha256=yLKNb-rkLxqSY0_pYPbk13MDMefYqfwoIXtJfpGMKAk,114520
|
|
1398
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_layer_norm_impl.so,sha256=hf-WEY5AoqTOV9Hc77XXr8ar53dzgNzw7ppeWQZYNzU,1604944
|
|
1399
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_impl.so,sha256=R98eNSXcwwYLHsfFkmlWb5FsLezkohiyqlo39b7BXqs,452528
|
|
1400
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_quant_acme_impl.so,sha256=RNOorLd_idB6Q9VLKHsmYXHdOL9pKhpZf_DAnxG-e0w,211200
|
|
1401
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_310p_impl.so,sha256=CrCDDDBXD_tpzycq9B47GVbjAMEWEhzDlYS3wLmCmPg,63976
|
|
1402
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_310p_old_impl.so,sha256=B4Rh0XXytPibeWvS-iVehDz_MVZvs70ot8-26k8ZatI,92472
|
|
1403
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_impl.so,sha256=9QITHaO3Vupx5yqR0Twbkzlgid-Sgx6pBxkp5YS3TAw,194816
|
|
1404
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_old_impl.so,sha256=gWzrKPRDT-lDLzcnPGo0_Y4iXpYm2KgGbUkNB8cVfLU,221888
|
|
1405
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libcast_impl.so,sha256=6ws7zXSNDpKHd7t65lz0YhKr_rx7Ax6TNI0ykANqKMc,215904
|
|
1406
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libgelu_impl.so,sha256=beaFIcaaYEEpCVHDwVQ-zeH7u8JA0UGR1GL7dxMdLJk,99152
|
|
1407
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmatmul_impl.so,sha256=pUVcIWFUSAZCyFLuvFROrsxH7gXNv015vf8_cPoW55E,349168
|
|
1408
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libms_kernels_internal.so,sha256=jnYp_R34PB9AQaE_p07cBS_SdT3ic36zMqo0tSkHfw8,4468120
|
|
1409
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmulti_weight_matmul_kernel_impl.so,sha256=IdlQUKf49eKedrMuqHPVYp9zMRXJ5eEIn9nYC6S4qVE,314592
|
|
1410
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libnot_equal_impl.so,sha256=UQekyPLs_7c7Tcg_RICVfWSuU7C1fJoAjIk_GZdZj-M,202168
|
|
1411
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_impl.so,sha256=BgHOVs9Etfdmtxpr_pMnnraLTAgHiz-UfHmkCXtKWGo,87872
|
|
1412
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_nz_impl.so,sha256=hxGhIGDwlrJBy5YOuA36sbipGQxVSBmuKet9nDb665c,18224
|
|
1413
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_nz_old_impl.so,sha256=Erh2Ed2jnSrJtN_i1fVk0bvCMJjSrc4IU5P423NQ6Yc,35160
|
|
1414
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/librms_norm_impl.so,sha256=TnZZmEcYAHViGyZSAxOo3Efu2KZ4m4JlsHk7D3QzZG8,194392
|
|
1415
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix.json,sha256=RITCWO-9ttN3qA5WqerBSkK4QC-gD6gS-9s9QbTnMCU,423
|
|
1416
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix.o,sha256=ToazX0yoOLksyEwEaqNs0k0lYdobgzJkRaGOysWLnCQ,82344
|
|
1417
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix_mix_aic_0.o,sha256=YTFD6uiTh516hG7yobpUHAhCDeCayo8cJfSGNPbEy9o,73920
|
|
1418
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMatMulPostFusionMixTactic/acme_matmul_postfusion_mix_mix_aiv_0.o,sha256=_W-ffcJg7FvcCFTFUeCXjVUV-XXCNYU6jtajtpKBsgI,8512
|
|
1419
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix.json,sha256=rOhD9b56Um8rwz8m_pZoOCJ8b_ovHQODuoetXxa49as,449
|
|
1420
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix.o,sha256=haKvTKyYYi1sIgRDjq3JKpjjROEYiTrpoualSAXT3nU,109312
|
|
1421
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix_mix_aic_0.o,sha256=aYnFAm9VwY79nitsNNRFUuKh9fnlBgPCDE4wuRYnSuU,103600
|
|
1422
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/AcmeMultiWeightMatMulPostFusionMixTactic/acme_multi_weight_matmul_postfusion_mix_mix_aiv_0.o,sha256=_yxcvLAe6_luFnmiAE6pn2ZQUd_TjBIN48F1ZQ-U0nE,6696
|
|
1423
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bnsd_full_mix.o,sha256=cV1yLt27zNzZAQBf5JKduInybV2UPwCS1eglx1CSic0,125648
|
|
1424
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bnsd_tri_mix.o,sha256=-bY0v9bSVAjKKshkg1lPki05ev4bLGizzfC4UeguHpI,140248
|
|
1425
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bsh_full_mix.o,sha256=e8rRJnr3u8n8rWS6E8I2iagY14z6IKQtlrM5XJ4q404,125856
|
|
1426
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_bf16_bsh_tri_mix.o,sha256=RMNsSUBxxXYwhZJuJMqQ0BBlK8_sPaJzgaXVAaVNpOY,141080
|
|
1427
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bnsd_full_mix.o,sha256=0_Kq0acuG1gS8igWtd-Dt3YIvyyBglBxKyVxKgisHYE,120536
|
|
1428
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bnsd_tri_mix.o,sha256=LFnEa3AqNDRKf12nQMstjm8FAEAfH_X00FBGXEgqRQI,135232
|
|
1429
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bsh_full_mix.o,sha256=Dp36jYmT0GPYRKaSdMSTZTf9yfFH1HmFulyauVY4gIg,120352
|
|
1430
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/flash_attention_score/flash_attention_score_fp16_bsh_tri_mix.o,sha256=d1nBlA1Ettcr6j0yaY4qldMiFzExOdXmsKKI2btJCDw,136144
|
|
1431
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_bf16.o,sha256=hT-Ym147k2CISff2On7sdV20gnB4cqTqcFub07bJrLY,12848
|
|
1432
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp16.o,sha256=oKhdHigAXkDBKQt-MBPkaWvrmVjLkjVtSx6_4uF4xVU,12848
|
|
1433
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp32.o,sha256=QbLP_ZP5lVQBRI9OVGKmzAHhE6O4EIpMiV7fQ4Hremg,12840
|
|
1434
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_bf16.o,sha256=7rSxKjkbqbHQ2rCD0uIZPwo_d75w5d6KFG1sz2II0LU,12848
|
|
1435
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp16.o,sha256=ZJdRpGMhx7WNLiiMrdEaeVduj9OvXQFuB1KT9b5TFJo,12848
|
|
1436
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp32.o,sha256=PrIXeIni2tx2bhZEAwT9XmyLZHkQUXQH6a3JJnNMFeA,12840
|
|
1437
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_bf16_bnsd_mix.o,sha256=ybqbOVuOyyRtX8qYRvvPbqBuJItTwwBHn33nK9wz-Rs,143096
|
|
1438
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_bf16_bsh_mix.o,sha256=yk8R67ImslralX0EafI9UVRWAalQQGv4wI-FhG6b6TA,143728
|
|
1439
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_fp16_bnsd_mix.o,sha256=B_hc4YMQTK_NI9E0syWpw9NuyaqoGQObykbEC68NecY,139448
|
|
1440
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/paged_attention/paged_attention_fp16_bsh_mix.o,sha256=YFZ-Nyd7EyoFq5LSIatlIoXchWM2_SbR3UzrCWbueYI,140160
|
|
1321
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/base_type.h,sha256=Ug0ecs5ZKtX8JAmgzRvrJcz_0L0kkz7rQHZvY3My6yI,4137
|
|
1322
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/internal.h,sha256=BHoy-LIcP3mSDwtHu_ES9JmlNIETaTMPMQ6NNuRk2tg,850
|
|
1323
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/internal_op.h,sha256=zG4DI4uhyCxKGf1C4_vB3Pvb3rnevK1uAlydmdcR6sU,4348
|
|
1324
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/op_creator.h,sha256=XyfNPiAcBVs0kyCCmAbnSqBWdAD0NNHo79XHU9JI10U,8198
|
|
1325
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/op_param.h,sha256=j9pHPMu1LclPZi5f6dw7-D4Wkq78LLPL8mCitJyZYFg,6416
|
|
1326
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tiling_info.h,sha256=t7HP_BE5hKqtpPA-v87S4ZavXRwjIfM3b1MGqx8LSdk,2115
|
|
1327
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tiling_utils.h,sha256=oGiKFDCM0fRm9eBIER5VZs5fqmsTGrxzx-5oOMDvYwY,5962
|
|
1328
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/boost_kernel.h,sha256=gx-w1ADVxCOJvAwFt9n5WFluq7yza5H7Eic_5abH72o,2650
|
|
1329
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/llama_impl.h,sha256=pIiDXC4comYNHtDYubRCoCGW7Rs11Mcf4Pa9WqNQI3c,2621
|
|
1330
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/model_interface.h,sha256=BPAVFdWH2ccGdtCvD6ZAexZ1wRrFRkJ-T9aqHU0IF84,1831
|
|
1331
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/llm/tensor.h,sha256=h5U9vD4h4bOSUdcoIo8_Byu40arNvaPAV1lBs37uBgU,3524
|
|
1332
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_layer_norm_op.so,sha256=7DmIjdbyLbygiQNm83oxs317YDZDKN-hrTcEm4eyvMQ,62096
|
|
1333
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_op.so,sha256=b3WKdyg8UA7ZOWfJKiHGm5mKBn-OdkPH3LxVUAkRehU,51272
|
|
1334
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_quant_op.so,sha256=HBF-TTnlY6CQfbS8ILtSPoHhIg8QXoEF3VjJOUxbhuM,51064
|
|
1335
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_310p_op.so,sha256=fXdwhB1fX45-I10fkTB9oWIauBgjyayMpadf18KZS6k,36280
|
|
1336
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_op.so,sha256=QKAJeuAkntf9A-_VbOHCuydrYm0zAKtZ3rpxHeikn8Y,56768
|
|
1337
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libcast_op.so,sha256=SFKENEAo9O2Fl3ADgY3lH7cuQpErMLp9BEWH-gan4oc,72600
|
|
1338
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libcompare_op.so,sha256=PGLtDB2z5D-X-L2RTyIP4nbETraq2gXxgMm1miE--xY,77176
|
|
1339
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libgelu_op.so,sha256=QIh_ziAUuIm8SNQ4WUe3Z2ApICcAwPNXtN0yp6Iz1SI,51288
|
|
1340
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libllama_op.so,sha256=AMQbrfqRH-L_UD84hVUxYzrrfvYgANe7LCrOmwJ15ag,340528
|
|
1341
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmatmul_op.so,sha256=fXGoY04dyKlvwMY2W22s6jEbFGIYJpeDOtnCpYfT0c4,701560
|
|
1342
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libms_kernels_internal.so,sha256=BuSgrPZf0-er-FxjiAcTeqkiSh-4-0B2aH3Chiy4Rj8,1285320
|
|
1343
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libms_optiling.so,sha256=ahuaL_SzxMZjm5nUudagle1c4HY14thUeQCeiZcMuZU,44352
|
|
1344
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmulti_weight_matmul_kernel_op.so,sha256=ZasbgXolAWsRWuguAmytDwBXXvLWUrORX2Dr6cGNhMk,212360
|
|
1345
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_nz_op.so,sha256=OHpQG69KYY_55QFZ01sNt4VyE_Hr4dMgdYkDgmMzQng,52144
|
|
1346
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_op.so,sha256=1nu_L9LQTMHWrvK7Huxn-CeVp8UUn5yCw5e1DJtw9fU,52400
|
|
1347
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/librms_norm_op.so,sha256=w-STMowoZL0LH_EOHED7N6o8awKLGJ99-kAbJkToAfs,96488
|
|
1348
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_f16_nz/internal_pp_matmul_f16_nz.o,sha256=kZeXx8NGEEmvHtMRLym_0Z1eZ5piOpwZseFTk0LgXs8,39552
|
|
1349
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_f16_nz/internal_pp_matmul_f16_nz_0.o,sha256=R_ECW19YvSm2lXkeYSUxVboS3J3PI3fyl-O8u5D_biU,36960
|
|
1350
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_i8_nz_compress/internal_pp_matmul_i8_nz_compress.o,sha256=-y0ScFT8RM2mtNodG9djJzJ2Zjy8nqVTrAYcRZrGBn0,10304
|
|
1351
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_i8_nz_compress/internal_pp_matmul_i8_nz_compress_0.o,sha256=oNzpUbhpH_oNb1adjLbbjKD91MlcXqmWfyrIQ2BipYw,6552
|
|
1352
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_int8_nz/internal_pp_matmul_int8_nz.o,sha256=DYCQinlOzlP0iU3j6ZouTomREFOQvMvtlNwVC6JU6S8,10760
|
|
1353
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_int8_nz/internal_pp_matmul_int8_nz_0.o,sha256=B7IesiDrsIhOykjsuRy6wBkIokzJcXLITrmNLqmZ1v0,7000
|
|
1354
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libadd_rms_norm_quant_ascend310p.so,sha256=3T5ut1UoPaR-l1oHNxq8i0CNKgPQZoLF72gYtkX4XM8,206080
|
|
1355
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libapply_rotary_pos_emb_310p_ascend310p.so,sha256=qVxpH90O7xRNF8uAgi5WGTuf2KD3FsPU2urqiAf_NyE,66928
|
|
1356
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libcast_ascend310p.so,sha256=T7ZAxXJhqIqijfEj5raD_345UEAVnlKK08aSCcHvtSs,85304
|
|
1357
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libcompare_ascend310p.so,sha256=C_-rOfWlnLbFThdk_nJmcXcEOLqQT0KESyVHxoaygvs,106256
|
|
1358
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libgelu_ascend310p.so,sha256=t16G5DXgpY4XfEVOd_PNcbFiljdJOi1gT9mbW2_lJms,28840
|
|
1359
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmatmul_ascend310p.so,sha256=OPUOG_PMyb_d34198EzDtOBemdR5taBl0UgTb_FqhEI,202592
|
|
1360
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libreshape_and_cache_nz_ascend310p.so,sha256=KYR9lyFZ-MphW_yWjVDLRzAGJhZD8P4UyQwI40vqBJs,13176
|
|
1361
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_4b60f88cdc28b25a36bad2d8b0a88092.json,sha256=X4w5R0jI-uiDdF5-gQHOH0SeuupH6fUvM8AcPzz0I50,4533
|
|
1362
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_4b60f88cdc28b25a36bad2d8b0a88092.o,sha256=ozqNIV4_F1SR9Iyza0lAWzUfayUtuX7LKs1TVWbEMkI,51232
|
|
1363
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_cde61da2bd6fededcb1ba310a6ad16ee.json,sha256=XCCQybeePvw2C6Ht3ke_RVqEtAoGcYF9E3OwMQEpprg,4519
|
|
1364
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/hphol_kernels/add_rms_norm_dynamic_quant/AddRmsNormDynamicQuant_cde61da2bd6fededcb1ba310a6ad16ee.o,sha256=yYuajdJf_-x8uIbCmFR7JipBtPop0cphFqzr30veCDs,51232
|
|
1365
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bnsd_full_mix.o,sha256=b5TuG_5aLyLZBlhWOF9VVW-Df5oRGXKkbz64nPNxOn4,124288
|
|
1366
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bnsd_tri_mix.o,sha256=AJjxrfhKVzReMZzy9oPTUWZlZLEIXC7cNA0dDWd8NME,140808
|
|
1367
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bsh_full_mix.o,sha256=_lvEbRw5dwsPqpcPG9xncuw93YE3aR6dXITa-B7tMpk,124488
|
|
1368
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bsh_tri_mix.o,sha256=djeeExuBxZEelOgfk75AtVBW7aeQGljSpn7XZIRGjIo,141080
|
|
1369
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bnsd_full_mix.o,sha256=seTg0AErAwnTJ0zIEJaPsVgOcDkA7RznsbhHZn5pokw,119056
|
|
1370
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bnsd_tri_mix.o,sha256=fYfq5hPh2KCHtxT8pEljJIFL_toMTZD1jedStJoKwIk,135112
|
|
1371
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bsh_full_mix.o,sha256=YqHTQ5WHyhJP-_jkNZE_sh9nTAlDf9xHZ48gC1EBcvM,119288
|
|
1372
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bsh_tri_mix.o,sha256=NkP7nBtgS7JM59N2nw-t8xL9vmd3kEXcT2A6EGTSkus,135480
|
|
1373
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix.o,sha256=322L-HbVFA5i3jt_GXSMRXU97jIots3lGv27bl_vlTE,77712
|
|
1374
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix_mix_aic_0.o,sha256=_U2WSfTJp6jyRo5lZrmwqboq6KmYYsQsO3D7g1JmJLU,69480
|
|
1375
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix_mix_aiv_0.o,sha256=TyFzAWMkwzK3-zdgtjiImI1R5p_GD0axSscMffbNXOw,8288
|
|
1376
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix.o,sha256=9So2eSaww9u3oFR29pd-R1Kug18fEkvpP-i6sA_HJJ4,102944
|
|
1377
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix_mix_aic_0.o,sha256=UxfiHxw508rSQ794j0MliMHWorS8XFZw0bSsg6sG5i0,97392
|
|
1378
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix_mix_aiv_0.o,sha256=t_FLRdWPalPKnbekV0O73m3sw0MYfiiik3X2buNmDJI,6504
|
|
1379
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_bf16.o,sha256=jfBqPZVVvhslARZMVuqstDuW5NnttnGRONumUOULcbg,12856
|
|
1380
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp16.o,sha256=gmB5u9VONIUfJVI_b4MVUoba-_hUBPAuoSh64rTPHic,12856
|
|
1381
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp32.o,sha256=lQvDcZFuSK07-iJ8puCCLEw8OTCaFvvVSoYz9cGSO7Q,12856
|
|
1382
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_bf16.o,sha256=7FdzsUs-9a_U0gqI5EG-otd4j4lk-2uTeRJgAAKoJHM,12856
|
|
1383
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp16.o,sha256=PjZuugvs6S5yM3qinuTjMas0hjHZM47O1QZEYTEqJ2k,12856
|
|
1384
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp32.o,sha256=MhTmgBJCdcUOhkNpTfWi3LTGwsQYijIs7W3Uc1pTb_s,12856
|
|
1385
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2.o,sha256=eylUwt_HpyNlf1D9P2wUrSX3CoPqSDe67Z4qdoiFFBU,53480
|
|
1386
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2_mix_aic_0.o,sha256=qHUN_fSe5RO6-ruWabYmQCzfvhfIC3x2Up_v3wujc-Q,20952
|
|
1387
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2_mix_aiv_0.o,sha256=KCHKKOHQe_6-Unuiu1kT2fLfOOBrBr5tFFz8h8vS4YA,31328
|
|
1388
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_layer_norm_ascend910b.so,sha256=cvVecgJNrHtVSQBZvGIyitC2rvR4r8X4GOFHMTsI2uE,1599000
|
|
1389
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_rms_norm_ascend910b.so,sha256=1jVdikkbJzKfin-_eFHVwn-Em_jMchpnvp7MhA4drLQ,453952
|
|
1390
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_rms_norm_quant_ascend910b.so,sha256=giMqgQo37sp4YZnkRKvTmgQak_dnMgEr9ba6-1tZpH0,212352
|
|
1391
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libapply_rotary_pos_emb_ascend910b.so,sha256=5Li8FbtBHsodZXWfpJIDrnK2QNJXpE2Sxf_K1d0N2MA,192584
|
|
1392
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libcast_ascend910b.so,sha256=0WIot3ZnV2Drx80q5KTb-4Ue2R_m9H0YZ1Le9DzrKkY,192472
|
|
1393
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libcompare_ascend910b.so,sha256=4xMQzDOVaJAaUVtw2y2fZQXuSLNystow2tAFflrCxDI,176320
|
|
1394
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libgelu_ascend910b.so,sha256=fWLdncMf5n1l-Jtwe7nH6Z6hIEw1VQ9-FBneP7gA3AU,94184
|
|
1395
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libllama_ascend910b.so,sha256=MiRJOW0PC39FpgV2PdmxkB86SiKkaWbSQmnpDFSPPeQ,263144
|
|
1396
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libmatmul_ascend910b.so,sha256=q4betOnM4secCWk250LFinR_pWkDR8paNZzDS-HMx5U,351608
|
|
1397
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libmulti_weight_matmul_kernel_ascend910b.so,sha256=4Zh3V1qPSgRBOKroaiakV_yUzQmqGM_dHDmgnL3Jb34,316296
|
|
1398
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libreshape_and_cache_ascend910b.so,sha256=31ynp7fEsYkf6JxCPmxIpqNwnCwms0vrfNrfwyvGGfk,83304
|
|
1399
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/librms_norm_ascend910b.so,sha256=t1ZRNqg2usgLVk2SeRq_C0jegffuVy0GYTdOLwI7faQ,195008
|
|
1441
1400
|
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/include/lcal.h,sha256=GWVs9qgIgc0fIDgL7S4zrKq5PR1squLQ2dR2e31f_CQ,765
|
|
1442
1401
|
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/include/lcal_comm.h,sha256=nGsQd7D5sxns7JK3-6o2Yrs9dMMA0FivALRKzS3bkgE,2329
|
|
1443
1402
|
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/include/lcal_types.h,sha256=kBtWEiGrMGXIdVMMfzHM46JU_jz_CTfCFGeONh7vx-o,3319
|
|
@@ -1445,24 +1404,24 @@ mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/include/lccl.h,sha256=XqaEf
|
|
|
1445
1404
|
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/include/lccl_wrapper.h,sha256=qdzD4HVUvdq-Zs59SgVe812oc1EeSeeC8QKJpy0VSgk,1954
|
|
1446
1405
|
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/include/lcoc.h,sha256=5V-OVOBIaRJGnQXPJXvF7CViz8lK1WNo3pVsYjCCKuI,5715
|
|
1447
1406
|
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/lib/liblcal.so,sha256=Zh0diADb8rr8WHp3tdsKSo7xjQWDYDfXCMcl6t6m6tg,6708320
|
|
1448
|
-
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/lib/liblccl_wrapper.so,sha256=
|
|
1407
|
+
mindspore/lib/plugin/ascend/ms_kernels_internal/lccl/lib/liblccl_wrapper.so,sha256=pYWavtw1_yF1QRru4PU8lGCwt4TG_xkPxBHe4yWtqvI,14248
|
|
1449
1408
|
mindspore/lib/plugin/cpu/libakg.so,sha256=5FPox7nYPuF8fpKBLliLcXWXh0k340z_CcTzUoGkB5k,114127928
|
|
1450
|
-
mindspore/lib/plugin/gpu/libcuda_ops.so.10,sha256=
|
|
1451
|
-
mindspore/lib/plugin/gpu/libcuda_ops.so.11,sha256
|
|
1409
|
+
mindspore/lib/plugin/gpu/libcuda_ops.so.10,sha256=tGm62qtdNcxt5C4yAYR_ijRLFQIN27T7v0sxB9mcVyw,163279592
|
|
1410
|
+
mindspore/lib/plugin/gpu/libcuda_ops.so.11,sha256=0H-NniVKCEPhbaZgz1QhgJNsdx20XgDEqOQGFURqGWY,765493064
|
|
1452
1411
|
mindspore/lib/plugin/gpu10.1/libakg.so,sha256=VOICKrvPEck7oDwFt6CZ7TSAaWx_Jcy_HZ88uMzcKh4,114369592
|
|
1453
|
-
mindspore/lib/plugin/gpu10.1/libnccl.so.2,sha256=
|
|
1454
|
-
mindspore/lib/plugin/gpu10.1/libnvidia_collective.so,sha256=
|
|
1412
|
+
mindspore/lib/plugin/gpu10.1/libnccl.so.2,sha256=PVYd2W9gG5eMNEqbhOADR7MupfS3PDDITEc9oHQDUk0,47015304
|
|
1413
|
+
mindspore/lib/plugin/gpu10.1/libnvidia_collective.so,sha256=8_Y-2UPEYHhLW1384KjfL2Vf9JR5UsLK6nZrdvj8fiU,100160
|
|
1455
1414
|
mindspore/lib/plugin/gpu11.1/libakg.so,sha256=8YAsIhaUdsLovGuQZNC2wGgrPqvmGdvrmWIRuUtq42E,114369592
|
|
1456
|
-
mindspore/lib/plugin/gpu11.1/libnccl.so.2,sha256=
|
|
1457
|
-
mindspore/lib/plugin/gpu11.1/libnvidia_collective.so,sha256=
|
|
1415
|
+
mindspore/lib/plugin/gpu11.1/libnccl.so.2,sha256=Zlj15cvGhGlePH_JzByqo-EsQt6MqB9avqIspoAMJ8g,74437968
|
|
1416
|
+
mindspore/lib/plugin/gpu11.1/libnvidia_collective.so,sha256=RTiyIIOTP5_xfbOiAQF2-QsmVQofSM0YA-ou7qRRDJs,100160
|
|
1458
1417
|
mindspore/lib/plugin/gpu11.6/libakg.so,sha256=NT7wOtx8qlDU4dmGGtfB3R1ofP4xwQfXzg-xA7g_TyM,114373688
|
|
1459
|
-
mindspore/lib/plugin/gpu11.6/libnccl.so.2,sha256=
|
|
1460
|
-
mindspore/lib/plugin/gpu11.6/libnvidia_collective.so,sha256=
|
|
1461
|
-
mindspore/mindrecord/__init__.py,sha256=
|
|
1462
|
-
mindspore/mindrecord/config.py,sha256=
|
|
1463
|
-
mindspore/mindrecord/filereader.py,sha256=
|
|
1464
|
-
mindspore/mindrecord/filewriter.py,sha256
|
|
1465
|
-
mindspore/mindrecord/mindpage.py,sha256=
|
|
1418
|
+
mindspore/lib/plugin/gpu11.6/libnccl.so.2,sha256=teojGAedL0nodI_xDXSH0NkRk0FRvQbFJyqL_FAzX-k,62903920
|
|
1419
|
+
mindspore/lib/plugin/gpu11.6/libnvidia_collective.so,sha256=AYjMtU_Up7iUhfF2DQQGnozajure-Cp8OUuu621ZqBQ,100160
|
|
1420
|
+
mindspore/mindrecord/__init__.py,sha256=KbnVy6rqO9o4T5cpMHjNsYvboW2-6mj_bXKSTUTswzQ,1846
|
|
1421
|
+
mindspore/mindrecord/config.py,sha256=xFvZYcdrYnHXXvHIq_PTjS-co21kT19JK7zVnmbnMkY,17345
|
|
1422
|
+
mindspore/mindrecord/filereader.py,sha256=edxIzO8MT4UgF_CAooWmLoC14DK_XFjEyMFauyFS8h4,6108
|
|
1423
|
+
mindspore/mindrecord/filewriter.py,sha256=-wzSQLmXq0bpvJ8QCAexhgyEqljfsUjyoMG-zaN0VEo,30372
|
|
1424
|
+
mindspore/mindrecord/mindpage.py,sha256=RVbT724x6L3ZglzpVtXYz9_OmTTerTNQY_v10J3SYi0,7841
|
|
1466
1425
|
mindspore/mindrecord/shardheader.py,sha256=q5_SCnpd-Xa0A1s5FUX4RdaFHBHRbg73PS3VrYpgbTk,3840
|
|
1467
1426
|
mindspore/mindrecord/shardindexgenerator.py,sha256=7UVGTuMcxXxjt2F-49o_0v1Cvvgvy5Ih_s3pZpJkrmg,2477
|
|
1468
1427
|
mindspore/mindrecord/shardreader.py,sha256=jIpyl0igJx8GugLBur3uy924N-B36BxGyPGZbcXpiFE,3580
|
|
@@ -1482,69 +1441,74 @@ mindspore/mindrecord/tools/csv_to_mr.py,sha256=iQaAML2tdO4EAlXgVvXpB0J9g4NIE3ixb
|
|
|
1482
1441
|
mindspore/mindrecord/tools/imagenet_to_mr.py,sha256=sQjKMxG--AbIFckAk-CC92Sa0Sg0tvkV4TCDJ9nT6aY,7653
|
|
1483
1442
|
mindspore/mindrecord/tools/mnist_to_mr.py,sha256=GqfmBT15ZTn0pxiM_dQtp1NSpG-Dd4T4AVQI2FyvTZw,9332
|
|
1484
1443
|
mindspore/mindrecord/tools/tfrecord_to_mr.py,sha256=ZR_z7bjvIOcjGYB1tYqOLtHdsV4Z7mQsNwqJQx1pqOc,16117
|
|
1485
|
-
mindspore/mint/__init__.py,sha256=
|
|
1486
|
-
mindspore/mint/distributed/__init__.py,sha256=
|
|
1487
|
-
mindspore/mint/distributed/distributed.py,sha256=
|
|
1488
|
-
mindspore/mint/linalg/__init__.py,sha256=
|
|
1489
|
-
mindspore/mint/nn/__init__.py,sha256=
|
|
1490
|
-
mindspore/mint/nn/functional.py,sha256=
|
|
1491
|
-
mindspore/mint/nn/layer/__init__.py,sha256=
|
|
1492
|
-
mindspore/mint/nn/layer/
|
|
1493
|
-
mindspore/mint/nn/layer/
|
|
1494
|
-
mindspore/mint/nn/layer/
|
|
1495
|
-
mindspore/mint/
|
|
1496
|
-
mindspore/mint/
|
|
1497
|
-
mindspore/mint/
|
|
1498
|
-
mindspore/
|
|
1444
|
+
mindspore/mint/__init__.py,sha256=W9ASBw4BPoJoFAsACFb1gBaxEmMl-zw349z6Bb-klMY,84784
|
|
1445
|
+
mindspore/mint/distributed/__init__.py,sha256=xMB34ESs_NUhOw09OKvXqC8_ESNaj_knFCjqgGHHuAk,2377
|
|
1446
|
+
mindspore/mint/distributed/distributed.py,sha256=bTdgcq2EgUZp8274wk11Wy9z_yQ5uhd7vfiPpin1k-E,117138
|
|
1447
|
+
mindspore/mint/linalg/__init__.py,sha256=lzoOWMuvf16tGZptNTsyinU-YsoCpGrEXpeZZWJRdM4,1083
|
|
1448
|
+
mindspore/mint/nn/__init__.py,sha256=rmlDRqfrwG4vVeVF0tcnSorRzfOth9GnbHb8Rqv2KEk,31598
|
|
1449
|
+
mindspore/mint/nn/functional.py,sha256=1oF7UxRj3agYNPMDj419yzkTMv9thn7Ji47QrwHJk5I,33251
|
|
1450
|
+
mindspore/mint/nn/layer/__init__.py,sha256=AwMgycH58eTTMlcd9YEWHdFSG4CsHO5X5z2G82WyPT4,1903
|
|
1451
|
+
mindspore/mint/nn/layer/_functions.py,sha256=e2Y46oFgpLh2CZo4SAKyl2tJ9ReyWxDvuS5WupMEROk,11950
|
|
1452
|
+
mindspore/mint/nn/layer/activation.py,sha256=xs99kfKH5keGk7B3OFRFERYzmyjtrzjfVStDXzw2KUE,8998
|
|
1453
|
+
mindspore/mint/nn/layer/basic.py,sha256=5S0XrkvTRWYGcn9o_ol0mXaXmY59J1-B-bqu7PmrK_c,4280
|
|
1454
|
+
mindspore/mint/nn/layer/conv.py,sha256=mTqyWKmGt_cGJf7owlXM87j9Wvodzki_EFoXLNZZ0Kw,36371
|
|
1455
|
+
mindspore/mint/nn/layer/normalization.py,sha256=WPwFMC2VsFGkF_NLSes1dBLzVTbTC-sNcSfiwz1ob7k,28289
|
|
1456
|
+
mindspore/mint/nn/layer/padding.py,sha256=YwgZvmjp8JJhUXPPi6v-LxcPCvK1mOfjXJZ5_r5wOhw,27157
|
|
1457
|
+
mindspore/mint/nn/layer/pooling.py,sha256=CdIXtWBxiOG58le6J1dWZgt3IBPEekhorLBL0ee46NE,11566
|
|
1458
|
+
mindspore/mint/optim/__init__.py,sha256=fAAWBj7n-IPSNjT9UuK9yDPOUe3F2P2q8l1CTOVjwVM,959
|
|
1459
|
+
mindspore/mint/optim/adam.py,sha256=-IWQCmioSBKhj5FJROmMkGwGnl0szb6SWSHC6Afbo40,11870
|
|
1460
|
+
mindspore/mint/optim/adamw.py,sha256=IPbtwsY92otDVTZKlenwUn3JFyNKN3W5sm7QlMssqOg,10784
|
|
1461
|
+
mindspore/mint/special/__init__.py,sha256=26Viuj5IgS0QRxm91b1WOVJZKus2lORpz1xxKgRDzkY,1908
|
|
1462
|
+
mindspore/multiprocessing/__init__.py,sha256=lUyBrwNxDZsl1U10T8kcnpulzGhW3cKtVzS0LlX_G3s,2762
|
|
1499
1463
|
mindspore/nn/__init__.py,sha256=Nvn1u4facoOAdfUI8DUQLSmsaaqd2wDey04L2N7gHME,1784
|
|
1500
|
-
mindspore/nn/cell.py,sha256=
|
|
1501
|
-
mindspore/nn/dynamic_lr.py,sha256=
|
|
1502
|
-
mindspore/nn/learning_rate_schedule.py,sha256=
|
|
1464
|
+
mindspore/nn/cell.py,sha256=sKP2uCGmQ8viczbAFQw2veTUx0bKm3c9UFMHPuZDgOQ,125059
|
|
1465
|
+
mindspore/nn/dynamic_lr.py,sha256=P0v__-cqLAuv9sb0O873qAbbCAZ-Ey48v3duePQgDNE,19871
|
|
1466
|
+
mindspore/nn/learning_rate_schedule.py,sha256=4CD3WwgMiHaFNw_GCJn70LsNtUF788bCVAqfndECrSU,19118
|
|
1503
1467
|
mindspore/nn/metrics.py,sha256=xAroGTnHaQvOUjw5MXF3umFkE9PlQ7yJP-x9XC3QXl8,1703
|
|
1504
1468
|
mindspore/nn/grad/__init__.py,sha256=QPheg18C-s7vgTcY74VV2bfAtjLt9m4E6os55I4Zk2s,866
|
|
1505
1469
|
mindspore/nn/grad/cell_grad.py,sha256=FmA2ntlpGh0xk5l_ZrH_u-x0h9jtqxz6bhbbNkpnFSE,7111
|
|
1506
1470
|
mindspore/nn/layer/__init__.py,sha256=vznKzKL_uT74JBsVxAEoMdMVevIyXciO7a0Q_7uKzXc,2631
|
|
1507
|
-
mindspore/nn/layer/activation.py,sha256=
|
|
1508
|
-
mindspore/nn/layer/basic.py,sha256=
|
|
1509
|
-
mindspore/nn/layer/channel_shuffle.py,sha256=
|
|
1471
|
+
mindspore/nn/layer/activation.py,sha256=hlsK7JuZpUxVselVjsgJ8xID92_JdRCwnneixAlZWeg,55407
|
|
1472
|
+
mindspore/nn/layer/basic.py,sha256=3CcAWDQ6baZaQyXwMRF8BThK78QnhPrMMhUAoyeL064,66373
|
|
1473
|
+
mindspore/nn/layer/channel_shuffle.py,sha256=lOlEa3gZp9oJtCbc3MEyaGex8QAONfgJ6W-u12msMHE,3090
|
|
1510
1474
|
mindspore/nn/layer/combined.py,sha256=iHBjs9vija_YIxpBK5Z2NhLIz0PYRpfIqSoM_D6pLms,11879
|
|
1511
1475
|
mindspore/nn/layer/container.py,sha256=577yJ7VUz5195fsoH_MjqFB2hI053cubsRMMNZNA5ik,28208
|
|
1512
1476
|
mindspore/nn/layer/conv.py,sha256=yCtBXLeyzY04jdiWNyW9S47_x6tpAYwzYM7CIoIn2Ag,83133
|
|
1513
1477
|
mindspore/nn/layer/dense.py,sha256=5ci21mYsVzuuoHJVuurdlvjP8pao8m35vBWXCctw8kw,10521
|
|
1514
|
-
mindspore/nn/layer/embedding.py,sha256=
|
|
1478
|
+
mindspore/nn/layer/embedding.py,sha256=POhY-MGik70EZUwKG2X4Z4gAiCvRApAYdTaVSWaca3M,46730
|
|
1515
1479
|
mindspore/nn/layer/image.py,sha256=pVEl684Z3jkfPybBSnbVg1M14vHiig3LUIbBJ05V-Wg,26844
|
|
1516
1480
|
mindspore/nn/layer/math.py,sha256=KUH2BnGn7kk2RBDDFx5RKyM2jzyCFqA7BxnT4h1JWiA,39116
|
|
1517
|
-
mindspore/nn/layer/normalization.py,sha256=
|
|
1518
|
-
mindspore/nn/layer/padding.py,sha256=
|
|
1519
|
-
mindspore/nn/layer/pooling.py,sha256=
|
|
1520
|
-
mindspore/nn/layer/rnn_cells.py,sha256=
|
|
1521
|
-
mindspore/nn/layer/rnns.py,sha256=
|
|
1481
|
+
mindspore/nn/layer/normalization.py,sha256=dWDWwwpxvOvKS1lUPdJHi6WIbnfNoGzlm72LTu6XTw4,63970
|
|
1482
|
+
mindspore/nn/layer/padding.py,sha256=cyoqqr8zhyhvA84dPnBTHRufQKFhhORCmFRSOHipcsI,36055
|
|
1483
|
+
mindspore/nn/layer/pooling.py,sha256=2vBNnMtpH4a7FehUqupe_JP3yi0z3px6Hil9x1_jmgY,115346
|
|
1484
|
+
mindspore/nn/layer/rnn_cells.py,sha256=ElJBplbD2ViKrlbpUzOYHLJP1f0XsNQ-bmY3w_5xTmc,16853
|
|
1485
|
+
mindspore/nn/layer/rnns.py,sha256=J4_ArvbI02rldvrStnt4114jJ_mfhity-JvMclH13DY,38989
|
|
1522
1486
|
mindspore/nn/layer/thor_layer.py,sha256=1MxrgxakYGMXfsWS29BAFWmW5YrNDefD_ZrXcvyMTVQ,50913
|
|
1523
|
-
mindspore/nn/layer/timedistributed.py,sha256=
|
|
1524
|
-
mindspore/nn/layer/transformer.py,sha256=
|
|
1487
|
+
mindspore/nn/layer/timedistributed.py,sha256=d3Fm0tO3ZpxSSQ3ms05ADfcOjgyVNtEHIchqeeW_fX8,6982
|
|
1488
|
+
mindspore/nn/layer/transformer.py,sha256=l48CidrRaE6xaBmBy9z_5Hm_OGq_6XQkAAT_Yg68ywg,47829
|
|
1525
1489
|
mindspore/nn/loss/__init__.py,sha256=2vHdMgQYaY_dt3jvVJ-9Jsn19n3XsxQuxp-Euo1D7O0,2059
|
|
1526
|
-
mindspore/nn/loss/loss.py,sha256=
|
|
1490
|
+
mindspore/nn/loss/loss.py,sha256=aXuRlgw0dn6IbtufF6bL6yj-0pFN1zCSIHouYbgauQM,130097
|
|
1527
1491
|
mindspore/nn/optim/__init__.py,sha256=BQgBp4xKSN3u6gT0j63sYPOOSkvhx10zCXwE98Nxs_U,2131
|
|
1528
1492
|
mindspore/nn/optim/_dist_optimizer_registry.py,sha256=QCStnVs_7DV6kmmsYZ0i9Lo-7xUxdh4gNtjwEWm8YyQ,4242
|
|
1529
|
-
mindspore/nn/optim/ada_grad.py,sha256=
|
|
1530
|
-
mindspore/nn/optim/adadelta.py,sha256=
|
|
1493
|
+
mindspore/nn/optim/ada_grad.py,sha256=MLcIINO1cmldObanrjGUyvhvYdxJyurO2E4CO7n32Mo,11538
|
|
1494
|
+
mindspore/nn/optim/adadelta.py,sha256=c_IZ8F7ETdITc9TlhdDzOqxitAM8G9olcS3mO0ewwGE,11353
|
|
1531
1495
|
mindspore/nn/optim/adafactor.py,sha256=9k1YLszp_nr6lyPJVtQvyHFLSToSC59f5OfLHKhxOXA,21902
|
|
1532
|
-
mindspore/nn/optim/adam.py,sha256=
|
|
1496
|
+
mindspore/nn/optim/adam.py,sha256=eSXHcdAcIiqztJvHUNVBd5MKl4teiFk6-B8p6B2lITA,70865
|
|
1533
1497
|
mindspore/nn/optim/adamax.py,sha256=jsuRAoGF9N8L-SHTUQTAj99W2U8MSWR6JGc1RyCv9-4,11978
|
|
1534
1498
|
mindspore/nn/optim/adasum.py,sha256=mFxpAVX5jpJ5IapZVjqevuBjI3WSm2aSpR28av1cclk,25905
|
|
1535
1499
|
mindspore/nn/optim/asgd.py,sha256=gJWq94m1yNoEdxcdu6jhtPPOcyYVnzWXw7zF8mUdlMQ,11077
|
|
1536
1500
|
mindspore/nn/optim/ftrl.py,sha256=gSxcN04FWat2Qx59mKqF21eCDdgoPq42sdp_2EYNy0c,20470
|
|
1537
1501
|
mindspore/nn/optim/lamb.py,sha256=K4CvhLUSihtbk39Lhn0rjDC-yoRJXdeCABXqK7uKnq0,16548
|
|
1538
|
-
mindspore/nn/optim/lars.py,sha256=
|
|
1502
|
+
mindspore/nn/optim/lars.py,sha256=n92S6IEvG8g1v_Mr-yURqWhkKbk2E__DIqtPNt2SuGE,9717
|
|
1539
1503
|
mindspore/nn/optim/lazyadam.py,sha256=thdFiCSmjr_g-NpU75gQAGb5S1RdFLv6fJIWlP2LsnE,29038
|
|
1540
1504
|
mindspore/nn/optim/momentum.py,sha256=SOJF5xIPOarOr6CIVkoojAFWVT_X5YBKOJe_WcH35y0,12710
|
|
1541
|
-
mindspore/nn/optim/optimizer.py,sha256=
|
|
1505
|
+
mindspore/nn/optim/optimizer.py,sha256=lX1l2Owk-EXR4ks4mCXYByrEYJl-pRb36QuYES0Sd2k,48625
|
|
1542
1506
|
mindspore/nn/optim/proximal_ada_grad.py,sha256=nfUcX7CMfuLmFmpfufhT5vyiUkoT-3G97EgA7JCXgxc,13454
|
|
1543
1507
|
mindspore/nn/optim/rmsprop.py,sha256=zvxRdksyVyrdkSIMvx_ihCDRoLON3HeCLKa0J-NiERw,14384
|
|
1544
|
-
mindspore/nn/optim/rprop.py,sha256
|
|
1508
|
+
mindspore/nn/optim/rprop.py,sha256=-ciVylBy5AxBQE5d05g-UpAcPR7-rqKMvt6jFGybjfA,13238
|
|
1545
1509
|
mindspore/nn/optim/sgd.py,sha256=thp9H-dZZWqfbNjZ8dmLlEsbcEYV13W5zvEEyNCcHNU,11879
|
|
1546
1510
|
mindspore/nn/optim/tft_wrapper.py,sha256=yGF7K6g_VAGMp-sPQIajW5v4maDKNKf3Y9zijsHI7t0,5424
|
|
1547
|
-
mindspore/nn/optim/thor.py,sha256=
|
|
1511
|
+
mindspore/nn/optim/thor.py,sha256=YcjHUeMEGF_j8wKiYnYc1Igo93t8URWu0qQrzrfrLN4,68134
|
|
1548
1512
|
mindspore/nn/probability/__init__.py,sha256=zj-S1BqrQhm7MPYZDY6Cx6S8hfRa4QwtEnhXsbI9ly8,811
|
|
1549
1513
|
mindspore/nn/probability/bijector/__init__.py,sha256=u-43yMoPja3VPXilQ7UY7VDL-s4HoTUmIKozaP66nQw,1120
|
|
1550
1514
|
mindspore/nn/probability/bijector/bijector.py,sha256=FSk2_CSl7OAMayvnPbVrxJD68yRmhdowytr9P_zX59k,13624
|
|
@@ -1589,38 +1553,40 @@ mindspore/nn/reinforcement/tensor_array.py,sha256=zxl51Fu64V8LWwbcTkGo7fgJkpGz5-
|
|
|
1589
1553
|
mindspore/nn/sparse/__init__.py,sha256=T3NGPaPjAJuvidXMog3bV6zYnLCxzMLz0w7uXU1XqIY,895
|
|
1590
1554
|
mindspore/nn/sparse/sparse.py,sha256=CfrHEaujgF2D528YhL85cPFw_V7Vomlw1chx-96NzwQ,6468
|
|
1591
1555
|
mindspore/nn/utils/__init__.py,sha256=-x4YiSLabGrMk5UE0TMN-ck1HaV2xXGc_u4nWc08-Fk,796
|
|
1592
|
-
mindspore/nn/utils/init.py,sha256=
|
|
1556
|
+
mindspore/nn/utils/init.py,sha256=HoE8opNev5jMwwsT0Czid0m2T-kFCDyfqwUT_SB8rno,3398
|
|
1593
1557
|
mindspore/nn/wrap/__init__.py,sha256=XTfWF03VqMlI0JTwloGsVJaGvoQCDFyWlvskH-HQwdo,1808
|
|
1594
|
-
mindspore/nn/wrap/cell_wrapper.py,sha256=
|
|
1558
|
+
mindspore/nn/wrap/cell_wrapper.py,sha256=WH3EA0BrEWEkio-q26uuSrDjZX2ptKUO6eHE3ILxE34,39373
|
|
1595
1559
|
mindspore/nn/wrap/grad_reducer.py,sha256=CXKsQm5-oAnn_xnwNDMhsaOUTh1QjecHpNnXxx960EI,25540
|
|
1596
|
-
mindspore/nn/wrap/loss_scale.py,sha256=
|
|
1560
|
+
mindspore/nn/wrap/loss_scale.py,sha256=n2moAPbkGU8qm7zy-x9qsbgQ5VR4Ja8-hOCOIWH8nhw,32197
|
|
1597
1561
|
mindspore/numpy/__init__.py,sha256=NigCtrlzoAVEeynXeawF7AHmiaMBa6VNDlUF3i5F2N0,8639
|
|
1598
|
-
mindspore/numpy/array_creations.py,sha256=
|
|
1599
|
-
mindspore/numpy/array_ops.py,sha256=
|
|
1562
|
+
mindspore/numpy/array_creations.py,sha256=_AcgA_O4VSjLK_y4wBVrQEKAAF6733u6copeVAquYwc,101725
|
|
1563
|
+
mindspore/numpy/array_ops.py,sha256=7Vm1JPX29qm9GHOrQva-us7lqCqr2wCi8k3NhwCl8C0,92317
|
|
1600
1564
|
mindspore/numpy/dtypes.py,sha256=0i3rls0dzfLpcrI5Mn_ZSfBEPC9ib4vYqNhrH9Mc5B8,4818
|
|
1601
1565
|
mindspore/numpy/fft.py,sha256=_n8fis-2j4vKm4Q46Fx8pI_B48iaTO1pPRhwGa6CyLA,40153
|
|
1602
|
-
mindspore/numpy/logic_ops.py,sha256=
|
|
1603
|
-
mindspore/numpy/math_ops.py,sha256=
|
|
1604
|
-
mindspore/numpy/utils.py,sha256=
|
|
1605
|
-
mindspore/numpy/utils_const.py,sha256=
|
|
1606
|
-
mindspore/ops/__init__.py,sha256=
|
|
1566
|
+
mindspore/numpy/logic_ops.py,sha256=qLL3xMDpuyyWoLZklHUx8veZwJjK5hWpIsV9p2aXGgA,31574
|
|
1567
|
+
mindspore/numpy/math_ops.py,sha256=Ds0Pnc7LeGndKys--MeQ8tMydfKGINvTAUjuEND2T_g,210485
|
|
1568
|
+
mindspore/numpy/utils.py,sha256=YbAwySoFpS-n7FJnlsDnhOsxOsPkGYNNLnDQH0YBkw0,6822
|
|
1569
|
+
mindspore/numpy/utils_const.py,sha256=eXmH0mbn5lkqqFGLQ6WruRD9JzFZZiQ13J6Cvfvr7Ig,16268
|
|
1570
|
+
mindspore/ops/__init__.py,sha256=z0tpkV-GUD8OBS8P2sarQ1oxW3MfJNTPYbeF_NX9g7c,2614
|
|
1607
1571
|
mindspore/ops/_constants.py,sha256=4C_p7rtb_BtiutWE0ValMiVFPFH0ywPHETFHhQsKe9E,1020
|
|
1608
1572
|
mindspore/ops/_primitive_cache.py,sha256=0-y-KofNV5SsVvDiyCGnAFSSPQDhfvl-5cfK87t1Mt8,3159
|
|
1609
1573
|
mindspore/ops/_register_for_op.py,sha256=Nz2bBGJ-9iSk8Cls7jp_rZF3-CPW5djuqhdn-luAf3E,2358
|
|
1610
1574
|
mindspore/ops/deprecated.py,sha256=R2rT7Nt5pQVBIC9vvo62Y3dWDyFjNiNqyBLmDWPDo_A,12123
|
|
1611
|
-
mindspore/ops/functional.py,sha256=
|
|
1575
|
+
mindspore/ops/functional.py,sha256=t_lWVdam3EWkmgNTkDgixDt1QV4jZ4t8r8zHi5SInN8,24710
|
|
1576
|
+
mindspore/ops/functional_overload.py,sha256=KNxdpxFMko2_dfS6CcOFudA4iREBmwTG3661RPJLerk,35788
|
|
1612
1577
|
mindspore/ops/op_info_register.py,sha256=3vdVoHMcTJjzMNhaFEs5p45IWys5m02xT3_GSNmFzh8,64683
|
|
1613
|
-
mindspore/ops/primitive.py,sha256=
|
|
1578
|
+
mindspore/ops/primitive.py,sha256=uATpssZSafVcMjL4WSA7CIi0EOqzTsqhOJSyz4HPLO0,40834
|
|
1614
1579
|
mindspore/ops/signature.py,sha256=bz1DlHwOsJhY-jV_Z2Be8Zd1NZeR7xz0PQmmFkwkkj4,2932
|
|
1580
|
+
mindspore/ops/tensor_method.py,sha256=aevRGcgBCGf8Oyb6rGHsIMon0RshtdDn9jfJGeTrX2Q,36815
|
|
1615
1581
|
mindspore/ops/vm_impl_registry.py,sha256=GNlbW_3pE7jEKuWoSp4diqr4UxomF3XXVB-j4S_fWbY,2652
|
|
1616
1582
|
mindspore/ops/_grad_experimental/__init__.py,sha256=1n_BwozGFh0o0-QYtjeTy2Q2AEFuRzOmbWRf49yXAUk,1538
|
|
1617
1583
|
mindspore/ops/_grad_experimental/grad_array_ops.py,sha256=arwU6teOBW2wKJZZ7aDEDVehXqwwa9m_JGuvTRB2gAw,30748
|
|
1618
1584
|
mindspore/ops/_grad_experimental/grad_base.py,sha256=zSMMUGn0TnzbJX4Mk5PKYFtiukWuP2Cb4TwUbyrTbbo,4671
|
|
1619
|
-
mindspore/ops/_grad_experimental/grad_comm_ops.py,sha256=
|
|
1620
|
-
mindspore/ops/_grad_experimental/grad_debug_ops.py,sha256=
|
|
1585
|
+
mindspore/ops/_grad_experimental/grad_comm_ops.py,sha256=7EDntJK8_LDSW1Vtynd2Q5gKoGiXyH25mxerm3R17o0,31947
|
|
1586
|
+
mindspore/ops/_grad_experimental/grad_debug_ops.py,sha256=LnsqpN4fUSJnqMVtVEbfPP2KofRSlMdcehfFw3WBzhQ,1227
|
|
1621
1587
|
mindspore/ops/_grad_experimental/grad_implementations.py,sha256=DH2riOti3mKEzsoye1zsTVsHyI09hpbXxW0FFuPa3cw,6215
|
|
1622
|
-
mindspore/ops/_grad_experimental/grad_inner_ops.py,sha256=
|
|
1623
|
-
mindspore/ops/_grad_experimental/grad_math_ops.py,sha256=
|
|
1588
|
+
mindspore/ops/_grad_experimental/grad_inner_ops.py,sha256=TM40SU6tY3t3a8Y1Jp-KZ1qGO0EphFUfs9PnSd-bUn8,2751
|
|
1589
|
+
mindspore/ops/_grad_experimental/grad_math_ops.py,sha256=R7MVLcyJL15baoRft8tBS_G1Lohu-oVDuhGE2te26Ro,33020
|
|
1624
1590
|
mindspore/ops/_grad_experimental/grad_nn_ops.py,sha256=RacI8heI8fyJ6zPZ0OG3-7ppxiTzjGDN0uw4nBS0CMc,8259
|
|
1625
1591
|
mindspore/ops/_grad_experimental/grad_quant_ops.py,sha256=i_bn8L1tJt7yzCzGFT1zEKFVrikkMghj20AAuobRr6A,8646
|
|
1626
1592
|
mindspore/ops/_grad_experimental/grad_sparse.py,sha256=nWgghQOdwhm8SVfBYvmEY0ISapfehhwllB_-pOPa3_E,14304
|
|
@@ -2155,7 +2121,7 @@ mindspore/ops/_op_impl/akg/gpu/csr_mm.py,sha256=yk3GlyKEB1RQtnyoLViK300fN5b2ufQQ
|
|
|
2155
2121
|
mindspore/ops/_op_impl/akg/gpu/csr_mul.py,sha256=3yYXSnRutwR96fJwCBUwDGO2plLMoydoQSTKbgjr-a8,1360
|
|
2156
2122
|
mindspore/ops/_op_impl/akg/gpu/csr_mv.py,sha256=SzkfK_qRlVO2HlkopoLzhnrzpmwq11pcJSix2GwD6EA,1353
|
|
2157
2123
|
mindspore/ops/_op_impl/akg/gpu/csr_reduce_sum.py,sha256=GQhZepfYmhw-GNtwAdQKOQq1JWSrYtDVpcawzLyicOM,1282
|
|
2158
|
-
mindspore/ops/_op_impl/cpu/__init__.py,sha256=
|
|
2124
|
+
mindspore/ops/_op_impl/cpu/__init__.py,sha256=tX7mOVGh9ZMwDX0z_8rIo6-Wfciwt7vyUgNzn2iWTzw,3119
|
|
2159
2125
|
mindspore/ops/_op_impl/cpu/adam.py,sha256=Hp0p-MKLVvi3kgfmCt3ViRUEWpJI_JKNmNl_iemw0Kw,2161
|
|
2160
2126
|
mindspore/ops/_op_impl/cpu/adam_weight_decay.py,sha256=l9sv9O1PRSwy0GzCc8DcGlkcaojvbv1KWF1rzw4wKHk,2188
|
|
2161
2127
|
mindspore/ops/_op_impl/cpu/arg_max.py,sha256=RKBhJJ8q44rBGHEjY_rR3seKzC0ghF1zIu68l4niaqg,1116
|
|
@@ -2200,6 +2166,7 @@ mindspore/ops/_op_impl/cpu/pow.py,sha256=jghd0FWl3kpTVxS3ccrzc614M1BFTQjilDygNWs
|
|
|
2200
2166
|
mindspore/ops/_op_impl/cpu/priority_replay_buffer.py,sha256=UEAsWmmxcj_yUTvLR50vHrzyFHmAMvtLa07XI5o3kU0,1445
|
|
2201
2167
|
mindspore/ops/_op_impl/cpu/pyexecute.py,sha256=4Qz9R8elh4SK2jX8l99Zlori607iVCYs6b1ZKiW6TBU,1065
|
|
2202
2168
|
mindspore/ops/_op_impl/cpu/pyfunc.py,sha256=80uvjQCTKiqNLVECiGLtDB20PKk4o652YaMC2Bal2h4,1047
|
|
2169
|
+
mindspore/ops/_op_impl/cpu/raise_op.py,sha256=_zWIfJgFdaQBkg1iHb-1J4bzPKSaP8N-Fto4jotANnI,1059
|
|
2203
2170
|
mindspore/ops/_op_impl/cpu/range.py,sha256=q7jxlixo6vEsBSQ-Y0nL44EyBKkfusa3eQsRlb9Dr8k,1470
|
|
2204
2171
|
mindspore/ops/_op_impl/cpu/real_div.py,sha256=R7MatuHe-4NeRhj4IiL5XnJACCWkAOz0k-JqJzVLXeo,1383
|
|
2205
2172
|
mindspore/ops/_op_impl/cpu/reduce_all.py,sha256=KjpFjEIr3ZeABZ5Bb51DH1KIj7-tNME2PCBm72FE5fY,1072
|
|
@@ -2224,32 +2191,32 @@ mindspore/ops/_op_impl/cpu/transpose.py,sha256=GHOV676WsbSk-cX1YtcEb6B8w7-3PH6M4
|
|
|
2224
2191
|
mindspore/ops/_utils/__init__.py,sha256=7EdoAfMtirHi-kVNSHO0ZUNaJ-0S-ijkDXt-isgSZ1I,858
|
|
2225
2192
|
mindspore/ops/_utils/utils.py,sha256=_N3sV9i0uYkJCfMuNIgSsG_8nLq7IwEPMPzgbdH8hYo,5624
|
|
2226
2193
|
mindspore/ops/_vmap/__init__.py,sha256=cL3N2LPHLl7vvXkrvB4R1xKV7ir-vmp0fp3lJz-Y5yc,1258
|
|
2227
|
-
mindspore/ops/_vmap/vmap_array_ops.py,sha256=
|
|
2228
|
-
mindspore/ops/_vmap/vmap_base.py,sha256=
|
|
2194
|
+
mindspore/ops/_vmap/vmap_array_ops.py,sha256=FS37SB8FNYvDuuBJPnMrRd9xAFuTzl-_yvSpREubyjw,75839
|
|
2195
|
+
mindspore/ops/_vmap/vmap_base.py,sha256=dl1eIdYa6oVSqBHXCkWjir2VGDiZUInabyB9xEyH9i0,17674
|
|
2229
2196
|
mindspore/ops/_vmap/vmap_convolution_ops.py,sha256=gJ00KJBkgANdgHNer8a_563C23qy1-qnps3__hwO0xA,17801
|
|
2230
2197
|
mindspore/ops/_vmap/vmap_debug_ops.py,sha256=WyHik77TtiqBmNR2I3dU068DnN-aYhiJZigMvR9-Loc,1795
|
|
2231
2198
|
mindspore/ops/_vmap/vmap_grad_math_ops.py,sha256=NqEsvT5jPMqi4i_708x3nuVQrSk_Fk0SN-mvT4SmAzc,10377
|
|
2232
|
-
mindspore/ops/_vmap/vmap_grad_nn_ops.py,sha256=
|
|
2199
|
+
mindspore/ops/_vmap/vmap_grad_nn_ops.py,sha256=X620aBK_BrKQailFR8p6FZAaTcj8cnXO6GDmv1oZnp8,32093
|
|
2233
2200
|
mindspore/ops/_vmap/vmap_image_ops.py,sha256=b6q0Uy3Rp7sCmQ6vK7XqDfrm2OoSl9LAkzy-nZgfh48,7801
|
|
2234
|
-
mindspore/ops/_vmap/vmap_math_ops.py,sha256=
|
|
2235
|
-
mindspore/ops/_vmap/vmap_nn_ops.py,sha256=
|
|
2201
|
+
mindspore/ops/_vmap/vmap_math_ops.py,sha256=wkvDuxfh93PZ8u-NCCz4wOP7FRjcW7Dxw_lHO2xtRew,34858
|
|
2202
|
+
mindspore/ops/_vmap/vmap_nn_ops.py,sha256=4zVMn-uRmXNP1cwh07SjIIDPwOmPYA9GPnnl5jgFu3w,89592
|
|
2236
2203
|
mindspore/ops/_vmap/vmap_other_ops.py,sha256=21oWNHEq17YjJHLfPGedQZbmwjWdOaS3yiGV3JYqB0s,3781
|
|
2237
2204
|
mindspore/ops/_vmap/vmap_random_ops.py,sha256=EQEHx_vsDqbjkLXkEAXU8NZgZqWtFFEcZIZqHjdhjhU,4238
|
|
2238
2205
|
mindspore/ops/_vmap/vmap_sparse_ops.py,sha256=Jll-ludZIyTDRnUbVHG-wQAXeljJKG6dcwwx1J-kNcA,4505
|
|
2239
2206
|
mindspore/ops/auto_generate/__init__.py,sha256=Kq_RAuCqfKJBTYS3EglLjTVpQl_N9wl4P1m5oDP-Its,1057
|
|
2240
|
-
mindspore/ops/auto_generate/cpp_create_prim_instance_helper.py,sha256=
|
|
2207
|
+
mindspore/ops/auto_generate/cpp_create_prim_instance_helper.py,sha256=hDTOdfeL_3YKdoBevvAt6rcFT6w40EC8LFn7N8aLgSQ,30140
|
|
2241
2208
|
mindspore/ops/auto_generate/gen_arg_dtype_cast.py,sha256=qB_sbZ0Y5-BPHag_weYdGMeUDwI63dL7gIf1-RXqcI8,8394
|
|
2242
|
-
mindspore/ops/auto_generate/gen_arg_handler.py,sha256=
|
|
2243
|
-
mindspore/ops/auto_generate/gen_extend_func.py,sha256=
|
|
2244
|
-
mindspore/ops/auto_generate/gen_ops_def.py,sha256=
|
|
2245
|
-
mindspore/ops/auto_generate/gen_ops_prim.py,sha256=
|
|
2246
|
-
mindspore/ops/auto_generate/pyboost_inner_prim.py,sha256=
|
|
2209
|
+
mindspore/ops/auto_generate/gen_arg_handler.py,sha256=qMgFyDmRez0mDDWPKugTsFNyvCc4X1lpb71NUmGs-L4,4432
|
|
2210
|
+
mindspore/ops/auto_generate/gen_extend_func.py,sha256=ra8XWVoLS4vcgK_VHW05ZcKo8vG_TB50p_PHtOWij6c,84565
|
|
2211
|
+
mindspore/ops/auto_generate/gen_ops_def.py,sha256=4ywVNVjw_TwZTRv5qanzoQiMA25do2QfXmloi2QcGBw,377714
|
|
2212
|
+
mindspore/ops/auto_generate/gen_ops_prim.py,sha256=puDHDpb59VSkKbCuS0i-a3ksZxxwMzqJ_bkTndqvNRc,704092
|
|
2213
|
+
mindspore/ops/auto_generate/pyboost_inner_prim.py,sha256=5VcNLrxKWADPN4S1wsH5EaMMkzaJLjnUtkyUPZ8X_6k,25813
|
|
2247
2214
|
mindspore/ops/composite/__init__.py,sha256=baDB6Cqe1NZw6-WM14rHQwR4mtaVu7td_xms0IsqQVM,2377
|
|
2248
|
-
mindspore/ops/composite/base.py,sha256=
|
|
2215
|
+
mindspore/ops/composite/base.py,sha256=yszRJ51XdY7gE1VdRNK_hGJQhENiuUCI1qzF5ex8_Rs,50363
|
|
2249
2216
|
mindspore/ops/composite/env_ops.py,sha256=F4fWM5TNs1ZS4gQA0eDoKFjdEdJWcCrNm9bM6ty4XcE,1666
|
|
2250
2217
|
mindspore/ops/composite/math_ops.py,sha256=p3qohR1nph-P6SL0Q2GcFs-04w1yAlLhAlMt3_iJfbM,4812
|
|
2251
2218
|
mindspore/ops/composite/multitype_ops/__init__.py,sha256=BAyVWzZo90w3svyJdNAmWofdwloSfiA_UfaltflqRHo,3227
|
|
2252
|
-
mindspore/ops/composite/multitype_ops/_compile_utils.py,sha256=
|
|
2219
|
+
mindspore/ops/composite/multitype_ops/_compile_utils.py,sha256=OLqpjhZcao9cdPZulihorZ6XqDDMwTHA78pfwV-MaPw,65272
|
|
2253
2220
|
mindspore/ops/composite/multitype_ops/_constexpr_utils.py,sha256=c8d_3nVZPdNo3tYHW7agoLqNeUWnR85seIMQA2oZJkE,28476
|
|
2254
2221
|
mindspore/ops/composite/multitype_ops/add_impl.py,sha256=HS3I_OnZ5z2H0em194zN5zdI8jCINTKcexHfZQVjv0U,12999
|
|
2255
2222
|
mindspore/ops/composite/multitype_ops/bitwise_and_impl.py,sha256=wgWfD5YsZIVclB4DdSFPoFo0rxRn85JQmTu5TkfA_mg,1921
|
|
@@ -2274,38 +2241,38 @@ mindspore/ops/composite/multitype_ops/negative_impl.py,sha256=cvIFp9645NkIhfLDcJ
|
|
|
2274
2241
|
mindspore/ops/composite/multitype_ops/not_equal_impl.py,sha256=rR9_8H__p9quiVUl6IOzDn4h9ordXPX1Td9R2-FpW6w,5815
|
|
2275
2242
|
mindspore/ops/composite/multitype_ops/not_in_impl.py,sha256=7G3Psei1c1z8koL_SD8XsrUWKPduuN95Eh9LC_QUyps,4918
|
|
2276
2243
|
mindspore/ops/composite/multitype_ops/ones_like_impl.py,sha256=LxdXW0MHJoVeHto9ZjrOjxWKrk6Z8eXI5ke5fetzVeo,3088
|
|
2277
|
-
mindspore/ops/composite/multitype_ops/pow_impl.py,sha256=
|
|
2244
|
+
mindspore/ops/composite/multitype_ops/pow_impl.py,sha256=0b6FOJ1Ff1W917Bwq5cdO1TA3IpV12ckhW-gCy56VH4,1837
|
|
2278
2245
|
mindspore/ops/composite/multitype_ops/right_shift_impl.py,sha256=D_meVwIm05G0TIL6l0CCnepZx0PsqQShljV2F2wEiCw,1384
|
|
2279
2246
|
mindspore/ops/composite/multitype_ops/setitem_impl.py,sha256=O0Y6RqF7TDop0qHp7cJ_NQmctfNGh9-PwOOzTuevWtw,26873
|
|
2280
2247
|
mindspore/ops/composite/multitype_ops/sub_impl.py,sha256=5EitcuPYsU82oqWP2E91dMQi4GOTUzqLpqo23niqsIM,3986
|
|
2281
2248
|
mindspore/ops/composite/multitype_ops/uadd_impl.py,sha256=oDWO4q4WaSIb_LqL9ezrBOq1NDRkFgtpO2togyjj278,1039
|
|
2282
2249
|
mindspore/ops/composite/multitype_ops/zeros_like_impl.py,sha256=BOsp3gTlFtvdf_iLSVjD8fAqjr-CIDRFCqkh0dm_Eoo,5347
|
|
2283
|
-
mindspore/ops/function/__init__.py,sha256=
|
|
2284
|
-
mindspore/ops/function/array_func.py,sha256=
|
|
2285
|
-
mindspore/ops/function/clip_func.py,sha256=
|
|
2286
|
-
mindspore/ops/function/debug_func.py,sha256=
|
|
2250
|
+
mindspore/ops/function/__init__.py,sha256=myboq6tumh8t-30xwHjtZrjg8wQY4ufJkZ4WTKais2Q,12738
|
|
2251
|
+
mindspore/ops/function/array_func.py,sha256=BLlfp-ERHUdLL4y8vMzOkwaeUQPkoU4x7qLhB-4VYOQ,311287
|
|
2252
|
+
mindspore/ops/function/clip_func.py,sha256=WbBfNhZbtopoXtcKEmUH-8VIditbXkcx-Zj8muMgT_A,18260
|
|
2253
|
+
mindspore/ops/function/debug_func.py,sha256=YQDX2sAaC12vzz2zeyTI8uKHG0CM9Y2Oi_3BKfbhSV0,8433
|
|
2287
2254
|
mindspore/ops/function/fft_func.py,sha256=QtLn2k_c_NCRY08ElRzGyaOjuKWyWnQ62K1Iq35aQNQ,1269
|
|
2288
|
-
mindspore/ops/function/image_func.py,sha256=
|
|
2289
|
-
mindspore/ops/function/linalg_func.py,sha256=
|
|
2290
|
-
mindspore/ops/function/math_func.py,sha256=
|
|
2291
|
-
mindspore/ops/function/nn_func.py,sha256=
|
|
2255
|
+
mindspore/ops/function/image_func.py,sha256=v_EgZs08kPq62RyovZG_RbhznoJVZrAMha7H74--l4U,14345
|
|
2256
|
+
mindspore/ops/function/linalg_func.py,sha256=vtiOzqRVbTJFCZivcqLKzxljjlznXOqq280H67_W0QE,17665
|
|
2257
|
+
mindspore/ops/function/math_func.py,sha256=1rYKmI_WUZriNyPjQPPtI_JTAvCXnPmX5rRfps3AmbA,507560
|
|
2258
|
+
mindspore/ops/function/nn_func.py,sha256=EUdrM8-TG3qvNcFx-1w35rByTFbJjePAhD82NhamH2E,429085
|
|
2292
2259
|
mindspore/ops/function/other_func.py,sha256=BaZVrLaSKwH95gNr7m1ECQ5uY9IjDWHcfOlBPzsG_es,4005
|
|
2293
|
-
mindspore/ops/function/parameter_func.py,sha256=
|
|
2294
|
-
mindspore/ops/function/random_func.py,sha256=
|
|
2260
|
+
mindspore/ops/function/parameter_func.py,sha256=mpT0u5aBFceFFbt9argHw_CMNnljFHy21zn4r51Ffco,3669
|
|
2261
|
+
mindspore/ops/function/random_func.py,sha256=O8wvDEM0T23DCJFq6ONx5iXeGVHhxjyqUa2T6wXcitA,86846
|
|
2295
2262
|
mindspore/ops/function/reshard_func.py,sha256=K61as6EdUWHakhAdSCF3xquk9MLKizPoc-AoIOapb54,4561
|
|
2296
2263
|
mindspore/ops/function/sparse_func.py,sha256=Z8yGL2q7ZrEb6uNsGMBl5wQ77LBthbfykRPyVRtQLaU,35254
|
|
2297
|
-
mindspore/ops/function/sparse_unary_func.py,sha256=
|
|
2264
|
+
mindspore/ops/function/sparse_unary_func.py,sha256=McfNcd2fM3DQOX3D1q5wTz0sF8v_zX8hlDYQloOYZF8,74299
|
|
2298
2265
|
mindspore/ops/function/spectral_func.py,sha256=ioo9faYNZS0nxrJTmXkn_gDswNR4IDLXcu6k09Ybw6U,6357
|
|
2299
2266
|
mindspore/ops/function/vmap_func.py,sha256=vFDUrhpRp14xG4I_8OVw813PFRY9sUWYgGM000sUvB8,7039
|
|
2300
2267
|
mindspore/ops/function/grad/__init__.py,sha256=wmmbWR84qu8nil_JZLtrnIjUs2tfXdX7QFGMuukMmjw,990
|
|
2301
2268
|
mindspore/ops/function/grad/grad_func.py,sha256=E8mPBFMph5L9RsyGAc2awbDOhqZteB3FGusEaDchHcY,57885
|
|
2302
|
-
mindspore/ops/operations/__init__.py,sha256=
|
|
2269
|
+
mindspore/ops/operations/__init__.py,sha256=8J5PQ6x0vCLWrmwsWi2LADiRCaNGMclkj6ENIySSVgU,22245
|
|
2303
2270
|
mindspore/ops/operations/_csr_ops.py,sha256=C6nGgbXenAgl09agd5uhmG02HtmFaW4ayUhFeb55kAY,14042
|
|
2304
2271
|
mindspore/ops/operations/_custom_grad.py,sha256=GG8-UaliKkLdheNWCv8pL89ati4jLUFwZ7vWxz7B8x8,5110
|
|
2305
|
-
mindspore/ops/operations/_embedding_cache_ops.py,sha256=
|
|
2306
|
-
mindspore/ops/operations/_grad_ops.py,sha256=
|
|
2307
|
-
mindspore/ops/operations/_infer_ops.py,sha256=
|
|
2308
|
-
mindspore/ops/operations/_inner_ops.py,sha256=
|
|
2272
|
+
mindspore/ops/operations/_embedding_cache_ops.py,sha256=cGhGFMWxz1d3TBo9cXvKDE7nd68cMbsiy5_mswt5E6c,11401
|
|
2273
|
+
mindspore/ops/operations/_grad_ops.py,sha256=1-tk9DOR6wbpb_5YEChcjPl05-qMYEdQc2tNJz8Th-8,139489
|
|
2274
|
+
mindspore/ops/operations/_infer_ops.py,sha256=jzmk4ZPi7PivoWAqIwOecBAg_X0hYl2j4MajEUteE8o,1034
|
|
2275
|
+
mindspore/ops/operations/_inner_ops.py,sha256=kJbdEWL7frhj_8Kbz6oaHscupQno4OAmctFRPTELllw,97766
|
|
2309
2276
|
mindspore/ops/operations/_map_tensor_ops.py,sha256=7_0Zc_F9AosVgluhbd8BiFxa3cJl_K_Uh6IzTm9CAyM,3499
|
|
2310
2277
|
mindspore/ops/operations/_ms_kernel.py,sha256=Be7RjwhrB__P8PqUst5NygtgYXJQLP1zVW-trBE5ii8,22215
|
|
2311
2278
|
mindspore/ops/operations/_ocr_ops.py,sha256=0DZjfHFDEnx32TrgOIcTyi9rCzCi0LoNmeifspnXpXs,15112
|
|
@@ -2318,16 +2285,16 @@ mindspore/ops/operations/_sequence_ops.py,sha256=giC76BqmbfA3aZkH5_hYB2zeAoSfPqV
|
|
|
2318
2285
|
mindspore/ops/operations/_sparse_grad_ops.py,sha256=In_NFqax7tKKmSBhUw0am9bE4-RAhp9PC1JPu8aZwdI,2307
|
|
2319
2286
|
mindspore/ops/operations/_tensor_array.py,sha256=jcBHVerF3ttrWyCrNDM1pHmQuv6qeNG-jrwD1ioFmRs,12061
|
|
2320
2287
|
mindspore/ops/operations/_thor_ops.py,sha256=G6FF6VKgl5cOEKPcroRz1jg8V30Ot4AcM6WAAJbZZZc,29528
|
|
2321
|
-
mindspore/ops/operations/array_ops.py,sha256=
|
|
2322
|
-
mindspore/ops/operations/comm_ops.py,sha256=
|
|
2288
|
+
mindspore/ops/operations/array_ops.py,sha256=fx6RQi7Gcj9o_EkDjr74k-Cc5VjjfCd7UrmpyASnHmQ,257811
|
|
2289
|
+
mindspore/ops/operations/comm_ops.py,sha256=cbxmZzFVsggjTCQKSiOk383bZ-5jWBv6ULu0KviQwls,80990
|
|
2323
2290
|
mindspore/ops/operations/control_ops.py,sha256=ddMcmmGTBF0KgP91B6jJuhwgs_POMQZZ0kR938YbMM4,4677
|
|
2324
|
-
mindspore/ops/operations/custom_ops.py,sha256=
|
|
2325
|
-
mindspore/ops/operations/debug_ops.py,sha256=
|
|
2291
|
+
mindspore/ops/operations/custom_ops.py,sha256=88RzlFG2cYFlNcsJj0rFzP6IvE6IQWYxitVpLLjfb7g,52378
|
|
2292
|
+
mindspore/ops/operations/debug_ops.py,sha256=SiqTKt0NIQMzVQvAAmgpAMEbIDJyca-HdE4lguKIEw0,25658
|
|
2326
2293
|
mindspore/ops/operations/image_ops.py,sha256=muIxvZZg1iTg5lPrWKzYeqNanM0EErrWZ7YD1p0B2Rs,53687
|
|
2327
|
-
mindspore/ops/operations/inner_ops.py,sha256=
|
|
2328
|
-
mindspore/ops/operations/linalg_ops.py,sha256=
|
|
2329
|
-
mindspore/ops/operations/math_ops.py,sha256=
|
|
2330
|
-
mindspore/ops/operations/nn_ops.py,sha256=
|
|
2294
|
+
mindspore/ops/operations/inner_ops.py,sha256=RGqjt4Udcd9d2lqcmx2dOD2U4_RLf_6fO_GjhwkF9RE,34861
|
|
2295
|
+
mindspore/ops/operations/linalg_ops.py,sha256=ZPXq9Gn-D3gFNVqqJPAjElFCrSZreZboNY2YYc8dQys,4209
|
|
2296
|
+
mindspore/ops/operations/math_ops.py,sha256=3vPxFnH9nh849tGzkRWH6qOb-i_tGg3RdhMK0Juh3_8,183044
|
|
2297
|
+
mindspore/ops/operations/nn_ops.py,sha256=dragqJJrE6jj5MfoXPgV6rHBJCa2U3G-q9OltwepHbs,478621
|
|
2331
2298
|
mindspore/ops/operations/other_ops.py,sha256=PbMPAtTmlvvgqEfg_cM2nUSew643uQcmZpyDx_YWT94,36056
|
|
2332
2299
|
mindspore/ops/operations/random_ops.py,sha256=ce8qMPXmQUeJ13vyWZauQUKoswQonn4DotZojVt3OHM,57439
|
|
2333
2300
|
mindspore/ops/operations/reshard_ops.py,sha256=K-fHNLmvqi1SGzhx54kjZ9Iw7vhHMTBDRlKVUpw3ZLE,2057
|
|
@@ -2336,35 +2303,62 @@ mindspore/ops/operations/sparse_ops.py,sha256=vn1V_73_eES6ydh2acKzIY5h1tWHy_nPXB
|
|
|
2336
2303
|
mindspore/ops/operations/spectral_ops.py,sha256=GOJ2T8Ib6qV1tBl4jkmLVEwqD3IO2FSgP1mq8Is0Fm4,4582
|
|
2337
2304
|
mindspore/ops/operations/manually_defined/__init__.py,sha256=cr7TijWEcJw1xuu3itAH_vJbF3kO03Cf162xlTj0A5s,765
|
|
2338
2305
|
mindspore/ops/operations/manually_defined/_inner.py,sha256=q4gaumwFXauDLxH0uIClyHJAp_EhWtK4EN3KJi8PzQg,2603
|
|
2339
|
-
mindspore/ops/operations/manually_defined/ops_def.py,sha256=
|
|
2306
|
+
mindspore/ops/operations/manually_defined/ops_def.py,sha256=IbEJJRbjyB6Ar0k-HpKI6_ONCKkUzQ3A9KIFJirF-mg,91336
|
|
2340
2307
|
mindspore/ops_generate/__init__.py,sha256=PlN0iCvYF4uEU5Rn3Jg2VrLDKItbmLJJvn5JmIO5vEg,922
|
|
2308
|
+
mindspore/ops_generate/aclnn_kernel_register_auto_cc_generator.py,sha256=XIYu6qiXeyej0v6BOi6ig4lucawJWVHBgNOio09SlVM,4398
|
|
2309
|
+
mindspore/ops_generate/add_tensor_docs_generator.py,sha256=_XvcC8HgN20xclsKqYdat8135IMJc6ihDcqaMhpVAnM,2423
|
|
2341
2310
|
mindspore/ops_generate/arg_dtype_cast.py,sha256=qB_sbZ0Y5-BPHag_weYdGMeUDwI63dL7gIf1-RXqcI8,8394
|
|
2342
|
-
mindspore/ops_generate/arg_handler.py,sha256=
|
|
2343
|
-
mindspore/ops_generate/
|
|
2344
|
-
mindspore/ops_generate/
|
|
2345
|
-
mindspore/ops_generate/
|
|
2311
|
+
mindspore/ops_generate/arg_handler.py,sha256=qMgFyDmRez0mDDWPKugTsFNyvCc4X1lpb71NUmGs-L4,4432
|
|
2312
|
+
mindspore/ops_generate/auto_grad_impl_cc_generator.py,sha256=E_RGKtrHlG9550YsOk5VYeAQY4ItQ5BfEkGESifnJJk,6323
|
|
2313
|
+
mindspore/ops_generate/auto_grad_reg_cc_generator.py,sha256=dbb0bOrQTeYLqUdzeA_tq7NOqjCa3ggpFQ67vWcg_yY,4233
|
|
2314
|
+
mindspore/ops_generate/base_generator.py,sha256=fUgGciSr5BzSn0VTc657sBbrTBw7GtTtInMTl69HXuA,238
|
|
2315
|
+
mindspore/ops_generate/cpp_create_prim_instance_helper_generator.py,sha256=5-hhi3ePZO_NHvN2eLRGSeGi7fRH00izVr1VbSrdlEM,4391
|
|
2316
|
+
mindspore/ops_generate/functional_map_cpp_generator.py,sha256=gaIyO1rPLo7xAnDKHVfO_m2bx3ISVjUM1TT6wrSA-Fs,24340
|
|
2317
|
+
mindspore/ops_generate/functional_overload_py_generator.py,sha256=41f7p-L_CBhzjdcZkuidiqf3KKDqpfwbk246plkz1pw,5455
|
|
2318
|
+
mindspore/ops_generate/functions_cc_generator.py,sha256=Q8yiMX0VtkwyMuu7S9BCy7ubaAeoU0gWmta0Xp_Z28Q,9611
|
|
2319
|
+
mindspore/ops_generate/gen_aclnn_implement.py,sha256=TBWQ9RX-HSufxRqeyoUCTUThoBwQyl8FSjpkth9DHf0,11753
|
|
2320
|
+
mindspore/ops_generate/gen_constants.py,sha256=Q4uoMnzid46Zfu8RyKRUwgUIFjooJqn6MQ2l6UTGM-4,6725
|
|
2321
|
+
mindspore/ops_generate/gen_ops.py,sha256=WeUmAtw3nfUdhgvvaSfRNKHn74dqCNE2wVMJQZp1FtM,14753
|
|
2346
2322
|
mindspore/ops_generate/gen_ops_inner_prim.py,sha256=nSCUOseRyf_usE6fyoMljDOdfBnPIQf4gW26DlbaqmY,3441
|
|
2347
|
-
mindspore/ops_generate/gen_pyboost_func.py,sha256=
|
|
2348
|
-
mindspore/ops_generate/gen_utils.py,sha256=
|
|
2349
|
-
mindspore/ops_generate/
|
|
2350
|
-
mindspore/ops_generate/
|
|
2351
|
-
mindspore/ops_generate/
|
|
2352
|
-
mindspore/
|
|
2353
|
-
mindspore/
|
|
2323
|
+
mindspore/ops_generate/gen_pyboost_func.py,sha256=9qPGgYHTzqb0F86KtCA8UqTRHZww9kQJmETt6Xju4Rg,6055
|
|
2324
|
+
mindspore/ops_generate/gen_utils.py,sha256=2bvhqu79A6cy9DaT7jf1bgdgFxLNq-sDflHKito74nU,8986
|
|
2325
|
+
mindspore/ops_generate/lite_ops_cpp_generator.py,sha256=z3PLFBGkJeaESzkC5fAyzG7hH09sbtGeVCxZu-ghddU,6113
|
|
2326
|
+
mindspore/ops_generate/op_api_proto.py,sha256=1X103hV2j7NmFZb52mugD0jxe1Md42Q7NfiqqOVmOZQ,9405
|
|
2327
|
+
mindspore/ops_generate/op_def_py_generator.py,sha256=G4NoYIxqETyCBkeZKfAxkXt6rgzwcCdWlYhlhDQTbMI,5714
|
|
2328
|
+
mindspore/ops_generate/op_prim_py_generator.py,sha256=jqzrRowePO2dzmALxt76hXl1m7hI7ThO6O9mcRgLymk,19562
|
|
2329
|
+
mindspore/ops_generate/op_proto.py,sha256=9liiJ6EDqCm1MyVZ_roS_tTdnFFxNEGls07zmbCWmoc,15224
|
|
2330
|
+
mindspore/ops_generate/op_template_parser.py,sha256=TS4Rdw5c6QmAGJ5N7YIlAfHRJle7T-fdUb-QRkMggtU,17702
|
|
2331
|
+
mindspore/ops_generate/ops_def_cc_generator.py,sha256=RLjIzTdNVKpot-Iv-IrCAuSG_Qs7kE4-Do3_3zELO-Q,11638
|
|
2332
|
+
mindspore/ops_generate/ops_def_h_generator.py,sha256=5VfPuLq1-7Shs5neCsNxIPI8nsC8E_bh1QwvzyVxiiI,3114
|
|
2333
|
+
mindspore/ops_generate/ops_name_h_generator.py,sha256=Ov2NwlmYmNxTW5MuRwyGTNZo_tZ4us-5_6rxE3ENF60,2381
|
|
2334
|
+
mindspore/ops_generate/ops_primitive_h_generator.py,sha256=jwzKi8h6p_W0WgCX8Bu_JG7fJnGqP5PvRRPLq7Ibw10,3190
|
|
2335
|
+
mindspore/ops_generate/pyboost_functions_cpp_generator.py,sha256=SlFInXMdDymP_rHNVyCmQ5S63-0ZLGjg3U5nRPqG5yg,18958
|
|
2336
|
+
mindspore/ops_generate/pyboost_functions_h_generator.py,sha256=QpGa454Naf0hMRkhX37iBgutWvV4ZdU1S9yaBtAsXK4,2921
|
|
2337
|
+
mindspore/ops_generate/pyboost_functions_py_generator.py,sha256=koLmQmAkh5kROH6tNCWZnmxVZjDjo-3QwajR6WiSoPY,6409
|
|
2338
|
+
mindspore/ops_generate/pyboost_grad_function_cpp_generator.py,sha256=RmKU-TGfLMGsRtBMf6qwxR1JpiKuwdjHYNUsi5BNJUc,7743
|
|
2339
|
+
mindspore/ops_generate/pyboost_inner_prim_generator.py,sha256=oi2dNRFpK85ZWjG0Ia2ZKT184tgTuTBPAGS1_sw3fuw,6400
|
|
2340
|
+
mindspore/ops_generate/pyboost_native_grad_functions_generator.py,sha256=lGoT79ds8q6AcPEwJILSPqmRDxpi6pFtnruosSNbpsA,12973
|
|
2341
|
+
mindspore/ops_generate/pyboost_op_cpp_code_generator.py,sha256=0KR4kM9h72lxlibOUnJz8pQpnOdzx-RuH632kvmc8fA,44359
|
|
2342
|
+
mindspore/ops_generate/pyboost_overload_functions_cpp_generator.py,sha256=fg-iloOimHPvaOYZHWT4rw0q6vwtnskYF3XDPzAJcYM,17402
|
|
2343
|
+
mindspore/ops_generate/pyboost_utils.py,sha256=4bfon39RQW5aXtbIr_czOgrF5-D-CRcY9NZjU6rzscM,13837
|
|
2344
|
+
mindspore/ops_generate/template.py,sha256=NQXVr7ZdPa56WWJh7xVgGVk3OykN9aOUSVR69cDME1E,20272
|
|
2345
|
+
mindspore/ops_generate/tensor_func_reg_cpp_generator.py,sha256=19Ptc9eWEZJ8vjAedBMmTr0MoC912CuyNirM8XLHV40,21487
|
|
2346
|
+
mindspore/parallel/__init__.py,sha256=HXZLWKOFz59nINzXCL5zcH2mar0SPVKttINbCxVgN-0,1718
|
|
2347
|
+
mindspore/parallel/_auto_parallel_context.py,sha256=dSJ6lFF8U-Ghgl22wJ52-BBAriRUB_mKQ5RC20GbmYw,72513
|
|
2354
2348
|
mindspore/parallel/_cell_wrapper.py,sha256=4iliuGYwCIgy698MKphpu_Vj4Q6HG3_falU7PoCq440,7532
|
|
2355
2349
|
mindspore/parallel/_cost_model_context.py,sha256=7Q6kEPqFbeRjRJNeb-vQF5IIcL7Zwhrssyb4VA9hUHU,26793
|
|
2356
2350
|
mindspore/parallel/_dp_allreduce_fusion.py,sha256=kzoDBRAF6hAhJmRkuzMwMbMDYod4RKdASImke-1evu4,5573
|
|
2357
2351
|
mindspore/parallel/_offload_context.py,sha256=H3OSKTt6iy2yjIMoAqEpxBAAmbMvFcEqFDM7KGHCPw8,13077
|
|
2358
|
-
mindspore/parallel/_parallel_serialization.py,sha256=
|
|
2352
|
+
mindspore/parallel/_parallel_serialization.py,sha256=NAxRdHzMIrlcOeTa9QJpLuckg5fO_2ZLwddwlR9Dfxg,28767
|
|
2359
2353
|
mindspore/parallel/_ps_context.py,sha256=Lqlz0zni9lCJTTijhz8sOF5fHt6XqcsSuGpA6Avbj4A,8326
|
|
2360
2354
|
mindspore/parallel/_recovery_context.py,sha256=hPzQ_uOBPl0UoN95KjBLgkXeJ1Hz8QJ8zoufYOG1VS0,3545
|
|
2361
2355
|
mindspore/parallel/_tensor.py,sha256=zG1oq_Qb8_tDKzGQ-C7q_WD5UAWoXf1_9iGPXPypBZM,31147
|
|
2362
|
-
mindspore/parallel/_utils.py,sha256=
|
|
2363
|
-
mindspore/parallel/algo_parameter_config.py,sha256=
|
|
2364
|
-
mindspore/parallel/checkpoint_transform.py,sha256=
|
|
2365
|
-
mindspore/parallel/parameter_broadcast.py,sha256=
|
|
2366
|
-
mindspore/parallel/shard.py,sha256=
|
|
2367
|
-
mindspore/parallel/transform_safetensors.py,sha256=
|
|
2356
|
+
mindspore/parallel/_utils.py,sha256=favHaRBH7LZKDrOTBet4KyMvji2n0pGBmqRmI1Y9GAs,25417
|
|
2357
|
+
mindspore/parallel/algo_parameter_config.py,sha256=m47xhYd-F4EGU6h3V6shnWAI-k84XLXZkgZd6WPKu6g,16224
|
|
2358
|
+
mindspore/parallel/checkpoint_transform.py,sha256=DN0DEjnn0LXRZjVI0KVoaxqvS-lLElfwFS9mjTZLXgc,40304
|
|
2359
|
+
mindspore/parallel/parameter_broadcast.py,sha256=oq71-3jUT2u3ck8lu028OeAqRHaSrbcCz7JPW1tnvG4,7209
|
|
2360
|
+
mindspore/parallel/shard.py,sha256=opkbDiHYjLJEjOu7cY99ah_FoNHHtc0mKZNJvGxskBg,25194
|
|
2361
|
+
mindspore/parallel/transform_safetensors.py,sha256=7obj1PFFqUSNd7VYUgcoc6G8HJF87Jt3MGJSE6OwOBM,54638
|
|
2368
2362
|
mindspore/parallel/_transformer/__init__.py,sha256=LcPkmMsISSJQZ5S1MdygE68ieoy1cTXmZ1aNjU8oDmw,1594
|
|
2369
2363
|
mindspore/parallel/_transformer/layers.py,sha256=vqSpqdDzsm5q6x3Ij6kb4_ZcCu_x_Xj_DaVna4mkZz4,37912
|
|
2370
2364
|
mindspore/parallel/_transformer/loss.py,sha256=kptDEgYxFkuCCqe0w0OU1Q04wXzRAsZ-LZ-XfTw4lS8,11205
|
|
@@ -2372,24 +2366,80 @@ mindspore/parallel/_transformer/moe.py,sha256=UXVRAqDg2er62jKkmJlNwuaYe4sQFlbazy
|
|
|
2372
2366
|
mindspore/parallel/_transformer/op_parallel_config.py,sha256=kAV4u9VG-EQpE8JXSK4bWD6pMxyCxsWf_XbX8AcOTrc,7940
|
|
2373
2367
|
mindspore/parallel/_transformer/transformer.py,sha256=RyVz7h-HtF1plrX3Y0A6x1eecf8xX6RZyFqYmV7N3M0,186644
|
|
2374
2368
|
mindspore/parallel/cluster/__init__.py,sha256=TYomX1I6PSZNaCh2W_5ReZnIYXQ3l34TJikVKC2CpYc,690
|
|
2375
|
-
mindspore/parallel/cluster/run.py,sha256=
|
|
2369
|
+
mindspore/parallel/cluster/run.py,sha256=geK-KzdjrZabV0jlRiWg5hLOI3UyTz0UrvhrOC-Tuds,5868
|
|
2376
2370
|
mindspore/parallel/cluster/process_entity/__init__.py,sha256=qtLfbPPpZxX26rEPTMa-BlvHX_iWOnBkrVUAZx-nurA,853
|
|
2377
|
-
mindspore/parallel/cluster/process_entity/_api.py,sha256=
|
|
2378
|
-
mindspore/parallel/cluster/process_entity/_utils.py,sha256=
|
|
2371
|
+
mindspore/parallel/cluster/process_entity/_api.py,sha256=JJNOdV55tue4qS1wmdNAm1kjDPHiYXZXhqh_BRA8O2E,18722
|
|
2372
|
+
mindspore/parallel/cluster/process_entity/_utils.py,sha256=WywsMbD1kb1cP-dwUPYMBcfJsgC5YEkZGqm7rOsR4Lw,4516
|
|
2379
2373
|
mindspore/parallel/mpi/__init__.py,sha256=GwM3XQdwGkI4g4QtuKkxwGRRM6l7dyWgcLQ4g7y9JzQ,667
|
|
2380
2374
|
mindspore/parallel/mpi/_mpi_config.py,sha256=zjldMnVGTxjZY7FJoqVNnTLC0oqOV6jPIFaX1M_zUKw,3540
|
|
2381
|
-
mindspore/profiler/__init__.py,sha256=
|
|
2382
|
-
mindspore/profiler/dynamic_profiler.py,sha256=
|
|
2383
|
-
mindspore/profiler/
|
|
2384
|
-
mindspore/profiler/
|
|
2385
|
-
mindspore/profiler/
|
|
2375
|
+
mindspore/profiler/__init__.py,sha256=zNeDZyytsE2TC3zNQ4g13WAEsEYg0i-CzCAeIUKhX7o,1777
|
|
2376
|
+
mindspore/profiler/dynamic_profiler.py,sha256=HQu15QXyXd3pBI7i8XohllIdv2lm61H86Vm4cBv_GZ4,41868
|
|
2377
|
+
mindspore/profiler/envprofiler.py,sha256=EnMw2Lm4QcMjB-PcNRbxMMDTudLdvgpa0oVbfUk0xJk,4770
|
|
2378
|
+
mindspore/profiler/mstx.py,sha256=OTkth53X2i64xBMW25qHBbCkOoJV2aQAL3j3Qj_k4Qs,9146
|
|
2379
|
+
mindspore/profiler/profiler.py,sha256=MoN2SL8AufYWBM3SRtl_C2Xgv3vaB4hpSTYRXoS7Acs,31404
|
|
2380
|
+
mindspore/profiler/profiler_action_controller.py,sha256=-RjlKC9VqqBbXtHRdCY2OMyZ0KLKmWzJZaCh8v9TqC8,7852
|
|
2381
|
+
mindspore/profiler/profiler_interface.py,sha256=YQek6SuEVMoDivVNGa8cxIcwIseBbICP3RiGGxCfCSY,3799
|
|
2382
|
+
mindspore/profiler/schedule.py,sha256=OSFc0qEh4-X0ZY91R0kDQpAopA1rMZTDHUqLyvqVZoQ,8160
|
|
2383
|
+
mindspore/profiler/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2384
|
+
mindspore/profiler/analysis/task_manager.py,sha256=cfFNv8i2e3ojWuUsN9vhryckEJOwFM3CAyZQ4sMMrC0,4958
|
|
2385
|
+
mindspore/profiler/analysis/time_converter.py,sha256=ywLJEW1a_aoheM6NIxO0pP2k-Ug6BcRslp4BTKpdIBY,3384
|
|
2386
|
+
mindspore/profiler/analysis/work_flow.py,sha256=gWl8Qeg-TwrhqpDGRSrQ_d35Zz_xz-BL9Zv8NeHPdf8,2253
|
|
2387
|
+
mindspore/profiler/analysis/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2388
|
+
mindspore/profiler/analysis/parser/ascend_cann_parser.py,sha256=-yxCiTpoNUIdIafNK8mbyPt-dplUMDJ6ZyIPIfgcyH8,6475
|
|
2389
|
+
mindspore/profiler/analysis/parser/base_parser.py,sha256=v_oceFs0chbywoPNnSc6PJrwbY0RAXDdqhQY41LHfCM,5276
|
|
2390
|
+
mindspore/profiler/analysis/parser/framework_cann_relation_parser.py,sha256=Vq7j9CZokeI_FlKcaAvAvbO48WyR7i1eWZ_1w1jRksI,1962
|
|
2391
|
+
mindspore/profiler/analysis/parser/ms_framework_parser.py,sha256=Di_hU7v5_kIPdU5QXXtvDqUocBXI9o2Ga9Bi1Sz75Hw,5799
|
|
2392
|
+
mindspore/profiler/analysis/parser/ms_minddata_parser.py,sha256=nCadQpjXKuYSjaRjHHM-BijRuCc6bF40X0Qgsny5Lqs,6330
|
|
2393
|
+
mindspore/profiler/analysis/parser/timeline_assembly_factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2394
|
+
mindspore/profiler/analysis/parser/timeline_assembly_factory/ascend_timeline_assembler.py,sha256=4b6NEVHWR5OMBIU7bUuNSK9Jdpk1oK1NFhhtO4SIFVw,12144
|
|
2395
|
+
mindspore/profiler/analysis/parser/timeline_assembly_factory/base_timeline_assembler.py,sha256=T0FScOBUMA0kNLrRTVx43Dsn834HylT3_oBZ3JAr8ac,1552
|
|
2396
|
+
mindspore/profiler/analysis/parser/timeline_assembly_factory/trace_view_container.py,sha256=-1iC2PLczwnNo85h5eMZ4n5Sc9_j6YgsvzbHYTkCw14,3349
|
|
2397
|
+
mindspore/profiler/analysis/parser/timeline_creator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2398
|
+
mindspore/profiler/analysis/parser/timeline_creator/base_timeline_creator.py,sha256=eAxV_ZA7XrIHVliXIg_Qtl6APCjmIoUmA9-IQ6gqN2A,1695
|
|
2399
|
+
mindspore/profiler/analysis/parser/timeline_creator/cpu_op_timeline_creator.py,sha256=KIHskkTCiuH6TKDLT0TptXgVNmAbmAeffYP1gk_ZFZ8,4033
|
|
2400
|
+
mindspore/profiler/analysis/parser/timeline_creator/fwk_timeline_creator.py,sha256=aeHlFLhLT3xJ3e3OFgmAx8b260On8on75BxMBLG0YQ4,3571
|
|
2401
|
+
mindspore/profiler/analysis/parser/timeline_creator/msprof_timeline_creator.py,sha256=I1Jjucm83tFsJLYe_97Hs5XSVw0kbXa05SbGePwfFag,4710
|
|
2402
|
+
mindspore/profiler/analysis/parser/timeline_creator/scope_layer_timeline_creator.py,sha256=POXk2IlBPMPYypK0rnBljxCMEtuxGYX3Fd8htXgTQkI,6055
|
|
2403
|
+
mindspore/profiler/analysis/parser/timeline_event/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2404
|
+
mindspore/profiler/analysis/parser/timeline_event/base_event.py,sha256=HbnXL1BhBu-8lLBoXpibrr5moUDWlMOY4Q8LjxRDIH0,6280
|
|
2405
|
+
mindspore/profiler/analysis/parser/timeline_event/cpu_op_event.py,sha256=MXepv164Z2mGEVCLjtAjuO0Z9I0_0mGCHUXBAc-FAxQ,1838
|
|
2406
|
+
mindspore/profiler/analysis/parser/timeline_event/flow_event.py,sha256=5Pk84xF2PGGvrcBHwViY2kjmwP2hLCQGQKqO-8YUa5Y,1387
|
|
2407
|
+
mindspore/profiler/analysis/parser/timeline_event/fwk_event.py,sha256=GiAhsggXKMUZuvwuKUEF_gObJuJ4A6EBenyFPiJCIms,8401
|
|
2408
|
+
mindspore/profiler/analysis/parser/timeline_event/msprof_event.py,sha256=3rFHNmYect2IG5tnV10E5PZpgCtYxsrMjWVcAtzkqus,2404
|
|
2409
|
+
mindspore/profiler/analysis/parser/timeline_event/scope_layer_event.py,sha256=vU3-K1nHbdTNqGywcKtf4M6ubDF0dXNMATbjm5Ny_5w,1872
|
|
2410
|
+
mindspore/profiler/analysis/parser/timeline_event/timeline_event_pool.py,sha256=UITzhv1uYgKTmptpf137qqxIR2Urt5kSNdQJ4IhlqNY,6329
|
|
2411
|
+
mindspore/profiler/analysis/viewer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2412
|
+
mindspore/profiler/analysis/viewer/ascend_communication_viewer.py,sha256=yNKCjBbnIl2acu--DHgvFdrvYn4KG-S8mIqq5Zt-zHU,15375
|
|
2413
|
+
mindspore/profiler/analysis/viewer/ascend_integrate_viewer.py,sha256=R-Kc6qUZ4gp0nscaO9hXbVSwFUxXJP_WkQkqfpZn5Mo,3727
|
|
2414
|
+
mindspore/profiler/analysis/viewer/ascend_kernel_details_viewer.py,sha256=YeWkZ3zp_4KVMcBypEu7AYKoDl3J3r3LZbroIhsnvwk,10232
|
|
2415
|
+
mindspore/profiler/analysis/viewer/ascend_memory_viewer.py,sha256=FBnYrxO8_KK6qwC0nw6rLPzzbeXjn-BxKKJyA5KfN58,10624
|
|
2416
|
+
mindspore/profiler/analysis/viewer/ascend_op_memory_viewer.py,sha256=jlz8fk4ApA-Q-Q-YhzTuUhqioTVRe4emXzkUFJlgNp0,10946
|
|
2417
|
+
mindspore/profiler/analysis/viewer/ascend_step_trace_time_viewer.py,sha256=bqRqEydytyee4W6F1TmsIs0rVslQLaTApQUP294Rlog,10779
|
|
2418
|
+
mindspore/profiler/analysis/viewer/ascend_timeline_viewer.py,sha256=l0ClUkWfg_x5PAy0PDGRSUoDaF7JguIce_H0_moXePE,2596
|
|
2419
|
+
mindspore/profiler/analysis/viewer/base_viewer.py,sha256=uxpjLpytbb3BRkOuyr6VsgO5U5s0KJepX1MMPgp6xbI,934
|
|
2420
|
+
mindspore/profiler/analysis/viewer/ms_dataset_viewer.py,sha256=RbOFWZxXkgnr2QQlO6EQq3MtLPth-oJDkHSTw-cbvN8,4283
|
|
2421
|
+
mindspore/profiler/analysis/viewer/ms_minddata_viewer.py,sha256=O4sp4WYEKTBjnLVBvAWmi9y10igKM0xyvGb_hpb7Is0,27766
|
|
2386
2422
|
mindspore/profiler/common/__init__.py,sha256=90faGW8RPXu5FPvnMnbAkqlUIhjiMNbWQR_92LvtHlQ,667
|
|
2387
|
-
mindspore/profiler/common/
|
|
2388
|
-
mindspore/profiler/common/
|
|
2423
|
+
mindspore/profiler/common/ascend_msprof_exporter.py,sha256=6IDq9sB5D7JOHaOleoHvNTsOZE9ZcJ_2Rl2oi_rRc04,5450
|
|
2424
|
+
mindspore/profiler/common/command_executor.py,sha256=Etjyoyx5KJ2VongwH9n4uiqNYnJFb0rMwY63PQqdESs,3294
|
|
2425
|
+
mindspore/profiler/common/constant.py,sha256=wQ_NdSewcbXSZkcmdktO4oHdnHFMJ4fB9fUjRA7ufBU,5042
|
|
2426
|
+
mindspore/profiler/common/file_manager.py,sha256=nchx4s7AUuW0_CqZ1uiF7vCfonjhArp-iRcty1vx8bc,8076
|
|
2427
|
+
mindspore/profiler/common/log.py,sha256=eR2ZZRvrHnRiRsX7jHr1wsX6-FLgGQt-Pc2zCg2jBCw,4452
|
|
2428
|
+
mindspore/profiler/common/msprof_cmd_tool.py,sha256=vzlLa38pqAM__Cm_f7VdQnqvDki3jZhO0SyTFvQfMkw,7423
|
|
2429
|
+
mindspore/profiler/common/path_manager.py,sha256=2Vd-sCm19wDb6qXLEuThTHFRfQ4BJSZ6bWIxtQkYvmo,13749
|
|
2430
|
+
mindspore/profiler/common/process_bar.py,sha256=quU3HD2lj9aMMLbqRW-ArleyknLqJH_xCZxMntOkGZw,5804
|
|
2431
|
+
mindspore/profiler/common/process_pool.py,sha256=w7BMKBBZ2Rki1e3LLnylk396q37K5a_pE9BzrEsdLQk,1732
|
|
2432
|
+
mindspore/profiler/common/profiler_context.py,sha256=S-pLylgAA99pKLHGke_rgRn0A6dH9v7TXQVmwjMqRzo,17099
|
|
2433
|
+
mindspore/profiler/common/profiler_info.py,sha256=h9oRxSdeIinMoma40YzzAveawWgCZsd5XoOvov9D0FY,10274
|
|
2434
|
+
mindspore/profiler/common/profiler_output_path.py,sha256=HYUFF3NHVMQoNiAt2Jod10ncSR1-765PoVNeeBgJj-A,10475
|
|
2435
|
+
mindspore/profiler/common/profiler_parameters.py,sha256=WVI-oRNjYtmbS2eQbyzAsUvzfOsEVef9aT5k9Eb5COg,8898
|
|
2436
|
+
mindspore/profiler/common/profiler_path_manager.py,sha256=zW9jJDnRkQSKh6punLD01wZVkLXADegfXmG0wynYhhY,4691
|
|
2437
|
+
mindspore/profiler/common/record_function.py,sha256=RBTsX1SpbAN31uuOxjRQh4H-NtPq-Utt3Wt0OZIAKjQ,2344
|
|
2389
2438
|
mindspore/profiler/common/registry.py,sha256=0RbpBHdjUd8OO3gqk5veYFT1iD_Yi9C3IpGyZdF8ofY,1545
|
|
2390
2439
|
mindspore/profiler/common/singleton.py,sha256=r4sxKdRO9HuhFcgsK_QWTJGSxQYtwbtLnO-Os8BtYzI,1005
|
|
2391
2440
|
mindspore/profiler/common/struct_type.py,sha256=2ygQrvLj9PGwYTianOvmxEXoFqPLmbluJotUx5nNjIo,4594
|
|
2392
|
-
mindspore/profiler/common/
|
|
2441
|
+
mindspore/profiler/common/tlv_decoder.py,sha256=JfF-W7j1mOyhJR0aX_7rHDYuk-RkDdQtw63W8p6v8WQ,3204
|
|
2442
|
+
mindspore/profiler/common/util.py,sha256=bt_dkdzOl6KPMmGICZ9hHecmNbV_bNaFmacEl7MBNjM,18351
|
|
2393
2443
|
mindspore/profiler/common/exceptions/__init__.py,sha256=90faGW8RPXu5FPvnMnbAkqlUIhjiMNbWQR_92LvtHlQ,667
|
|
2394
2444
|
mindspore/profiler/common/exceptions/error_code.py,sha256=LuQRqjxDSQ9o5NremJveDXzZycN1mD8aDmeSQG9Enfg,3304
|
|
2395
2445
|
mindspore/profiler/common/exceptions/exceptions.py,sha256=KBaWqJGUtkKBfmYxWOg4qj5baPkwe53seXcpK5weGEI,9741
|
|
@@ -2442,13 +2492,18 @@ mindspore/profiler/parser/gpu_analysis/__init__.py,sha256=iqwSkP0cWAgHkFcDbcLwNJ
|
|
|
2442
2492
|
mindspore/profiler/parser/gpu_analysis/function_event.py,sha256=ytey8Z6pTX2jKr3TNs6ngE6171bZFN8EdDTD7doMmGs,2161
|
|
2443
2493
|
mindspore/profiler/parser/gpu_analysis/fwk_file_parser.py,sha256=TCTxdIHxLkII1P3fB1wQvJPcqWEI5dyqf_35bmoH7jI,3943
|
|
2444
2494
|
mindspore/profiler/parser/gpu_analysis/profiler_info_parser.py,sha256=DZ07rjyNpWU8VpHIQ8j88iMibYK2mKBan96hPT8dWiU,2946
|
|
2495
|
+
mindspore/profiler/platform/__init__.py,sha256=zRrvMPFuKL7z3b-POrBfVUkv9sijQzY7GxYsLD9UQrg,868
|
|
2496
|
+
mindspore/profiler/platform/base_profiler.py,sha256=O6rM3IjrGrLtJIZNlBktTqw3QqpEOjGdB9_eAf_ctUk,1141
|
|
2497
|
+
mindspore/profiler/platform/cpu_profiler.py,sha256=UgYVgyLutAmWIbvXxKB4U1f_qCSrH5r8NQAIXd0xAco,4685
|
|
2498
|
+
mindspore/profiler/platform/gpu_profiler.py,sha256=JrlIyJ5SAGClqj5gfY9OVLsr_8K0nJ6gAuC3ZvdEEUE,2809
|
|
2499
|
+
mindspore/profiler/platform/npu_profiler.py,sha256=aDgJZYuZpDX13DmHVNShyP2xsBmlgfqRQNGHpsJjQsA,12863
|
|
2445
2500
|
mindspore/rewrite/__init__.py,sha256=7RfVztP1XGK1yckQMKeEdp53tlhKgGhDyc8_YOeJ-38,1180
|
|
2446
2501
|
mindspore/rewrite/api/__init__.py,sha256=C0vnFHi800CmeNmdcMb1t7uHUJPZ9kLXjqxsIB6y4RY,698
|
|
2447
2502
|
mindspore/rewrite/api/node.py,sha256=LRkSOgN4vX9rkiTJqe1y3nJB8Hb7e3mx3uoylMFbTpU,22660
|
|
2448
2503
|
mindspore/rewrite/api/node_type.py,sha256=iD1nhDE95eJ0UxR1UAYIWQA_6y6PDJPLz6VTcuK5EHg,2265
|
|
2449
2504
|
mindspore/rewrite/api/pattern_engine.py,sha256=1sFHoAlUCIRU83ezxb94l8VMIcE6NN994CC4o_R3wqo,18871
|
|
2450
2505
|
mindspore/rewrite/api/scoped_value.py,sha256=RVOwUzUOGDIPrDasiqfcIzxma2-VCHmSeU7bMwTdCp8,7277
|
|
2451
|
-
mindspore/rewrite/api/symbol_tree.py,sha256=
|
|
2506
|
+
mindspore/rewrite/api/symbol_tree.py,sha256=UB_E4pYnvoDEE5hOzUmEOywDFISaQn11a8P7jamh__o,23322
|
|
2452
2507
|
mindspore/rewrite/ast_helpers/__init__.py,sha256=Gn_oaP9uEUjXDs-_5n4H5vxINjem4gcQ8e9Bp6xn24I,1097
|
|
2453
2508
|
mindspore/rewrite/ast_helpers/ast_converter.py,sha256=xmxbpT2NIVNgn6Nfg2tsTWcEA2tFKQ_XAR62j2gC5Oc,6127
|
|
2454
2509
|
mindspore/rewrite/ast_helpers/ast_finder.py,sha256=gB7pNfFxnJeDAV8H2BFGpDCAwxiBJcwi1Kk2qqM2FWI,12684
|
|
@@ -2495,8 +2550,15 @@ mindspore/rewrite/symbol_tree/symbol_tree.py,sha256=xHOltpHjHGbxfcv1gODKib1TDhRz
|
|
|
2495
2550
|
mindspore/rewrite/symbol_tree/symbol_tree_builder.py,sha256=vcTseCWw1EvQwH_VS7Se-E7LIxwgQEluq6N1EWWqnv8,2733
|
|
2496
2551
|
mindspore/rewrite/symbol_tree/symbol_tree_dumper.py,sha256=6HhvwPOemx9hkwwSVfx5JCD0d3e79qehEep6heD_btY,5611
|
|
2497
2552
|
mindspore/run_check/__init__.py,sha256=YU00578oQuToQBWKzkbUrM-Nl49aGhX3rQGNJ_0-1V8,811
|
|
2498
|
-
mindspore/run_check/_check_version.py,sha256=
|
|
2553
|
+
mindspore/run_check/_check_version.py,sha256=C8dOv8CY1Sjbd_nI174AlBCpmHEQyHZO04gUi7vAj38,23970
|
|
2499
2554
|
mindspore/run_check/run_check.py,sha256=h1XCJ3lWdK0BzRs1fwdQ5N-3ohgjJjzVsqbcuwTCBY4,2130
|
|
2555
|
+
mindspore/runtime/__init__.py,sha256=5K5JI8X4S6qH6e4hwFR8ksr8NmHo1mbnK6KYPxQwjaQ,1809
|
|
2556
|
+
mindspore/runtime/device.py,sha256=d9gx9MQa8hYyu_nRLhb8YgARSsDFfmzK-NA5F-ixmKo,991
|
|
2557
|
+
mindspore/runtime/event.py,sha256=r4hGLUzJMH4TFK5PO0s5HxzbyFEmGSkQSyRsFw3TYR4,7565
|
|
2558
|
+
mindspore/runtime/executor.py,sha256=nPEGJKjO9cgdnizG7qMKQeDSpGHgiM8LQkhgubLgDfw,7992
|
|
2559
|
+
mindspore/runtime/memory.py,sha256=bFjlK9CCMr83dTM4bwVieDgLFsxUJ7RJpU60w6Bapms,13965
|
|
2560
|
+
mindspore/runtime/stream.py,sha256=jOMGf4Kfi4fCfz9eVSCGHwabM9QY-YuQo35ApaW5x4s,15247
|
|
2561
|
+
mindspore/runtime/thread_bind_core.py,sha256=wDJnq5cvO4ODeKfdZpTEkPIcpjYTDb7VgNflej4hOjQ,17062
|
|
2500
2562
|
mindspore/safeguard/__init__.py,sha256=DwVALSUYkHUNeepy-dzFnqOOqVaem3SC2WRnMauH1FY,834
|
|
2501
2563
|
mindspore/safeguard/rewrite_obfuscation.py,sha256=7Py-tpkYQSZWtCL3zbtm3yDKsIkOZHzq-A9FdYngWmM,45183
|
|
2502
2564
|
mindspore/scipy/__init__.py,sha256=5_9GxvzuMp8zrwrDYYfl53js85_IMsKHNc4KXbbFsqQ,776
|
|
@@ -2515,40 +2577,40 @@ mindspore/scipy/optimize/gradient_optimization_algorithm.py,sha256=MmeEyqZExau5B
|
|
|
2515
2577
|
mindspore/scipy/optimize/line_search.py,sha256=nw-pLF7uaFypeamARSrLXC0NeL_uAssuOHjGP7B2ZyE,15278
|
|
2516
2578
|
mindspore/scipy/optimize/linear_sum_assignment.py,sha256=D9zHJ1v9FWApc4Rp2XkKYatxkFT-f7tfXA0l2GQPTh8,3287
|
|
2517
2579
|
mindspore/scipy/optimize/minimize.py,sha256=jsdCF5ridHuRGSo-_tmTUA-D2B8uiBFuA_Q0kpaqupk,9459
|
|
2518
|
-
mindspore/train/__init__.py,sha256=
|
|
2519
|
-
mindspore/train/_utils.py,sha256=
|
|
2520
|
-
mindspore/train/amp.py,sha256=
|
|
2580
|
+
mindspore/train/__init__.py,sha256=zMb8sFhU5y0qSg72zBZDxeRWXsRGSNL4ObluhdkdLMw,2854
|
|
2581
|
+
mindspore/train/_utils.py,sha256=6AvgNYcaLN5J6oCSiKPSI5LHzwMbQosx9xgdQ6shCFc,21721
|
|
2582
|
+
mindspore/train/amp.py,sha256=bpkX5spVYlExQiQ-R9OeYVwQ8HwbiFnZhwRyo0AqQcc,41464
|
|
2521
2583
|
mindspore/train/anf_ir_pb2.py,sha256=3dvGw_u8e09L2WZ7qwLPr_yC6yOchVsZaQu5qDwrAq4,65657
|
|
2522
2584
|
mindspore/train/checkpoint_pb2.py,sha256=5vYSeyUdp6NfQzIGcVjZ5kKzBSilmnVxfYnlsiP2TxY,8437
|
|
2523
2585
|
mindspore/train/data_sink.py,sha256=OhH4SYxyUUP8QUwLWaNHhjtzSGBU1LGzK_oGNkTA8QE,8676
|
|
2524
|
-
mindspore/train/dataset_helper.py,sha256=
|
|
2586
|
+
mindspore/train/dataset_helper.py,sha256=5nCuLKc-E1yJF8-efPz1wv7rynM9sxrDf9A3fRQ_CiI,29953
|
|
2525
2587
|
mindspore/train/lineage_pb2.py,sha256=GRfUD5xqClVDg0Gty8txpltmuvK6r4KDv3EHwQ--cXo,55724
|
|
2526
2588
|
mindspore/train/loss_scale_manager.py,sha256=eK13D_ZZ09d1zfv88TIB2Sdv6C_utoV3wA0VFYrRatA,8757
|
|
2527
2589
|
mindspore/train/memory_profiling_pb2.py,sha256=wbKwNkqNMF4NwKKdK_JkIgRGrGWnCy2KYzWXoGf5Vq4,13362
|
|
2528
|
-
mindspore/train/mind_ir_pb2.py,sha256=
|
|
2529
|
-
mindspore/train/model.py,sha256=
|
|
2590
|
+
mindspore/train/mind_ir_pb2.py,sha256=js1NvwISIDS09gMgvBDstIhF4PfkMLLjrmdc2oCYClA,95276
|
|
2591
|
+
mindspore/train/model.py,sha256=E67ltkjT-OSh92h-lhkj3_PgxTq3tTnODK-VCdmWbUY,117708
|
|
2530
2592
|
mindspore/train/node_strategy_pb2.py,sha256=DWVbY7Em08puQtZ9WWR74viF3VsvClgu94eR-KWCPtI,25880
|
|
2531
2593
|
mindspore/train/print_pb2.py,sha256=ewqGKhrdkLdu1WV97shhKnrkHbnppCy9ShoJJC3tz2M,6648
|
|
2532
2594
|
mindspore/train/profiling_parallel_pb2.py,sha256=DZf0RV0HPqBzK-X0RgXqHj2kMn699D46b_s-QVehkGo,6150
|
|
2533
|
-
mindspore/train/serialization.py,sha256=
|
|
2595
|
+
mindspore/train/serialization.py,sha256=rnFTM6r--NecvrEJbRFNBk2JGTvVWddRMC9VawP-sy8,186248
|
|
2534
2596
|
mindspore/train/summary_pb2.py,sha256=kWDvFFWXDJyfaw2uXsUGuIl4t-S81Ujm8RJ21qiaXto,53579
|
|
2535
2597
|
mindspore/train/callback/__init__.py,sha256=_sYuXdxWeYEMmjEjkrrSzde92MCjMO8ZYgUcpQ_pqvk,2690
|
|
2536
2598
|
mindspore/train/callback/_backup_and_restore.py,sha256=QmZWmE_IwQxAy0DQ7bL5fKnn_smhpwzHzThokK2VYYM,5228
|
|
2537
2599
|
mindspore/train/callback/_callback.py,sha256=mXTpZ4t3O1O3KIfekYODIOYG484t7os2f2LmNGuV3A4,24312
|
|
2538
|
-
mindspore/train/callback/_checkpoint.py,sha256=
|
|
2600
|
+
mindspore/train/callback/_checkpoint.py,sha256=IfZaao_HYMz4-A868BjZVN-KgnUaQ52rvwbfIwxdk9c,38615
|
|
2539
2601
|
mindspore/train/callback/_cluster_monitor.py,sha256=MaJEVX7sm15wWpuB6lou99Q0FeEWmnS1vXc0VbQU7uQ,8138
|
|
2540
2602
|
mindspore/train/callback/_dataset_graph.py,sha256=wHZTlKS1ugrv1BNWAjplWOdilEpmHiQFe2kvZtG6VY0,6216
|
|
2541
|
-
mindspore/train/callback/_early_stop.py,sha256=
|
|
2542
|
-
mindspore/train/callback/_flops_collector.py,sha256=
|
|
2543
|
-
mindspore/train/callback/_history.py,sha256=
|
|
2603
|
+
mindspore/train/callback/_early_stop.py,sha256=ro_fQ7D0O01yIobiM4mAZKkJpLk6lEY7_E4bJef8C1s,11314
|
|
2604
|
+
mindspore/train/callback/_flops_collector.py,sha256=u_AhI6fkwPYkm87ho05MD3pvLF9ZPsO4omh7O_bKkiw,13612
|
|
2605
|
+
mindspore/train/callback/_history.py,sha256=BmDvO5AnlKHcu9TxPcImbVGXmZK4ACwQC0PxavLuU_M,3921
|
|
2544
2606
|
mindspore/train/callback/_lambda_callback.py,sha256=8oZKJX8VN0WFObMmAq_5Vy1OYPApHmoDxD8ChLdRfAw,4821
|
|
2545
2607
|
mindspore/train/callback/_landscape.py,sha256=8mTxqPaSfweqwNQVBwARc4b9edGBs1ykMezvRAGuJcc,49720
|
|
2546
2608
|
mindspore/train/callback/_loss_monitor.py,sha256=CNj-Zd-QLebGOVnB_GLt1Dae_JV3_3c-e1hJC45uXTg,4919
|
|
2547
2609
|
mindspore/train/callback/_lr_scheduler_callback.py,sha256=XtCMrS6-0kRX5QnBTCOUXMKN5vzk7vtgMypNfZfLjdY,3083
|
|
2548
2610
|
mindspore/train/callback/_on_request_exit.py,sha256=oR7BS8e87-6JLNyaPWUJL-hQSdSQLoJAbETHHTfssoM,14748
|
|
2549
2611
|
mindspore/train/callback/_reduce_lr_on_plateau.py,sha256=ARnRLGZItA6rHDMkKvkP_FpWYwENG21sPwNlPSZtouU,10798
|
|
2550
|
-
mindspore/train/callback/_summary_collector.py,sha256=
|
|
2551
|
-
mindspore/train/callback/_tft_register.py,sha256=
|
|
2612
|
+
mindspore/train/callback/_summary_collector.py,sha256=C_Ue577wLAhTtMfd74_7APzdUePyaK-PSxGFP8P63sM,58078
|
|
2613
|
+
mindspore/train/callback/_tft_register.py,sha256=W41qFlRrkWplJDrn-0uy5_RGa6UuQZeL8l768ZDy51c,18191
|
|
2552
2614
|
mindspore/train/callback/_time_monitor.py,sha256=Uxue4BzGAgr9IidNiyT10Jy1fCSiDNsTVAQcBfsyXjM,5909
|
|
2553
2615
|
mindspore/train/metrics/__init__.py,sha256=U5IpvYQpjN_T8xDx9YjHM1kLa22O5Xgm0B3NDlzFz5s,6217
|
|
2554
2616
|
mindspore/train/metrics/accuracy.py,sha256=aH3EAQM9vgTueD_fhvgREv9B9am3cla3m5EZtwTy_6k,5994
|
|
@@ -2565,7 +2627,7 @@ mindspore/train/metrics/mean_surface_distance.py,sha256=XEYz-gF1aQqgAmcTzJYbH4LN
|
|
|
2565
2627
|
mindspore/train/metrics/metric.py,sha256=NpsBuXiJLS4gADW_Xr3ahLKRSAPLInf4juejEK4GwG4,13700
|
|
2566
2628
|
mindspore/train/metrics/occlusion_sensitivity.py,sha256=Bh9to-ny6R2gWxpgIIf6189XLUsqbSFdkWWshZ4hZE4,9761
|
|
2567
2629
|
mindspore/train/metrics/perplexity.py,sha256=WbxTBkM0kAtFVDq4_H04fhqsF0sAHVoT8hcoZaQutFA,5490
|
|
2568
|
-
mindspore/train/metrics/precision.py,sha256=
|
|
2630
|
+
mindspore/train/metrics/precision.py,sha256=IZL6sudveUwscLYTzDhq2r4nzy-6t5x47vxH45_go_s,6987
|
|
2569
2631
|
mindspore/train/metrics/recall.py,sha256=jVCimyOGvUCOQM7Jo73MMsxXDKhURv5N3LjJIdoCt7w,6978
|
|
2570
2632
|
mindspore/train/metrics/roc.py,sha256=m0HuqpJHRB7jM1dEpPFpuwteA40ZgGT-i4uqwvZpkBA,10786
|
|
2571
2633
|
mindspore/train/metrics/root_mean_square_surface_distance.py,sha256=QgZnyrw5Jnws35R97EAL5qz1VXtzyRT3cmZk1Volnys,8632
|
|
@@ -2575,16 +2637,20 @@ mindspore/train/summary/_lineage_adapter.py,sha256=0lLBiJMSqq6BQXVK-jk56cdMsfg6a
|
|
|
2575
2637
|
mindspore/train/summary/_summary_adapter.py,sha256=RApiANIRllUJ8jYzMAJp4zE3Ti7TsePKZnqCWhqUD7g,15998
|
|
2576
2638
|
mindspore/train/summary/_writer_pool.py,sha256=n7VmdXXKcl6oBMzZ-Mcfh9ZiuwC-9aOR4Xr4-lRmRMA,8430
|
|
2577
2639
|
mindspore/train/summary/enums.py,sha256=waGImefk64zhlXQ_B3USONbTiC63Q11LN-D6o9mXdbM,1695
|
|
2578
|
-
mindspore/train/summary/summary_record.py,sha256=
|
|
2640
|
+
mindspore/train/summary/summary_record.py,sha256=ZpXO86ckWweUm_K9wonNJWLntD1Y3D8YsUVxLdE_WDk,26769
|
|
2579
2641
|
mindspore/train/summary/writer.py,sha256=UcOKLQ-2NwYIZSquJhSrdP79W2obPFvUpzDDvu9_onw,5653
|
|
2580
2642
|
mindspore/train/train_thor/__init__.py,sha256=yi6HaNuPSJ-BpotueTNBCCMDY7LQlUCunZNqGS4M-Ro,908
|
|
2581
2643
|
mindspore/train/train_thor/convert_utils.py,sha256=AS5T7IELB2v662llF_eTCzgg6w8EoTCLe7k8Pe1DuTw,12532
|
|
2582
2644
|
mindspore/train/train_thor/dataset_helper.py,sha256=h--zentqMCqiVTKe1IaH58TY9jqnxNPPlkv3zKcmjRY,7687
|
|
2583
|
-
mindspore/train/train_thor/model_thor.py,sha256=
|
|
2584
|
-
mindspore/utils/__init__.py,sha256=
|
|
2645
|
+
mindspore/train/train_thor/model_thor.py,sha256=Cd-DBv4yM2EF49JYl0Pm_g51vNkjR8fa4bqw8KSfCSw,12869
|
|
2646
|
+
mindspore/utils/__init__.py,sha256=4XP9lzizaLTMlu4yPXxUiAJyeBfGLdAMymou3taM9uQ,1057
|
|
2647
|
+
mindspore/utils/dryrun.py,sha256=Q01kQXosJG7LPqIfg8R86lT3KmvqXIw6trVSG2la3pc,5371
|
|
2648
|
+
mindspore/utils/runtime_execution_order_check.py,sha256=FI9zWC3o8gMyC907L8qDsqWUERDgl8jnwMdinQ9AyB0,22197
|
|
2585
2649
|
mindspore/utils/utils.py,sha256=B6NhiaoR4IWqqQPowZvwEzcOLj8EIOLXL8oKf6OzeXw,2458
|
|
2586
|
-
mindspore-
|
|
2587
|
-
mindspore-
|
|
2588
|
-
mindspore-2.
|
|
2589
|
-
mindspore-2.
|
|
2590
|
-
mindspore-2.
|
|
2650
|
+
mindspore/utils/bin/dataset-cache,sha256=1NsxomKoWj5lfHL8Q9e1TqRS1u_2fTv9J9cPJ6LjV3M,555128
|
|
2651
|
+
mindspore/utils/bin/dataset-cache-server,sha256=pPTYMiBVGOdNTGP9ofmdM7YXqZr2QsSJbd8xB0dIW-w,2347584
|
|
2652
|
+
mindspore-2.5.0.dist-info/METADATA,sha256=9nRFCu5v2O9--dK5RDOV6rVaaoAWeSu9f03-fchOyes,18312
|
|
2653
|
+
mindspore-2.5.0.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
|
|
2654
|
+
mindspore-2.5.0.dist-info/entry_points.txt,sha256=Okb6IoRt4ajqLdDCeKN-lsIt2dvbeyEboVCszSizglc,120
|
|
2655
|
+
mindspore-2.5.0.dist-info/top_level.txt,sha256=6Zj88TmY8vi7j2GQh8IOCnperuz1JNE0JBAz2jS73F8,10
|
|
2656
|
+
mindspore-2.5.0.dist-info/RECORD,,
|