diff --git a/onnxruntime/core/providers/cuda/test/greedy_search_top_one.cc b/onnxruntime/core/providers/cuda/test/greedy_search_top_one.cc index 9b79c45661..5c22409e81 100644 --- a/onnxruntime/core/providers/cuda/test/greedy_search_top_one.cc +++ b/onnxruntime/core/providers/cuda/test/greedy_search_top_one.cc @@ -31,7 +31,6 @@ void ComputeTop1Reference(const std::vector& values, std::vector& top_k_tokens, int32_t batch_size, int32_t vocab_size) { - using VK = std::pair; for (int32_t b = 0; b < batch_size; b++) { int32_t base_idx = b * vocab_size;