diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 58dba18db..2e7fbf7d6 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -5,7 +5,7 @@ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, +identity and expression, level of experience, education, socioeconomic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation. diff --git a/bestla/bestla/kernel_jit.h b/bestla/bestla/kernel_jit.h index 3347f272f..b9c6ad7ac 100644 --- a/bestla/bestla/kernel_jit.h +++ b/bestla/bestla/kernel_jit.h @@ -1566,8 +1566,8 @@ class PaddingTransInterleaveCvt : protected xbyak::JitAvx512f { // Complex number matrix(interleaved) - vector(as diagonal matrix) multiplication; Typically used for // shift-RoPE // -// vector: fp16 values; view every adjacent 2 values on colunm as a complex num -// src: bf16 ⌈row/row_pack⌉ x n_tile x row_pack; view every adjacent 2 values on colunm as a complex num +// vector: fp16 values; view every adjacent 2 values on column as a complex num +// src: bf16 ⌈row/row_pack⌉ x n_tile x row_pack; view every adjacent 2 values on column as a complex num // dst: same as src class CScaleInterleavedBF16FP16 : protected xbyak::JitAvx512_fp16 { public: diff --git a/neural_speed/core/ne_layers.c b/neural_speed/core/ne_layers.c index 278ec50c7..73889971e 100644 --- a/neural_speed/core/ne_layers.c +++ b/neural_speed/core/ne_layers.c @@ -685,7 +685,7 @@ static inline bool ne_are_same_shape(const struct ne_tensor* t0, const struct ne return (t0->ne[0] == t1->ne[0]) && (t0->ne[1] == t1->ne[1]) && (t0->ne[2] == t1->ne[2]) && (t0->ne[3] == t1->ne[3]); } -// check if t1 can be represented as a repeatition of t0 +// check if t1 can be represented as a repetition of t0 static inline bool ne_can_repeat(const struct ne_tensor* t0, const struct ne_tensor* t1) { static_assert(NE_MAX_DIMS == 4, "NE_MAX_DIMS is not 4 - update this function");