no message
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Common.Constants;
|
||||
import Common.Current;
|
||||
import Common.Global;
|
||||
import Common.UI.Themes.FreeFortranSPFTokenMaker;
|
||||
@@ -136,6 +137,27 @@ public class ExportTasksPackageToExcel extends Pass_2021<Vector<TasksPackage>> {
|
||||
Cell cell = row.createCell(i);
|
||||
int style_index = 1;
|
||||
switch (i) {
|
||||
/*
|
||||
addTaskRow(offset.getValue(),
|
||||
task.group_description, //0
|
||||
task.test_description,//1
|
||||
task.language.getDescription(), //2
|
||||
task.flags, //3
|
||||
task.compilation_state, //4
|
||||
task.state, //5
|
||||
num_threads, //6
|
||||
num_cudas, //7
|
||||
total_threads, //8
|
||||
formatMatrix(task.matrix), //9
|
||||
task.environments, //10
|
||||
task.usr_par, //11
|
||||
task.compilation_time, //12
|
||||
task.Time,//13
|
||||
task.CleanTime, //14
|
||||
task.progress //15
|
||||
);
|
||||
*/
|
||||
|
||||
case 4:
|
||||
case 5:
|
||||
TaskState state = (TaskState) value;
|
||||
@@ -297,9 +319,9 @@ public class ExportTasksPackageToExcel extends Pass_2021<Vector<TasksPackage>> {
|
||||
if (NUM_THREADS != null && NUM_THREADS == 0) NUM_THREADS = 1;
|
||||
Integer NUM_CUDAS = extractIntegerEnvironmentValue(task.environments, "DVMH_NUM_CUDAS");
|
||||
//--
|
||||
Object num_threads = (NUM_THREADS != null) ? NUM_THREADS : "undef";
|
||||
Object num_cudas = (NUM_CUDAS != null) ? NUM_CUDAS : "undef";
|
||||
Object total_threads = (NUM_THREADS != null) ? NUM_THREADS * Utils.getMatrixProcessors(task.matrix) : "undef";
|
||||
Object num_threads = (NUM_THREADS != null) ? NUM_THREADS : Constants.Nan;
|
||||
Object num_cudas = (NUM_CUDAS != null) ? NUM_CUDAS : Constants.Nan;
|
||||
Object total_threads = (NUM_THREADS != null) ? NUM_THREADS * Utils.getMatrixProcessors(task.matrix) : Constants.Nan;
|
||||
//--
|
||||
addTaskRow(offset.getValue(),
|
||||
task.group_description, //0
|
||||
|
||||
Reference in New Issue
Block a user