Skip to content

Change y_col to const int8_t pointer#519

Open
ranjanprj wants to merge 1 commit intomicrosoft:mainfrom
ranjanprj:patch-1
Open

Change y_col to const int8_t pointer#519
ranjanprj wants to merge 1 commit intomicrosoft:mainfrom
ranjanprj:patch-1

Conversation

@ranjanprj
Copy link
Copy Markdown

Giving error during compilation as the variable y is declared as const int8_t * (line 794), was being assigned to a non-const int8_t * pointer:.

// Before
int8_t * y_col = y + col * by;

// After
const int8_t * y_col = y + col * by;

Giving error during compilation as the variable y is declared as const int8_t * (line 794), was being assigned to a non-const int8_t * pointer:.

// Before
int8_t * y_col = y + col * by;

// After
const int8_t * y_col = y + col * by;
@vitorgamer58
Copy link
Copy Markdown

Duplicated:
#516
#491
#465
#451
#436
#484
#392

@jtwolfe
Copy link
Copy Markdown

jtwolfe commented Apr 3, 2026

why is this not fixed then?

Me: you should check out bitnet
Also Me: just make sure you add const to ln811 in src/ggml-bitnet-mad.cpp
Me Again: idk why, i guess they think updating links in the readme is more important

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants