Skip to content

Commit 38ca1a2

Browse files
author
Dmitrii Vasilev
committed
refactor: remove migrated files from trinity monolith
Удалены файлы, перенесённые в zig-golden-float и trinity-training: - JIT, бенчмарки, загрузчики данных (mnist/cifar10) - bigint, hybrid, packed_trit, packed_vsa - math/gen_*, formats.zig, constants.zig - cifar-10-python.tar.gz (35 MB) Файлы уже существуют в соответствующих репозиториях.
1 parent 44ec5eb commit 38ca1a2

1,082 files changed

Lines changed: 480808 additions & 37436 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.trinity/data/clues.json

Whitespace-only changes.

.trinity/data/discoveries.json

Whitespace-only changes.

.trinity/data/islands.json

Whitespace-only changes.

build_minimal.zig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
const std = @import("std");
2+
3+
pub fn build(b: *std.Build) !void {
4+
const optimize = b.standardOptimizeOption(.{});
5+
const target = b.standardTargetOptions(.{});
6+
7+
// Minimal working build - just HSLM CLI first
8+
const hslm_cli = b.addExecutable(.{
9+
.name = "hslm-cli",
10+
.root_source_file = b.path("src/hslm/cli.zig"),
11+
.target = target,
12+
.optimize = optimize,
13+
});
14+
b.installArtifact(hslm_cli);
15+
16+
const hslm_run = b.addRunArtifact(hslm_cli);
17+
const hslm_step = b.step("hslm", "Build and run HSLM CLI");
18+
hslm_step.dependOn(&hslm_run.step);
19+
b.default_step = hslm_step;
20+
}

cifar-10-python.tar.gz

-34 MB
Binary file not shown.

cli

Whitespace-only changes.

find_island

Whitespace-only changes.

hslm-bpe-train

1.14 MB
Binary file not shown.

hslm-cli

Whitespace-only changes.

hslm-tjepa-trainer

1.14 MB
Binary file not shown.

0 commit comments

Comments
 (0)