Skip to content
Snippets Groups Projects
Commit 7d8104e5 authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

fix: used version of haas-java-client

parent 79db73b1
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@
<dependency>
<groupId>cz.it4i.fiji</groupId>
<artifactId>haas-java-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.2-SNAPSHOT</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
......
......@@ -688,6 +688,11 @@ public class BenchmarkJobManager implements Closeable{
public long getClusterNodeType() {
return Constants.HAAS_CLUSTER_NODE_TYPE;
}
@Override
public int getNumberOfCoresPerNode() {
return Constants.CORES_PER_NODE;
}
};
}
......
......@@ -52,5 +52,6 @@ public interface Constants {
String STATISTICS_SUMMARY_FILENAME = "summary.csv";
String SUMMARY_FILE_HEADER = "Task;AvgMemoryUsage;AvgWallTime;MaxWallTime;TotalTime;JobCount";
String DONE_TASK = "done";
int CORES_PER_NODE = 24;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment