Skip to content

Commit

Permalink
fix tests and add code docs button
Browse files Browse the repository at this point in the history
  • Loading branch information
tjira committed Jan 3, 2025
1 parent a66887d commit 09eee3a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ You can also download this documentation along with complementary files in vario

[Exercise](/acorn/python/exercise/resmet_exercise.py){: .btn .btn-purple }
[Solution](/acorn/python/resmet.py){: .btn .btn-purple }

### Other Tools

[Code Documentation](/acorn/code){: .btn .btn-purple }
4 changes: 4 additions & 0 deletions src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ pub const qdn = @import("quantumdynamics.zig" );
pub const ten = @import("tensor.zig" );
pub const vec = @import("vector.zig" );

pub const Matrix = @import("matrix.zig").Matrix;
pub const Tensor = @import("tensor.zig").Tensor;
pub const Vector = @import("vector.zig").Vector;

pub fn parse(filebuf: []const u8) !void {
const inputjs = try std.json.parseFromSlice(std.json.Value, allocator, filebuf, .{}); defer inputjs.deinit();

Expand Down

0 comments on commit 09eee3a

Please sign in to comment.