security: remove internal codename references from comments
Some checks are pending
Build / build-linux (push) Waiting to run
Build / build-macos (push) Waiting to run

This commit is contained in:
Elmadani 2026-02-24 22:10:26 +00:00
parent 781bf6ba80
commit e2bb3b8bdd
3 changed files with 4 additions and 4 deletions

View File

@ -226,7 +226,7 @@ struct block_q8_1 {
};
// Z-VERIFY: Block sizes must match GGUF binary format exactly
// STATIC ASSERT: Block sizes must match GGUF binary format exactly
static_assert(sizeof(block_q4_K) == 144, "block_q4_K size mismatch!");
static_assert(sizeof(block_q8_0) == 34, "block_q8_0 size mismatch!");
static_assert(sizeof(block_q6_K) == 210, "block_q6_K size mismatch!");

View File

@ -1,5 +1,5 @@
// ═══════════════════════════════════════════════════════════════════════════════
// INFERENCEX — Expert Profiler (Kimi-Signal-935 Genesis)
// INFERENCEX — Expert Profiler
// Copyright (C) 2025-2026 Salka Elmadani. All rights reserved.
// Licensed under the Business Source License 1.1 (BSL-1.1)
// See LICENSE file for full terms. Morocco.
@ -81,7 +81,7 @@ public:
FILE* f = fopen(path, "w");
if (!f) return;
fprintf(f, "# KIMI-SIGNAL-935 Expert Profile | %lu tokens\n\n",
fprintf(f, "# IX Expert Profile | %lu tokens\n\n",
(unsigned long)total_tokens_);
for (int l = 0; l < n_layers_; ++l) {

View File

@ -669,7 +669,7 @@ public:
}
}
// KIMI-SIGNAL-935 PROFILING
// EXPERT PROFILING
void dump_csv(const char* path) const {
FILE* fp = fopen(path, "w");
if (!fp) return;