authors : update

This commit is contained in:
Georgi Gerganov 2024-04-09 09:14:03 +03:00
parent 805d705032
commit 0e0d4e821f
No known key found for this signature in database
GPG Key ID: BF970631944C16B7
3 changed files with 646 additions and 626 deletions

1261
AUTHORS

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2023-2024 Georgi Gerganov and the llama.cpp authors
Copyright (c) 2023-2024 The ggml authors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,6 +1,9 @@
#!/bin/bash
printf "# this file is auto-generated by scripts/gen-authors.sh\n\n" > AUTHORS
printf "List of llama.cpp contributors in chronological order of their first commit:\n\n" >> AUTHORS
printf "# date: $(date)\n" > AUTHORS
printf "# this file is auto-generated by scripts/gen-authors.sh\n\n" >> AUTHORS
git log --format='%an <%ae>' --reverse --date=short master | awk '!seen[$0]++' >> AUTHORS
git log --format='%an <%ae>' --reverse --date=short master | awk '!seen[$0]++' | sort >> AUTHORS
# if necessary, update your name here. for example: jdoe -> John Doe
sed -i '' 's/^jdoe/John Doe/g' AUTHORS