diff options
| author | Yousef <yousefjan24000@gmail.com> | 2026-03-15 12:41:11 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-15 12:41:11 +0300 |
| commit | 27fda8581f1ecf90491f211113f40277c4140a9f (patch) | |
| tree | f007b955f7fa2af59673c5e9a72bd8812ae80027 | |
Initial commit
| -rw-r--r-- | .gitignore | 55 | ||||
| -rw-r--r-- | README.md | 2 |
2 files changed, 57 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..845cda6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +# debug information files +*.dwo diff --git a/README.md b/README.md new file mode 100644 index 0000000..174dbe1 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# neural-ode +A C implementation of Neural Ordinary Differential Equations |