Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs](mlu-ops): Update v1.3.2 docs. #1124

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
runner: [mlu370-m8]
mlu_ops_version : [1.3.1]
mlu_ops_version : [1.3.2]
cntoolkit_version : [3.14.0]
cnnl_version: [1.26.6]
runs-on: ${{matrix.runner}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mluops_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
runner: [mlu370-m8]
mlu_ops_version : [v1.3.1]
mlu_ops_version : [v1.3.2]
runs-on: [yellow]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion build.property
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.3.1-1",
"version": "1.3.2-1",
"python": "3.6.0",
"build_requires": {"cntoolkit": ["release","3.14.0-1"],
"cnnl":["release","1.27.0-1"],
Expand Down
10 changes: 10 additions & 0 deletions docs/api_guide/update.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ Update History

This section lists contents that were made for each product release.

* V1.3.2

**Date:** October 21, 2024

**Changes:**

- ``exec_fft``

- optimize performance.


* V1.3.1

Expand Down
26 changes: 26 additions & 0 deletions docs/release_notes/mlu_ops.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,32 @@ Cambricon MLU-OPS具有以下特点:
| Cambricon MLU-OPS v1.0.z | x86_64 | MLU370 |
+-----------------------------+------------------------+--------------------------------+


v1.3.2
-----------------

特性变更
~~~~~~~~~~~~~~~~~~~~~

- 无新增特性。

已修复问题
~~~~~~~~~~~~~~~~~~~~~

- 修复以下问题。

* ``exec_fft``

+ 提升性能。

已知遗留问题
~~~~~~~~~~~~~~~~~~~~~

- ``exec_fft``

* 在覆盖率模式下特定测例偶现精度异常。
* 特定规模下存在精度问题。

v1.3.1
-----------------

Expand Down
9 changes: 9 additions & 0 deletions docs/user_guide/2_update_history/index.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
更新历史
========

* **V1.3.2**

**更新时间**:2024年10月21日

**更新内容**:

- 无算子更新。


* **V1.3.1**

**更新时间**:2024年10月10日
Expand Down
4 changes: 3 additions & 1 deletion installer/centos7.5/SPECS/mluops-independent.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Name: mluops
Summary: The Machine Lerning Unit OPerators
Version: 1.3.1
Version: 1.3.2
Release: 1%{?dist}
License: Cambricon Release License
Vendor: Cambricon Inc.
Expand Down Expand Up @@ -64,6 +64,8 @@ cp $RPM_SOURCE_DIR/neuware-env.conf $RPM_BUILD_ROOT/etc/ld.so.conf.d/
%postun -p /sbin/ldconfig

%changelog
* Mon Oct 21 2024 Cambricon Software Team <[email protected]>
- release mluops v1.3.2
* Thu Oct 10 2024 Cambricon Software Team <[email protected]>
- release mluops v1.3.1
* Fri Sep 6 2024 Cambricon Software Team <[email protected]>
Expand Down
6 changes: 6 additions & 0 deletions installer/independent/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
mluops (1.3.2-1.ubuntu16.04) xenial; urgency=medium

* Release mluops v1.3.2

-- Cambricon <[email protected]> Mon, 21 Oct 2024 00:00:00 +0100

mluops (1.3.1-1.ubuntu16.04) xenial; urgency=medium

* Release mluops v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion mlu_op.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#define MLUOP_MAJOR 1
#define MLUOP_MINOR 3
#define MLUOP_PATCHLEVEL 1
#define MLUOP_PATCHLEVEL 2

/*********************************************************************************
* MLUOP_VERSION is deprecated and not recommended. To get the version of MLUOP, use
Expand Down
Loading