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
77c1c1920fb5236dc98748b56a55e7f3ce622a86
1f36bf720d0458285b6893339c9cbd300104e4cf
fix(ext/node): fix `test-worker-process-argv.js` test (#32074) Done with @claude
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -44,9 +44,11 @@ import {\n } from \"ext:deno_web/01_broadcast_channel.js\";\n import { untransferableSymbol } from \"ext:deno_node/internal_binding/util.ts\";\n import process from \"node:process\";\n+import { fileURLToPath } from \"node:url\";\...
2026-02-11T07:27:51
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
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
huggingface/transformers
37d48bbb48483dd93541bca7c0c689b06e3ba729
21913b2e100959467e9d97052575d33b45e06e0a
Remove unused functions in `image_transforms.py` (#42044) * up * make style * Update trimaps logic * fix typo * Revert changes --------- Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com>
[ { "path": "src/transformers/image_transforms.py", "patch": "@@ -821,12 +821,6 @@ def split_to_tiles(images: \"torch.Tensor\", num_tiles_height: int, num_tiles_widt\n return image\n \n \n-def _cast_tensor_to_float(x):\n- if x.is_floating_point():\n- return x\n- return x.float()\n-\n-\n def _...
2025-11-10T16:55:57
denoland/deno
61a034e3db89c648e337c7ebeabe095d2ff7dc8d
163e95d7d809fcd0e806086e997f4049576cd865
fix(repl): handle EOF gracefully in JSON REPL mode (#32108) Closes the JSON REPL cleanly when the IPC pipe is closed (e.g. ctrl+d / EOF) instead of printing `error: unexpected end of file` and exiting with code 1.
[ { "path": "cli/tools/repl/mod.rs", "patch": "@@ -310,15 +310,25 @@ async fn run_json(mut repl_session: ReplSession) -> Result<i32, AnyError> {\n \n loop {\n let mut line_fut = std::pin::pin!(async {\n- let len = receiver.read_u32_le().await?;\n- let mut buf = vec![0; len as _];\n+ let l...
2026-02-10T08:33:34
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
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
huggingface/transformers
21913b2e100959467e9d97052575d33b45e06e0a
f028e9340cca466a64592dbea542d3bdd2c89d5e
Fix MaskFormer/Mask2Former fast image processors (#41393) * Merge conflict * add fast processor * add fast processor * make style * add new convert rgb * use nested group by shape in mllama fast, add support for multiple inputs in group by shape * fix maskformer mask2 former fast im proc and add tests * refacto...
[ { "path": "src/transformers/image_transforms.py", "patch": "@@ -828,7 +828,25 @@ def _cast_tensor_to_float(x):\n \n \n def _group_images_by_shape(nested_images, *paired_inputs, is_nested: bool = False):\n- \"\"\"Helper function to flatten a single level of nested image and batch structures and group by s...
2025-11-10T16:48:10
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
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
163e95d7d809fcd0e806086e997f4049576cd865
f88d88fc5458f383fa8b36e73d43b58e2707a571
fix(compile): use a temporary directory with a node_modules folder when compiling npm specifiers (#32084)
[ { "path": "cli/main.rs", "patch": "@@ -112,26 +112,28 @@ fn spawn_subcommand<F: Future<Output = T> + 'static, T: SubcommandOutput>(\n }\n \n async fn run_subcommand(\n- flags: Arc<Flags>,\n+ flags: Flags,\n unconfigured_runtime: Option<UnconfiguredRuntime>,\n roots: LibWorkerFactoryRoots,\n ) -> Resul...
2026-02-09T16:50:00
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
huggingface/transformers
f028e9340cca466a64592dbea542d3bdd2c89d5e
4dd4a8fafed79e28187ba8f5913b1e0442097ea4
Fix model name test for compressed tensors (#42128) * fix models * fix output
[ { "path": "tests/quantization/compressed_tensors_integration/test_compressed_models.py", "patch": "@@ -155,8 +155,8 @@ def test_no_warnings_for_all_models(self):\n @require_compressed_tensors\n @require_torch\n class RunCompressedTest(unittest.TestCase):\n- tinyllama_w4a16 = \"nm-testing/tinyllama-w4a16-...
2025-11-10T15:22:46
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
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
denoland/deno
f88d88fc5458f383fa8b36e73d43b58e2707a571
0a6b424b9ae713271afa1bf1b21fd1cfd3e55e59
fix(ext/node): serialize workerData before resolving worker filename (#32091) Fixes `parallel/test-worker-invalid-workerdata.js`
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -169,27 +169,10 @@ class NodeWorker extends EventEmitter {\n \"node:worker_threads support only 'file:' and 'data:' URLs\",\n );\n }\n- if (options?.eval) {\n- const code = typeof specifier === \"string\"\n- ? en...
2026-02-09T15:07:38
vuejs/vue
7b069453edbf7fd03363a63d040396d274a79757
48c0c1ceb5819aea4f9f3fce38ac2ed606456cf0
fix Object.prototype.watch test case
[ { "path": "test/unit/features/options/extends.spec.js", "patch": "@@ -46,28 +46,22 @@ describe('Options extends', () => {\n expect(vm.b).toBe(2)\n expect(vm.c).toBe(3)\n })\n-})\n \n-describe('Options extends with Object.prototype.watch', () => {\n- beforeAll(function () {\n+ it('should work wit...
2017-06-06T06:48:05
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
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
denoland/deno
0a6b424b9ae713271afa1bf1b21fd1cfd3e55e59
131b706bcfadea4d50e6c87bed3fc165b9f02d84
fix(ext/node): `fs.writeFile` and `FileHandle.writeFile` compatibility (#32077)
[ { "path": "ext/node/polyfills/_fs/_fs_common.ts", "patch": "@@ -1,18 +1,12 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n import { primordials } from \"ext:core/mod.js\";\n-const {\n- StringPrototypeToLowerCase,\n- ArrayPrototypeIncludes,\n- ReflectApply,\n- Error,\n-} = primordials;\n+...
2026-02-09T14:49:03
vuejs/vue
48c0c1ceb5819aea4f9f3fce38ac2ed606456cf0
7561b94eeb75478fc38d391da2851b91b7ebed4f
Added check in merge strat for watches if child is already an array (fix #5652) (#5653) * Added check for if child is already an array If the child is already an array it does not need to be wrapped again. Fixing #5652 * Added unit test for watch merge strat * Moved test to own describe * Added test for m...
[ { "path": "src/core/util/options.js", "patch": "@@ -172,7 +172,7 @@ strats.watch = function (parentVal: ?Object, childVal: ?Object): ?Object {\n }\n ret[key] = parent\n ? parent.concat(child)\n- : [child]\n+ : Array.isArray(child) ? child : [child]\n }\n return ret\n }", "add...
2017-06-06T05:48:31
huggingface/transformers
4dd4a8fafed79e28187ba8f5913b1e0442097ea4
03538a80be2b96d11590c2aee4d0f7f70abcc017
Fix GPT-2 Flash Attention 2 generation with left-padding (#41966) * Fix GPT-2 Flash Attention 2 generation with left-padding * repo consistency * define is_causal in init * fix
[ { "path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py", "patch": "@@ -121,7 +121,7 @@ def __init__(self, config, is_cross_attention=False, layer_idx=None):\n \n self.attn_dropout = nn.Dropout(config.attn_pdrop)\n self.resid_dropout = nn.Dropout(config.resid...
2025-11-10T15:14:30
ollama/ollama
0a9d34802375641d72279fd9870e2ddfd4120fbf
3144e2a4394a544375ac054375d838525f8096c7
Fix issues with `/set template` and `/set system` (#1486)
[ { "path": "README.md", "patch": "@@ -104,7 +104,7 @@ FROM llama2\n # set the temperature to 1 [higher is more creative, lower is more coherent]\n PARAMETER temperature 1\n \n-# set the system prompt\n+# set the system message\n SYSTEM \"\"\"\n You are Mario from Super Mario Bros. Answer as Mario, the assist...
2023-12-12T19:43:19
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
vuejs/vue
68522cfdef34ef49157a66e09b6b7422587e2c04
13bb643d6fa6a2dba61b5ee191548cc9086cc602
fix:the placeholder key in undefined when render async component (#5828)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -140,7 +140,9 @@ export default {\n // during entering.\n const id: string = `__transition-${this._uid}-`\n child.key = child.key == null\n- ? id + child.tag\n+ ? child.isComment\n+ ? id + 'comment'\n+ ...
2017-06-06T01:37:06
denoland/deno
131b706bcfadea4d50e6c87bed3fc165b9f02d84
23b14d5d5b6ebb26ef21500dafc0adcbb53e3731
fix(ext/node): emit close on both paired MessagePorts (#32092) Ref https://nodejs.org/api/worker_threads.html#portclose Fixes `test-worker-message-channel.js`
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -20,6 +20,7 @@ import {\n MessagePortPrototype,\n MessagePortReceiveMessageOnPortSymbol,\n nodeWorkerThreadCloseCb,\n+ nodeWorkerThreadCloseCbInvoked,\n refMessagePort,\n serializeJsMessageData,\n unrefParentPort,\n@@ -67,6 +68,7 @@...
2026-02-09T14:31:33
huggingface/transformers
03538a80be2b96d11590c2aee4d0f7f70abcc017
700c48a29f03bea03465b30e1240a650f905c2b5
[`Attn Masks`] Non-vmap default for attention masks (#41852) * atmpt 1 * fixup masking to work correctly with old torch * few changes to make things a bit more cleaner * oopsie * fix integer overflow on bidirectional masks via indexing fn * rm executorch workarounds --> still need to handle on sliding etc fns pro...
[ { "path": "src/transformers/integrations/executorch.py", "patch": "@@ -11,7 +11,6 @@\n # specific language governing permissions and limitations under the License.\n \n import logging\n-from collections.abc import Callable\n from typing import Optional\n \n import torch\n@@ -24,13 +23,7 @@\n StaticCache...
2025-11-10T15:04:21
ollama/ollama
5314fc9b632e520415114b4bfd4e53bab263467c
a36b5fef3b83fc622b3720d7b3a71f1261ba193e
Fix Readme "Database -> MindsDB" link (#1479)
[ { "path": "README.md", "patch": "@@ -256,7 +256,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n \n ### Database\n \n-- [MindsDB] (https://github.com/mindsdb/mindsdb/blob/staging/mindsdb/integrations/handlers/ollama_handler/README.md)\n+- [MindsDB](https://github.com/mindsdb/mindsdb/blob...
2023-12-12T15:26:13
vuejs/vue
c3cdfcfa68126783307d74fca22b136cd41c474a
b4dd0be4fc20eb51681c9cf50189081fc8117e14
fix out-in transition for async components (fix #5760)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -72,19 +72,23 @@ function isSameChild (child: VNode, oldChild: VNode): boolean {\n return oldChild.key === child.key && oldChild.tag === child.tag\n }\n \n+function isAsyncPlaceholder (node: VNode): boolean {\n+ return node.isCo...
2017-06-05T11:01:23
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
denoland/deno
23b14d5d5b6ebb26ef21500dafc0adcbb53e3731
c0857ab2ae6b1dfedeaf86b92792afc51c751468
fix(ext/webgpu): GPUQuene writeBuffer size given in elements of TA (#32031) Fixes https://github.com/denoland/deno/issues/31212
[ { "path": "ext/webgpu/queue.rs", "patch": "@@ -9,6 +9,7 @@ use deno_core::WebIDL;\n use deno_core::cppgc::Ref;\n use deno_core::futures::channel::oneshot;\n use deno_core::op2;\n+use deno_core::v8;\n use deno_error::JsErrorBox;\n \n use crate::Instance;\n@@ -128,19 +129,62 @@ impl GPUQueue {\n \n #[requir...
2026-02-09T14:06:41
huggingface/transformers
700c48a29f03bea03465b30e1240a650f905c2b5
18a19dea61f41dbdf23425037f01a3e0a2855043
fix qwen2vl/qwen3vl video processor temporal padding when num_frames%temporal_patch_size!=1 (#42083) * qwen3vl video process padding video frames * add two video processor test cases * fix typo * down test image size * fix qwen2vl video processor t padding * delete padding when num_frames < temporal_patch_size *...
[ { "path": "src/transformers/models/qwen2_vl/video_processing_qwen2_vl.py", "patch": "@@ -232,9 +232,10 @@ def _preprocess(\n patches = stacked_videos\n \n # Check that videos have `num_frames` divisible by `temporal_patch_size`\n- if patches.shape[1] % temporal_patch_size ...
2025-11-10T14:36:21
ollama/ollama
7db5bcf73bf7026970e988f56126db8f370f1b11
fa2f095bd9f002c298042aed5fdc0e7ccd50a652
fix `go-staticcheck` warning
[ { "path": "server/routes.go", "patch": "@@ -860,7 +860,7 @@ func Serve(ln net.Listener, allowOrigins []string) error {\n \tif runtime.GOOS == \"linux\" {\n \t\t// check compatibility to log warnings\n \t\tif _, err := llm.CheckVRAM(); err != nil {\n-\t\t\tlog.Printf(err.Error())\n+\t\t\tlog.Print(err.Error(...
2023-12-10T16:44:27
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
vuejs/vue
da1fc3ddc97fb78621f518d03c549ebecc9b1108
11b7d5dff276caa54da3ef5b52444c0e2c5bbf41
improve: add missing html and svg tag (#5688) * imporve: add missing html and svg tag * reivew * fix: review
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -19,7 +19,7 @@ export const isHTMLTag = makeMap(\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n- 'content,element,shadow,temp...
2017-05-30T05:33:48
denoland/deno
c0857ab2ae6b1dfedeaf86b92792afc51c751468
29e64f0e19397664881c7658978fcbe0788a55c1
fix(ext/node): read from stdin when spawns node with no args (#32088) When child_process.spawn(process.execPath, []) is used (equivalent to running `node` with no args), the CLI arg translator produced `deno run -A` which fails because no script is specified. In Node.js, `node` with no args and piped stdin reads and ...
[ { "path": "ext/node/ops/node_cli_parser.rs", "patch": "@@ -72,10 +72,12 @@ pub fn op_node_translate_cli_args(\n #[serde] args: Vec<String>,\n script_in_npm_package: bool,\n ) -> Result<TranslatedArgs, CliParserError> {\n- // If no args, return early with run -A\n+ // If no args, return early with run ...
2026-02-09T12:32:27
huggingface/transformers
18a19dea61f41dbdf23425037f01a3e0a2855043
dba6aeb1e389416ebaae29f2351af71cdd6c82ac
📝 docs(smolvlm): fix variable name in batch inference example (#42123) Fixed incorrect variable name on line 162. The code creates a list called 'conversations' (plural) but incorrectly references 'conversation' (singular) in the apply_chat_template call, which would cause a NameError. This fixes the batch mixed med...
[ { "path": "docs/source/en/model_doc/smolvlm.md", "patch": "@@ -159,7 +159,7 @@ conversation3 = [\n \n conversations = [conversation1, conversation2, conversation3]\n inputs = processor.apply_chat_template(\n- conversation,\n+ conversations,\n add_generation_prompt=True,\n tokenize=True,\n ...
2025-11-10T13:48:25
ollama/ollama
fa2f095bd9f002c298042aed5fdc0e7ccd50a652
045b855db9dc4fa08738dd20ee2a7252c4680e6a
fix model name returned by `/api/generate` being different than the model name provided
[ { "path": "llm/llama.go", "patch": "@@ -545,15 +545,13 @@ type prediction struct {\n const maxBufferSize = 512 * format.KiloByte\n \n type PredictOpts struct {\n-\tModel string\n \tPrompt string\n \tFormat string\n \tCheckpointStart time.Time\n \tCheckpointLoaded time.Time\n ...
2023-12-10T16:42:15
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
vuejs/vue
11b7d5dff276caa54da3ef5b52444c0e2c5bbf41
b182ac40697edbe8253d4bd68b6ac09e93259e1c
Add handleError during event handling (#5709) * Add handleError during event handling Currently handleError is used to handle errors during lifecycle hooks. This commit adds this functionality in to the event handling for consistency. * style tweak
[ { "path": "src/core/instance/events.js", "patch": "@@ -1,7 +1,13 @@\n /* @flow */\n \n+import {\n+ tip,\n+ toArray,\n+ hyphenate,\n+ handleError,\n+ formatComponentName\n+} from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n-import { toArray, tip, hyphenate, formatComponent...
2017-05-29T06:24:25
denoland/deno
29e64f0e19397664881c7658978fcbe0788a55c1
c996d21a962f334e0007eaac96964d2a51f4abf9
fix(ext/node): unref stdin on pause to allow process exit (#32086) When process.stdin is a pipe without a _handle (PIPE/TCP type), calling pause() did not unref the underlying Deno stdin resource. This caused pending reads to keep the event loop alive, preventing the process from exiting even after stdin was paused. ...
[ { "path": "ext/node/polyfills/_process/streams.mjs", "patch": "@@ -170,6 +170,7 @@ function _guessStdinType(fd) {\n }\n \n const _read = function (size) {\n+ io.stdin?.[io.REF]();\n const p = Buffer.alloc(size || 16 * 1024);\n PromisePrototypeThen(io.stdin?.read(p), (length) => {\n // deno-lint-ign...
2026-02-09T12:31:57
ollama/ollama
045b855db9dc4fa08738dd20ee2a7252c4680e6a
32064a064660227ea128991a14f3f300d00075f5
fix error on accumulating final chat response
[ { "path": "server/routes.go", "patch": "@@ -1025,7 +1025,10 @@ func ChatHandler(c *gin.Context) {\n \t\tfor resp := range ch {\n \t\t\tswitch r := resp.(type) {\n \t\t\tcase api.ChatResponse:\n-\t\t\t\tsb.WriteString(r.Message.Content)\n+\t\t\t\tif r.Message != nil {\n+\t\t\t\t\tsb.WriteString(r.Message.Con...
2023-12-10T16:24:39
huggingface/transformers
dba6aeb1e389416ebaae29f2351af71cdd6c82ac
1c9077f66dc285dd32aa2410bed8acc680d64475
fix continuous batching issues, extend ut cases to xpu (#41830) * extend conrinuous batching cases to xpu Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-off-by: Yao, Matrix <matrix.yao@intel.com> --------- Signed-off-by: Yao, Ma...
[ { "path": "src/transformers/generation/continuous_batching/requests.py", "patch": "@@ -19,6 +19,7 @@\n \n import torch\n \n+from ...utils import is_torch_xpu_available\n from ...utils.logging import logging\n from ...utils.metrics import traced\n \n@@ -35,6 +36,13 @@ def get_device_and_memory_breakdown() ->...
2025-11-10T13:03:52
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
vuejs/vue
b182ac40697edbe8253d4bd68b6ac09e93259e1c
e274c96881f8b14486587e93f404be489454d781
Warn when a inject has been not provided (#5681) * warn when a inject has been not provided * typo * typo * fix when undefined is provided * use util hasOwn * refactor * test case * Revert "test case" This reverts commit 08f0a8b6c3837fc34ddd264712b8c30a05c165e5. * test case
[ { "path": "src/core/instance/inject.js", "patch": "@@ -3,6 +3,7 @@\n import { hasSymbol } from 'core/util/env'\n import { warn } from '../util/index'\n import { defineReactive } from '../observer/index'\n+import { hasOwn } from 'shared/util'\n \n export function initProvide (vm: Component) {\n const provi...
2017-05-29T05:49:49
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
denoland/deno
c996d21a962f334e0007eaac96964d2a51f4abf9
db748af2053d8f348244042e7a47991da803a98f
fix(test): user input clearing test runner output (#32082) I noticed that we don't sanitise output in the test runner when printing it. This allows clearing the output from the test runner itself through "destructive" ansi codes. Ran into this on the Fresh code base. Before: <img width="586" height="235" alt="Screens...
[ { "path": "cli/tools/test/reporters/pretty.rs", "patch": "@@ -1,8 +1,11 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n+use std::io::IsTerminal;\n+\n use super::common;\n use super::fmt::to_relative_path_or_remote_url;\n use super::*;\n+use crate::util::console::filter_destructive_ansi;\n \n...
2026-02-09T11:58:41
ollama/ollama
32064a064660227ea128991a14f3f300d00075f5
d9a250e9b5151417c4b7a6e2971c1e683cbd2aff
fix empty response when receiving runner error
[ { "path": "docs/api.md", "patch": "@@ -252,7 +252,7 @@ curl http://localhost:11434/api/generate -d '{\n \"penalize_newline\": true,\n \"stop\": [\"\\n\", \"user:\"],\n \"numa\": false,\n- \"num_ctx\": 4,\n+ \"num_ctx\": 1024,\n \"num_batch\": 2,\n \"num_gqa\": 1,\n \"num_gpu\":...
2023-12-10T15:53:38
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
vuejs/vue
e6de9a5de28d466b5d4e57e6d5d3baf13d8349b0
d333a498e93acf2d2844fd396e8544658958a3c6
Add types for vue-server-renderer (fix #5772) (#5775) * add types for vue-server-renderer * add a new line to the end of files * make RenderCallback's err to be nullable * fix the server side directive types * make stricter the types of the server bundle and the client manifest
[ { "path": "packages/vue-server-renderer/package.json", "patch": "@@ -3,6 +3,7 @@\n \"version\": \"2.3.3\",\n \"description\": \"server renderer for Vue 2.0\",\n \"main\": \"index.js\",\n+ \"types\": \"types/index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://gith...
2017-05-28T12:08:58
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
denoland/deno
db748af2053d8f348244042e7a47991da803a98f
6c4ced6b360579e04be45deef958f7ec785d3c6b
fix(ext/node): add `threadName` to worker_threads module (#32072) ## Summary Adds the `threadName` export and `Worker.threadName` getter to the worker_threads module for Node.js compatibility. - `threadName` module export: returns the name of the current thread (empty string for main thread, worker's name inside a w...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -237,6 +237,7 @@ class NodeWorker extends EventEmitter {\n workerData: options?.workerData,\n environmentData: environmentData,\n env: env_,\n+ name: this.#name,\n isEval: !!options?.eval,\n isWorkerThread: tru...
2026-02-09T10:48:25
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
denoland/deno
6c4ced6b360579e04be45deef958f7ec785d3c6b
501c6592c9268291b2d6e5479a2f4498f12807f0
fix(ext/node): set exitCode/signalCode correctly for killed child processes (#32081) ## Summary - When a child process was killed by a signal (e.g., SIGTERM from a timeout), `exitCode` was unconditionally set to the raw OS exit code (e.g., 143 for SIGTERM) instead of `null` - In Node.js, `exitCode` and `signalCode` ar...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -542,12 +542,15 @@ export class ChildProcess extends EventEmitter {\n \n (async () => {\n const status = await this.#process.status;\n- this.exitCode = status.code;\n+ this.signalCode = this.signalCode || stat...
2026-02-08T22:07:30
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
vuejs/vue
f3757eb37bfe38cb2e8d87983a1f83d31ea9d30a
05195b862528e7e6c48bc4183cec41114d43b2d6
feat: Add `defer` to body scripts (#5704) * fix: prefetch should not have `as` attribute * feat: Add `async` to body script tags * Use defer instead of async * Use defer instead of async
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -209,7 +209,7 @@ export default class TemplateRenderer {\n const async = this.getUsedAsyncFiles(context)\n const needed = [initial[0]].concat(async || [], initial.slice(1))\n return needed.filter(isJS).map(file => {\n- ...
2017-05-22T09:47:55
ollama/ollama
bbe41ce41a49099097f30fcdb59f08e707d166e1
9e1406e4ed57a7ddcb720e9b6ec15fa7c748318a
fix: parallel queueing race condition caused silent failure (#1445) * fix: queued request failures - increase parallel requests to 2 to complete queued request, queueing is managed in ollama * log steam errors
[ { "path": "llm/llama.go", "patch": "@@ -341,6 +341,7 @@ func newLlama(model string, adapters, projectors []string, runners []ModelRunner\n \t\t\"--ctx-size\", fmt.Sprintf(\"%d\", opts.NumCtx),\n \t\t\"--batch-size\", fmt.Sprintf(\"%d\", opts.NumBatch),\n \t\t\"--n-gpu-layers\", fmt.Sprintf(\"%d\", numGPU),\...
2023-12-09T19:14:02
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
f061d802d36a5f88a4b37c598fe4b4c17ab5f238
55d8bfd6fdda38f31b17cffa07e5ab743c9f2670
fix v-if false rendering
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -135,7 +135,7 @@ function elementToSegments (el, state): Array<StringSegment> {\n el.ifProcessed = true\n return [{\n type: EXPRESSION,\n- value: genIf(el, state, elementToString, '\"\"')\n+ value: genIf(el, state, e...
2017-05-18T08:53:35
ollama/ollama
7e9405fd0762a8fdbd7a3b3ea7a9268775fd944e
3b0b8930d4d9209ea5919452c908b372428e233d
fix: encode full previous prompt in context (#1424)
[ { "path": "server/routes.go", "patch": "@@ -277,7 +277,7 @@ func GenerateHandler(c *gin.Context) {\n \t\t\t}\n \n \t\t\tif r.Done && !req.Raw {\n-\t\t\t\tembd, err := loaded.runner.Encode(c.Request.Context(), req.Prompt+generated.String())\n+\t\t\t\tembd, err := loaded.runner.Encode(c.Request.Context(), pro...
2023-12-08T21:53:51
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
ollama/ollama
3b0b8930d4d9209ea5919452c908b372428e233d
e3f925fc1baeb97a9aa2e08d79dcb829487b7820
fix: only flush template in chat when current role encountered (#1426)
[ { "path": "server/images.go", "patch": "@@ -103,16 +103,16 @@ func (m *Model) ChatPrompt(msgs []api.Message) (string, error) {\n \t}\n \n \tfor _, msg := range msgs {\n-\t\tswitch msg.Role {\n+\t\tswitch strings.ToLower(msg.Role) {\n \t\tcase \"system\":\n-\t\t\tif currentVars.Prompt != \"\" || currentVars....
2023-12-08T21:44:24
vuejs/vue
66387a46398b020eded55c4529a21e1c0f451dfb
41acdc0ff145653cf3a86a4f108fae3125ad291a
fix enumerated/boolean attr
[ { "path": "src/server/optimizing-compiler/modules.js", "patch": "@@ -11,6 +11,11 @@ import {\n isRenderableAttr\n } from 'web/server/util'\n \n+import {\n+ isBooleanAttr,\n+ isEnumeratedAttr\n+} from 'web/util/attrs'\n+\n import type { StringSegment } from './codegen'\n import type { CodegenState } from...
2017-05-18T08:19:37
ggml-org/llama.cpp
4a5b8aff40277071dbb98e81b5d0cbbbd3c37283
d2d626938aa7b0137df6a808e0637151806a9d5a
cmake : add version to all shared object files (#17091) When compiling llama.cpp in Yocto, it fails QA checks because the generated so files aren't versioned. This applies a version to all generated so files, allowing the package to build without errors.
[ { "path": "ggml/src/CMakeLists.txt", "patch": "@@ -211,6 +211,11 @@ add_library(ggml-base\n ggml-quants.h\n gguf.cpp)\n \n+set_target_properties(ggml-base PROPERTIES\n+ VERSION ${GGML_VERSION}\n+ SOVERSION ${GGML_VERSION_MAJOR}\n+)\n+\n target_include_directories(ggml-base PRIV...
2025-11-11T11:19:50
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
denoland/deno
501c6592c9268291b2d6e5479a2f4498f12807f0
1c4204cc254671da16e777b13a9ae2bdcf268bad
fix(ext/node): emit error event for worker with missing main module (#32062) Fixes `test-worker-esm-missing-main.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/ops/worker_threads.rs", "patch": "@@ -86,21 +86,17 @@ pub fn op_worker_threads_filename<TSys: ExtNodeSys + 'static>(\n let path = ensure_read_permission(state, Cow::Borrowed(path))\n .map_err(WorkerThreadsFilenameError::Permission)?;\n let sys = state.borrow::<TSys>();\n- ...
2026-02-07T15:07:13
ggml-org/llama.cpp
85234a4b3aa1084147995a07c12ebcce6310dd9e
0c74f3263273cf0d95d1f10930a12cad94c375af
vulkan: fix validation issue introduced by #16868 (#17145)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -6831,7 +6831,7 @@ static void ggml_vk_mul_mat_vec_q_f16(ggml_backend_vk_context * ctx, vk_context&\n \n vk_buffer d_B = d_D;\n size_t b_buf_offset = 0;\n- uint64_t b_sz = 0;\n+ uint64_t b_sz = 1;\n \n if (enable_bias) {\n ...
2025-11-10T15:59:10
ollama/ollama
e3f925fc1baeb97a9aa2e08d79dcb829487b7820
2a2289fb6b7e01c862a89c2c97dd856f1407c2b5
fix: restore modelfile system in prompt template (#1425)
[ { "path": "server/images.go", "patch": "@@ -64,6 +64,11 @@ func (m *Model) Prompt(p PromptVars) (string, error) {\n \t\treturn \"\", err\n \t}\n \n+\tif p.System == \"\" {\n+\t\t// use the default system prompt for this model if one is not specified\n+\t\tp.System = m.System\n+\t}\n+\n \tvars := map[string]...
2023-12-08T19:20:19
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
vuejs/vue
41acdc0ff145653cf3a86a4f108fae3125ad291a
2f4ad14d9f010054178e3a02d0044e8ac8f5d5ce
fix v-html/v-text on root element
[ { "path": "src/server/optimizing-compiler/optimizer.js", "patch": "@@ -60,8 +60,7 @@ function walk (node: ASTNode, isRoot?: boolean) {\n }\n }\n if (node.ssrOptimizability == null ||\n- node.attrsMap['v-html'] ||\n- node.attrsMap['v-text']\n+ (!isRoot && (node.attrsMap['v-html']...
2017-05-18T08:07:49
denoland/deno
84339a857ff49edbd4db464399fd832b7795ed1f
6d18b1bb18b26870be026bf0d3c552b70e8702dc
fix(ext/node): unref child_process stdio streams by default (#32071) With this fix, Pipe.unref() also propagates to the stream in `[kStreamBaseField]`, so esbuild's unref calls reach the StreamResource and the event loop can exit properly.
[ { "path": "ext/node/polyfills/internal_binding/pipe_wrap.ts", "patch": "@@ -416,12 +416,20 @@ export class Pipe extends ConnectionWrap {\n if (this.#listener) {\n this.#listener.ref();\n }\n+ const stream = this[kStreamBaseField];\n+ if (stream && typeof stream.ref === \"function\") {\n+...
2026-02-06T13:03:06
ggml-org/llama.cpp
0c74f3263273cf0d95d1f10930a12cad94c375af
c27efd2bd1f27b1ad2f0b7cb417dbb9b62b57d44
memory: Hybrid context shift (#17009) * feat(memory): Only fail partial erasure of recurrent tail The recurrent state is always assumed to be the state as of the last update from the final token in the sequence. When doing a partial erasure, if the range does not include the final token, the erasure can be considered...
[ { "path": "src/llama-memory-recurrent.cpp", "patch": "@@ -151,7 +151,8 @@ bool llama_memory_recurrent::seq_rm(llama_seq_id seq_id, llama_pos p0, llama_pos\n p1 = std::numeric_limits<llama_pos>::max();\n }\n \n- // models like Mamba or RWKV can't have a state partially erased\n+ // models l...
2025-11-10T15:14:23
vuejs/vue
24bde02e5b49aea5fb7d854e2df3af15f5e3d783
bdd3f5d05d851d44f0d4a0a6aaabf48e2481e918
fix ssrNode children normalization
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -57,8 +57,6 @@ function genSSRElement (el: ASTElement, state: CodegenState): string {\n return genSSRChildren(el, state) || 'void 0'\n }\n \n- // TODO optimize merge sibling nodes\n-\n switch (el.ssrOptimizability) {\n case opt...
2017-05-18T05:44:17
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
denoland/deno
22b7401bb499c5dae4cfe231301aafba34264a41
cc6422dc6605424a3d32a4c39071f5e894bc6578
fix: support loading `npm:` and `jsr:` specifiers in required ES modules (#31974)
[ { "path": "Cargo.lock", "patch": "@@ -1905,9 +1905,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.383.0\"\n+version = \"0.385.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ee60c193b9e93726558e20dca14b36db7fccfebdf4479271e834e52709d101c...
2026-02-06T01:18:18
ollama/ollama
16c75484604a7f5f0acf50961fc026e04ddec464
f9b7d65e2b9253d358b0f4c5f12da67512dc4b5e
fix redundant newline
[ { "path": "cmd/cmd.go", "patch": "@@ -714,11 +714,11 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {\n \t\t\tcase MultilineSystem:\n \t\t\t\topts.System = prompt\n \t\t\t\tprompt = \"\"\n-\t\t\t\tfmt.Println(\"Set system template.\\n\")\n+\t\t\t\tfmt.Println(\"Set system templa...
2023-12-07T21:44:45
ggml-org/llama.cpp
df70bedda70550fd9ebc4bc965c5dbc3f6d78345
f914544b16a467a5c94e95ec77027775c3652c09
arm64: add i8mm route with SVE ggml_vec_dot_q4_K_q8_K and ggml_vec_dot_q6_K_… (#15277) * add i8mm route with SVE ggml_vec_dot_q4_K_q8_K and ggml_vec_dot_q6_K_q8_K * Surround SVE function with compiler directive * fix compile switch * fix coding style * ggml : fix indent --------- Co-authored-by: Georgi Gerganov ...
[ { "path": "ggml/src/ggml-cpu/arch/arm/quants.c", "patch": "@@ -2044,6 +2044,26 @@ void ggml_vec_dot_q3_K_q8_K(int n, float * GGML_RESTRICT s, size_t bs, const voi\n \n }\n \n+#ifdef __ARM_FEATURE_SVE\n+static inline svuint32_t ggml_decode_q4scales_and_mins_for_mmla(const uint32_t * vx_scales) {\n+ const ...
2025-11-10T13:12:59
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
vuejs/vue
7cf1e654a6bf903b17fba12025bbf298ce0d2a6b
9fbca0dc792e94eb775a8f08694a04963dc20e07
fix root node optimizability
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -99,7 +99,7 @@ function genStringElement (el, state, stringifyChildren) {\n const children = genSSRChildren(el, state, true)\n return `_ssrNode(${\n flattenSegments(elementToOpenTagSegments(el, state))\n- }\",\"${el.tag}\"$...
2017-05-17T08:41:22
ollama/ollama
97c569694570e099c835e3c78a805613ac0777f5
32f62fbb8e0b1ecb4ec8369586562abce86c8e50
fix base urls in chat examples
[ { "path": "docs/api.md", "patch": "@@ -291,6 +291,7 @@ curl http://localhost:11434/api/generate -d '{\n ```\n \n ## Send Chat Messages\n+\n ```shell\n POST /api/chat\n ```\n@@ -312,10 +313,11 @@ Advanced parameters (optional):\n ### Examples\n \n #### Request\n+\n Send a chat message with a streaming respon...
2023-12-06T20:10:20
ggml-org/llama.cpp
4b13a684c595ab9323be8dfa6266d9d0fb13c232
9898b57cbe69ab81713e16cbb84a799c6eb3e36c
mtmd: fix patch_size initialized to random value in audio models (#17128) * mtmd: fix patch_size initialized to random value in audio models * add default hparams
[ { "path": "tools/mtmd/clip.cpp", "patch": "@@ -160,13 +160,13 @@ enum patch_merge_type {\n };\n \n struct clip_hparams {\n- int32_t image_size;\n- int32_t patch_size;\n- int32_t n_embd;\n- int32_t n_ff;\n- int32_t projection_dim;\n- int32_t n_head;\n- int32_t n_layer;\n+ int32_t imag...
2025-11-10T10:41:05
denoland/deno
cc6422dc6605424a3d32a4c39071f5e894bc6578
cb0b84c4dedf600db7089018b28f4b43ec996a3e
fix(ext/node): fix 'test-worker-process-{argv,env}.js' tests (#32065) Done with @claude
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -49,16 +49,16 @@ const {\n encodeURIComponent,\n Error,\n FunctionPrototypeCall,\n- JSONParse,\n- JSONStringify,\n NumberIsFinite,\n ObjectHasOwn,\n+ ObjectKeys,\n ObjectPrototypeIsPrototypeOf,\n PromiseReject,\n PromiseResolv...
2026-02-05T23:56:54
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
vuejs/vue
9fbca0dc792e94eb775a8f08694a04963dc20e07
5b58526a525f67ed7a3dffcaf38a51ab2affd357
remove unused, fix type
[ { "path": "flow/component.js", "patch": "@@ -1,6 +1,7 @@\n import type { Config } from '../src/core/config'\n import type VNode from '../src/core/vdom/vnode'\n import type Watcher from '../src/core/observer/watcher'\n+import type StringNode from '../src/server/optimizing-compiler/runtime-helpers'\n \n decla...
2017-05-17T06:40:06
ggml-org/llama.cpp
b8595b16e69e3029e06be3b8f6635f9812b2bc3f
392e09a60852d0e879d4bbedd5ace3e6852f719e
mtmd : fix embedding size for image input (#17123)
[ { "path": "tools/mtmd/mtmd-helper.cpp", "patch": "@@ -182,7 +182,7 @@ int32_t mtmd_helper_decode_image_chunk(\n }\n \n const llama_model * model = llama_get_model(lctx);\n- int n_mmproj_embd = llama_model_n_embd(model);\n+ int n_mmproj_embd = llama_model_n_embd_inp(model);\n int n_pos_per_...
2025-11-09T16:31:02
denoland/deno
cb0b84c4dedf600db7089018b28f4b43ec996a3e
42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7
fix(ext/otel): use correct severity for `console.trace` (#32068) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1277,7 +1277,8 @@ fn op_otel_log<'s>(\n ..=0 => Severity::Debug,\n 1 => Severity::Info,\n 2 => Severity::Warn,\n- 3.. => Severity::Error,\n+ 3 | 5.. => Severity::Error,\n+ 4 => Severity::Trace,\n };\n \n let mut log_record = LogRecord:...
2026-02-05T23:25:36
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
vuejs/vue
ebca266d10febb5ab5ca0cfbcd0dfbff2f2c2170
34bc14e7679e0d779ff361b7a42e900ad5043798
fix: prefetch should not have `as` attribute (#5683)
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -181,7 +181,7 @@ export default class TemplateRenderer {\n }\n return this.prefetchFiles.map(file => {\n if (!alreadyRendered(file)) {\n- return `<link rel=\"prefetch\" href=\"${this.publicPath}/${file}\" as=\"scrip...
2017-05-16T16:18:02
ggml-org/llama.cpp
392e09a60852d0e879d4bbedd5ace3e6852f719e
802cef44bfaa80987076d621c8bf5875627c197b
vulkan: fix memory allocations (#17122)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -2220,9 +2220,12 @@ static vk_buffer ggml_vk_create_buffer(vk_device& device, size_t size, const std\n }\n buf->memory_property_flags = req_flags;\n \n+ bool done = false;\n+\n for (auto mtype_it = memory_type_indi...
2025-11-09T15:14:41
ollama/ollama
38fe1a368bc96b127c02ca40634282a75ada58b2
00d06619a11356a155362013b8fc0bc9d0d8a146
fix: trim space in modelfile fields
[ { "path": "parser/parser.go", "patch": "@@ -37,10 +37,13 @@ func Parse(reader io.Reader) ([]Command, error) {\n \t\tswitch string(bytes.ToUpper(fields[0])) {\n \t\tcase \"FROM\":\n \t\t\tcommand.Name = \"model\"\n-\t\t\tcommand.Args = string(fields[1])\n+\t\t\tcommand.Args = string(bytes.TrimSpace(fields[1]...
2023-12-05T19:57:21
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
denoland/deno
42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7
5afc23e70d382be37938c4be69b422d7a8b7d1e1
fix(ext/node): validate execArgv and NODE_OPTIONS in worker_threads (#32066) Fixes `test-worker-execargv-invalid.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com>
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -5,7 +5,6 @@\n * ERR_MANIFEST_ASSERT_INTEGRITY\n * ERR_QUICSESSION_VERSION_NEGOTIATION\n * ERR_REQUIRE_ESM\n- * ERR_WORKER_INVALID_EXEC_ARGV\n * ERR_WORKER_PATH\n * ERR_QUIC_ERROR\n * ERR_SYSTEM_ERROR //System error, shouldn't ever happen...
2026-02-05T18:09:03
vuejs/vue
3cda98a541cd2c84847a9c53a7b38fccf1329a11
0b2f11036d86f1242370726fec230db77a49d95e
Added picture to isHTMLTag map (#5675) This change will make sure the below error is not seen while unit testing components using <picture> in their template. [Vue warn]: Unknown custom element: <picture> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -11,7 +11,7 @@ export const namespaceMap = {\n export const isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n- 'div,dd,dl,dt,figcaption,figur...
2017-05-16T01:21:54
ggml-org/llama.cpp
802cef44bfaa80987076d621c8bf5875627c197b
1c07c0c68c692d39b83f491bad9447af852bb652
convert : parse safetensors directly (#15667) * convert : parse safetensors directly * gguf-py : order safetensors tensors by name Applies to both local and remote safetensors custom parsing. This matches the behavior of the official safetensors implementation. * convert : rename from_safetensors_meta to from_local...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -218,8 +218,7 @@ def index_tensors(self, remote_hf_model_id: str | None = None) -> dict[str, Call\n logger.info(f\"gguf: indexing model part '{part_name}'\")\n ctx: ContextManager[Any]\n if is_safetensors:\n- ...
2025-11-09T14:49:40
ollama/ollama
00d06619a11356a155362013b8fc0bc9d0d8a146
f1ef3f9947ecf0a63cd7544d3c2d26c2ff5e0915
Revert "chat api (#991)" while context variable is fixed This reverts commit 7a0899d62dee8a55810446dd7655b9e682ddf8ac.
[ { "path": "api/client.go", "patch": "@@ -221,19 +221,6 @@ func (c *Client) Generate(ctx context.Context, req *GenerateRequest, fn Generate\n \t})\n }\n \n-type ChatResponseFunc func(ChatResponse) error\n-\n-func (c *Client) Chat(ctx context.Context, req *ChatRequest, fn ChatResponseFunc) error {\n-\treturn ...
2023-12-05T05:16:27
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
vuejs/vue
7694c855642d6765f9ebfe925d9a73ba8198b183
da1db7af31b397eab1608217d1f6dee26f753a59
fix static tree optimization for v-else(-if) conditions
[ { "path": "src/compiler/optimizer.js", "patch": "@@ -55,6 +55,15 @@ function markStatic (node: ASTNode) {\n node.static = false\n }\n }\n+ if (node.ifConditions) {\n+ for (let i = 1, l = node.ifConditions.length; i < l; i++) {\n+ const block = node.ifConditions[i].block\n+ ...
2017-05-15T04:05:19
denoland/deno
5afc23e70d382be37938c4be69b422d7a8b7d1e1
0baa1a65746e97dd030e291f65c3013b936b0462
fix(ext/node): emit error event for worker_threads terminal errors (#32052)
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -246,6 +246,16 @@ class NodeWorker extends EventEmitter {\n switch (type) {\n case 1: { // TerminalError\n this.#status = \"CLOSED\";\n+ if (this.listenerCount(\"error\") > 0) {\n+ const err = new Erro...
2026-02-05T12:09:45
ggml-org/llama.cpp
1c07c0c68c692d39b83f491bad9447af852bb652
cb1adf885105da7ce23db746b4202f4e987aa3e8
convert : handle compressed-tensors quant method (#17069) * convert : handle compressed-tensors quant method * convert : handle int-quantized models * convert : handle naive-quantized models * gguf-py : __pos__ is also unary * convert : fix flake8 lint * convert : use F32 for dequant of pack-quantized tensors
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -278,15 +278,14 @@ def dequant_bitnet(weight: Tensor, scale: Tensor) -> Tensor:\n # The scale is inverted\n return data / scale.float()\n \n- def dequant_simple(weight: Tensor, scale: Tensor) -> Tensor:\n+ ...
2025-11-09T14:45:50
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