Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
minmingzhu committed Oct 15, 2024
1 parent f3d5e68 commit 79078f0
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mllib-dal/src/main/native/LinearRegressionImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Java_com_intel_oap_mllib_regression_LinearRegressionDALImpl_cLinearRegressionTra
jlong featureCols, jlong label, jlong labelCols, jboolean fitIntercept,
jdouble regParam, jdouble elasticNetParam, jint executorNum,
jint executorCores, jint computeDeviceOrdinal, jintArray gpuIdxArray, jstring ip_port, jstring breakdown_name,
jobject resultObj) {
jstring store_path, jobject resultObj) {

logger::println(logger::INFO,
"oneDAL (native): use DPC++ kernels; device %s",
Expand Down
2 changes: 1 addition & 1 deletion mllib-dal/src/main/native/PCAImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ JNIEXPORT jlong JNICALL
Java_com_intel_oap_mllib_feature_PCADALImpl_cPCATrainDAL(
JNIEnv *env, jobject obj, jint rank, jlong pNumTabData, jlong numRows, jlong numClos,
jint executorNum, jint executorCores, jint computeDeviceOrdinal,
jintArray gpuIdxArray, jstring ip_port, jstring breakdown_name, jobject resultObj) {
jintArray gpuIdxArray, jstring ip_port, jstring breakdown_name, jstring store_path, jobject resultObj) {
logger::println(logger::INFO,
"oneDAL (native): use DPC++ kernels; device %s",
ComputeDeviceString[computeDeviceOrdinal].c_str());
Expand Down
2 changes: 1 addition & 1 deletion mllib-dal/src/main/native/SummarizerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ JNIEXPORT jlong JNICALL
Java_com_intel_oap_mllib_stat_SummarizerDALImpl_cSummarizerTrainDAL(
JNIEnv *env, jobject obj, jint rank, jlong pNumTabData, jlong numRows, jlong numClos,
jint executorNum, jint executorCores, jint computeDeviceOrdinal,
jintArray gpuIdxArray, jstring ip_port, jstring breakdown_name, jobject resultObj) {
jintArray gpuIdxArray, jstring ip_port, jstring breakdown_name, jstring store_path, jobject resultObj) {
logger::println(logger::INFO,
"oneDAL (native): use DPC++ kernels; device %s",
ComputeDeviceString[computeDeviceOrdinal].c_str());
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ class PCADALImpl(val k: Int,
gpuIndices,
kvsIPPort,
training_breakdown_name,
storePath,
result
)

Expand Down Expand Up @@ -251,5 +252,6 @@ class PCADALImpl(val k: Int,
gpuIndices: Array[Int],
kvsIPPort: String,
training_breakdown_name: String,
storePath: String,
result: PCAResult): Long
}
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ class LinearRegressionDALImpl( val fitIntercept: Boolean,
gpuIndices,
kvsIPPort,
training_breakdown_name,
storePath,
result
)

Expand Down Expand Up @@ -227,6 +228,7 @@ class LinearRegressionDALImpl( val fitIntercept: Boolean,
gpuIndices: Array[Int],
kvsIPPort: String,
training_breakdown_name: String,
storePath: String,
result: LiRResult): Long

}
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ class SummarizerDALImpl(val executorNum: Int,
gpuIndices,
kvsIPPort,
training_breakdown_name,
storePath,
result
)

Expand Down Expand Up @@ -188,5 +189,6 @@ class SummarizerDALImpl(val executorNum: Int,
gpuIndices: Array[Int],
kvsIPPort: String,
training_breakdown_name: String,
storePath: String,
result: SummarizerResult): Long
}

0 comments on commit 79078f0

Please sign in to comment.