Skip to content

Commit 88df806

Browse files
committed
address two compiler warnings
1 parent 886ae0f commit 88df806

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/layers/lbann_layer_fully_connected.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ DataType lbann::FullyConnectedLayer::checkGradient(Layer& PrevLayer, const DataT
393393

394394
if(bad_E1) {
395395
if(Acts_E1.Grid().Rank() == 0) {
396-
printf("BAD ENTRY Acts_E1 %d x %d\n", row, col);
396+
printf("BAD ENTRY Acts_E1 %lld x %lld\n", row, col);
397397
}
398398
cout.precision(20);
399399
Print(Acts_E1);
@@ -404,7 +404,7 @@ DataType lbann::FullyConnectedLayer::checkGradient(Layer& PrevLayer, const DataT
404404
}
405405
if(bad_E2) {
406406
if(Acts_E2.Grid().Rank() == 0) {
407-
printf("BAD ENTRY Acts_E2 %d x %d\n", row, col);
407+
printf("BAD ENTRY Acts_E2 %lld x %lld\n", row, col);
408408
}
409409
Print(Acts_E2);
410410
}

0 commit comments

Comments
 (0)