Skip to content

Commit ce4c8fe

Browse files
Update README.md
1 parent 0bc0486 commit ce4c8fe

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

README.md

+23-7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ This repository contains an implementation of a neural network from scratch usin
55
## Introduction
66
Neural networks are powerful models for machine learning and artificial intelligence tasks. This project focuses on building a basic neural network using the C programming language with CUDA extensions for parallelism. CUDA allows us to harness the computational power of NVIDIA GPUs, speeding up the training and inference phases of the neural network.
77

8+
For running this make sure GCC and NVCC installed in your system while doing it my GCC version is 11.4.0 and NVCC version is 11.8. **USE THE RUN FILE FOR INSTALLING AND ADD THE PATH TO THE BASHRC FILE**
9+
810
## Prerequisites
911
To run this project, you need the following dependencies:
1012
- CUDA-enabled GPU
@@ -22,23 +24,37 @@ neural_network
2224
├── bin
2325
│   └── program
2426
├── document.md
27+
├── generate.py
28+
├── include
29+
│   ├── activations.cuh
30+
│   ├── benchmark.h
31+
│   ├── initializers.h
32+
│   ├── losses.cuh
33+
│   ├── operations.cuh
34+
│   ├── optimizer.h
35+
│   └── utils.h
36+
├── linear_data.csv
2537
├── Makefile
2638
├── obj
2739
│   ├── activations.cu.o
40+
│   ├── benchmark.o
2841
│   ├── initializers.o
42+
│   ├── losses.cu.o
2943
│   ├── main.o
30-
│   ├── matmul.cu.o
44+
│   ├── operations.cu.o
45+
│   ├── optimizers.o
3146
│   └── utils.o
3247
├── run.sh
3348
├── src
3449
│   ├── activations.cu
35-
│   ├── activations.cuh
50+
│   ├── benchmark.c
3651
│   ├── initializers.c
37-
│   ├── initializers.h
52+
│   ├── losses.cu
3853
│   ├── main.c
39-
│   ├── matmul.cu
40-
│   ├── matmul.cuh
41-
│   ├── utils.c
42-
│   └── utils.h
54+
│   ├── operations.cu
55+
│   ├── optimizers.c
56+
│   ├── output
57+
│   └── utils.c
4358
└── valgrind-out.txt
59+
4460
```

0 commit comments

Comments
 (0)