Skip to content

Commit c7fb96d

Browse files
authored
Merge pull request #573 from SciSharp/ilkernel
[Major Rewrite] 600K->71K LOC Backend Rewrite, dynamic IL emission and kernel inlining, SIMD parallelism, 25 new np.* and more
2 parents ac1363c + db6c5d9 commit c7fb96d

File tree

581 files changed

+76845
-606327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

581 files changed

+76845
-606327
lines changed

.claude/CLAUDE.md

Lines changed: 166 additions & 198 deletions
Large diffs are not rendered by default.

.gitattributes

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Auto detect text files and normalize to LF in repo
2+
* text=auto eol=lf
3+
4+
# Explicit text files
5+
*.cs text eol=lf
6+
*.csproj text eol=lf
7+
*.sln text eol=lf
8+
*.md text eol=lf
9+
*.json text eol=lf
10+
*.xml text eol=lf
11+
*.yml text eol=lf
12+
*.yaml text eol=lf
13+
*.txt text eol=lf
14+
*.sh text eol=lf
15+
*.ps1 text eol=lf
16+
*.py text eol=lf
17+
*.config text eol=lf
18+
*.props text eol=lf
19+
*.targets text eol=lf
20+
*.editorconfig text eol=lf
21+
*.gitignore text eol=lf
22+
*.gitattributes text eol=lf
23+
24+
# Binary files
25+
*.png binary
26+
*.jpg binary
27+
*.jpeg binary
28+
*.gif binary
29+
*.ico binary
30+
*.snk binary
31+
*.npy binary
32+
*.npz binary
33+
*.dll binary
34+
*.exe binary
35+
*.pdb binary
36+
*.zip binary

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,3 +354,10 @@ docfx_project/src
354354
/coverage.xml
355355
test/NumSharp.Benchmark/LocalBenches.cs
356356
test/NumSharp.UnitTest/DevTests*.cs
357+
358+
# Local design documents (not tracked in git)
359+
docs/DESIGN.md
360+
361+
# Claude Code worktrees (local only)
362+
.claude/worktrees/
363+
!docs/releases/

0 commit comments

Comments
 (0)