Skip to content

Commit

Permalink
Fix no subgroups quant GEMV.
Browse files Browse the repository at this point in the history
  • Loading branch information
cryscan committed Jun 20, 2024
1 parent 28fcd09 commit 8e7b193
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["deep-learning", "language", "model", "rwkv"]
license = "MIT OR Apache-2.0"
name = "web-rwkv"
repository = "https://github.com/cryscan/web-rwkv"
version = "0.8.14"
version = "0.8.15"

[dependencies]
ahash = "0.8"
Expand Down
2 changes: 2 additions & 0 deletions src/tensor/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,7 @@ impl TensorOp {
None,
Macros::new()
.u32("BLOCK_SIZE", BLOCK_SIZE)
.int8(Self::INT8_BLOCK_SIZE)
.tensor(&input, Some("IN"))
.tensor(&output, Some("OUT"))
.custom(active, Some("ACT")),
Expand Down Expand Up @@ -833,6 +834,7 @@ impl TensorOp {
None,
Macros::new()
.u32("BLOCK_SIZE", BLOCK_SIZE)
.nf4(Self::NF4_BLOCK_SIZE)
.tensor(&input, Some("IN"))
.tensor(&output, Some("OUT"))
.custom(active, Some("ACT")),
Expand Down

0 comments on commit 8e7b193

Please sign in to comment.