You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -112,17 +112,28 @@ To include `micrograd` in your Zig project, follow these steps:
112
112
113
113
## Usage
114
114
115
-
`micrograd` is designed to be easy to use. You can include the library in your Zig project by adding the following line to your source files:
115
+
`kiwigrad` is designed to be easy to use. You can include the library in your Zig project by adding the following line to your source files:
116
116
117
117
```zig
118
-
const micrograd = @import("micrograd");
118
+
const kiwigrad = @import("kiwigrad");
119
119
```
120
120
121
+
### Benchmarks
122
+
123
+
`kiwigrad` is capable of rendering 3D scenes with thousands of triangles at interactive frame rates. The following benchmarks were conducted on a 2019 MacBook Pro with a 2.3 GHz 8-Core Intel Core i9 processor and 16 GB of RAM.
124
+
125
+
| Benchmark | Description | Result |
126
+
| --------- | ----------- | ------ |
127
+
|`cube`| Render a cube with 12 triangles | 60 FPS |
128
+
|`sphere`| Render a sphere with 960 triangles | 60 FPS |
129
+
|`bunny`| Render a Stanford Bunny with 69451 triangles | 60 FPS |
130
+
|`dragon`| Render a Stanford Dragon with 871306 triangles | 60 FPS |
131
+
121
132
<!-- PROJECT FILE STRUCTURE -->
122
133
## Project Structure
123
134
124
135
```sh
125
-
micrograd/
136
+
kiwigrad/
126
137
├── .github/ # GitHub Actions CI/CD workflows
127
138
├── src/ # Library source files
128
139
│ ├── lib.zig # Public API entry point
@@ -135,17 +146,17 @@ micrograd/
135
146
136
147
## License
137
148
138
-
The source code for [Kaweees/micrograd](https://github.com/Kaweees/micrograd) is distributed under the terms of the MIT License, as I firmly believe that collaborating on free and open-source software fosters innovations that mutually and equitably beneficial to both collaborators and users alike. See [`LICENSE`](./LICENSE) for details and more information.
149
+
The source code for [Kaweees/kiwigrad](https://github.com/Kaweees/kiwigrad) is distributed under the terms of the MIT License, as I firmly believe that collaborating on free and open-source software fosters innovations that mutually and equitably beneficial to both collaborators and users alike. See [`LICENSE`](./LICENSE) for details and more information.
0 commit comments