Setup
This commit is contained in:
parent
7abc600076
commit
eac58e599a
5 changed files with 67 additions and 0 deletions
56
.gitignore
vendored
Normal file
56
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,56 @@
|
||||||
|
CLion Tings
|
||||||
|
cmake-build-debug
|
||||||
|
.idea
|
||||||
|
|
||||||
|
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
|
||||||
|
.i86
|
||||||
|
*.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
|
||||||
7
CMakeLists.txt
Normal file
7
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
cmake_minimum_required(VERSION 3.25)
|
||||||
|
project(c_net C)
|
||||||
|
|
||||||
|
set(CMAKE_C_STANDARD 11)
|
||||||
|
|
||||||
|
add_executable(c_net
|
||||||
|
main.c)
|
||||||
BIN
data/train-images.idx3-ubyte
Normal file
BIN
data/train-images.idx3-ubyte
Normal file
Binary file not shown.
BIN
data/train-labels.idx1-ubyte
Normal file
BIN
data/train-labels.idx1-ubyte
Normal file
Binary file not shown.
4
main.c
Normal file
4
main.c
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in a new issue