repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
denoland/deno
745f7d9d93fa49ca238951ccc93af2e31e5a1300
8b8b10dd147929a02f94f276cff7bd1e4e60c861
fix(ext/node): `createServer().listen().address()` returns port 0 (#32248) ## Summary - Bind the TCP/TLS port synchronously in `Server.listen()` so that `address()` immediately returns the OS-assigned port, matching Node.js behavior - Previously the port binding was deferred to `nextTick` via `Deno.serve()`, causing ...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -70,7 +70,8 @@ import {\n } from \"ext:deno_node/internal/errors.ts\";\n import { getTimerDuration } from \"ext:deno_node/internal/timers.mjs\";\n import { getIPFamily } from \"ext:deno_node/internal/net.ts\";\n-import { serve, upgradeHttpRaw } from \"ext...
2026-02-24T13:16:31
huggingface/transformers
1c9077f66dc285dd32aa2410bed8acc680d64475
756742354b5cde1afadeba584a6c0e1577bf0148
Fix base model prefix in VLMs (#42059) * fix base model prefix * it is now defined
[ { "path": "src/transformers/models/cohere2_vision/modeling_cohere2_vision.py", "patch": "@@ -129,7 +129,7 @@ class Cohere2VisionCausalLMOutputWithPast(ModelOutput):\n @auto_docstring\n class Cohere2VisionPreTrainedModel(PreTrainedModel):\n config: Cohere2VisionConfig\n- base_model_prefix = \"\"\n+ ...
2025-11-10T11:59:41
vuejs/vue
d8d4ca6763af55e1715bbc1e0fadd10e5be41db3
8ff77a243cae0627a651fe852a6c07f7bcfce2a3
fix: transition group should work with dynamic name (#6006) (#6019) * fix: transition group should work with dynamic name (#6006) * fix: improve remove class
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -42,12 +42,20 @@ export function removeClass (el: HTMLElement, cls: ?string) {\n } else {\n el.classList.remove(cls)\n }\n+ if (!el.classList.length) {\n+ el.removeAttribute('class')\n+ }\n } else {\n let cur = ...
2017-07-05T01:17:35
ollama/ollama
8baaaa39c0c58bf2abf334aa9edebe3fcca23942
cd8fad339826b15c109f8a9487ac0a7577f98b3b
Allow extension origins (still needs explicit listing), fixes #1686
[ { "path": "server/routes.go", "patch": "@@ -837,6 +837,7 @@ func (s *Server) GenerateRoutes() http.Handler {\n \n \tconfig := cors.DefaultConfig()\n \tconfig.AllowWildcard = true\n+\tconfig.AllowBrowserExtensions = true\n \n \tconfig.AllowOrigins = origins\n \tfor _, allowOrigin := range defaultAllowOrigins...
2024-01-05T01:55:47
ggml-org/llama.cpp
72bd7321a7d7465d371eb2ae46cd5518842c8f44
22e1ce2f81c0495699502309dc279f1eac2dfdfe
sycl : unify unary kernels with a generic implementation and enable wide operator support (#17213) * SYCL: add generic unary op implementation for multiple ops (ABS/SGN/…); unify non-contiguous access * SYCL: update documentation and sycl.csv to reflect new unary op support * update ops.md after syncing SYCL.csv cha...
[ { "path": "docs/ops.md", "patch": "@@ -14,7 +14,7 @@ Legend:\n \n | Operation | BLAS | CANN | CPU | CUDA | Metal | OpenCL | SYCL | Vulkan | zDNN |\n |-----------|------|------|------|------|------|------|------|------|------|\n-| ABS | ❌ | ✅ | ✅ | 🟡 | 🟡 | ❌ | 🟡 | 🟡 | ❌ |\n+|...
2025-11-15T23:52:42
denoland/deno
8b8b10dd147929a02f94f276cff7bd1e4e60c861
f817b31ed21ed0ba8cc59f26e5fa3356a430b9db
feat(compile): add `--self-extracting` flag (#32227) Adds a `--self-extracting` flag to `deno compile`. Instead of serving files from the in-memory virtual file system, the compiled binary extracts all embedded files to disk on first run and uses real file system operations at runtime. This unlocks full Node API supp...
[ { "path": "Cargo.lock", "patch": "@@ -3356,6 +3356,7 @@ dependencies = [\n \"deno_terminal\",\n \"import_map\",\n \"indexmap 2.9.0\",\n+ \"junction\",\n \"libsui\",\n \"log\",\n \"memmap2\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/args/flags.rs", ...
2026-02-24T13:03:13
huggingface/transformers
756742354b5cde1afadeba584a6c0e1577bf0148
926c37aaf4984d054559c18681c16b67bdfe0a8d
[Bugfix] fix qwen3vl expand generation with video (#42089) fix qwen3vl expand generation with video and add
[ { "path": "src/transformers/models/qwen3_vl/modeling_qwen3_vl.py", "patch": "@@ -1535,15 +1535,16 @@ def _expand_inputs_for_generation(\n input_ids: Optional[torch.LongTensor] = None,\n **model_kwargs,\n ) -> tuple[torch.LongTensor, dict[str, Any]]:\n- # Overwritten -- Support for...
2025-11-10T09:06:06
vuejs/vue
8ff77a243cae0627a651fe852a6c07f7bcfce2a3
275d95d0fe79b667dafb353b974812ed9837f1cf
fix typos in src/server/bundle-renderer/create-bundle-runner.js (#6010)
[ { "path": "src/server/bundle-renderer/create-bundle-runner.js", "patch": "@@ -115,7 +115,7 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n // styles injected by vue-style-loader.\n initialContext = sandbox.__VUE_SSR_CONTEXT__ = {}\n runner = evaluat...
2017-07-01T13:36:23
ggml-org/llama.cpp
22e1ce2f81c0495699502309dc279f1eac2dfdfe
1411d9275ad7d2af44543fb9c1e64eea1e1c8de7
webui: Fix clickability around chat processing statistics UI (#17278) * fix: Better pointer events handling in chat processing info elements * chore: update webui build output
[ { "path": "tools/server/webui/src/lib/components/app/chat/ChatProcessingInfo.svelte", "patch": "@@ -76,10 +76,10 @@\n \t});\n </script>\n \n-<div class=\"chat-processing-info-container\" class:visible={showSlotsInfo}>\n+<div class=\"chat-processing-info-container pointer-events-none\" class:visible={showSlo...
2025-11-15T21:41:41
ollama/ollama
e9ce91e9a609968e066859900e06e663b929d197
4ad6c9b11f558a3822bb7f720e51f0224228257a
Load dynamic cpu lib on windows On linux, we link the CPU library in to the Go app and fall back to it when no GPU match is found. On windows we do not link in the CPU library so that we can better control our dependencies for the CLI. This fixes the logic so we correctly fallback to the dynamic CPU library on window...
[ { "path": "llm/ext_server_windows.go", "patch": "@@ -1,15 +1,12 @@\n package llm\n \n import (\n-\t\"fmt\"\n-\n \t\"github.com/jmorganca/ollama/api\"\n )\n \n func newDefaultExtServer(model string, adapters, projectors []string, numLayers int64, opts api.Options) (extServer, error) {\n \t// On windows we al...
2024-01-04T16:41:41
huggingface/transformers
f5630f9b1afb01db38219e574e641d455edcab4e
e8a6eb3304033fdd9346fe3b3293309fe50de238
Fix return metadata checking logic (#42108) fix return_metadata_checking_logic
[ { "path": "src/transformers/models/glm4v/modular_glm4v.py", "patch": "@@ -1605,7 +1605,7 @@ def __call__(\n if videos is not None:\n videos_inputs = self.video_processor(videos=videos, **output_kwargs[\"videos_kwargs\"])\n # If user has not requested video metadata, pop it\n-...
2025-11-10T08:23:43
vuejs/vue
eea0920f14d0ea63d1b94c648eeb36ac7dfb4b05
458030ae19a51982d028dcacfc77ab2cfac8ac26
fix: improve Vue.set/Vue.delete API to support multi type of array index (#5973) related #5884
[ { "path": "src/core/observer/index.js", "patch": "@@ -6,6 +6,7 @@ import {\n def,\n isObject,\n isPlainObject,\n+ isValidArrayIndex,\n hasProto,\n hasOwn,\n warn,\n@@ -189,7 +190,7 @@ export function defineReactive (\n * already exist.\n */\n export function set (target: Array<any> | Object, ...
2017-07-01T03:22:25
ggml-org/llama.cpp
4dca015b7e019d5bfa9d3872b19ad4cf97859c22
9a8860cf5d3b694170c035f6b61db72a3a59920a
vulkan: Replace 16-bit unpack8 calls to work around legacy Windows AMD driver bug (#17285)
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl", "patch": "@@ -300,7 +300,7 @@ void block_a_to_shmem(const uint buf_ib, const uint ib, const uint iqs) {\n \n if (iqs == 0) {\n buf_a[buf_ib].dm = FLOAT_TYPE_VEC2(data_a_packed32[ib_k].dm);\n- buf_a[buf_ib].scales = unpack...
2025-11-15T14:18:58
ollama/ollama
4ad6c9b11f558a3822bb7f720e51f0224228257a
c0285158a91809d059ff9006dae5ce545bf9c812
fix: pull either original model or from model on create (#1774)
[ { "path": "server/images.go", "patch": "@@ -485,9 +485,15 @@ func CreateModel(ctx context.Context, name, modelFileDir string, commands []pars\n \t\t\t\t\tif err != nil {\n \t\t\t\t\t\treturn err\n \t\t\t\t\t}\n-\t\t\t\t\tif err := PullModel(ctx, parent.OriginalModel, &RegistryOptions{}, fn); err != nil {\n-...
2024-01-04T06:34:38
denoland/deno
c5919892439aa3a6527ea3e18fa0ae32bbcfd027
f6a619fe0bcc000f7d161c2e3dacd171cc448de6
fix(lsp): implement remaining tsgo resolver callbacks (#32303)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1296,7 +1296,7 @@ impl DocumentModules {\n module\n }\n \n- pub fn module_for_tsgo_referrer(\n+ pub fn module_for_tsgo_document(\n &self,\n uri: &Uri,\n compiler_options_key: &CompilerOptionsKey,\n@@ -1314,7 +1314,7 @@ impl DocumentModules ...
2026-02-24T07:55:26
huggingface/transformers
e8a6eb3304033fdd9346fe3b3293309fe50de238
370fc65ee594b82aafcb971ce5a0d60ca0851954
Revert "permissions worflows fix" (#42110) Revert "permissions worflows fix (#42080)" This reverts commit 08f52e2178a0bada437da02ed7c1395ae54b3309.
[ { "path": ".github/workflows/check-workflow-permissions.yml", "patch": "@@ -20,4 +20,4 @@ jobs:\n contents: read\n with:\n workflow_name: ${{ inputs.workflow_name }}\n- run_count: ${{ fromJSON(inputs.run_count) }}\n+ run_count: ${{ fromJSON(inputs.run_count) }}\n\\ No newline at en...
2025-11-08T15:21:02
ggml-org/llama.cpp
38eaf32af1da66caa930ce37e9dca1137c66f91c
9b17d74ab7d31cb7d15ee7eec1616c3d825a84c0
vulkan: change graph_compute to be async and enable get_tensor_async (#17158) * vulkan: change graph_compute to be async and enable get_tensor_async This allows some additional CPU/GPU overlap for large pp workloads. Also seems to help a bit for token gen, maybe getting rid of a small bubble between graph_compute and...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -234,6 +234,7 @@ class vk_memory_logger;\n #endif\n class vk_perf_logger;\n static void ggml_vk_destroy_buffer(vk_buffer& buf);\n+static void ggml_vk_synchronize(ggml_backend_vk_context * ctx);\n \n static constexpr uint32_t mul_mat_vec_max_cols...
2025-11-15T08:06:41
vuejs/vue
458030ae19a51982d028dcacfc77ab2cfac8ac26
34d8c796ac6a8e47bf23155bad71d07fafd1aa51
fix: v-bind object should not override props on scopedSlots (#5995) * v-bind object should not override props on scopedSlots * Update render-slot.js
[ { "path": "src/core/instance/render-helpers/render-slot.js", "patch": "@@ -15,7 +15,7 @@ export function renderSlot (\n if (scopedSlotFn) { // scoped slot\n props = props || {}\n if (bindObject) {\n- extend(props, bindObject)\n+ props = extend(extend({}, bindObject), props)\n }\n ...
2017-06-30T06:58:07
ollama/ollama
c0285158a91809d059ff9006dae5ce545bf9c812
77a66df72cc085b487c2e3df38f1eacb59daafa7
tweak memory requirements error text
[ { "path": "llm/llm.go", "patch": "@@ -63,9 +63,9 @@ func New(workDir, model string, adapters, projectors []string, opts api.Options)\n \t\tsystemMemory := int64(memory.TotalMemory())\n \n \t\tif ggml.FileType() == \"F16\" && requiredMemory*f16Multiplier > systemMemory {\n-\t\t\treturn nil, fmt.Errorf(\"F16 ...
2024-01-04T00:47:18
denoland/deno
f6a619fe0bcc000f7d161c2e3dacd171cc448de6
265cbd8732aea413ce01810e0e0f39df635ca561
fix(ext/node): add `host_arch` to `process.config.variables` (#32265) ## Summary - Adds `host_arch` property to `process.config.variables` to match Node.js behavior - Changes `process.config` to use a lazy getter so `arch` is available at access time (not during snapshot creation) - Fixes packages like `neo4j-driver` ...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -676,14 +676,24 @@ Object.defineProperty(process, \"argv0\", {\n process.chdir = chdir;\n \n /** https://nodejs.org/api/process.html#processconfig */\n-process.config = Object.freeze({\n- target_defaults: Object.freeze({\n- default_configuration: \...
2026-02-24T06:57:04
huggingface/transformers
370fc65ee594b82aafcb971ce5a0d60ca0851954
f065e402fc939758eabcfe182f34543258ac94ca
add xpu support in test_modeling_janus.py::JanusIntegrationTest::test… (#41986) * add xpu support in test_modeling_janus.py::JanusIntegrationTest::test_model_generate_images Signed-off-by: Wang, Yi A <yi.a.wang@intel.com> * fix ci issue Signed-off-by: Wang, Yi A <yi.a.wang@intel.com> --------- Signed-off-by: Wang...
[ { "path": "src/transformers/models/janus/modeling_janus.py", "patch": "@@ -1419,8 +1419,8 @@ def generate(\n model_inputs = self.prepare_inputs_for_generation(\n inputs_embeds=inputs_embeds, input_ids=input_tokens, **model_kwargs\n )\n-\n- model_inputs[\"at...
2025-11-08T13:17:21
vuejs/vue
34d8c796ac6a8e47bf23155bad71d07fafd1aa51
049f3171a9d2e97f62c209a4b78a71ec9dae810f
fix: check enterToClass/leaveToClass existence before adding it (#5912) related: #5800
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -69,8 +69,11 @@ export function nextFrame (fn: Function) {\n }\n \n export function addTransitionClass (el: any, cls: string) {\n- (el._transitionClasses || (el._transitionClasses = [])).push(cls)\n- addClass(el, cls)\n+ const transit...
2017-06-30T06:57:16
ggml-org/llama.cpp
e1fcf8b09b8115156313c61bdd42186a7c7fb7be
6cd0cf72ce96393f06bd271731e7a8bebeb481c0
model : add AfmoeForCausalLM support (#16477) * Add AFMOE model support * Update to vocab * Add model sizing * Undo Rope change for ARCEE model * Address review comments * Update modeling code is_sliding -> use_rope, replace hard-coded logic * Fix AFMOE tokenizer * Update convert_hf_to_gguf.py Co-authored-by: ...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -1124,6 +1124,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"a1e163ecab2e718a4c829d1148b6e86824ec36163bb71941c3dca9cd5ac25756\":\n # ref: https://huggingface.co/JetBrains/Mellum-4b-base\n res = \"mellum\"\...
2025-11-14T12:54:10
denoland/deno
265cbd8732aea413ce01810e0e0f39df635ca561
636f697ed3488e8c7d055d554c1ea01f08ae5f3c
fix(node/buffer): fix latin1Slice and hexSlice returning wrong results (#32277) ## Summary - Fix `Buffer.prototype.latin1Slice` and `Buffer.prototype.hexSlice` having an extraneous `string` parameter that shifted all arguments passed to the underlying `_latin1Slice`/`_hexSlice` functions - Fix `_latin1Slice` not handl...
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -1011,16 +1011,12 @@ Buffer.prototype.hexWrite = function hexWrite(string, offset, length) {\n );\n };\n \n-Buffer.prototype.hexSlice = function hexSlice(string, offset, length) {\n- return _hexSlice(this, string, offset, length);\n+Buffer....
2026-02-24T06:56:13
vuejs/vue
049f3171a9d2e97f62c209a4b78a71ec9dae810f
27a1b03827d431ef5dc3ad301099b30179551cd7
fix: support plugin with multi version vue (#5985) close #5970
[ { "path": "src/core/global-api/use.js", "patch": "@@ -4,13 +4,11 @@ import { toArray } from '../util/index'\n \n export function initUse (Vue: GlobalAPI) {\n Vue.use = function (plugin: Function | Object) {\n- const cid = this.cid\n- if (!plugin._installed) {\n- plugin._installed = {}\n- }\n...
2017-06-30T03:20:43
huggingface/transformers
f065e402fc939758eabcfe182f34543258ac94ca
91d250efb12fd051481b90442597cff0c3a3825e
[v5] 🚨Refactor subprocessors handling in processors (#41633) * remove attributes and add all missing sub processors to their auto classes * remove all mentions of .attributes * cleanup * fix processor tests * fix modular * remove last attributes * fixup * fixes after merge * fix wrong tokenizer in auto floren...
[ { "path": "src/transformers/models/align/processing_align.py", "patch": "@@ -59,9 +59,6 @@ class AlignProcessor(ProcessorMixin):\n \n \"\"\"\n \n- attributes = [\"image_processor\", \"tokenizer\"]\n- image_processor_class = \"EfficientNetImageProcessor\"\n- tokenizer_class = (\"BertTokenizer\",...
2025-11-07T17:57:33
ollama/ollama
ddbfa6fe31c4fc1894dbfdf77df53590dfdf5119
c7ea8f237ea1f38f664ffb2450f57f13677772f7
Fix CPU only builds Go embed doesn't like when there's no matching files, so put a dummy placeholder in to allow building without any GPU support If no "server" library is found, it's safely ignored at runtime.
[ { "path": "llm/llama.cpp/gen_linux.sh", "patch": "@@ -35,6 +35,9 @@ BUILD_DIR=\"gguf/build/linux/cpu\"\n build\n install\n \n+# Placeholder to keep go embed happy until we start building dynamic CPU lib variants\n+touch ${BUILD_DIR}/lib/dummy.so\n+\n if [ -d /usr/local/cuda/lib64/ ]; then\n echo \"CUDA ...
2024-01-04T00:08:34
ggml-org/llama.cpp
6cd0cf72ce96393f06bd271731e7a8bebeb481c0
d396b4374804bcb91cf969141ed75282245a12bc
fix : Dangling pointer for non-empty trigger words in lazy grammar construction (#17048) * fix : Dangling pointer for non-empty trigger words in llama_sampler_init_grammar_impl (#17047) * Replace 'static' workaround, with keeping variable in scope for longer * Create std::array directly and pass into llama_grammar_i...
[ { "path": "src/llama-sampling.cpp", "patch": "@@ -4,6 +4,7 @@\n #include \"llama-vocab.h\"\n #include \"llama-grammar.h\"\n \n+#include <array>\n #include <algorithm>\n #include <cassert>\n #include <cfloat>\n@@ -1625,10 +1626,12 @@ static struct llama_sampler * llama_sampler_init_grammar_impl(\n auto *...
2025-11-14T12:35:26
denoland/deno
636f697ed3488e8c7d055d554c1ea01f08ae5f3c
87f304049da7a95941276560942e607d66775c19
feat(ext/bundle): Add `--keep-names` flag (#32285) Exposes the esbuild flag `--keep-names` to users of `deno bundle` Moving forward with this as there has been no response to my questions in the issue so far. If you want to discuss this further, feel free to add your feedback. Fixes #32109
[ { "path": "cli/args/flags.rs", "patch": "@@ -592,6 +592,7 @@ pub struct BundleFlags {\n pub external: Vec<String>,\n pub format: BundleFormat,\n pub minify: bool,\n+ pub keep_names: bool,\n pub code_splitting: bool,\n pub inline_imports: bool,\n pub packages: PackageHandling,\n@@ -2536,6 +2537,...
2026-02-24T02:01:23
vuejs/vue
de42186d52562a0ce506580484ff64fe86b765bd
e4da249ab8ef32a0b8156c840c9d2b9773090f8a
fix(ssr): fix bundleRenderer mapped async chunks caching check (#5963) _mappedfiles => _mappedFiles
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -217,7 +217,7 @@ export default class TemplateRenderer {\n }\n \n getUsedAsyncFiles (context: Object): ?Array<string> {\n- if (!context._mappedfiles && context._registeredComponents && this.mapFiles) {\n+ if (!context._mappedFiles && ...
2017-06-30T00:58:08
huggingface/transformers
7cb42801121ecbe96ebc78d3549686fe18f1955b
144c8ce2809a2e21914017652700e1ecb450501e
Fix Auto classes to support dynamically registered processors (#41865)
[ { "path": "src/transformers/models/auto/image_processing_auto.py", "patch": "@@ -524,10 +524,9 @@ def from_pretrained(cls, pretrained_model_name_or_path, *inputs, **kwargs):\n )\n use_fast = False\n if use_fast:\n- for image_processors in IMAGE_PROC...
2025-11-07T17:31:36
ggml-org/llama.cpp
d396b4374804bcb91cf969141ed75282245a12bc
45c6ef7307e8ab383a8b6557f8ed8d237b26c452
server : fix "can batch with" bug (#17263)
[ { "path": "tools/server/server.cpp", "patch": "@@ -3591,13 +3591,13 @@ struct server_context {\n // next, batch any pending prompts without exceeding n_batch\n if (params_base.cont_batching || batch.n_tokens == 0) {\n for (auto & slot : slots) {\n+ if (!slot.is_pro...
2025-11-14T12:03:45
denoland/deno
87f304049da7a95941276560942e607d66775c19
5122966a00611627e2abd9787acf29889a522300
fix(node): preserve AsyncLocalStorage context in unhandledRejection handlers (#32264) ## Summary - Fixes `AsyncLocalStorage.getStore()` returning `undefined` inside `unhandledRejection` / `unhandledrejection` event handlers - Now matches Node.js behavior where the async context active at the time of rejection is pres...
[ { "path": "tests/specs/node/async_local_storage_unhandled_rejection/__test__.jsonc", "patch": "@@ -0,0 +1,8 @@\n+{\n+ \"tests\": {\n+ \"async_local_storage_unhandled_rejection\": {\n+ \"args\": \"run main.mjs\",\n+ \"output\": \"rejectionValue => data\\n\"\n+ }\n+ }\n+}", "additions": ...
2026-02-23T21:25:50
vuejs/vue
51c595a7cef24e12094f66e0f8934fa41edde07d
e01c09adad84fbcf9821ba7bbfc5e3300b2ba853
feat(keep-alive): support Array for include and exclude (#5956) * allow array index on keep-alive:include/exclude * add Array in patternTypes * fix flow type * add flow type for include/exclude in watch * add test case
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -5,14 +5,16 @@ import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n type VNodeCache = { [key: string]: ?VNode };\n \n-const patternTypes: Array<Function> = [String, RegExp]\n+const patternTypes: Array<Function> = [String, RegExp, A...
2017-06-30T00:50:30
huggingface/transformers
144c8ce2809a2e21914017652700e1ecb450501e
069684ef87a8cc308647a547c8fc728b6249ab10
Fix modular docstring for Mixtral (#42041) * Fix modular docstring for Mixtral * fixes all docstrings
[ { "path": "src/transformers/models/deepseek_v2/modeling_deepseek_v2.py", "patch": "@@ -59,8 +59,8 @@ def forward(\n \"\"\"\n Args:\n hidden_states: (batch_size * sequence_length, hidden_dim)\n- selected_experts: (batch_size * sequence_length, top_k)\n- routi...
2025-11-07T16:49:50
ggml-org/llama.cpp
becc4816dd6e601d2e0beb7b9c7e6767c8688b12
c4abcb2457217198efdd67d02675f5fddb7071c2
ggml-cpu: handle 3d tensors in repack mat_mul (#17241) * ggml-cpu: handle 3d tensors in repack mul_mat * Removed unnecessary branch, removed need for <algorithm> * Fixed dst_ptr pointer in chunk + clang_format * GGML_ASSERT to check wdata within bounds * Accidental ggml.h inclusion * Improved GGML_ASSERT on wdata...
[ { "path": "ggml/src/ggml-cpu/repack.cpp", "patch": "@@ -1600,29 +1600,52 @@ template <typename BLOC_TYPE, int64_t INTER_SIZE, int64_t NB_COLS, ggml_type PAR\n return false;\n }\n \n- void forward_mul_mat_one_chunk(ggml_compute_params * params, ggml_tensor * op, int64_t src0_start, int64_t src...
2025-11-13T20:53:00
vuejs/vue
00a3085628e78176fe02a3c5eb58bb0199c6ca91
f6cd44c48b83640e5d3fbbea46d7b1b9cb439543
test: correcting existing test case (#5909) Fix the location of the test case
[ { "path": "test/unit/features/global-api/set-delete.spec.js", "patch": "@@ -52,6 +52,24 @@ describe('Global API: set/delete', () => {\n expect(vm.$el.innerHTML).toBe('')\n }).then(done)\n })\n+\n+ it('be able to use string type index in array', done => {\n+ const vm = new Vue({\n+ ...
2017-06-29T04:39:02
denoland/deno
5122966a00611627e2abd9787acf29889a522300
578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b
test: add timeout support to spec tests (#32292) ## Summary - Adds a `timeout` field (in seconds) to spec test `__test__.jsonc` files - When a test step's process exceeds the timeout, it is killed and the test fails with a "Test command timed out" panic - Timeout can be set at the multi-test level (propagates to all ...
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -989,7 +989,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n `test ${testMatrix.test_crate} ${testMatrix.shard_label}${buildItem.profile} ${buildItem.os}-${buildItem.arch}`,\n needs: [buildJob],\n runsOn: buildIt...
2026-02-23T20:06:47
huggingface/transformers
069684ef87a8cc308647a547c8fc728b6249ab10
a127710b3a91b3d323b27be8e06ddf507b009b87
feat(ci): add continuous batching to benchmarks (#41916) * feat(ci): add continuous batching to benchmarks * refactor(ci): PR comments * refactor(cb): when stopping, block by default * fix(benchmarks): `stream` -> `streaming` * fix(benchmarks): invalid configuration when cb has attn_impl == sdpa * tests(cb): fix ...
[ { "path": ".github/workflows/benchmark.yml", "patch": "@@ -32,16 +32,16 @@ jobs:\n options: --gpus all --privileged --ipc host\r\n steps:\r\n - name: Get repo\r\n- uses: actions/checkout@v4\r\n+ uses: actions/checkout@v5\r\n with:\r\n- ref: ${{ github.event.pul...
2025-11-07T16:23:27
ollama/ollama
0b3118e0afe1a4658264081979b04aab9fda82d6
05face44efdb06d978394aadfce98daae7dca8a8
fix: relay request opts to loaded llm prediction (#1761)
[ { "path": "llm/ext_server_common.go", "patch": "@@ -153,7 +153,7 @@ func newExtServer(server extServer, model string, adapters, projectors []string,\n \treturn server, nil\n }\n \n-func predict(llm extServer, opts api.Options, ctx context.Context, predict PredictOpts, fn func(PredictResult)) error {\n+func ...
2024-01-03T17:01:42
ggml-org/llama.cpp
c4abcb2457217198efdd67d02675f5fddb7071c2
389ac78b2675ffe5054134f3037b11642a31a09f
server: fixing naming conflict res_error (#17243)
[ { "path": "tools/server/server.cpp", "patch": "@@ -4431,7 +4431,7 @@ static void log_server_request(const httplib::Request & req, const httplib::Resp\n SRV_DBG(\"response: %s\\n\", res.body.c_str());\n }\n \n-static void res_error(httplib::Response & res, const json & error_data) {\n+static void res_err...
2025-11-13T19:53:47
vuejs/vue
f6cd44c48b83640e5d3fbbea46d7b1b9cb439543
55816543c46e75aa53481ac95a89ff6f87a2d704
fix: ensure cleanup in watcher.get (#5988) watcher.get should always clean up observee stack in order to prevent memory leak. Also, non-user defined watch should rethrow error. fix #5975
[ { "path": "src/core/observer/watcher.js", "patch": "@@ -94,22 +94,23 @@ export default class Watcher {\n pushTarget(this)\n let value\n const vm = this.vm\n- if (this.user) {\n- try {\n- value = this.getter.call(vm, vm)\n- } catch (e) {\n+ try {\n+ value = this.getter...
2017-06-29T04:38:14
huggingface/transformers
08f52e2178a0bada437da02ed7c1395ae54b3309
c79040303967682a6351f3fc01a02b8ce5a13568
permissions worflows fix (#42080) - add new workflow to scan permissions github_token really need and advise pernmissions - add actions-permissions/monitor on almost all worklows => the goal is to define properly all permissions blocks by jobs # Conflicts: # .github/workflows/check-workflow-permissions.yml Co-author...
[ { "path": ".github/workflows/check-workflow-permissions.yml", "patch": "@@ -20,4 +20,4 @@ jobs:\n contents: read\n with:\n workflow_name: ${{ inputs.workflow_name }}\n- run_count: ${{ fromJSON(inputs.run_count) }}\n\\ No newline at end of file\n+ run_count: ${{ fromJSON(inputs.run_...
2025-11-07T09:37:26
denoland/deno
578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b
4e6470ab22c27064e2a4c0eec6a4006831f58f09
fix: format wasm stack traces per W3C spec (#32246) ## Summary - Update wasm stack trace formatting to use the W3C WebAssembly Web API spec format: `wasm-function[<funcIndex>]:0x<hexOffset>` instead of the generic `line:col` format - Update existing `wasm_url` test expectation to match - Add new integration test (`wa...
[ { "path": "tests/specs/run/wasm_stack_trace/__test__.jsonc", "patch": "@@ -0,0 +1,5 @@\n+{\n+ \"args\": \"run --quiet wasm_stack_trace.js\",\n+ \"output\": \"wasm_stack_trace.out\",\n+ \"exitCode\": 0\n+}", "additions": 5, "deletions": 0, "language": "Unknown" }, { "path": "tests/spec...
2026-02-23T20:02:02
ggml-org/llama.cpp
389ac78b2675ffe5054134f3037b11642a31a09f
a19bd6f7ce7e7b76e0dd7a614668a3042f5c1bfe
ggml : add ops SOFTPLUS, EXPM1, TRI, SOLVE_TRI, CUMSUM (#17063) * Add ops needed for new hybrid models: SOFTPLUS, EXPM1, TRI, SOLVE_TRI, CUMSUM * Update ggml/include/ggml.h Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> * Update tests/test-backend-ops.cpp Co-authored-by: Georgi Gerganov <ggerganov@gmail.com...
[ { "path": "docs/ops.md", "patch": "@@ -18,29 +18,32 @@ Legend:\n | ACC | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ |\n | ADD | ❌ | ✅ | ✅ | ✅ | 🟡 | 🟡 | ✅ | ✅ | ❌ |\n | ADD1 | ❌ | ✅ | ✅ | ✅ | ❌ | ❌ | ✅ | ❌ | ❌ |\n-| ...
2025-11-13T18:54:47
denoland/deno
4e6470ab22c27064e2a4c0eec6a4006831f58f09
dcc2fe2ff7f96319becfc5586652f0a3da44c0e2
fix(ext/node): remove fs.promises.fstat, not a public Node.js API (#32289) Closes https://github.com/denoland/deno/issues/27423 `fs.promises` in Node.js does not expose `fstat` or other `f`-prefixed APIs. The promise-based equivalent is `FileHandle.stat()`, which is already supported via `handle.ts`. This removes th...
[ { "path": "ext/node/polyfills/fs.ts", "patch": "@@ -24,7 +24,7 @@ import { exists, existsSync } from \"ext:deno_node/_fs/_fs_exists.ts\";\n import { fchmod, fchmodSync } from \"ext:deno_node/_fs/_fs_fchmod.ts\";\n import { fchown, fchownSync } from \"ext:deno_node/_fs/_fs_fchown.ts\";\n import { fdatasync, ...
2026-02-23T19:56:04
huggingface/transformers
8012f80f722044fd0dda45b4034f89fffc2ff344
7b325cd573e40bbb12951b8446176c96e8b1afaa
Fix inconsistency of commit sha during the workflow run (#42074) Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/check_failed_tests.yml", "patch": "@@ -125,7 +125,7 @@ jobs:\n const { data: merge_commit } = await github.rest.repos.getCommit({\n owner: pr.base.repo.owner.login,\n repo: pr.base.repo.name,\n- ref: pr.merge_commit_sha,\n+ ...
2025-11-06T21:32:27
ollama/ollama
a2ad952440feaf997cfdc9f0d81d0f545bec4974
5fea4410be0420fabfb6c75390ad8081d49fca42
Fix windows system memory lookup This refines the gpu package error handling and fixes a bug with the system memory lookup on windows.
[ { "path": "gpu/gpu.go", "patch": "@@ -66,7 +66,7 @@ func GetGPUInfo() GpuInfo {\n \t}\n \n \tvar memInfo C.mem_info_t\n-\tresp := GpuInfo{\"\", 0, 0}\n+\tresp := GpuInfo{}\n \tif gpuHandles.cuda != nil {\n \t\tC.cuda_check_vram(*gpuHandles.cuda, &memInfo)\n \t\tif memInfo.err != nil {\n@@ -103,6 +103,19 @@ ...
2023-12-22T23:43:31
ggml-org/llama.cpp
a19bd6f7ce7e7b76e0dd7a614668a3042f5c1bfe
dd091e52f886d8b851658c38b8ce8a98e70cd45d
vulkan: remove shell call from vulkan-shaders-gen tool, revert file check (#17219) * vulkan: remove shell call from vulkan-shaders-gen tool * use string vector for command execution * Fix condition * use string, remove const_cast * Fix dependency file quotation on Windows --------- Co-authored-by: Jeff Bolz <jbo...
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp", "patch": "@@ -76,7 +76,7 @@ enum MatMulIdType {\n \n namespace {\n \n-void execute_command(const std::string& command, std::string& stdout_str, std::string& stderr_str) {\n+void execute_command(std::vector<std::string>& command, std::st...
2025-11-13T13:51:21
vuejs/vue
55816543c46e75aa53481ac95a89ff6f87a2d704
0cd6ef321b3168d6c46c7a870c3d2a53fd9d4bde
fix(ssr): reference error when create $ssrContext for root component (#5981) fix #5941
[ { "path": "src/core/index.js", "patch": "@@ -11,7 +11,7 @@ Object.defineProperty(Vue.prototype, '$isServer', {\n Object.defineProperty(Vue.prototype, '$ssrContext', {\n get () {\n /* istanbul ignore next */\n- return this.$vnode.ssrContext\n+ return this.$vnode && this.$vnode.ssrContext\n }\n ...
2017-06-29T04:37:03
denoland/deno
c095dd46fdd994c94b2f8332a68106b976a7fa6e
c25bfa70d1cb05bdfce6b8c0ab48c03344167463
fix: format wasm stack traces correctly, preserve context in unhandled rejection, improve cppgc inheritance perf (#32293) Fixes https://github.com/denoland/deno/issues/30135 Fixes https://github.com/denoland/deno/issues/32239
[ { "path": "Cargo.lock", "patch": "@@ -1929,9 +1929,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.385.0\"\n+version = \"0.386.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e348ea58ad12f6bee5407768b571a8af09756246a45c83dfd27a5aeeb338c5e...
2026-02-23T19:02:57
huggingface/transformers
7b325cd573e40bbb12951b8446176c96e8b1afaa
a9e2b80c716d03bdc13d4ac68886f27cb4a06ddf
Fix security issue 5 (#42072) fix Co-authored-by: Pauline <pauline@Paulines-MacBook-Pro-2.local>
[ { "path": ".github/workflows/check-workflow-permissions.yml", "patch": "@@ -2,34 +2,22 @@\n name: Check Permissions Advisor\n \n on:\n- workflow_call:\n+ workflow_dispatch:\n inputs:\n workflow_name:\n- description: 'Workflow file to analyze'\n- required: false\n+ descriptio...
2025-11-06T18:50:59
ollama/ollama
b846eb64d0df18e472ea52383d8c0c2078815da2
3c5dd9ed1d66e3f96ed75bf9162b29e7b923b018
Fix `template` api doc description (#1661)
[ { "path": "docs/api.md", "patch": "@@ -46,7 +46,7 @@ Advanced parameters (optional):\n - `format`: the format to return a response in. Currently the only accepted value is `json`\n - `options`: additional model parameters listed in the documentation for the [Modelfile](./modelfile.md#valid-parameters-and-va...
2024-01-03T16:00:59
ggml-org/llama.cpp
dd091e52f886d8b851658c38b8ce8a98e70cd45d
1215dde7b0ee02114d074b0b785eedd3052b0006
sched : fix reserve ignoring user tensor assignments (#17232)
[ { "path": "ggml/src/ggml-backend.cpp", "patch": "@@ -1698,8 +1698,6 @@ bool ggml_backend_sched_reserve(ggml_backend_sched_t sched, struct ggml_cgraph *\n GGML_ASSERT(sched);\n GGML_ASSERT((int)sched->hash_set.size >= measure_graph->n_nodes + measure_graph->n_leafs);\n \n- ggml_backend_sched_reset...
2025-11-13T12:14:02
vuejs/vue
4acc8c8be1971112be45e0feb7fb7eddbfc9d247
4f8f4db5dd529a18753150f1c4f4528fd0dab6b0
fix(v-model): use consistent behavior during IME composition for other text-like input types (fix #5902)
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -3,9 +3,11 @@\n * properties to Elements.\n */\n \n-import { looseEqual, looseIndexOf } from 'shared/util'\n+import { looseEqual, looseIndexOf, makeMap } from 'shared/util'\n import { warn, isAndroid, isIE9, isIE, isEdge } from 'core/...
2017-06-17T08:32:08
huggingface/transformers
bc8b0b0541b80be88d930a9ed375f0de2bc73a59
cbd83bf16133b81e08842704b083a40078a0b748
fix tensor device placement issue of 2 UT cases (#41921) fix tensor device placement issue Signed-off-by: Yao, Matrix <matrix.yao@intel.com> Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/models/speech_to_text/modeling_speech_to_text.py", "patch": "@@ -544,6 +544,8 @@ class Speech2TextEncoder(Speech2TextPreTrainedModel):\n embed_tokens (nn.Embedding): output embedding\n \"\"\"\n \n+ _no_split_modules = [\"Speech2TextEncoderLayer\"]\n+\n def __in...
2025-11-06T15:38:58
denoland/deno
13457aff18e73222a2d39c0aece82825f3956c5f
6998e65d6866348677e45d5a370361a11c519ed8
fix(ext/node): enable test-zlib-invalid-input-memory and test-zlib-un… (#32284) Fixes two previously disabled zlib Node.js compatibility tests. - **`parallel/test-zlib-invalid-input-memory.js`** — enabled and passing. Root cause was a two-layer problem: 1. `AsyncResource` in `async_hooks.ts` did not call `emitIni...
[ { "path": "ext/node/polyfills/async_hooks.ts", "patch": "@@ -8,6 +8,8 @@ import { core, primordials } from \"ext:core/mod.js\";\n import { validateFunction } from \"ext:deno_node/internal/validators.mjs\";\n import {\n AsyncHook,\n+ emitDestroy as emitDestroyHook,\n+ emitInit,\n executionAsyncId as in...
2026-02-23T16:16:52
ollama/ollama
e5202eb6879a8c29b5b4646ac0d4d93e1b0d1c54
96fb441abd297748cfddb173289af7d54dbeee4d
Quiet down llama.cpp logging by default By default builds will now produce non-debug and non-verbose binaries. To enable verbose logs in llama.cpp and debug symbols in the native code, set `CGO_CFLAGS=-g`
[ { "path": "docs/development.md", "patch": "@@ -14,7 +14,13 @@ Install required tools:\n brew install go cmake gcc\n ```\n \n-Get the required libraries:\n+Optionally enable debugging and more verbose logging:\n+\n+```bash\n+export CGO_CFLAGS=\"-g\"\n+```\n+\n+Get the required libraries and build the native ...
2023-12-22T16:47:18
ggml-org/llama.cpp
8e878f0cb4c893de23455dd0a6bfbbb21bcaad89
00c94083b3ffd51bb81cd5cb5cf1177168ce286c
Update packages + upgrade Storybook to v10 (#17201) * chore: Update packages + upgrade Storybook to v10 * fix: Increase timeout for UI tests
[ { "path": ".github/workflows/server.yml", "patch": "@@ -209,7 +209,7 @@ jobs:\n working-directory: tools/server/webui\n \n - name: Run UI tests\n- run: npm run test:ui\n+ run: npm run test:ui -- --testTimeout=60000\n working-directory: tools/server/webui\n \n - name...
2025-11-12T18:01:48
huggingface/transformers
cbd83bf16133b81e08842704b083a40078a0b748
8f242a45b1059f8c821ea19971bec2d379d9cb93
Fix logic in setting self.fsdp when it is False (#41974) Co-authored-by: Roy Chan <roy@Roys-MacBook-Air.local>
[ { "path": "src/transformers/training_args.py", "patch": "@@ -2655,7 +2655,7 @@ def set_dataloader(\n return self\n \n def _process_fsdp_args(self):\n- if self.fsdp is None:\n+ if not self.fsdp:\n self.fsdp = []\n elif self.fsdp is True:\n self.fsdp =...
2025-11-06T15:35:22
vuejs/vue
213f136a6ebf4e18e65f4da7dce6e7293e585b5a
2f628c3114a3d3c859d46827455f3eae0e4edd08
fix slot resolved incorrect with abstract component (fix #5888) (#5895)
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -169,8 +169,14 @@ export function createComponent (\n \n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n- // other than props & listeners\n+ // other than props & listeners & slot\n+\n+ // work ar...
2017-06-16T18:03:36
denoland/deno
6998e65d6866348677e45d5a370361a11c519ed8
12df8252d604c690a974f8b75d6a3b4ae6ef298d
fix(ext/node): support URL in child_process.fork modulePath (#32268) ## Summary - Adds support for passing `URL` objects as the `modulePath` argument to `child_process.fork()`, matching Node.js behavior - Converts URL to file path using `toPathIfFileURL()` before string validation - Adds unit test for `fork()` with a ...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -45,6 +45,7 @@ import {\n convertToValidSignal,\n kEmptyObject,\n } from \"ext:deno_node/internal/util.mjs\";\n+import { toPathIfFileURL } from \"ext:deno_node/internal/url.ts\";\n import { kNeedsNpmProcessState } from \"ext:deno_process/40_p...
2026-02-23T16:16:27
ollama/ollama
495c06e4a67ecc1171faa22115443103a24af1da
fa24e73b8253a554ec840395a5d1dfdb91d3598b
Fix doc glitch
[ { "path": "docs/modelfile.md", "patch": "@@ -188,7 +188,7 @@ SYSTEM \"\"\"<system message>\"\"\"\n \n ### ADAPTER\n \n-The `ADAPTER` instruction specifies the LoRA adapter to apply to the base model. The value of this instruction should be an absolute path or a path relative to the Modelfile and the file mu...
2023-12-22T00:57:58
ggml-org/llama.cpp
00c94083b3ffd51bb81cd5cb5cf1177168ce286c
017eceed61e885b79f6cf3542e0879be68c6e922
server: (refactor) implement generator-based API for task results (#17174) * server: (refactor) implement generator-based API for task results * improve * moving some code * fix "Response ended prematurely" * add sink.done before return false * rm redundant check * rm unused var * rename generator --> reader
[ { "path": "tools/server/server.cpp", "patch": "@@ -684,7 +684,7 @@ struct server_task_result {\n }\n virtual bool is_stop() {\n // only used by server_task_result_cmpl_*\n- return false;\n+ return true;\n }\n virtual int get_index() {\n return -1;\n@@ -3238,105 ...
2025-11-12T17:50:52
huggingface/transformers
8f242a45b1059f8c821ea19971bec2d379d9cb93
1c2e50a72e310d315cd84920c4c55660c6b8f0a3
[deepspeed tests fixes] (#41925) * [deepspeed tests fixes] Signed-off-by: Stas Bekman <stas.bekman@snowflake.com> * simplify --------- Signed-off-by: Stas Bekman <stas.bekman@snowflake.com> Co-authored-by: Stas Bekman <stas.bekman@snowflake.com>
[ { "path": "tests/deepspeed/test_deepspeed.py", "patch": "@@ -756,13 +756,9 @@ def test_gradient_accumulation(self, stage, dtype):\n self.assertNotEqual(yes_grad_accum_a, a)\n \n # training with half the batch size but accumulation steps as 2 should give the same\n- # weights, but ...
2025-11-06T15:24:22
vuejs/vue
d33c1250ee77dd337eb4979851ade331f177b890
8a2c5147ad9ac9444c0f7c30b5f4a3c4e15c033b
fix:when using object syntax in v-bind, special attribute have no effect
[ { "path": "flow/vnode.js", "patch": "@@ -35,6 +35,7 @@ declare interface VNodeData {\n key?: string | number;\n slot?: string;\n ref?: string;\n+ is?: string;\n pre?: boolean;\n tag?: string;\n staticClass?: string;", "additions": 1, "deletions": 0, "language": "JavaScript" }, {...
2017-06-16T12:40:56
denoland/deno
12df8252d604c690a974f8b75d6a3b4ae6ef298d
52a2337fbc6230922576d7d8aeff5d6dd1fc0f3d
fix(ext/node): support ipv6 host in `node:http` (#32258) Closes #21864. Full reproduction of the bug: ```ts import { once } from "node:events"; import { request } from "node:http"; await using _server = Deno.serve({ hostname: "::1" }, () => new Response()); const req = request("http://[::1]:8000").end(); const [res]...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -98,8 +98,12 @@ import { methods as METHODS } from \"node:_http_common\";\n import { deprecate } from \"node:util\";\n \n const { internalRidSymbol } = core;\n-const { ArrayIsArray, StringPrototypeToLowerCase, SafeArrayIterator } =\n- primordials;\n+cons...
2026-02-23T15:46:00
ollama/ollama
fa24e73b8253a554ec840395a5d1dfdb91d3598b
325d74985b9f31917ead1585ea22389a39b280b5
Remove CPU build, fixup linux build script
[ { "path": "Dockerfile.build", "patch": "@@ -4,6 +4,7 @@ ARG CUDA_VERSION=11.3.1-1\n ARG CMAKE_VERSION=3.22.1\n # ROCm only supports amd64\n ARG ROCM_VERSION=6.0\n+ARG CLBLAST_VER=1.6.1\n \n # Note: https://rocm.docs.amd.com/en/latest/release/user_kernel_space_compat_matrix.html\n RUN apt-get update && \\\n@...
2023-12-22T00:54:54
ggml-org/llama.cpp
ee8dd5c6583b25bd7542ef7956ca96e1e81f67a9
1c398dc9eca9c366ce98deb0e6f3538e444ebc8a
server: move res_error/res_ok to static function (#17167)
[ { "path": "tools/server/server.cpp", "patch": "@@ -4432,6 +4432,17 @@ static void log_server_request(const httplib::Request & req, const httplib::Resp\n SRV_DBG(\"response: %s\\n\", res.body.c_str());\n }\n \n+static void res_error(httplib::Response & res, const json & error_data) {\n+ json final_res...
2025-11-12T13:17:24
huggingface/transformers
1c2e50a72e310d315cd84920c4c55660c6b8f0a3
5aa7dd07dace2dbe5d419613ec9b43b36df35f89
Fix missing arg in check_docstring (#42054) fix missing arg in check_docstring
[ { "path": "src/transformers/utils/auto_docstring.py", "patch": "@@ -240,6 +240,14 @@ class ImageProcessorArgs:\n \"shape\": None,\n }\n \n+ image_seq_length = {\n+ \"description\": \"\"\"\n+ The number of image tokens to be used for each image in the input.\n+ Added for backward ...
2025-11-06T14:38:04
vuejs/vue
080c387d49cd5cc43726d73ab886650dedd244db
9831b403cf0506a873f03cc008e9debe6ef1f137
Merge inject when extending a component (#5827) * simply fix inject extends * add comments for normalizeInject * normalizeInect should return for non-array * remove isArray branch in resolveInject * add test case for extending injection * Create options.js * type of inject should be object now * R...
[ { "path": "src/core/instance/inject.js", "patch": "@@ -38,18 +38,14 @@ export function initInjections (vm: Component) {\n export function resolveInject (inject: any, vm: Component): ?Object {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n- // isArray her...
2017-06-15T14:15:36
denoland/deno
52a2337fbc6230922576d7d8aeff5d6dd1fc0f3d
8cd0019f5b45b7a7219ae7412dacca5ebf932cae
fix(ext/node): add `openAsBlob` export to `node:fs` (#32261) ## Summary - Implements `fs.openAsBlob()` which reads a file and returns a `Promise<Blob>`, matching the Node.js API - Adds the function to both named and default exports of `node:fs` - Adds unit tests covering basic usage, the `type` option, and error handl...
[ { "path": "ext/node/polyfills/fs.ts", "patch": "@@ -141,9 +141,19 @@ import {\n } from \"ext:deno_node/internal/fs/streams.mjs\";\n import {\n Dirent,\n+ getValidatedPath,\n toUnixTimestamp as _toUnixTimestamp,\n } from \"ext:deno_node/internal/fs/utils.mjs\";\n import { glob, globPromise, globSync } f...
2026-02-23T15:38:02
ollama/ollama
325d74985b9f31917ead1585ea22389a39b280b5
d9cd3d9667d83f68040378dc2834a49962e08244
Fix CPU performance on hyperthreaded systems The default thread count logic was broken and resulted in 2x the number of threads as it should on a hyperthreading CPU resulting in thrashing and poor performance.
[ { "path": "llm/ext_server.go", "patch": "@@ -37,7 +37,6 @@ import (\n \t\"fmt\"\n \t\"log\"\n \t\"os\"\n-\t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -185,11 +184,7 @@ func newExtServer(server extServer, model string, adapters, projectors []string,\n \t\tsparams.mmproj = nil\n \t}\n \n-\tif o...
2023-12-22T00:23:36
ggml-org/llama.cpp
1c398dc9eca9c366ce98deb0e6f3538e444ebc8a
52cf111b312d6747fd553782bee7f9fc808bf564
ggml-cpu: handle 3d tensors in repack mat_mul (#17030) * ggml-cpu: handle 3d tensors in repack mul_mat * Removed unnecessary branch, removed need for <algorithm> * Fixed dst_ptr pointer in chunk + clang_format * GGML_ASSERT to check wdata within bounds * Accidental ggml.h inclusion * Improved GGML_ASSERT on wdata...
[ { "path": "ggml/src/ggml-cpu/repack.cpp", "patch": "@@ -1600,29 +1600,52 @@ template <typename BLOC_TYPE, int64_t INTER_SIZE, int64_t NB_COLS, ggml_type PAR\n return false;\n }\n \n- void forward_mul_mat_one_chunk(ggml_compute_params * params, ggml_tensor * op, int64_t src0_start, int64_t src...
2025-11-12T12:52:19
huggingface/transformers
5aa7dd07dace2dbe5d419613ec9b43b36df35f89
5c1df12fa5d3f9fa5e19b72e1ba34903813d1ce7
Revert back to use GitHub context (#42066) * check * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/pr_slow_ci_suggestion.yml", "patch": "@@ -28,13 +28,15 @@ jobs:\n with:\n fetch-depth: \"0\"\n \n+ # We need to use `${{ ... }}` here to avoid `Argument list too long` error when a PR changes a lot of files.\n+ # (We could also try to use artifact app...
2025-11-06T13:41:58
vuejs/vue
9831b403cf0506a873f03cc008e9debe6ef1f137
69f946b4372fd74a1f2b1b8460fcd06ec8dd0a91
Add warnHandler to allow users to set a custom warn callback, similar to errorHandler (#5883)
[ { "path": "src/core/config.js", "patch": "@@ -16,6 +16,7 @@ export type Config = {\n performance: boolean;\n devtools: boolean;\n errorHandler: ?(err: Error, vm: Component, info: string) => void;\n+ warnHandler: ?(msg: string, vm: Component, trace: string) => void;\n ignoredElements: Array<string>;...
2017-06-14T13:37:26
denoland/deno
8cd0019f5b45b7a7219ae7412dacca5ebf932cae
9e7fb63fe12f68e8e268756b14abce99dda0ae75
fix: detect bound require reexports in cjs analysis (#32163) Part of https://github.com/denoland/deno/issues/31347 Fixes https://github.com/denoland/deno/issues/27898 This update solves the module resolution. So the behaviour of stdio output of `redocly` becomes the same as Node.js. However, the problem of hanging i...
[ { "path": "Cargo.lock", "patch": "@@ -1780,9 +1780,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.53.0\"\n+version = \"0.53.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8ac5df28715465cff3f03294564f38c9cd3c24c4cfb965a32fd1327efa111b02\"...
2026-02-23T15:27:18
ggml-org/llama.cpp
5da7664960f93a5602d166326f6375dd7cc112ad
23a46ce972cd1fa08e967f17ee9e024e87dcaadb
[SYCL]fix ci crash about SSM_CONV (#17169) * fix ci crash * Update ggml-sycl.cpp * Update ggml/src/ggml-sycl/ggml-sycl.cpp Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> --------- Co-authored-by: Zhang Jianyu <zhang.jianyu@outlook.com> Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
[ { "path": "ggml/src/ggml-sycl/ggml-sycl.cpp", "patch": "@@ -3933,6 +3933,7 @@ static bool ggml_sycl_compute_forward(ggml_backend_sycl_context & ctx, struct gg\n break;\n case GGML_OP_SSM_CONV:\n ggml_sycl_ssm_conv(ctx, dst);\n+ break;\n case GGML_OP_ROLL:\n...
2025-11-12T06:44:29
huggingface/transformers
5c1df12fa5d3f9fa5e19b72e1ba34903813d1ce7
fe5ca9ddaa07fac2872407e75c7a7661216ac956
Fix KeyError in _is_package_available for packages with dotted names (#42050) Fixes #41981 When checking for packages with dotted names like 'optimum.quanto', the function was crashing with KeyError because these packages aren't always in PACKAGE_DISTRIBUTION_MAPPING (it might only have 'optimum' as a key, not 'optim...
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -58,7 +58,7 @@ def _is_package_available(pkg_name: str, return_version: bool = False) -> tuple[\n # pick the first item of the list as best guess (it's almost always a list of length 1 anyway)\n distribution_name = pkg_...
2025-11-06T13:32:43
vuejs/vue
69f946b4372fd74a1f2b1b8460fcd06ec8dd0a91
f3a15220c5c1d38a509a80b5be795ac89753f4a3
Fix XHTML incompatibility (fix #5852) (#5853)
[ { "path": "src/platforms/web/util/compat.js", "patch": "@@ -5,7 +5,7 @@ import { inBrowser } from 'core/util/index'\n // check whether current browser encodes a char inside attribute values\n function shouldDecode (content: string, encoded: string): boolean {\n const div = document.createElement('div')\n-...
2017-06-13T13:53:38
denoland/deno
9e7fb63fe12f68e8e268756b14abce99dda0ae75
38f3ffe3630c2f796fb7e9d9e1de58da21047f60
fix(ext/node): implement timeout and killSignal for spawn() (#32283) Fixes the `timeout` and `killSignal` options for `child_process.spawn()` (and `fork()`, which delegates to `spawn()`). Previously these options were accepted but silently ignored. The fix sets a `setTimeout` after spawning that kills the child with ...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -222,9 +222,27 @@ export function spawn(\n options = normalizeSpawnArguments(command, args, options);\n \n validateAbortSignal(options?.signal, \"options.signal\");\n+ validateTimeout(options?.timeout);\n \n const child = new ChildProcess(...
2026-02-23T14:37:46
ollama/ollama
63aac0edc59dd368050cb12a213af482dec71875
1ca484f67e6f607114496211004942013e5595eb
fix(test): use real version string for comparison
[ { "path": "server/routes_test.go", "patch": "@@ -16,6 +16,7 @@ import (\n \n \t\"github.com/jmorganca/ollama/api\"\n \t\"github.com/jmorganca/ollama/parser\"\n+\t\"github.com/jmorganca/ollama/version\"\n )\n \n func setupServer(t *testing.T) (*Server, error) {\n@@ -71,7 +72,7 @@ func Test_Routes(t *testing....
2023-12-19T23:02:37
ggml-org/llama.cpp
c273d7537503e47f7be8c293b767ebad1adbc5d0
7d019cff744b73084b15ca81ba9916f3efab1223
hexagon: various Op fixes (#17135) * hexagon: explicitly check for ops with zero nrows llm_graph_context::build_inp_out_ids() can generate tensors with zero nrows. Somehow other backends seems to handle this without obvious explicit checks. In the hexagon case we need to check explicitly and skip them. * hexagon: i...
[ { "path": "ggml/src/ggml-hexagon/ggml-hexagon.cpp", "patch": "@@ -3156,26 +3156,17 @@ static inline bool op_reuse_src1(const ggml_tensor * op1, const ggml_tensor * op\n return (op0 && op0->src[1] == op1->src[1]);\n }\n \n+static inline bool is_compute_op(ggml_tensor *node)\n+{\n+ return !(ggml_op_is_...
2025-11-11T23:25:04
huggingface/transformers
fe5ca9ddaa07fac2872407e75c7a7661216ac956
76fea9b482a2e8b8d104e66675afabcb1173c80d
Fix KeyError in GPT-OSS weight conversion script (#42007) * Fix KeyError in GPT-OSS weight conversion script * Fix code quality: remove trailing whitespace * Address review: use pop with defaults, remove commented code
[ { "path": "src/transformers/models/gpt_oss/convert_gpt_oss_weights_to_hf.py", "patch": "@@ -157,14 +157,24 @@ def write_model(\n original_config = json.loads((Path(input_base_path) / \"config.json\").read_text())\n \n num_local_experts = original_config.pop(\"num_experts\")\n- rope_parameters = {...
2025-11-06T12:43:39
vuejs/vue
deae1ff851f19c0644b9cf1554ccf4899e9d52c6
c994e5cf48a912d98c1a302375bb9964dba98113
fix type tests
[ { "path": "types/options.d.ts", "patch": "@@ -57,10 +57,10 @@ export interface ComponentOptions<V extends Vue> {\n }\n \n export interface FunctionalComponentOptions {\n+ name?: string;\n props?: string[] | { [key: string]: PropOptions | Constructor | Constructor[] };\n functional: boolean;\n- render(...
2017-06-13T09:49:52
denoland/deno
1c5a7189e57cd1d3d0cc3ce7a2f6725ac5ede3ea
5ebbfc4a83fff688222857629af8942bccc3b18b
fix(audit): gracefully handle malformed response (#32234) Fixes an issue where `deno audit` fails to deserialize npm registry responses when the `actions` field is missing. ## Changes Made - Added `#[serde(default)]` attribute to the `actions` field in `AuditResponse` struct in `cli/tools/pm/audit.rs` - this makes t...
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -603,6 +603,7 @@ mod npm {\n \n #[derive(Debug, Deserialize)]\n pub struct AuditResponse {\n+ #[serde(default)]\n pub actions: Vec<AuditAction>,\n pub advisories: HashMap<i32, AuditAdvisory>,\n pub metadata: AuditMetadata,\n@@ -920,3 +921,30...
2026-02-22T02:32:21
ollama/ollama
6558f94ed022a0d8ef0c06afa2df58fb1c298676
54dbfa4c4a2c52dc0c2361e65090a0ede3339a63
Fix darwin intel build
[ { "path": "gpu/gpu_darwin.go", "patch": "@@ -4,6 +4,8 @@ package gpu\n \n import \"C\"\n import (\n+\t\"runtime\"\n+\n \t\"github.com/jmorganca/ollama/api\"\n )\n \n@@ -25,8 +27,12 @@ func GetGPUInfo() GpuInfo {\n }\n \n func NumGPU(numLayer, fileSizeBytes int64, opts api.Options) int {\n-\t// default to en...
2023-12-19T21:32:24
huggingface/transformers
76fea9b482a2e8b8d104e66675afabcb1173c80d
8a96f5fbe814ad88e333855b2ef39c62cd961c6f
Fix another `Argument list too long` in `pr_slow_ci_suggestion.yml` (#42061) * fix * trigger --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/pr_slow_ci_suggestion.yml", "patch": "@@ -29,12 +29,12 @@ jobs:\n fetch-depth: \"0\"\n \n - name: Write pr_files file\n- env:\n- PR_FILES: ${{ needs.get-pr-info.outputs.PR_FILES }}\n- run: |\n- cat > pr_files.txt << EOF\n- ...
2025-11-06T12:33:23
ggml-org/llama.cpp
1d45b4228f11c193d6864724ae675734da24ac98
ca4844062b3f0679a39b76b2fe95ba87cd6fb00d
vendor: split httplib to cpp/h files (#17150) * vendor: split httplib to cpp/h files * move defines * include httplib if curl is not used * add TODO * fix build ios * fix build visionos instead
[ { "path": "CMakeLists.txt", "patch": "@@ -200,6 +200,7 @@ endif()\n \n if (LLAMA_BUILD_COMMON)\n add_subdirectory(common)\n+ add_subdirectory(vendor/cpp-httplib)\n endif()\n \n if (LLAMA_BUILD_COMMON AND LLAMA_BUILD_TESTS AND NOT CMAKE_JS_VERSION)", "additions": 1, "deletions": 0, "langua...
2025-11-11T12:32:58
vuejs/vue
dfb014e3d7daacc2e3c59d07f1a53ec3c955d91c
a855dd0564a657a73b7249469490d39817f27cf7
fix uglify upgrade
[ { "path": "build/build.js", "patch": "@@ -46,9 +46,7 @@ function buildEntry (config) {\n const code = bundle.generate(config).code\n if (isProd) {\n var minified = (config.banner ? config.banner + '\\n' : '') + uglify.minify(code, {\n- fromString: true,\n output: {\n- s...
2017-06-13T09:23:59
denoland/deno
5ebbfc4a83fff688222857629af8942bccc3b18b
28d94f497698d9ad36ce2a49119d96466c9a59d1
fix(lsp): qualify diagnostic source and message from tsgo (#32251)
[ { "path": "cli/lsp/tsgo.rs", "patch": "@@ -886,6 +886,16 @@ impl TsGoServerInner {\n }\n }\n \n+fn qualify_tsgo_diagnostic(diagnostic: &mut lsp::Diagnostic) {\n+ diagnostic.source = Some(\"deno-ts\".to_string());\n+ if let Some(lsp::NumberOrString::Number(code)) = &diagnostic.code {\n+ diagnostic.mes...
2026-02-21T17:38:33
ollama/ollama
f8ef4439e9673c7df2314fafb5975aeab856c51f
d4cd6957598ba6a3a1bb4e2660ee24b82e2541da
Use build tags to generate accelerated binaries for CUDA and ROCm on Linux. The build tags rocm or cuda must be specified to both go generate and go build. ROCm builds should have both ROCM_PATH set (and the ROCM SDK present) as well as CLBlast installed (for GGML) and CLBlast_DIR set in the environment to the CLBlast...
[ { "path": "Dockerfile", "patch": "@@ -11,8 +11,8 @@ RUN mkdir -p /usr/local && tar xz -C /usr/local </tmp/go1.21.3.tar.gz\n COPY . .\n ENV GOARCH=$TARGETARCH\n ENV GOFLAGS=$GOFLAGS\n-RUN /usr/local/go/bin/go generate ./... \\\n- && /usr/local/go/bin/go build .\n+RUN /usr/local/go/bin/go generate -tags cu...
2023-10-17T00:41:40
huggingface/transformers
21ecb5b0b8be61a51c476856589c45f10d3e8568
40929ec4fdc5708520eef134b9b86f5393e1b59e
Fix transformers serve following chat template output update
[ { "path": "src/transformers/cli/serve.py", "patch": "@@ -813,7 +813,7 @@ def continuous_batching_chat_completion(self, req: dict, request_id: str) -> Str\n # TODO (Joao, Lysandre): this should also work with tool support\n inputs = processor.apply_chat_template(req[\"messages\"], return_tens...
2025-11-05T16:20:58
vuejs/vue
07a37264c3b56952435331983adcf4081390b400
47334085a14eb1ed9525598d592038bb57e84db7
remove reference to refElm after initial patch (fix #5851)
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -65,6 +65,9 @@ export function lifecycleMixin (Vue: Class<Component>) {\n vm.$options._parentElm,\n vm.$options._refElm\n )\n+ // no need for the ref nodes after initial patch\n+ // this prevents keeping a detached DOM ...
2017-06-09T14:01:36
ollama/ollama
c063ee4af0de13287569fb61e2f9cc2ea1f8cd22
d99fa6ce0ad168ac488c5a741ca178caa12dc810
update runner submodule to fix hipblas build
[ { "path": "llm/llama.cpp/gguf", "patch": "@@ -1 +1 @@\n-Subproject commit b9e74f9bca5fdf7d0a22ed25e7a9626335fdfa48\n+Subproject commit 3c04bf6da89eaf4c7d317e0518f0687dfcbf2de7", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2023-12-18T20:41:13
denoland/deno
28d94f497698d9ad36ce2a49119d96466c9a59d1
a29b955a86990be8795778a456b38cc09086575b
fix(install): support `--allow-scripts` with `deno install -g --compile ...` (#32249)
[ { "path": "cli/args/flags.rs", "patch": "@@ -6587,6 +6587,7 @@ fn install_parse(\n \n if compile {\n flags.type_check_mode = TypeCheckMode::Local;\n+ allow_scripts_arg_parse(flags, matches)?;\n }\n \n flags.subcommand =", "additions": 1, "deletions": 0, "language": "Rust" ...
2026-02-20T22:17:15
huggingface/transformers
40929ec4fdc5708520eef134b9b86f5393e1b59e
17fdaf9b7a8a172474675e1d7fe89c78385fa79b
Annoying typo in attention error message (#42037) annoying typo
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2424,7 +2424,7 @@ def get_correct_attn_implementation(self, requested_attention: Optional[str], is\n if self._supports_flash_attn or getattr(self, \"_supports_flash_attn_2\", False):\n message += ', `\"attn_implementat...
2025-11-06T08:57:17
vuejs/vue
47334085a14eb1ed9525598d592038bb57e84db7
a18f879bb34270ba4879c5fe7b78426b0e79131e
prevent data.pendingInsert to keep reference to removed nodes (fix #5839)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -202,6 +202,7 @@ export function createPatchFunction (backend) {\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert)\n+ ...
2017-06-08T04:26:55
denoland/deno
a29b955a86990be8795778a456b38cc09086575b
cb0c6d565c0d16916d292914d24237362c712013
fix(ext/node): enable test-stdio-closed tests (#32237) - Fix `child_process` shell command translation to handle shell redirections (`1>&-`, `< file`), piped commands (`cmd1 | cmd2`), and shell variable prefixes (`"$NODE"`, `${NODE}`). Previously shell operators were passed to the CLI arg translator, causing parse fai...
[ { "path": "ext/node/ops/node_cli_parser.rs", "patch": "@@ -51,8 +51,13 @@ pub struct TranslatedArgs {\n fn translate_to_deno_args(\n parsed_args: ParseResult,\n script_in_npm_package: bool,\n+ wrap_eval: bool,\n ) -> TranslatedArgs {\n- let options = TranslateOptions::for_child_process();\n+ let opti...
2026-02-20T21:36:26
ollama/ollama
4a1abfe4fa67baa821834abc990d2c79ee252469
bbd41494bf5624f12f983a55b424411e700498bd
fix tests
[ { "path": "cmd/cmd.go", "patch": "@@ -951,7 +951,8 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {\n \t\t\t\t\tcmd.SetContext(ctx)\n \t\t\t\t}\n \t\t\t\tif len(opts.Images) == 0 {\n-\t\t\t\t\tfmt.Println(\"This model requires you to add a jpeg, png, or svg image.\\n\")\n+\t\t\t...
2023-12-13T19:42:30