mirror of
https://fastgit.cc/github.com/Michael-A-Kuykendall/shimmy
synced 2026-04-30 22:02:16 +08:00
- Add comprehensive MLX engine implementation with Python MLX bindings - Implement MLX model discovery, loading, and native inference pipeline - Add MLX feature flag compilation and Apple Silicon hardware detection - Create dedicated GitHub Actions workflow for MLX testing on macos-14 ARM64 - Add MLX documentation to README and wiki with capability descriptions - Implement pre-commit hooks enforcing cargo fmt, clippy, and test validation - Fix GPU backend tests to properly force specific backends instead of auto-detection - Resolve property test race conditions with serial test execution - Update release workflow validation and platform-specific test expectations - Add MLX implementation plan and cross-compilation toolchain support 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
743 B
Plaintext
22 lines
743 B
Plaintext
# Override GitHub language detection to show Rust instead of Makefile
|
|
# This is needed because Rust build generates many .d files with Makefile syntax
|
|
|
|
# Mark Rust files as detectable and prioritize them
|
|
*.rs linguist-detectable=true
|
|
|
|
# Exclude build artifacts and dependency files from language detection
|
|
*.d linguist-detectable=false
|
|
Makefile linguist-detectable=false
|
|
makefile linguist-detectable=false
|
|
GNUmakefile linguist-detectable=false
|
|
|
|
# Exclude other build artifacts and generated files
|
|
target/ linguist-generated=true
|
|
Cargo.lock linguist-generated=true
|
|
*.profraw linguist-generated=true
|
|
|
|
# Ensure template files are properly categorized
|
|
*.toml linguist-detectable=true
|
|
*.yml linguist-detectable=true
|
|
*.yaml linguist-detectable=true
|