Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
0a50783
feat(grammar): add constrained decoding support
wanglining97 Jun 12, 2026
fea2a8e
fix(grammar): harden constrained decoding integration
wanglining97 Jul 28, 2026
af5f2c5
fix(grammar): support byte vocab tokens
wanglining97 Jul 29, 2026
ef80a41
fix(grammar): align DashSC structured output integration
wanglining97 Jul 30, 2026
e002829
fix(grammar): address structured output review findings
wanglining97 Aug 3, 2026
f6b0be2
fix(grammar): align sampler processor rows with main
wanglining97 Aug 4, 2026
5bfbc87
build: declare flashinfer dependency for exec ctx ops
wanglining97 Aug 5, 2026
8276802
refactor(grammar): make matcher termination service-level
wanglining97 Aug 5, 2026
20fffd1
build: link packed mask test implementations
wanglining97 Aug 5, 2026
a00e817
fix(grammar): align vocab and finalization boundaries
wanglining97 Aug 5, 2026
e77e705
build: expose narrow flashinfer runtime dependency
wanglining97 Aug 5, 2026
8fd9ac6
refactor(grammar): simplify synchronous processor flow
wanglining97 Aug 5, 2026
9b77dc4
fix(config): preserve plain-text response format fallback
wanglining97 Aug 5, 2026
291c834
fix(grammar): update xgrammar budget integration
wanglining97 Aug 5, 2026
f9fddfd
fix(config): reject malformed response format JSON
wanglining97 Aug 5, 2026
cc5889d
fix(config): reject malformed response format envelopes
wanglining97 Aug 5, 2026
e8d7083
fix(grammar): cap tokenizer metadata to model vocab
wanglining97 Aug 5, 2026
09e5721
fix(grammar): normalize response format validation
wanglining97 Aug 5, 2026
c1ee8c9
refactor(grammar): centralize constraint field lifecycle
wanglining97 Aug 5, 2026
1bdc5e7
fix(grammar): address constrained decoding review findings
wanglining97 Aug 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions 3rdparty/dlpack/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package(default_visibility = ["//visibility:public"])

# Vendored dlpack header (single file). xgrammar's matcher.h includes
# <dlpack/dlpack.h>, but xgrammar's upstream pulls dlpack as a git
# submodule from github.com/dmlc/dlpack which is unreachable from the
# internal build environment. We vendor the v0.8 header verbatim instead.
Comment thread
wanglining97 marked this conversation as resolved.
Comment thread
wanglining97 marked this conversation as resolved.
Comment thread
wanglining97 marked this conversation as resolved.
Comment thread
wanglining97 marked this conversation as resolved.
Comment thread
wanglining97 marked this conversation as resolved.
Comment thread
wanglining97 marked this conversation as resolved.
cc_library(
name = "dlpack_headers",
hdrs = ["include/dlpack/dlpack.h"],
includes = ["include"],
)
Loading
Loading