MyGit

v0.8.1

recp/cglm

版本发布时间: 2021-04-19 21:41:57

recp/cglm最新发布版本:v0.9.4(2024-04-01 23:10:19)

New Features:

Implement FMA

SIMD operations are optimized with FMA instructions to reduce operations and increasee accuracy. The gennerated CPU instructions are reduced. All matrix and related-vector operations are optimized.

FMA must be enable for these optimizations (with -mfma flag on GCC and Clang, /arch:AVX2 /O1-2 on MSVC)

New glmm functions (SSE + NEON):

New glmm functions (AVX):


CMake

Use as header-only library with your CMake project

This requires no building or installation of cglm.

cmake_minimum_required(VERSION 3.8.2)

project(<Your Project Name>)

add_executable(${PROJECT_NAME} src/main.c)
target_link_libraries(${LIBRARY_NAME} PRIVATE
  cglm_headers)

add_subdirectory(external/cglm/ EXCLUDE_FROM_ALL)

相关地址:原始地址 下载(tar) 下载(zip)

查看:2021-04-19发行的版本