Skip to content

Commit

Permalink
fix concatenation unit test to match refactored unit test helper fram…
Browse files Browse the repository at this point in the history
…ework.
  • Loading branch information
ddavis-2015 committed Dec 6, 2024
1 parent cc1fb65 commit 9353cda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/lite/micro/kernels/concatenation_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void TestConcatenateTwoInputs(

#ifdef USE_TFLM_COMPRESSION

TestCompressedList<tensors_size, const T> tcl;
TestCompressedList<tensors_size> tcl;
const CompressedTensorList* comp_list_p = nullptr;

if (comp_info != nullptr) {
Expand Down Expand Up @@ -211,7 +211,7 @@ void TestConcatenateQuantizedTwoInputsCompressed(

#ifdef USE_TFLM_COMPRESSION

TestCompressedList<tensors_size, const T> tcl;
TestCompressedList<tensors_size> tcl;
const CompressedTensorList* comp_list_p = nullptr;

TF_LITE_MICRO_EXPECT_EQ(tcl.AddInput(comp_info[0], tensors[0], 0), kTfLiteOk);
Expand Down

0 comments on commit 9353cda

Please sign in to comment.