From f4b9089e6d0f19578e021d4b2e1fba4f92f0627b Mon Sep 17 00:00:00 2001 From: nihui Date: Tue, 20 Feb 2024 23:10:06 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 30f6e09..6c855af 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ detect cpu isa features with single-file int main() { // initialize ruapu once - ruapu_cpu_init(); + ruapu_init(); // now, tell me if this cpu has avx2 - int has_avx2 = ruapu_cpu_supports("avx2"); + int has_avx2 = ruapu_supports("avx2"); return 0; }