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
vuejs/vue
3c216755f6eb656c6d864265a8dc7b51b3ae971b
a67b795b3661f6f223420339f3eeb07a913207de
fix(provide): provide should default to parentVal during merging (#6473) fix #6436
[ { "path": "src/core/util/options.js", "patch": "@@ -96,7 +96,7 @@ export function mergeDataOrFn (\n : childVal\n const defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm)\n- : undefined\n+ : parentVal\n if (instanceData) {\n return mergeData...
2017-09-05T20:01:50
huggingface/transformers
16c7afd06f70e1ab7a8bb2e19e33e5473297dc55
309180f93a216afee998e955440c5da9fe5ebd89
Update `test_dynamic_cache_exportability_multiple_run` (failing on torch 2.10 nightly) (#42212) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/utils/test_cache_utils.py", "patch": "@@ -628,7 +628,7 @@ def test_dynamic_cache_exportability_multiple_run(self):\n past_key_values = res.past_key_values\n \n shapes = torch.export.ShapesCollection()\n- dyn = torch.export.Dim(\"seq\", max=512)\n+ dyn = torch.e...
2025-11-14T15:09:03
denoland/deno
9becb837c6a425124d4423985a415c5c7404e706
5fb8a4d498c07e0bccef1f5fcfade14501ba45a3
fix(node/crypto): handle empty input in decipher final with auto_pad=false (#31958) ## Summary Fixes a panic in `node:crypto` when using `createDecipheriv` with `setAutoPadding(false)` (denoland/deno#31957). Two cases caused panics in `DecipherContext::final`: 1. **Empty input** — `GenericArray::from_slice` panicked...
[ { "path": "ext/node_crypto/cipher.rs", "patch": "@@ -752,10 +752,13 @@ impl Decipher {\n Ok(())\n }\n (Aes128Cbc(mut decryptor), false) => {\n- decryptor.decrypt_block_b2b_mut(\n- GenericArray::from_slice(input),\n- GenericArray::from_mut_slice(output),\n- ...
2026-03-02T16:33:46
ollama/ollama
c08dfaa23d90d5df044f44f1ba89fc1e0b727757
3b76e736aed78e19879c184b6d44570e0a150c36
fix: remove overwritten model layers if create overrides a manifest, first add the older manifest's layers to the delete map so they can be cleaned up
[ { "path": "server/images.go", "patch": "@@ -412,6 +412,13 @@ func realpath(mfDir, from string) string {\n }\n \n func CreateModel(ctx context.Context, name, modelFileDir string, commands []parser.Command, fn func(resp api.ProgressResponse)) error {\n+\tdeleteMap := make(map[string]struct{})\n+\tif manifest,...
2024-01-19T22:58:36
ggml-org/llama.cpp
879d673759181987300a29989478c0f36c97e97b
6ab4e50d9c65e7d94ab7ce135114b52e484019ab
vulkan: Implement top-k (#17418) * vulkan: Implement top-k Each pass launches workgroups that each sort 2^N elements (where N is usually 7-10) and discards all but the top K. Repeat until only K are left. And there's a fast path when K==1 to just find the max value rather than sorting. * fix pipeline selection * vu...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -409,6 +409,7 @@ enum shader_reduction_mode {\n // argsort pipelines for up to 1<<10 invocations per workgroup\n static constexpr uint32_t num_argsort_pipelines = 11;\n static constexpr uint32_t num_topk_moe_pipelines = 10;\n+static constexpr ui...
2025-11-26T15:45:43
vuejs/vue
89f0d29f2d541aa5a1ac9690258cd7c7ee576ef6
538ad20d8a37fe7ee2463ff20ac9557af70e0d33
fix: inherit SVG ns on component root node (#6511) fix #6506
[ { "path": "src/core/vdom/create-element.js", "patch": "@@ -91,7 +91,7 @@ export function _createElement (\n let vnode, ns\n if (typeof tag === 'string') {\n let Ctor\n- ns = config.getTagNamespace(tag)\n+ ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag)\n if (confi...
2017-09-05T19:12:35
huggingface/transformers
309180f93a216afee998e955440c5da9fe5ebd89
8976ceb0510e139282050a1b12d9e6afb21bce35
[`BLT`] Fix cache usage (#42188) * fix * properly * fix tests
[ { "path": "src/transformers/models/blt/modeling_blt.py", "patch": "@@ -28,7 +28,7 @@\n import torch.nn.functional as F\n \n from ...activations import ACT2FN\n-from ...cache_utils import Cache, DynamicCache\n+from ...cache_utils import Cache, DynamicCache, EncoderDecoderCache\n from ...generation import Gen...
2025-11-14T14:58:17
denoland/deno
5fb8a4d498c07e0bccef1f5fcfade14501ba45a3
968baf725a6d28cd739fd61b1f447fe3de89b622
fix(npm): peerDependency resolution leading to multiple versions being installed + hanging (#32358) Essentially, this PR rewrites our dependency resolution code to use a two-phase approach, which fixes duplicate peer dependencies or hanging installation. Peer deps were resolved inline during BFS traversal, making res...
[ { "path": "tests/specs/npm/info_peer_deps/main_info.out", "patch": "@@ -4,11 +4,11 @@ dependencies: 6 unique\n size: [WILDCARD]\n \n file:///[WILDCARD]/main.ts (171B)\n-├─┬ npm:/@denotest/peer-dep-test-child@1.0.0_@denotest+peer-dep-test-peer@1.0.0 ([WILDCARD])\n+├─┬ npm:/@denotest/peer-dep-test-child@1.0.0...
2026-03-02T15:33:10
ggml-org/llama.cpp
e6923caaec6312ea374822634df9f7621f31fe74
3e18dba9fd599ace0c3f2bc94bd74e5398d2efb6
ggml : fix ARM feature verification (#17519) On arm64 with `cmake` version 3.31.6, the final feature verification fails: -- ARM detected flags: -mcpu=neoverse-v2+crc+sve2-aes+sve2-sha3+nossbs -- Performing Test GGML_MACHINE_SUPPORTS_dotprod -- Performing Test GGML_MACHINE_SUPPORTS_dotprod - Success --...
[ { "path": "ggml/src/ggml-cpu/CMakeLists.txt", "patch": "@@ -224,7 +224,8 @@ function(ggml_add_cpu_backend_variant_impl tag_name)\n \n include(CheckCXXSourceCompiles)\n set(CMAKE_REQUIRED_FLAGS_SAVE ${CMAKE_REQUIRED_FLAGS})\n- set(CMAKE_REQUIRED_FLAGS \"${ARCH_FLAGS}\")\n+ ...
2025-11-26T13:14:41
vuejs/vue
538ad20d8a37fe7ee2463ff20ac9557af70e0d33
a7444975343f7828004d90bfb0deeb98db0f46e7
fix(directive): should invoke unbind & inserted on inner component root element change fix #6513
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -670,6 +670,16 @@ export function createPatchFunction (backend) {\n for (let i = 0; i < cbs.create.length; ++i) {\n cbs.create[i](emptyNode, ancestor)\n }\n+ // #6513\n+ // invoke insert ho...
2017-09-05T16:59:38
huggingface/transformers
8976ceb0510e139282050a1b12d9e6afb21bce35
c01e711ee57e70af4fbf2d056411503ce49c80ec
Refactor check_auto_docstring using AST (#41432) * refactor check_auto_docstring with AST * use dataclass for ASTIndexes * simplify and improve readability * fix missing imports * fix modular * fix modular issues
[ { "path": "src/transformers/models/glm4v/modeling_glm4v.py", "patch": "@@ -1418,14 +1418,11 @@ def forward(\n pixel_values_videos: Optional[torch.FloatTensor] = None,\n image_grid_thw: Optional[torch.LongTensor] = None,\n video_grid_thw: Optional[torch.LongTensor] = None,\n- r...
2025-11-14T14:57:08
denoland/deno
968baf725a6d28cd739fd61b1f447fe3de89b622
826878191feedbf83147bbf6726a8e2984704545
fix(ext/node): support DER-encoded keys in publicEncrypt/privateDecrypt (#32291) ## Summary - `publicEncrypt`, `privateDecrypt`, and `privateEncrypt` only accepted PEM-encoded (text) keys. When passed DER (binary) encoded keys, they failed with `invalid utf-8 sequence of 1 bytes from index 1` because the code tried t...
[ { "path": "ext/node_crypto/lib.rs", "patch": "@@ -33,6 +33,8 @@ use rsa::Oaep;\n use rsa::Pkcs1v15Encrypt;\n use rsa::RsaPrivateKey;\n use rsa::RsaPublicKey;\n+use rsa::pkcs1::DecodeRsaPrivateKey;\n+use rsa::pkcs1::DecodeRsaPublicKey;\n use rsa::pkcs8::DecodePrivateKey;\n use rsa::pkcs8::DecodePublicKey;\n ...
2026-03-02T15:17:41
ggml-org/llama.cpp
05872ac88532585fb198f1113be43ac654955cba
55ab25caf5caec6840d502325c8480b8afccc0b4
convert : fix big-endian conversion (#17431) * Fix convert_hf_to_gguf.py script on s390x Assume converted model data is originally little-endian. Byteswap data on s390x after reading it to put values in correct presentation for any transformation needed, like calculating weight tensors. Then byteswap data to little-...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -10061,6 +10061,25 @@ class LazyTorchTensor(gguf.LazyBase):\n torch.uint8: np.uint8,\n }\n \n+ # only used when byteswapping data. Only correct size is needed\n+ _dtype_byteswap_map: dict[torch.dtype, type] = {\n+ torch.float64: np.flo...
2025-11-25T13:18:16
vuejs/vue
a7444975343f7828004d90bfb0deeb98db0f46e7
2d75aba5e1a3f25aa30f90f95e603ba424cf1730
fix: ensure outer bindings on nested HOC are properly re-applied on inner root element change
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -660,14 +660,18 @@ export function createPatchFunction (backend) {\n // component root element replaced.\n // update parent placeholder node element, recursively\n let ancestor = vnode.parent\n+ const patchable = isPatch...
2017-09-05T15:29:22
huggingface/transformers
c01e711ee57e70af4fbf2d056411503ce49c80ec
082e3ff4a3cfaeffac38812a3a68e9a59e4d0a5a
Stop inheriting tests! (#42192) * Stop inheriting tests! * Just use a del instead * fixup
[ { "path": "tests/models/cohere2/test_modeling_cohere2.py", "patch": "@@ -269,3 +269,6 @@ def test_generation_beyond_sliding_window(self, attn_implementation: str):\n output_text = tokenizer.batch_decode(out)\n \n self.assertEqual(output_text, EXPECTED_COMPLETIONS)\n+\n+\n+del CohereModelTest...
2025-11-14T14:07:42
denoland/deno
8c7409882b13fa20ca1a9739d6e4605c2d464241
9a246baac9cb8c2bb4422e18fcea8b1fd880d7ef
fix(test): dedupe discovered workspace test modules (#32380) This PR should address #25949. I fixed duplicate test module execution caused by overlapping discovery entries (e.g., workspace + `deno test .`). IMHO this is a suboptimal but safer fix. The cleaner solution would be to make discovery non-overlapping at me...
[ { "path": "cli/tools/test/mod.rs", "patch": "@@ -129,6 +129,10 @@ pub enum TestMode {\n }\n \n impl TestMode {\n+ fn union(self, other: Self) -> Self {\n+ if self == other { self } else { Self::Both }\n+ }\n+\n /// Returns `true` if the test mode indicates that code snippet extraction is\n /// need...
2026-03-02T14:36:29
ollama/ollama
eb76f3e37993ab0c7d1c0d1c361245e1597690aa
d017e3d0a6a95922f9efe2625824e708a3db13f9
Fix CPU-only build under Android Termux enviornment. Update gpu.go initGPUHandles() to declare gpuHandles variable before reading it. This resolves an "invalid memory address or nil pointer dereference" error. Update dyn_ext_server.c to avoid setting the RTLD_DEEPBIND flag under __TERMUX__ (Android).
[ { "path": "gpu/gpu.go", "patch": "@@ -63,6 +63,7 @@ func initGPUHandles() {\n \n \t// TODO - if the ollama build is CPU only, don't do these checks as they're irrelevant and confusing\n \n+\tgpuHandles = &handles{nil, nil}\n \tvar cudaMgmtName string\n \tvar cudaMgmtPatterns []string\n \tvar rocmMgmtName st...
2024-01-15T09:37:44
ggml-org/llama.cpp
134e6940caf5c64071b7f3b7bc6c2f32f1b3a5a4
0543f928a3ae576e6e16d3bbf02c0bf9fddba688
llama : skip output reordering for single token batches (#17466) This commit adds a check to skip the output reordering logic when n_outputs == 1. With a single output token, the data is trivially sorted and the reordering code is currently doing unnecessary work (resetting and rebuilding output_ids to the same values...
[ { "path": "src/llama-context.cpp", "patch": "@@ -1248,7 +1248,7 @@ int llama_context::decode(const llama_batch & batch_inp) {\n \n // make the outputs have the same order they had in the user-provided batch\n // note: this is mostly relevant for recurrent models atm\n- if (!sorted_out...
2025-11-24T20:06:17
vuejs/vue
2d75aba5e1a3f25aa30f90f95e603ba424cf1730
230c6ae7822347b9b2a659503291e45fcc58fe41
chore: fixed a small typo in CONTRIBUTING.md (#6517)
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -49,7 +49,7 @@ The `setup` script links two git hooks:\n - `pre-commit`: runs ESLint on staged files.\n - `commit-msg`: validates commit message format (see below).\n \n-### Commiting Changes\n+### Committing Changes\n \n Commit messages should follow the [c...
2017-09-05T15:02:03
huggingface/transformers
f78cadfc974469bc4d834fca73f6cafd75ee9473
eddd51ec3d01232572b6ef7ca02f8a15c42c7839
[`Pop2Piano`] Fix tied weights (#42193) * fix * try oh try * change fix
[ { "path": "src/transformers/models/pop2piano/configuration_pop2piano.py", "patch": "@@ -122,6 +122,7 @@ def __init__(\n is_encoder_decoder=is_encoder_decoder,\n **kwargs,\n )\n+ self.tie_encoder_decoder = True # forcing it\n \n \n __all__ = [\"Pop2PianoConfig\"]", ...
2025-11-14T11:54:33
denoland/deno
9a246baac9cb8c2bb4422e18fcea8b1fd880d7ef
e7269534ae4fe4d08258d562738d0cb1aa275733
fix: fix some stack frame dimming, and make the console log more aligned with cli formatting (#32399)
[ { "path": "ext/web/01_console.js", "patch": "@@ -369,6 +369,12 @@ const kArrayExtrasType = 2;\n const coreModuleRegExp = new SafeRegExp(\n /^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$/,\n );\n+const extModuleRegExp = new SafeRegExp(\n+ /^ {4}at (?:[^/\\\\(]+ \\(|)ext:.+:\\d+:\\d+\\)?$/,\n+);\n+co...
2026-03-02T14:21:46
ggml-org/llama.cpp
0543f928a3ae576e6e16d3bbf02c0bf9fddba688
b61de2b2df4ff07e6d6de96320fb311d96908b7a
HIP: WMMA-MMQ kernels for RDNA 4 (#17156) * first commit naive test to enable mmq for RDNA4 * adding appropriate WMMA instructions * git rebase on top of master: fixing the correctness of the mat mul operations, updating layout mappings for RDNA4 * clean up merge conflicts * add comments and code clean up * PR cl...
[ { "path": "ggml/src/ggml-cuda/mma.cuh", "patch": "@@ -73,34 +73,7 @@ namespace ggml_cuda_mma {\n static constexpr int I = I_;\n static constexpr int J = J_;\n \n-#if defined(GGML_USE_HIP)\n-#if defined(RDNA4)\n- static constexpr int ne = I * J / 32;\n- T x[ne] = {0};\n-\n- ...
2025-11-24T19:00:10
vuejs/vue
230c6ae7822347b9b2a659503291e45fcc58fe41
f76d16ed9507d4c2a90243ea3d77ccf00df29346
fix(vdom): avoid diff de-opt when both head/tail are different fix #6502
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -401,7 +401,9 @@ export function createPatchFunction (backend) {\n newStartVnode = newCh[++newStartIdx]\n } else {\n if (isUndef(oldKeyToIdx)) oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx)\n- idxInOld = isDef(newS...
2017-09-04T16:50:57
huggingface/transformers
eddd51ec3d01232572b6ef7ca02f8a15c42c7839
7607d80f7e584328e0e37ca93e661998aee69a4d
Fix checkpoint loading with DeepSpeed ZeRO3 (#42201) fix checkpoint loading with DeepSpeed ZeRO3 Signed-off-by: Masahiro Tanaka <mtanaka@anyscale.com> Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4233,6 +4233,19 @@ def _load_pretrained_model(\n error_msgs = []\n \n if is_deepspeed_zero3_enabled() and not is_quantized:\n+ if state_dict is None:\n+ if checkpoint_files is None:\n+ ...
2025-11-14T10:48:08
denoland/deno
e7269534ae4fe4d08258d562738d0cb1aa275733
70497bbf6a7e673b7f9f89b7a112c488fd20e11d
fix(ext/node): make `execPath` named export a real string (#32396) ## Summary - The named ESM export `execPath` from `node:process` was a frozen object with `String.prototype` that pretended to be a string but had `typeof === "object"`. This broke libraries like execa that check `typeof execPath === "string"`, causin...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -480,20 +480,7 @@ function uncaughtExceptionHandler(err: any, origin: string) {\n process.emit(\"uncaughtException\", err, origin);\n }\n \n-export let execPath: string = Object.freeze({\n- __proto__: String.prototype,\n- toString() {\n- execPat...
2026-03-02T14:15:58
ollama/ollama
aac9ab4db756b999c6c95b1159fc357a3b7c44b3
1f5b7ff976460ad5305ab31998554944825f1f5f
fix show handler
[ { "path": "server/routes.go", "patch": "@@ -630,11 +630,10 @@ func ShowModelHandler(c *gin.Context) {\n \t\treturn\n \t}\n \n-\tvar model string\n \tif req.Model != \"\" {\n-\t\tmodel = req.Model\n+\t\t// noop\n \t} else if req.Name != \"\" {\n-\t\tmodel = req.Name\n+\t\treq.Model = req.Name\n \t} else {\n ...
2024-01-18T23:36:50
ggml-org/llama.cpp
6ab8eacddf50cda653b1e27521bd88945c41df1b
2d50b9d8cb6b6c0ef935809af61ad4958be47648
examples : add -kvu to batched usage example [no ci] (#17469) This commit adds the --kv-unified flag to the usage example in the README.md file for the batched example. The motivation for this is that without this flag the example will fail with the following error: ```console Hello my name is split_equal: sequential...
[ { "path": "examples/batched/README.md", "patch": "@@ -3,7 +3,7 @@\n The example demonstrates batched generation from a given prompt\n \n ```bash\n-./llama-batched -m ./models/llama-7b-v2/ggml-model-f16.gguf -p \"Hello my name is\" -np 4\n+./llama-batched -m ./models/llama-7b-v2/ggml-model-f16.gguf -p \"Hell...
2025-11-24T13:38:45
vuejs/vue
f76d16ed9507d4c2a90243ea3d77ccf00df29346
8fc6bc882708a725693b50a55f56cfde653ee48d
fix(vdom): Don't replace input for text-like type change (#6344) fix #6313
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -6,8 +6,6 @@\n *\n * modified by Evan You (@yyx990803)\n *\n-\n-/*\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n@@ -17,6 +15,7 @@ import config from '../config'\n impo...
2017-09-01T22:49:39
denoland/deno
70497bbf6a7e673b7f9f89b7a112c488fd20e11d
fd9def342d39cb660de815f760745ea0aacda4e5
fix(ext/node): make `setAutoPadding(false)` a no-op for GCM ciphers (#32290) ## Summary - GCM is a stream cipher mode that doesn't use block padding. In Node.js, `setAutoPadding()` is a no-op for GCM modes, but Deno was throwing `setAutoPadding(false) not supported for Aes128Gcm/Aes256Gcm yet` when called on GCM deci...
[ { "path": "ext/node_crypto/cipher.rs", "patch": "@@ -505,12 +505,6 @@ pub enum DecipherError {\n #[error(\"Failed to authenticate data\")]\n DataAuthenticationFailed,\n #[class(type)]\n- #[error(\"setAutoPadding(false) not supported for Aes128Gcm yet\")]\n- SetAutoPaddingFalseAes128GcmUnsupported,\n...
2026-03-02T13:54:58
huggingface/transformers
32a58e31463e238c967207bf73772490c353551a
6f6095e0cf509f7384d3ce0c1804013ef6cafd5f
🚨 Delete deprecations with end-cycle in v4.xx and v5.0 (#41681) * remove deprecations from v4 * delete those for v5 * delete these also * fix tests * add dummy test config * fix copies * SDPA raises warning but doesn't automatically change to eager * max size can't be deleted, sadly * oke, this should allow l...
[ { "path": "docs/source/en/model_doc/qwen2_5_omni.md", "patch": "@@ -136,7 +136,7 @@ inputs = processor.apply_chat_template(\n tokenize=True,\n return_dict=True,\n return_tensors=\"pt\",\n- video_fps=1,\n+ fps=1,\n \n # kwargs to be passed to `Qwen2-5-OmniProcessor`\n padding=True,\...
2025-11-14T09:26:16
ggml-org/llama.cpp
697edfeead9769d68387dec6884e0ecac23d2e4e
dbb852b549adf29609ec53b518f7922a982f14b9
ggml : remove dirty flag from version string (ggml/1391) This commit removes the "-dirty" suffix from the GGML version string. The motivation for this change is to ensure that the version string works with different ways of checking out ggml and using it in projects. By removing the dirty flag from the version string...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -25,16 +25,17 @@ if(GIT_EXE)\n )\n endif()\n \n-# Build the version string with optional dirty flag\n set(GGML_VERSION \"${GGML_VERSION_BASE}\")\n-if(GGML_GIT_DIRTY AND NOT GGML_GIT_DIRTY EQUAL 0)\n- set(GGML_VERSION \"${GGML_VERSION}-dirty\")\n-endif()\n...
2025-11-24T11:51:50
vuejs/vue
02f8b806768d70c589e646c384e592e93387b994
50257a58810a83b27316a793adf8d59a81ef3cf0
fix(ssr): fix cachedEscape memory issue close #6332
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { cachedEscape } from '../util'\n+import { escape } from '../util'\n \n import {\n isDef,\n@@ -50,7 +50,7 @@ export function renderAttr (key: string, value: string): string {\n } else if (isEnumera...
2017-09-01T22:08:12
denoland/deno
fd9def342d39cb660de815f760745ea0aacda4e5
84f7a15a880d296faa7a71b108579159952197f8
fix(node): support ECDSA with secp256k1 in `node:crypto` (#32390) ## Summary - Adds secp256k1 ECDSA support to `node:crypto` key generation, signing, verification, and key import/export (DER, PEM, JWK) - Adds `Secp256k1` variant to `EcPrivateKey`/`EcPublicKey` enums using the existing `k256` crate - Enables `ecdh`, `...
[ { "path": "Cargo.toml", "patch": "@@ -391,7 +391,7 @@ ed25519-dalek = \"2.1.1\"\n ed448-goldilocks = \"0.8.3\"\n elliptic-curve = { version = \"0.13.4\", features = [\"alloc\", \"arithmetic\", \"ecdh\", \"std\", \"pem\", \"jwk\"] }\n hkdf = \"0.12.3\"\n-k256 = \"0.13.1\"\n+k256 = { version = \"0.13.1\", fea...
2026-03-02T13:21:03
ggml-org/llama.cpp
dbb852b549adf29609ec53b518f7922a982f14b9
5f55c385cbff7bcee0901782dec6d01de53f4dfe
ggml-cpu: arm64: q4_K repack gemm and gemv implementations (i8mm) (#16739) * Enabled q4_K_8x8_q8_K path on ARM * wip: I8mm qs multiplication, pending bias * cpu : arm : REPACK gemm q4_K8x8 implementation Signed-off-by: Alberto Cabrera <alberto.cabrera@liquid.ai> * Guard gemm with proper features, improved superblo...
[ { "path": "ggml/src/ggml-cpu/arch-fallback.h", "patch": "@@ -51,10 +51,8 @@\n #elif defined(__aarch64__) || defined(__arm__) || defined(_M_ARM) || defined(_M_ARM64)\n // repack.cpp\n #define ggml_quantize_mat_q8_K_4x8_generic ggml_quantize_mat_q8_K_4x8\n-#define ggml_gemv_q4_K_8x8_q8_K_generic ggml_gemv_q4_...
2025-11-24T11:08:11
ollama/ollama
96cfb626415cd811ab545c134bd0d16fa7aca044
598d6d5572337afac759abf1995950866d96d044
fix: normalize name path before splitting
[ { "path": "server/modelpath.go", "patch": "@@ -46,6 +46,7 @@ func ParseModelPath(name string) ModelPath {\n \t\tname = after\n \t}\n \n+\tname = strings.ReplaceAll(name, string(os.PathSeparator), \"/\")\n \tparts := strings.Split(name, \"/\")\n \tswitch len(parts) {\n \tcase 3:", "additions": 1, "de...
2024-01-17T00:48:05
vuejs/vue
d6e6f1deb180a4f47e94496724623b9e6d8e08b3
d77b95317cedae299605fb692e2c7c67796b17cb
fix(v-model): Allow using array value with array v-model in checkboxes (#6220) fix #6219
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -93,7 +93,7 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$el.checked){$$i<0&&(${value}=$$a.con...
2017-09-01T21:35:41
ollama/ollama
d9bfb2f08fcb18cedc5a036216b770e24fd44006
598d6d5572337afac759abf1995950866d96d044
install: pin fedora to max 37 repos for fedora 38 and newer do not exist as of this commit ``` $ dnf config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/fedora38/x86_64/cuda-fedora38.repo Adding repo from: https://developer.download.nvidia.com/compute/cuda/repos/fedora38/x86_64/cuda-fed...
[ { "path": "scripts/install.sh", "patch": "@@ -231,8 +231,8 @@ if ! check_gpu nvidia-smi || [ -z \"$(nvidia-smi | grep -o \"CUDA Version: [0-9]*\\\n case $OS_NAME in\n centos|rhel) install_cuda_driver_yum 'rhel' $(echo $OS_VERSION | cut -d '.' -f 1) ;;\n rocky) install_cuda_driver_yum 'rh...
2024-01-16T19:45:12
denoland/deno
84f7a15a880d296faa7a71b108579159952197f8
4f22dcc1a0fbbd38474bd3774202ec3b7d47b3b2
fix(coverage): warn instead of erroring when source files are missing (#32398) When a source file is deleted after coverage was collected (e.g. a build artifact cleaned up before the report runs), `deno coverage` now prints a warning and skips the file instead of failing the entire report. Closes https://github.com/d...
[ { "path": "cli/tools/coverage/mod.rs", "patch": "@@ -620,7 +620,7 @@ pub fn cover_files(\n };\n let get_message = |specifier: &ModuleSpecifier| -> String {\n format!(\n- \"Failed to fetch \\\"{}\\\" from cache. Before generating coverage report, run `deno test --coverage` to ensure consistent s...
2026-03-02T13:20:28
ggml-org/llama.cpp
5f55c385cbff7bcee0901782dec6d01de53f4dfe
4902eebe33ed2341ef9bd7c80195bbd9d24f4d5f
ggml: add RISC-V cpu-feats (#17461) * ggml: add RISC-V cpu-feats Signed-off-by: Wang Yang <yangwang@iscas.ac.cn> * fix comment[1] --------- Signed-off-by: Wang Yang <yangwang@iscas.ac.cn>
[ { "path": "ggml/src/CMakeLists.txt", "patch": "@@ -328,6 +328,14 @@ function(ggml_add_cpu_backend_variant tag_name)\n set(GGML_INTERNAL_${feat} OFF)\n endforeach()\n \n+ foreach (feat ${ARGN})\n+ set(GGML_INTERNAL_${feat} ON)\n+ endforeach()\n+ elseif (GGML_SY...
2025-11-24T11:07:14
vuejs/vue
d77b95317cedae299605fb692e2c7c67796b17cb
06741f326625e2db78d092e586923b97ba006906
fix: handle special case for allowfullscreen on <embed> close #6202
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -64,7 +64,12 @@ function setAttr (el: Element, key: string, value: any) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key)\n } else {\n- el.setAttribute(key, key)\n+ // technically allowfullscreen is a boo...
2017-09-01T21:00:31
ollama/ollama
eef50accb425a1815625f496bc5b24d5211d5610
05d53de7a10fd95fc475c27b0235b8b51601c2ba
Fix show parameters (#2017)
[ { "path": "server/routes.go", "patch": "@@ -15,7 +15,6 @@ import (\n \t\"path/filepath\"\n \t\"reflect\"\n \t\"runtime\"\n-\t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n \t\"syscall\"\n@@ -668,27 +667,12 @@ func GetModelInfo(req api.ShowRequest) (*api.ShowResponse, error) {\n \tcs := 30\n \tfor k, v := range ...
2024-01-16T18:34:44
denoland/deno
4f22dcc1a0fbbd38474bd3774202ec3b7d47b3b2
b9f68895173ac6722006b38ab72268068cd4f284
fix(ext/node): use internal compileFunction binding in CJS wrap (#32373) Closes #32372 This PR replaces wrapping a CJS module into a function [here](https://github.com/denoland/deno/blob/0d2ef7c3b608350bda07279e845d8cabdedfac9e/ext/node/polyfills/01_require.js#L965-L968) with V8's [CompileFunction](https://v8.github....
[ { "path": "ext/node/lib.rs", "patch": "@@ -173,7 +173,6 @@ deno_core::extension!(deno_node,\n deps = [ deno_io, deno_fs ],\n parameters = [TInNpmPackageChecker: InNpmPackageChecker, TNpmPackageFolderResolver: NpmPackageFolderResolver, TSys: ExtNodeSys],\n ops = [\n- ops::assert::op_node_get_error_s...
2026-03-02T11:38:24
ggml-org/llama.cpp
4902eebe33ed2341ef9bd7c80195bbd9d24f4d5f
923ae3c61983e60a2324ae56b412be5b8b511a53
models : Added support for RND1 Diffusion Language Model (#17433) * Converted RND1 model to GGUF weights * RND1 llama.cpp support v1 * RND1 llama.cpp support v2 non causal bug * RND1 llama.cpp support v3 doccumentation * RND1 llama.cpp support v4 clean code * linting issues * RND1 pr fixes v1 * RND1 pr fixes v...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -4183,6 +4183,21 @@ def set_vocab(self):\n super().set_vocab()\n \n \n+@ModelBase.register(\"RND1\")\n+class RND1Model(Qwen2MoeModel):\n+ model_arch = gguf.MODEL_ARCH.RND1\n+\n+ def set_gguf_parameters(self):\n+ super().set_gguf_parameters...
2025-11-24T06:16:56
huggingface/transformers
6f6095e0cf509f7384d3ce0c1804013ef6cafd5f
c4cfc2e023392eb75d8735c3276c3a9ba7e4ffa5
Refactor weight loading (#41580) * ah actually we don't discard lm head if missing -> needs to be moved to correct device and etc * fix some tests * small fixes * up * up * dik why we tie weights twice but,..,,. * ups * removeunused * fix hunyuan * small fix * nits * ish * up * rev * fix more tie weights...
[ { "path": ".circleci/config.yml", "patch": "@@ -46,8 +46,8 @@ jobs:\n - run: uv pip install -U -e .\n - run: echo 'export \"GIT_COMMIT_MESSAGE=$(git show -s --format=%s)\"' >> \"$BASH_ENV\" && source \"$BASH_ENV\"\n - run: mkdir -p test_preparation\n- - run: py...
2025-11-13T16:12:52
vuejs/vue
06741f326625e2db78d092e586923b97ba006906
c371fbde9c1251bc225dddd682b32621a31f2548
fix: computed properties should not be cached during SSR ref: vuejs/vuex#877
[ { "path": "src/core/instance/state.js", "patch": "@@ -23,6 +23,7 @@ import {\n nativeWatch,\n validateProp,\n isPlainObject,\n+ isServerRendering,\n isReservedAttribute\n } from '../util/index'\n \n@@ -169,6 +170,8 @@ const computedWatcherOptions = { lazy: true }\n function initComputed (vm: Compon...
2017-09-01T16:51:29
denoland/deno
759546d4bcd3c7c4ff298825eb01c6c79845422a
610143913437ee07c935821c365e4feaff875228
test: add regression test for catching error in require(esm) (#32352) Another test case for https://github.com/denoland/deno/issues/32279
[ { "path": "tests/specs/run/npm_pkg_requires_esm_js/__test__.jsonc", "patch": "@@ -1,5 +1,14 @@\n {\n- \"args\": \"run -A main.js\",\n- \"output\": \"output.out\",\n- \"exitCode\": 1\n+ \"tests\": {\n+ \"esm_file_loaded_via_require\": {\n+ \"args\": \"run -A main.js\",\n+ \"output\": \"outpu...
2026-03-02T11:22:14
ggml-org/llama.cpp
fcb013847c2c983967e9d8c9a13b16829fb799e6
d5bc1ad11062563faa3e57320399c0938c4803fa
ggml-hexagon: Initial Hexagon v68/v69 support (#17394) * ggml-hexagon: fix build error with GCC Add stdexcept include to fix GCC build errors Signed-off-by: Mohamed Mediouni <mohamed@unpredictable.fr> * ggml-hexagon: check VTCM acquire failures Signed-off-by: Mohamed Mediouni <mohamed@unpredictable.fr> * ggml-he...
[ { "path": "ggml/src/ggml-hexagon/CMakeLists.txt", "patch": "@@ -43,6 +43,14 @@ set(HTP_CMAKE_ARGS\n -DHEXAGON_TOOLS_ROOT=$ENV{HEXAGON_TOOLS_ROOT}\n -DHEXAGON_HTP_DEBUG=${GGML_HEXAGON_HTP_DEBUG})\n \n+ExternalProject_Add(htp-v68\n+ SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/htp BUILD_ALWAYS ON\n+ C...
2025-11-24T00:54:49
huggingface/transformers
c4cfc2e023392eb75d8735c3276c3a9ba7e4ffa5
5c6d6bed4d2ed5ee3380c5003f61c500049b9dc5
[TP] Fix parameter detection issue and some invalid TP-plans (#42129) * fix * add test * fix test * fix the obvious * more fix * fix * continue to improve * more fix * more * fix * fix * finally * CI
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -140,6 +140,16 @@ def _blocks_to_block_sizes(total_size: int, blocks: int | list[int]) -> list[int\n return [single_size] * blocks\n \n \n+def replace_layer_number_by_wildcard(name: str) -> str:\n+ \"\"\"\n+ Replace the...
2025-11-13T14:44:56
vuejs/vue
0529040c17b8632032a43d142aac88386f6b4a1f
172dbf9faf4cb71dff72c77fdfe80fa1932d1ba3
fix: deep clone slot vnodes on re-render fix #6372
[ { "path": "src/core/instance/render.js", "patch": "@@ -78,9 +78,13 @@ export function renderMixin (Vue: Class<Component>) {\n } = vm.$options\n \n if (vm._isMounted) {\n- // clone slot nodes on re-renders\n+ // if the parent didn't update, the slot nodes will be the ones from\n+ // la...
2017-08-29T22:47:10
denoland/deno
610143913437ee07c935821c365e4feaff875228
64a1d86cb06dcdba20b8b95b75b7fd00b0a40649
fix(ci): fix ordering of platforms in ecosystem_compat_slack (#32393) Results for macOS and linux were swapped
[ { "path": "tools/ecosystem_compat_slack.ts", "patch": "@@ -135,7 +135,7 @@ function createMessage(ecosystemReports: Record<string, EcosystemReport>) {\n },\n ];\n \n- for (const os of [\"darwin\", \"linux\", \"windows\"]) {\n+ for (const os of [\"linux\", \"darwin\", \"windows\"]) {\n ...
2026-03-02T11:15:05
ggml-org/llama.cpp
d5bc1ad11062563faa3e57320399c0938c4803fa
0c7220db56525d40177fcce3baa0d083448ec813
ggml-hexagon: add `hex_supported_buffer` for better buffer supported check (#17212) * hexagon: add buffer support checks for hexagon sessions * refactor: simplify buffer support checks in hexagon operations * hexagon: update buffer support checks to use tensor structure * refactor: streamline buffer initialization ...
[ { "path": "ggml/src/ggml-hexagon/ggml-hexagon.cpp", "patch": "@@ -240,6 +240,23 @@ struct ggml_hexagon_session {\n uint32_t prof_pkts;\n };\n \n+static inline void hex_print_op_info(const ggml_tensor * op, ggml_hexagon_session * sess, const uint32_t req_flags) {\n+ char dims[64 * GGML_MAX_SRC...
2025-11-23T22:26:36
vuejs/vue
172dbf9faf4cb71dff72c77fdfe80fa1932d1ba3
f4ee63ca1059efcbdcacea9f6c1ce4e9433e2baf
fix(ssr): should also escape static text content fix #6345
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -22,8 +22,8 @@ import {\n applyModelTransform\n } from './modules'\n \n+import { escape } from 'web/server/util'\n import { optimizability } from './optimizer'\n-\n import type { CodegenResult } from 'compiler/codegen/index'\n \n export t...
2017-08-29T21:32:28
huggingface/transformers
5c6d6bed4d2ed5ee3380c5003f61c500049b9dc5
80134e6e663db962c30d0e45c54265b3141bc7c7
[`PEFT`] Fix the general test for prefix tuning (#42185) fix
[ { "path": "tests/utils/test_modeling_utils.py", "patch": "@@ -1818,6 +1818,8 @@ def test_cache_when_needed_at_train_time(self):\n self.assertTrue(model.training)\n \n # We can also disable the cache to skip a few operations, if the training loop doesn't need cache\n+ # NOTE: after #41...
2025-11-13T14:40:01
denoland/deno
64a1d86cb06dcdba20b8b95b75b7fd00b0a40649
cc8c488d03e2fe97fb6f90d2c13fc561a221a363
fix(coverage): correct line and branch counts in coverage reports (#32312) ## Summary Fixes three bugs in `deno coverage` that caused incorrect LCOV output (closes #9865): - **Line counts were inflated** due to summing all covering V8 ranges instead of using the innermost (most specific) range. V8 coverage ranges ar...
[ { "path": "cli/args/flags.rs", "patch": "@@ -1459,6 +1459,11 @@ static ENV_VARS: &[EnvVar] = &[\n description: \"Enable Node.js compatibility mode - extensionless imports, built-in\\nNode.js modules, CommonJS detection and more.\",\n example: None,\n },\n+ EnvVar {\n+ name: \"DENO_COVERAGE_DIR...
2026-03-02T11:09:31
vuejs/vue
59dbd4a414394a3ce581f9fbd9554da9af9e4b1d
a43d66743be2bd62b2398090663e41eeaf0dc75f
fix: ensure $attrs and $listeners are always objects (#6441) fix #6263
[ { "path": "flow/component.js", "patch": "@@ -29,8 +29,8 @@ declare interface Component {\n $slots: { [key: string]: Array<VNode> };\n $scopedSlots: { [key: string]: () => VNodeChildren };\n $vnode: VNode; // the placeholder node for the component in parent's render tree\n- $attrs: ?{ [key: string] : ...
2017-08-29T20:59:39
huggingface/transformers
80134e6e663db962c30d0e45c54265b3141bc7c7
ce40ca0d4c7d2e0a3f8bd3ddc30f29c6a105efb5
Update transformers to support `FqnToConfig` (#41894) * Update transformers to support `FqnToConfig` Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * add case for modulefqn * remove comment * update tests * cleanup * update * wip * wip * update quantizer_torchao for module default * fix unders...
[ { "path": "docs/source/en/quantization/torchao.md", "patch": "@@ -422,19 +422,19 @@ print(tokenizer.decode(output[0], skip_special_tokens=True))\n \n #### 1. Skip quantization for certain layers\n \n-With `ModuleFqnToConfig` we can specify a default configuration for all layers while skipping quantization f...
2025-11-13T13:34:45
denoland/deno
cc8c488d03e2fe97fb6f90d2c13fc561a221a363
59bec9b83ebe0241b813c8b93a280e879cc114a5
fix(node): implement process.umask properly (#32385) ## Summary - `process.umask()` was a stub that always returned `0o22` — now it actually gets/sets the process umask via `op_fs_umask` - Validates input with `parseFileMode` (supports numeric and octal string masks) - Masks off bits above `0o777` - Throws `ERR_WORKER...
[ { "path": "ext/fs/std_fs.rs", "patch": "@@ -43,12 +43,23 @@ impl FileSystem for RealFs {\n std::env::set_current_dir(path).map_err(Into::into)\n }\n \n- #[cfg(not(unix))]\n- fn umask(&self, _mask: Option<u32>) -> FsResult<u32> {\n- // TODO implement umask for Windows\n- // see https://github.c...
2026-03-02T11:00:05
ollama/ollama
3ca5f69ce889c4ba16086fbcfb388c4c940aa421
2ecb2472769ba0bb364aeeb109659750ad8153ce
Fix typo in arm mac arch script
[ { "path": "llm/generate/gen_darwin.sh", "patch": "@@ -18,7 +18,7 @@ case \"${GOARCH}\" in\n ;;\n \"arm64\")\n CMAKE_DEFS=\"-DCMAKE_SYSTEM_PROCESSOR=arm64 -DCMAKE_OSX_ARCHITECTURES=arm64 -DLLAMA_METAL=on ${CMAKE_DEFS}\"\n- ARHC=\"arm64\"\n+ ARCH=\"arm64\"\n ;;\n *)\n echo \"GOARCH must ...
2024-01-14T16:32:57
ggml-org/llama.cpp
028f93ef9819d1a039f97d74d72380c986cd69aa
8e9ddba610e8c86361e068117a1935cde94b8903
HIP: RDNA4 tensor core support for MMF (#17077) * mmf for rdna4 * align the padding for rdna4 * forbit mul_mat_f for rdna4 * fix as comment * remove device kernels * add constexpr for early return * update based on review comment * change based on the review comment * pass compile error * keep code consistenc...
[ { "path": "ggml/src/ggml-cuda/common.cuh", "patch": "@@ -224,6 +224,10 @@ static const char * cu_get_error_str(CUresult err) {\n #define AMD_MFMA_AVAILABLE\n #endif // defined(GGML_USE_HIP) && defined(CDNA) && !defined(GGML_HIP_NO_MMQ_MFMA)\n \n+#if defined(GGML_USE_HIP) && defined(RDNA4)\n+#define AMD_WMMA...
2025-11-21T23:03:24
vuejs/vue
a43d66743be2bd62b2398090663e41eeaf0dc75f
d4d553ced75d8c73e75b85cec398be4b09f6f669
fix(transition): consider async placeholder as valid child to return (#6369) fix #6256
[ { "path": "src/core/vdom/helpers/get-first-component-child.js", "patch": "@@ -1,12 +1,13 @@\n /* @flow */\n \n import { isDef } from 'shared/util'\n+import { isAsyncPlaceholder } from './is-async-placeholder'\n \n export function getFirstComponentChild (children: ?Array<VNode>): ?VNode {\n if (Array.isArr...
2017-08-29T20:09:20
huggingface/transformers
ce40ca0d4c7d2e0a3f8bd3ddc30f29c6a105efb5
6408d3b01a4b5446655c222daa0b947bddf7db82
[typo] fix mrope-interleave annotation to avoid ambiguity (#42177) * fix typo * fix qwen3omni
[ { "path": "src/transformers/models/qwen3_omni_moe/modeling_qwen3_omni_moe.py", "patch": "@@ -1292,7 +1292,7 @@ def forward(self, x, position_ids):\n def apply_interleaved_mrope(self, freqs, mrope_section):\n \"\"\"Apply interleaved MRoPE to 3D rotary embeddings.\n Reorganizes frequency l...
2025-11-13T13:07:14
denoland/deno
59bec9b83ebe0241b813c8b93a280e879cc114a5
77653251082b5b3d4aea2f62757a4b25155c3a31
fix(ext/node): make fsPromises.watch() a proper AsyncIterable with close() (#32378) ## Summary - The watcher returned by `node:fs/promises` `watch()` was a plain object with only `[Symbol.asyncIterator]`, missing `next()` and `return()` methods - The returned object now properly implements the `AsyncIterator` protocol...
[ { "path": "ext/node/polyfills/_fs/_fs_watch.ts", "patch": "@@ -171,26 +171,44 @@ export function watchPromise(\n });\n \n if (options?.signal) {\n- options?.signal.addEventListener(\"abort\", () => watcher.close());\n+ if (options.signal.aborted) {\n+ watcher.close();\n+ } else {\n+ o...
2026-03-02T10:48:08
ggml-org/llama.cpp
28175f857d21f7acb9bd060d61d8b073219fe59c
9cc4080441114bef1f2a13405a2a1f1d7b1ce6ca
cmake : add option to build and link BoringSSL (#17205) * cmake: add option to build and link BoringSSL Signed-off-by: Adrien Gallouët <angt@huggingface.co> * cmake : fix typo Signed-off-by: Adrien Gallouët <angt@huggingface.co> * cmake : disable boringssl test and asm by default Signed-off-by: Adrien Gallouët <a...
[ { "path": ".github/workflows/build.yml", "patch": "@@ -69,20 +69,15 @@ jobs:\n key: macOS-latest-cmake-arm64\n evict-old-files: 1d\n \n- - name: Dependencies\n- id: depends\n- continue-on-error: true\n- run: |\n- brew update\n- brew install cur...
2025-11-21T10:46:45
huggingface/transformers
6408d3b01a4b5446655c222daa0b947bddf7db82
f40ef032145c36387e26b7acd22f9a6a1811aee1
[`PEFT`] Fix prefix tuning (#41696) * fix * simplify * add my 2 cents
[ { "path": "src/transformers/masking_utils.py", "patch": "@@ -733,9 +733,19 @@ def _preprocess_mask_arguments(\n # If using a cache, it can give all information about mask sizes based on seen tokens\n if past_key_values is not None:\n kv_length, kv_offset = past_key_values.get_mask_sizes(cach...
2025-11-13T10:58:26
vuejs/vue
d4d553ced75d8c73e75b85cec398be4b09f6f669
41d774d112946f986bf0b0e3f30fd962c01ceba2
fix(v-model): avoid unnecessary change event on select options change fix #6193 via #6194
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -53,7 +53,14 @@ export default {\n const prevOptions = el._vOptions\n const curOptions = el._vOptions = [].map.call(el.options, getValue)\n if (curOptions.some((o, i) => !looseEqual(o, prevOptions[i]))) {\n- tri...
2017-08-29T16:52:19
denoland/deno
77653251082b5b3d4aea2f62757a4b25155c3a31
63ff522af860629fed247062c6157dd776af649b
fix(ext/node): return first created path from recursive "node:fs" mkdir call (#32300) ## Summary - Fix `fs.mkdir()`, `fs.mkdirSync()`, and `fs/promises.mkdir()` with `{ recursive: true }` to return the first directory path created, matching Node.js behavior - When all directories already exist, correctly returns `und...
[ { "path": "ext/node/polyfills/_fs/_fs_mkdir.ts", "patch": "@@ -5,12 +5,83 @@\n \n import type { CallbackWithError } from \"ext:deno_node/_fs/_fs_common.ts\";\n import { promisify } from \"ext:deno_node/internal/util.mjs\";\n-import { denoErrorToNodeError } from \"ext:deno_node/internal/errors.ts\";\n+import...
2026-03-02T10:39:11
ollama/ollama
2ecb2472769ba0bb364aeeb109659750ad8153ce
288ef8ff952e44eb86ae1471437543e8aa29651d
Fix intel mac build Make sure we're building an x86 ext_server lib when cross-compiling
[ { "path": "llm/dyn_ext_server.go", "patch": "@@ -75,7 +75,7 @@ func newDynExtServer(library, model string, adapters, projectors []string, opts\n \tupdatePath(filepath.Dir(library))\n \tlibPath := C.CString(library)\n \tdefer C.free(unsafe.Pointer(libPath))\n-\tresp := newExtServerResp(128)\n+\tresp := newEx...
2024-01-13T22:46:34
huggingface/transformers
5150dac727fa30fb066f5b495bb30539ef9a6a5f
27c3807991fbfb81cd74bcb852c5b39d05c78e20
Fix helper fn for new processor config format (#42085) * fix the helper fn for new processor config format * change the priority order * maybe we need to explicitly load and then decide * Apply suggestions from code review Co-authored-by: Pablo Montalvo <39954772+molbap@users.noreply.github.com> * use helper fn f...
[ { "path": "src/transformers/feature_extraction_utils.py", "patch": "@@ -39,6 +39,7 @@\n is_torch_dtype,\n logging,\n requires_backends,\n+ safe_load_json_file,\n )\n from .utils.hub import cached_file\n \n@@ -427,35 +428,42 @@ def get_feature_extractor_dict(\n feature_extractor_fi...
2025-11-13T09:06:24
vuejs/vue
f40da5dbf2f01b417a7487d15b43cfd3aeb02a8f
5091e2c9847601e329ac36d17eae90bb5cb77a91
fix(v-model) selected option not updated properly under IE11 (#6213) fix #6209
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -22,14 +22,7 @@ if (isIE9) {\n export default {\n inserted (el, binding, vnode) {\n if (vnode.tag === 'select') {\n- const cb = () => {\n- setSelected(el, binding, vnode.context)\n- }\n- cb()\n- /* istan...
2017-08-29T15:17:38
ollama/ollama
cf29bd2d72f70170ef7b5adf6d3e30ac6a23331c
3773fb646521b474d5a869d79f932a2484eb674c
fix: request retry with error this fixes a subtle bug with makeRequestWithRetry where an HTTP status error on a retried request will potentially not return the right err
[ { "path": "server/images.go", "patch": "@@ -1132,49 +1132,46 @@ func GetSHA256Digest(r io.Reader) (string, int64) {\n var errUnauthorized = fmt.Errorf(\"unauthorized\")\n \n func makeRequestWithRetry(ctx context.Context, method string, requestURL *url.URL, headers http.Header, body io.ReadSeeker, regOpts *R...
2024-01-12T21:32:24
denoland/deno
63ff522af860629fed247062c6157dd776af649b
d428817aa77df5dfbcb9e62c6f9240c8b2086ce4
fix(node): preserve AsyncLocalStorage context in stream.finished callback (#32389) ## Summary - Snapshots the async context when `eos()` (the implementation behind `stream.finished`) is called and restores it around the callback invocation - In Node.js this context propagation happens automatically through the native ...
[ { "path": "ext/node/polyfills/internal/streams/end-of-stream.js", "patch": "@@ -3,6 +3,7 @@\n \n import process from \"node:process\";\n import { primordials } from \"ext:core/mod.js\";\n+import { core } from \"ext:core/mod.js\";\n import imported1 from \"ext:deno_node/internal/errors.ts\";\n import { kEmpt...
2026-03-02T10:26:23
huggingface/transformers
27c3807991fbfb81cd74bcb852c5b39d05c78e20
ffb35fe14283d61cd5434a32d04d07993e66477a
[`Pop2Piano`] Fix cache usage (#42170) fix
[ { "path": "src/transformers/models/pop2piano/modeling_pop2piano.py", "patch": "@@ -750,7 +750,8 @@ def forward(\n position_bias,\n encoder_hidden_states,\n encoder_extended_attention_mask,\n- encoder_decoder_position_bias, # as a positional arg...
2025-11-13T08:19:56
denoland/deno
d428817aa77df5dfbcb9e62c6f9240c8b2086ce4
b4d4a5bc2192e4dcb3ae16319273d9ffa883c7d1
fix(jupyter): handle shutdown and interrupt requests per protocol (#32359) ## Summary - Send `shutdown_reply` on the control channel before exiting, with the `restart` field echoed back from the request - Handle `interrupt_request` by calling `v8::IsolateHandle::terminate_execution()` to actually interrupt running JS...
[ { "path": "cli/tools/jupyter/mod.rs", "patch": "@@ -180,12 +180,20 @@ pub async fn kernel(\n };\n let repl_session_proxy_channels = JupyterReplProxy { tx: tx1, rx: rx2 };\n \n+ let isolate_handle = repl_session_proxy\n+ .repl_session\n+ .worker\n+ .js_runtime\n+ .v8_isolate()\n+ .thread_...
2026-03-02T10:05:00
ggml-org/llama.cpp
21d31e0810d398f75ddd7d7c4cec9907a5576f26
dd0f3219419b24740864b5343958a97e1b3e4b26
ggml-hexagon: fix swiglu failure at `test-backend-ops` (#17344) * refactor: use hvx_vec_exp_fp32_guard_inf for overflow handling in hvx_exp_f32 * feat: add fast sigmoid function with overflow guard for fp32 * refactor: replace hvx_vec_inverse_fp32 with hvx_vec_inverse_fp32_guard_inf for improved overflow handling *...
[ { "path": "ggml/src/ggml-hexagon/htp/act-ops.c", "patch": "@@ -106,33 +106,32 @@ static void glu_swiglu_fp32_per_thread(const struct htp_tensor * src0,\n t1 = HAP_perf_get_qtimer_count();\n \n int is_aligned = 1;\n- int opt_path = 0;\n if (!htp_is_aligned((void *) src0->data, VLEN) || !htp_...
2025-11-20T23:45:05
huggingface/transformers
ffb35fe14283d61cd5434a32d04d07993e66477a
1fd63dd5328ba4fdc847831c32b618e321945e7e
Fix in-place modification of user-input in SAM2 embed boxes (#42173) * Do not modify boxes tensor in-place
[ { "path": "src/transformers/models/edgetam/modeling_edgetam.py", "patch": "@@ -600,7 +600,7 @@ def _embed_points(self, points: torch.Tensor, labels: torch.Tensor, pad: bool) -\n \n def _embed_boxes(self, boxes: torch.Tensor) -> torch.Tensor:\n \"\"\"Embeds box prompts.\"\"\"\n- boxes += 0...
2025-11-12T20:52:33
vuejs/vue
5091e2c9847601e329ac36d17eae90bb5cb77a91
0dc27dcdec72c1c2e12fb49fb95dceca45e84115
fix(ssr): address possible xss vector
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -50,7 +50,7 @@ export function renderAttr (key: string, value: string): string {\n } else if (isEnumeratedAttr(key)) {\n return ` ${key}=\"${isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true'}\"`\n } else if (!isFalsyAt...
2017-08-29T14:42:54
denoland/deno
b4d4a5bc2192e4dcb3ae16319273d9ffa883c7d1
9c81a2306081a63be4cdbb94b24a2437d0956945
fix:(ext/node): escape simple quotes in node:child_process (#32336)
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1284,13 +1284,15 @@ function transformDenoShellCommand(\n return a;\n })\n : result.deno_args.map((a) => {\n- // POSIX: args with shell variable refs use double quotes to\n- // preserve variable expansi...
2026-03-02T09:34:45
ggml-org/llama.cpp
054a45c3d313387a4becd5eae982285932852b35
4c91f2633f29a51ac2dcaa1c462483ea0ef6de8a
grammar: fix regression caused by #17381 (#17412) * grammar: fix regression caused by #17381 * more readable
[ { "path": "src/llama-grammar.cpp", "patch": "@@ -347,10 +347,10 @@ const char * llama_grammar_parser::parse_sequence(\n size_t last_sym_start = rule.size();\n const char * pos = src;\n \n- // use UINT64_MAX as the empty value because we aligned to the proper unsigned long type so -1 can't be used...
2025-11-20T17:35:10
huggingface/transformers
240d19f4a38087ac4fc38c396f57a9c63a45c187
ba938fa59049e365714c8dad0d12b7dbe59646b8
pin `pytest<9` for now (#42162) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "setup.py", "patch": "@@ -137,7 +137,7 @@\n \"psutil\",\n \"pyyaml>=5.1\",\n \"pydantic>=2\",\n- \"pytest>=7.2.0\",\n+ \"pytest>=7.2.0,<9.0.0\",\n \"pytest-asyncio>=1.2.0\",\n \"pytest-rerunfailures<16.0\",\n \"pytest-timeout\",", "additions": 1, "deletions": ...
2025-11-12T17:10:49
vuejs/vue
82f03de3328abde70493d2d3630137f23f140fcb
b5cc8b9e935897184ac43119bf5fbeca606f4b6a
fix-Firefox (#6359)
[ { "path": "src/core/util/env.js", "patch": "@@ -17,7 +17,7 @@ export const isAndroid = UA && UA.indexOf('android') > 0\n export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)\n export const isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge\n \n-// Firefix has a \"watch\" function on Object.prototype...
2017-08-13T12:53:17
denoland/deno
9c81a2306081a63be4cdbb94b24a2437d0956945
16b2029c7bc723d81115e48a7f362cb680c7659b
fix(ext/console): support iterators in console.table (#32379) ## Summary - Fix `console.table` to properly display data when given iterator objects (e.g., `map.entries()`, `map.values()`, `set.values()`) - Previously iterators rendered as empty tables because `ObjectKeys` returns nothing useful for iterator objects - ...
[ { "path": "ext/web/01_console.js", "patch": "@@ -3741,8 +3741,12 @@ class Console {\n let resultData;\n const isSetObject = isSet(data);\n const isMapObject = isMap(data);\n+ const isIteratorObject = !isSetObject && !isMapObject &&\n+ !ArrayIsArray(data) && typeof data[SymbolIterator] ==...
2026-03-02T08:34:03
ggml-org/llama.cpp
92c0b387a9301ad6f9a180898d970b9cd7831716
2286a360ff5c6b5edd33e53b5773bdf67bc25d23
grammar : fix integer overflow (#17381) * Fix DoS / integer overflow * Remove optional, use INT64_MAX instead as placeholder value (it's technically -1, so it fits :) * White space * Actually, since it's unsigned, use UINT64_MAX
[ { "path": "src/llama-grammar.cpp", "patch": "@@ -6,8 +6,10 @@\n \n #include <cmath>\n #include <algorithm>\n+#include <cstdint>\n #include <stdexcept>\n \n+#define MAX_REPETITION_THRESHOLD 2000\n //\n // helpers\n //\n@@ -345,7 +347,9 @@ const char * llama_grammar_parser::parse_sequence(\n size_t last_s...
2025-11-20T12:47:04
vuejs/vue
3d14e855e422b656859d1b419af43b94320fcfce
303655116f8ec78f3b0ac99569637ad868dfe246
fix: checkbox v-model="array" ignore false-value (#6180) close #6178
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -93,7 +93,7 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$c){$$i<0&&(${value}=$$a.concat($$v))...
2017-07-21T04:00:22
huggingface/transformers
ba938fa59049e365714c8dad0d12b7dbe59646b8
6744ebe745e049ed45feff685bcb1b5f9805ad31
fix(ci): unexpected keyword argument `streaming` (#42102) * debug(ci): run `pwd` to check what we're working with * fix(ci): `ls -lR` * fix(ci): remove working directory which should not be there? * fix(cb): make sure memory is freed when calling `stop` * fix(ci): effectively clear cache * fix(ci): reduce memory ...
[ { "path": ".github/workflows/benchmark.yml", "patch": "@@ -40,7 +40,6 @@ jobs:\n run: python3 -m pip install -r benchmark_v2/requirements.txt kernels\r\n \r\n - name: Reinstall transformers in edit mode (remove the one installed during docker image build)\r\n- working-directory: /transf...
2025-11-12T16:29:09
denoland/deno
16b2029c7bc723d81115e48a7f362cb680c7659b
9cf58520ee80dd88777d3a97e59800163697d1d2
fix(ext/node): handle emoji width correctly in readline (#32383) ## Summary - Characters with the Unicode `Emoji_Presentation` property (like ⚡ U+26A1) are rendered as width 2 in terminals, but `getStringWidth` was returning 1 since they aren't classified as East Asian Wide. This caused cursor positioning issues in `n...
[ { "path": "ext/node/polyfills/internal/util/inspect.mjs", "patch": "@@ -286,6 +286,8 @@ const ansiPattern = \"[\\\\u001B\\\\u009B][[\\\\]()#;?]*\" +\n \"|(?:(?:\\\\d{1,4}(?:;\\\\d{0,4})*)?[\\\\dA-PR-TZcf-ntqry=><~]))\";\n const ansi = new SafeRegExp(ansiPattern, \"g\");\n \n+const reEmojiPresentation = ne...
2026-03-02T08:33:38
ggml-org/llama.cpp
1d321e592bee0f83b0a248db9b5a8241745f25d1
196f5083efe636ceaf247aa4dca5593c6c2b743f
metal : fix compile on macos 11 (whisper/3533)
[ { "path": "ggml/src/ggml-metal/ggml-metal-ops.cpp", "patch": "@@ -11,6 +11,7 @@\n #include <cassert>\n #include <algorithm>\n #include <limits>\n+#include <cmath>\n \n static ggml_metal_buffer_id ggml_metal_get_buffer_id(const ggml_tensor * t) {\n if (!t) {", "additions": 1, "deletions": 0, ...
2025-11-20T11:54:54
vuejs/vue
303655116f8ec78f3b0ac99569637ad868dfe246
fc3d7cd7a93534d76840418467f303d4b301fbcd
fix(provide/inject): merge provide properly from mixins close #6175
[ { "path": "src/core/util/options.js", "patch": "@@ -85,7 +85,7 @@ export function mergeDataOrFn (\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this) : childVal,\n- parentVal.call(this)\n+ typeof parentVal === 'functi...
2017-07-21T01:47:52
ollama/ollama
7427fa138714580f74aafa9f08d7af5d16fa2fad
de2fbdec991ac52ff015818b19482fdff22e2deb
Fix up the CPU fallback selection The memory changes and multi-variant change had some merge glitches I missed. This fixes them so we actually get the cpu llm lib and best variant for the given system.
[ { "path": "gpu/gpu_darwin.go", "patch": "@@ -34,7 +34,7 @@ func GetGPUInfo() GpuInfo {\n \tmem, _ := getCPUMem()\n \tif runtime.GOARCH == \"amd64\" {\n \t\treturn GpuInfo{\n-\t\t\tLibrary: \"default\",\n+\t\t\tLibrary: \"cpu\",\n \t\t\tVariant: GetCPUVariant(),\n \t\t\tmemInfo: mem,\n \t\t}", "additions...
2024-01-11T22:43:16
huggingface/transformers
1709ed96e47f36fe926e2cd2556fa839b41c2afd
fd36275be2f3e56bc20da01f1f320b623b413957
[models] Add AudioFlamingo3 integration (#40290) * Audio Flamingo 3 initial integration * Added local Qwen * Moving to AF3 * Loading directly from HF * Formatting * add snapshot_download * Loading from hub * Import gating * Pass audio arrays directly * Remove requires_backend * Move constants to config.json ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1008,6 +1008,8 @@\n title: AltCLIP\n - local: model_doc/aria\n title: Aria\n+ - local: model_doc/audioflamingo3\n+ title: AudioFlamingo3\n - local: model_doc/aya_vision\n title: AyaVision\n - local: ...
2025-11-12T14:24:09
denoland/deno
9cf58520ee80dd88777d3a97e59800163697d1d2
0d2ef7c3b608350bda07279e845d8cabdedfac9e
fix(node): implement `resolveObjectURL` for `node:buffer` (#32382) ## Summary - Implement missing `resolveObjectURL` export from `node:buffer` (#30950) - Fix `blobFromObjectUrl` to use `new Blob()` instead of `webidl.createBranded(Blob)` so that returned blobs can call `arrayBuffer()`/`text()`/`bytes()` without hittin...
[ { "path": "ext/node/polyfills/buffer.ts", "patch": "@@ -13,6 +13,7 @@ export {\n isUtf8,\n kMaxLength,\n kStringMaxLength,\n+ resolveObjectURL,\n SlowBuffer,\n transcode,\n } from \"ext:deno_node/internal/buffer.mjs\";", "additions": 1, "deletions": 0, "language": "Unknown" }, { ...
2026-03-02T08:12:03
ggml-org/llama.cpp
196f5083efe636ceaf247aa4dca5593c6c2b743f
5088b435d47614b03d8e05d31f4dc693beb208ff
common : more accurate sampling timing (#17382) * common : more accurate sampling timing * eval-callback : minor fixes * cont : add time_meas impl * cont : fix log msg [no ci] * cont : fix multiple definitions of time_meas * llama-cli : exclude chat template init from time measurement * cont : print percentage o...
[ { "path": "common/common.cpp", "patch": "@@ -26,7 +26,6 @@\n #include <sstream>\n #include <string>\n #include <thread>\n-#include <unordered_map>\n #include <unordered_set>\n #include <vector>\n \n@@ -60,6 +59,14 @@\n #pragma warning(disable: 4244 4267) // possible loss of data\n #endif\n \n+common_time_me...
2025-11-20T11:40:10
vuejs/vue
fc3d7cd7a93534d76840418467f303d4b301fbcd
eb9168cfc1816b53ddb1eccd6310173a37803897
fix: work around IE/Edge bug when accessing document.activeElement from iframe close #6157
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -63,7 +63,11 @@ function shouldUpdateValue (\n function isDirty (elm: acceptValueElm, checkVal: string): boolean {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n...
2017-07-21T01:14:43
huggingface/transformers
fd36275be2f3e56bc20da01f1f320b623b413957
922e85487b496fb22f44b4a0b697f63726306c1d
handle inputs from Siglip/Siglip2 non-automapped encoder layers (#41930) * handle inputs from non-automapped encoder layers * correct inheritance + protect executorch * fixup * fix tests * missing docstring * attn support * fix initialization * reorder/simplify * flag test as broken * minor changes * modulaa...
[ { "path": "src/transformers/models/siglip/modeling_siglip.py", "patch": "@@ -678,9 +678,14 @@ def forward(\n )\n \n \n-class SiglipVisionTransformer(nn.Module):\n+class SiglipVisionTransformer(SiglipPreTrainedModel):\n+ _can_record_outputs = {\n+ \"hidden_states\": SiglipEncoderLayer,\n+ ...
2025-11-12T13:58:44
ggml-org/llama.cpp
5088b435d47614b03d8e05d31f4dc693beb208ff
845f200b2895f7b3d88c6a2503879f7b12f1eb10
convert : fix TypeError when loading base model remotely in convert_lora_to_gguf (#17385) * fix: TypeError when loading base model remotely in convert_lora_to_gguf * refactor: simplify base model loading using cache_dir from HuggingFace * Update convert_lora_to_gguf.py Co-authored-by: Sigbjørn Skjæret <sigbjorn.skj...
[ { "path": "convert_lora_to_gguf.py", "patch": "@@ -277,10 +277,15 @@ def parse_args() -> argparse.Namespace:\n return parser.parse_args()\n \n \n-def load_hparams_from_hf(hf_model_id: str) -> dict[str, Any]:\n+def load_hparams_from_hf(hf_model_id: str) -> tuple[dict[str, Any], Path | None]:\n+ from h...
2025-11-20T11:30:12
denoland/deno
9cab294be758e81037b128a05a13c4fd4fd35b30
6adddf9f89f1279bff7a7e9e588adbac6302f876
fix(cli): load multiple env files in the correct order (#32354) Closes #32350 Previously we reverse the env file orders because we're using `dotenvy` that as stated by their [docs](https://docs.rs/dotenvy/latest/dotenvy/fn.from_filename.html): > Where multiple declarations for the same environment variable exist in y...
[ { "path": "cli/util/watch_env_tracker.rs", "patch": "@@ -241,7 +241,7 @@ pub fn load_env_variables_from_env_files(\n return;\n };\n \n- for env_file_name in env_file_names.iter().rev() {\n+ for env_file_name in env_file_names.iter() {\n match deno_dotenv::from_path(env_file_name) {\n Ok(_)...
2026-03-01T15:50:03
huggingface/transformers
58a3f8caacdb95c6a9393ea9499defab89b0ae73
fcea1e1fe060bddf364a3936dded1ab1e23fdb33
fix test failure of speculative_generation on xpu (#42052) * fix test failure of speculative_generation on xpu Signed-off-by: Wang, Yi A <yi.a.wang@intel.com> * code refine Signed-off-by: Wang, Yi A <yi.a.wang@intel.com> * address review comment Signed-off-by: Wang, Yi A <yi.a.wang@intel.com> --------- Signed-o...
[ { "path": "src/transformers/masking_utils.py", "patch": "@@ -177,6 +177,42 @@ def prepare_padding_mask(\n return local_padding_mask\n \n \n+def _can_skip_causal_mask_xpu(\n+ padding_mask: Optional[torch.Tensor],\n+ query_length: int,\n+ kv_length: int,\n+ local_attention_size: Optional[int],...
2025-11-12T12:33:41
ollama/ollama
d2be6387c92e2c3ed3094e5a29793e5ae74a1425
d7af35d3d06ff9422808cf744b2ffcc0b2cdeeac
fix typo
[ { "path": "llm/payload_common.go", "patch": "@@ -76,7 +76,7 @@ func getDynLibs(gpuInfo gpu.GpuInfo) []string {\n \t\t}\n \t}\n \n-\t// Finaly, if we didn't find any matches, LCD CPU FTW\n+\t// Finally, if we didn't find any matches, LCD CPU FTW\n \tif len(dynLibs) == 0 {\n \t\tdynLibs = []string{availableDy...
2024-01-11T22:25:21
vuejs/vue
a8ac129a5876a7eeae0137bf2f1b0968d4d6ffad
9b4dbba384bc81a99abe429476729f80cb06d19a
fix: ensure looseEqual is not dependant on key enumeration order close #5908
[ { "path": "src/shared/util.js", "patch": "@@ -248,15 +248,31 @@ export function genStaticKeys (modules: Array<ModuleOptions>): string {\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\n-export function looseEqual (a: mixed, b: mixed): ...
2017-07-21T00:41:18
ggml-org/llama.cpp
845f200b2895f7b3d88c6a2503879f7b12f1eb10
a7784a8b1d8ceba27767bf48c92723ab3127c8a4
ggml : Fix transposed SOLVE_TRI result (#17323) * Did someone transpose the SOLVE_TRI result matrix? Perhaps... * Update ggml/src/ggml-cpu/ops.cpp Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> * Update ggml/src/ggml-cpu/ops.cpp Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> ------...
[ { "path": "ggml/src/ggml-cpu/ops.cpp", "patch": "@@ -9696,13 +9696,12 @@ static void ggml_compute_forward_solve_tri_f32(const struct ggml_compute_params\n for (int64_t i00 = 0; i00 < n; ++i00) {\n float sum = 0.0f;\n for (int64_t t = 0; t < i00; ++t) {\n- sum +...
2025-11-20T10:58:21
denoland/deno
2a04a3cdf54a5e8f04e0c8b11de937b6db671d79
8e5efb0509958ab5513b59c87cb83a98f1e897e6
fix(lsp): cross-scope requests (#32366)
[ { "path": "Cargo.lock", "patch": "@@ -10066,6 +10066,7 @@ dependencies = [\n \"anyhow\",\n \"console_static_text\",\n \"crossterm\",\n+ \"deno_path_util\",\n \"file_test_runner\",\n \"fluent-uri\",\n \"indexmap 2.9.0\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "...
2026-02-28T16:46:33