lufloat 0.1.2

Fastest FP16 Math and AI Library for AMD APUs
Documentation
on:
    push:
        branches: [main]

permissions:
    contents: write

jobs:
    format:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v4
            - run: |
                  cargo fmt --all
                  find . -type f -name "*.hip" -exec clang-format -i {} +
                  git config user.name "github-actions[bot]"
                  git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
                  if ! git diff --quiet; then
                      git add -A
                      git commit -m "style: auto-format rust and hip files."
                      git push
                  fi