Skip to content

Commit

Permalink
[ML-335] Fix issues (#338)
Browse files Browse the repository at this point in the history
* split CI script to python and scala

Signed-off-by: minmingzhu <minming.zhu@intel.com>

* update ci-tests.yml

Signed-off-by: minmingzhu <minming.zhu@intel.com>

* update service.cpp

Signed-off-by: minmingzhu <minming.zhu@intel.com>

* update service.cpp code style

Signed-off-by: minmingzhu <minming.zhu@intel.com>

* fix issues

Signed-off-by: minmingzhu <minming.zhu@intel.com>

---------

Signed-off-by: minmingzhu <minming.zhu@intel.com>
  • Loading branch information
minmingzhu authored Jul 31, 2023
1 parent 3d71e21 commit 091c317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mllib-dal/src/main/native/Profile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

class Profiler {
public:
Profiler(std::string s) : subject(s) {}
Profiler(std::string s) : subject(std::move(s)) {}

void startProfile(std::string s = "") {
action = s;
action = std::move(s);
std::cout << subject << " (native): start " << action << std::endl;
startTime = std::chrono::high_resolution_clock::now();
}
Expand Down

0 comments on commit 091c317

Please sign in to comment.