oneapi-src / unified-memory-framework

A library for constructing allocators and memory pools. It also contains broadly useful abstractions and utilities for memory management. UMF allows users to manage multiple memory pools characterized by different attributes, allowing certain allocation types to be isolated from others and allocated using different hardware resources as required.
https://oneapi-src.github.io/unified-memory-framework/
Other
33 stars 25 forks source link

Increase the CI spell checker efficiency #312

Open PatKamin opened 7 months ago

PatKamin commented 7 months ago

Rationale

Currently, 'typos' Github Action is used in CI (spellcheck.yml) to check for typos made. However, it is not ideal and doesn't catch some of rather easy to see typos. See ie. this comment.

Description

Replace typos Github Action with other tool which would increase the efficiency of finding typos. One tool that can be used is codespell on Linux.

API Changes

None

lukaszstolarczuk commented 7 months ago

I believe, the problem with typos (at the moment) is that it does not run on all types of files. Perhaps it just requires a better configuration.