simd_util.h (382B)
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved. 2 // 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 #ifndef LIB_JXL_SIMD_UTIL_H_ 7 #define LIB_JXL_SIMD_UTIL_H_ 8 9 #include <cstddef> 10 11 namespace jxl { 12 13 // Maximal vector size in bytes. 14 size_t MaxVectorSize(); 15 16 } // namespace jxl 17 18 #endif // LIB_JXL_SIMD_UTIL_H_