diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2024-02-04 11:19:19 -0800 |
|---|---|---|
| committer | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2024-02-05 21:22:27 -0800 |
| commit | 12885a445af2d5c9f786002aee1b6a5b9fdc838f (patch) | |
| tree | a41ca00fc153f1d3bff34992473c8e88b553125a /src/simd/main.zig | |
| parent | 449d3b49a40848668eb4362b8bad46e36c6774ae (diff) | |
simd: remove old attempts
Diffstat (limited to 'src/simd/main.zig')
| -rw-r--r-- | src/simd/main.zig | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/simd/main.zig b/src/simd/main.zig index 3ce5d18ab..283439695 100644 --- a/src/simd/main.zig +++ b/src/simd/main.zig @@ -1,24 +1,8 @@ const std = @import("std"); -pub const isa = @import("isa.zig"); - -pub const aarch64 = @import("aarch64.zig"); - -pub const utf8_count = @import("utf8_count.zig"); -pub const utf8_decode = @import("utf8_decode.zig"); -pub const utf8_validate = @import("utf8_validate.zig"); pub const index_of = @import("index_of.zig"); pub const vt = @import("vt.zig"); -// TODO: temporary, only for zig build simd to inspect disasm easily -// pub fn main() !void { -// //std.log.warn("ISA={}", .{isa.ISA.detect()}); -// const input = "1234567\x1b1234567\x1b"; -// //const input = "1234567812345678"; -// std.log.warn("result={any}", .{index_of.indexOf(input, 0x1B)}); -// std.log.warn("result={any}", .{utf8.utf8Validate(input)}); -// } - test { @import("std").testing.refAllDecls(@This()); } |
