This commit is contained in:
2025-09-04 14:08:49 +08:00
parent 7c41758d34
commit 3ef8ca5d52

View File

@@ -0,0 +1,12 @@
package org.dromara.easyai.matrixTools;
/**
* @author lidapeng
* @time 2025/6/19 10:36
* @des 升腾接口
*/
public interface AscendMatrix {
void init() throws Exception;
Matrix mulMatrix(Matrix matrix1, Matrix matrix2) throws Exception;
}