Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrdar committed Sep 18, 2024
1 parent b666b4d commit 5f16559
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/atlas/field/detail/FieldInterface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,10 @@ void atlas__Field__data_long_specf(FieldImpl* This, long*& data, int& rank, int*

void atlas__Field__data_float_specf(FieldImpl* This, float*& data, int& rank, int*& shapef, int*& stridesf) {
atlas__Field__data_specf(This, data, rank, shapef, stridesf);
std::cout << "atlas__Field__data_float_specf :: rank = " << rank << std::endl;
}

void atlas__Field__data_double_specf(FieldImpl* This, double*& data, int& rank, int*& shapef, int*& stridesf) {
atlas__Field__data_specf(This, data, rank, shapef, stridesf);
std::cout << "atlas__Field__data_double_specf :: rank = " << rank << std::endl;
}

void atlas__Field__device_data_int_specf(FieldImpl* This, int*& data, int& rank, int*& shapef, int*& stridesf) {
Expand Down

0 comments on commit 5f16559

Please sign in to comment.