blob: c90e7daa0a3fc17a2a5a6a14931c57bb0808eb4a [file] [edit]
// Copyright 2024 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#ifndef XNNPACK_TEST_NEXT_PRIME_H_
#define XNNPACK_TEST_NEXT_PRIME_H_
#include <cstddef>
namespace xnnpack {
bool IsPrime(size_t n);
size_t NextPrime(size_t n);
}; // namespace xnnpack
#endif // XNNPACK_TEST_NEXT_PRIME_H_