Skip to content

Commit d54dbd7

Browse files
committed
GPU
1 parent 6fda68a commit d54dbd7

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
- GPU矩阵运算:矩阵乘法、加法、减法、转置、标量运算等 / GPU matrix operations: multiplication, addition, subtraction, transpose, scalar operations
106106
- GPU向量运算:向量加法、减法、内积、标量运算、数学函数等 / GPU vector operations: addition, subtraction, inner product, scalar operations, mathematical functions
107107
- GPU高级运算:特征分解、奇异值分解、伪逆矩阵计算等 / GPU advanced operations: eigenvalue decomposition, SVD decomposition, pseudo-inverse computation
108-
- 智能阈值控制:根据数据大小自动选择CPU或GPU计算 / Smart threshold control: automatically choose CPU or GPU based on data size
109108
- 自动回退机制:GPU计算失败时自动切换到CPU计算 / Automatic fallback: automatically switch to CPU when GPU computation fails
110109

111110

@@ -621,6 +620,14 @@ If you encounter any issues while using the library, you can get help through th
621620

622621
## 更新日志 / Changelog
623622

623+
### v0.2.0 (2025-09)
624+
- ⚡ GPU加速计算 / GPU-Accelerated Computing
625+
- GPU矩阵运算:矩阵乘法、加法、减法、转置、标量运算等 / GPU matrix operations: multiplication, addition, subtraction, transpose, scalar operations
626+
- GPU向量运算:向量加法、减法、内积、标量运算、数学函数等 / GPU vector operations: addition, subtraction, inner product, scalar operations, mathematical functions
627+
- GPU高级运算:特征分解、奇异值分解、伪逆矩阵计算等 / GPU advanced operations: eigenvalue decomposition, SVD decomposition, pseudo-inverse computation
628+
- 智能阈值控制:根据数据大小自动选择CPU或GPU计算 / Smart threshold control: automatically choose CPU or GPU based on data size
629+
- 自动回退机制:GPU计算失败时自动切换到CPU计算 / Automatic fallback: automatically switch to CPU when GPU computation fails
630+
624631
### v0.1.2 (2025-09)
625632
- 📊 DataFrame 数据框操作 / DataFrame Operations: 完整的结构化数据处理功能
626633
- *Complete structured data processing functionality*

nbactions.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,17 @@
1212
<maven.test.skip>true</maven.test.skip>
1313
</properties>
1414
</action>
15+
<action>
16+
<actionName>rebuild</actionName>
17+
<packagings>
18+
<packaging>*</packaging>
19+
</packagings>
20+
<goals>
21+
<goal>clean</goal>
22+
<goal>install</goal>
23+
</goals>
24+
<properties>
25+
<maven.test.skip>true</maven.test.skip>
26+
</properties>
27+
</action>
1528
</actions>

0 commit comments

Comments
 (0)