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
ollama/ollama
1f27d7f1b8bff58c63753ae2bb29de38454928d6
00aaa0590125a07dfd27b2b68fc44e0a99842d2b
fix stream errors
[ { "path": "api/client.go", "patch": "@@ -131,6 +131,10 @@ func (c *Client) stream(ctx context.Context, method, path string, data any, fn f\n \t\t\treturn fmt.Errorf(\"unmarshal: %w\", err)\n \t\t}\n \n+\t\tif errorResponse.Error != \"\" {\n+\t\t\treturn fmt.Errorf(\"stream: %s\", errorResponse.Error)\n+\t\t...
2023-07-20T19:12:08
rust-lang/rust
a8f8b8de66025e254cbed08a53d5084162605d98
dc37ff82e861428d537ae28e7b92296c4583fb5a
Fix "missing match arm body" suggestion involving `!` Include the match arm guard in the gated span, so that the suggestion to add a body is correct instead of inserting the body before the guard. Make the suggestion verbose. ``` error: `match` arm with no body --> $DIR/feature-gate-never_patterns.rs:43:9 | LL ...
[ { "path": "compiler/rustc_ast_passes/src/errors.rs", "patch": "@@ -804,7 +804,14 @@ pub(crate) struct NegativeBoundWithParentheticalNotation {\n pub(crate) struct MatchArmWithNoBody {\n #[primary_span]\n pub span: Span,\n- #[suggestion(code = \" => todo!(),\", applicability = \"has-placeholders\"...
2025-02-22T18:29:12
huggingface/transformers
dafe37025547597164e6d2efbfaff06f2404237c
c5f0288bc7d76f65996586f79f69fba8867a0e67
[DOCS] Fix typo for llava next docs (#29829) Fix typo for llava next docs
[ { "path": "docs/source/en/model_doc/llava_next.md", "patch": "@@ -101,7 +101,7 @@ print(processor.decode(output[0], skip_special_tokens=True))\n The model can be loaded in 8 or 4 bits, greatly reducing the memory requirements while maintaining the performance of the original model. First make sure to instal...
2024-03-23T18:32:31
rust-lang/rust
af40c23215dc9e82041dab9e6d40b376b88313e9
8cef0b68096c6bb9f4cd0579af236531b1493ee1
fix suggestion for assignments wrapped in parentheses under `needless_late_init`
[ { "path": "clippy_lints/src/needless_late_init.rs", "patch": "@@ -1,6 +1,6 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::path_to_local;\n-use clippy_utils::source::{SourceText, SpanRangeExt};\n+use clippy_utils::source::{SourceText, SpanRangeExt, snippet};\n use clippy_utils::t...
2025-02-07T07:40:10
ollama/ollama
09dc6273e3404cf6a3dfad3810a081b4226667bb
ebaa33ac2817e36b37f3c789ee30f4cf9cec957e
suppress error when running list before pulling image
[ { "path": "server/routes.go", "patch": "@@ -2,6 +2,7 @@ package server\n \n import (\n \t\"encoding/json\"\n+\t\"errors\"\n \t\"io\"\n \t\"log\"\n \t\"net\"\n@@ -163,6 +164,10 @@ func list(c *gin.Context) {\n \t}\n \terr = filepath.Walk(fp, func(path string, info os.FileInfo, err error) error {\n \t\tif err...
2023-07-20T18:53:09
ggml-org/llama.cpp
ca709e427b1c5cf0134aaabc9bbc0183f32d1df0
0cdce38a97bd05462416272fbb912f4d7ecd2940
CANN: add support for partial RoPE and Vision mode (#17543) * cann: add support for partial RoPE and Vision mode Add support for two important RoPE variants: partial rotation (rope_dims < ne0) and Vision mode rotation. 1. Support for partial RoPE (rope_dims < ne0): - Split tensor into head (first rope_dims dimens...
[ { "path": "ggml/src/ggml-cann/aclnn_ops.cpp", "patch": "@@ -2251,12 +2251,12 @@ static void aclnn_rope_cache_init(ggml_backend_cann_context & ctx,\n int sections[4],\n bool mrope_used,\n ...
2025-12-09T09:53:23
huggingface/transformers
c5f0288bc7d76f65996586f79f69fba8867a0e67
7e1413d16ab34dbfbdb0019735f7fa33a57c658f
[`SuperPoint`] Fix doc example (#29816) [SuperPoint] Fix doc example
[ { "path": "src/transformers/models/superpoint/modeling_superpoint.py", "patch": "@@ -423,7 +423,7 @@ def forward(\n Examples:\n \n ```python\n- >>> from transformers import AutoImageProcessor, AutoModel\n+ >>> from transformers import AutoImageProcessor, SuperPointForKeypointDe...
2024-03-22T16:04:30
golang/go
5c7748dc9de9c9e0a6844bf72faaf5b484004ba9
5ff5b3c5575afaa5f90c6a831dfadf3fabec516e
doc/go1.15: encoding/json's CL 191783 was reverted See golang.org/cl/240657, which reverted the original change to fix the regression reported in golang.org/issue/39427. Updates #37419. Change-Id: I39fbaa0b028ee00856cffea38879a631f540f057 Reviewed-on: https://go-review.googlesource.com/c/go/+/247718 Reviewed-by: And...
[ { "path": "doc/go1.15.html", "patch": "@@ -657,11 +657,6 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n \n <dl id=\"encoding/json\"><dt><a href=\"/pkg/encoding/json/\">encoding/json</a></dt>\n <dd>\n- <p><!-- CL 191783 -->\n- Decoding a JSON array into a slice no longer re...
2020-08-10T17:04:56
ggml-org/llama.cpp
0cdce38a97bd05462416272fbb912f4d7ecd2940
e39502e74b46c54b359ddbbefc9bba4f98704906
CUDA: fix FP16 overflow in tile FA kernel (#17875)
[ { "path": "ggml/src/ggml-cuda/fattn-tile.cuh", "patch": "@@ -564,6 +564,12 @@ static __device__ __forceinline__ void flash_attn_tile_iter(\n for (int i_KQ_0 = 0; i_KQ_0 < nbatch_fa; i_KQ_0 += np*warp_size) {\n const int i_KQ = i_KQ_0 + (threadIdx.y % np)*warp_size + threadIdx.x;\n \n+#if...
2025-12-09T08:34:02
ollama/ollama
ebaa33ac2817e36b37f3c789ee30f4cf9cec957e
6a19724d5f48b593a2519293b8485d528796ef7c
display gin api errors in cli
[ { "path": "api/client.go", "patch": "@@ -27,7 +27,7 @@ func checkError(resp *http.Response, body []byte) error {\n \terr := json.Unmarshal(body, &apiError)\n \tif err != nil {\n \t\t// Use the full body as the message if we fail to decode a response.\n-\t\tapiError.Message = string(body)\n+\t\tapiError.Erro...
2023-07-20T18:45:12
nodejs/node
eb08e3e5fb71d9f33ff97e1ce4605fbf5a60315c
5ca1c7a9c5e6a68675b21aeaa140895656b5ada2
test: replace common.fixturesDir with fixtures. Replaces the use of `common.fixturesDir` with the generic `fixtures` mechanism. PR-URL: https://github.com/nodejs/node/pull/15802 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com...
[ { "path": "test/parallel/test-fs-write-stream-encoding.js", "patch": "@@ -1,13 +1,14 @@\n 'use strict';\n const common = require('../common');\n const assert = require('assert');\n+const fixtures = require('../common/fixtures');\n const fs = require('fs');\n const path = require('path');\n const stream = re...
2017-10-06T16:23:23
huggingface/transformers
13b23704a831a7b2e4eb176d10b74817cee3944b
aa17cf986f0761382f3d6e591e985a42671c3fb7
Correct llava mask & fix missing setter for `vocab_size` (#29389) * correct llava mask * fix vipllava as wlel * mask out embedding for padding tokens * add test * fix style * add setter * fix test on suggestion
[ { "path": "src/transformers/models/llava/configuration_llava.py", "patch": "@@ -147,6 +147,10 @@ def vocab_size(self):\n )\n return self._vocab_size\n \n+ @vocab_size.setter\n+ def vocab_size(self, value):\n+ self._vocab_size = value\n+\n def to_dict(self):\n output ...
2024-03-22T11:57:08
golang/go
7ad776dda531ebd406e03d26b7eeed3a89321cc1
a93a4c178025b52be85c9eb4b9f2815716a62d11
doc/go1.15: document crypto/tls permanent error Fixes #40554 Change-Id: Icc71cb9bab3d1efaa8e586c71cc38bc1d0d1e676 Reviewed-on: https://go-review.googlesource.com/c/go/+/247698 Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
[ { "path": "doc/go1.15.html", "patch": "@@ -524,6 +524,17 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n fields <code>OCSPResponse</code> and <code>SignedCertificateTimestamps</code>\n are now repopulated on client-side resumed connections.\n </p>\n+\n+ <p><!-- CL ...
2020-08-10T15:31:22
ggml-org/llama.cpp
e39502e74b46c54b359ddbbefc9bba4f98704906
1d2a1ab73d927644d58f44235209affab7e4043e
llama : add token matching support to llama-grammar (#17816) * llama : add token support to llama-grammar * fix inverse token comment * refactor trigger_patterns to replay tokens instead of the entire string * add token documentation * fix test-llama-grammar * improve test cases for tokens
[ { "path": "grammars/README.md", "patch": "@@ -67,6 +67,30 @@ Parentheses `()` can be used to group sequences, which allows for embedding alte\n - `{m,n}` repeats the precedent symbol or sequence at between `m` and `n` times (included)\n - `{0,n}` repeats the precedent symbol or sequence at most `n` times (i...
2025-12-09T06:32:57
ollama/ollama
99ccf0c5d39420f3f1447536fa62ba3e624257db
d59b164fa2a336e16bd89024959f0a79350c13bd
fix broken link in `README.md`
[ { "path": "README.md", "patch": "@@ -82,7 +82,7 @@ ollama run mario\n Hello! It's your friend Mario.\n ```\n \n-For more info on `Modelfile` syntax see [this doc](./docs/modelfile).\n+For more examples, see the [examples](./examples) directory.\n \n ### Pull a model from the registry\n ", "additions": 1...
2023-07-20T09:15:11
nodejs/node
5ca1c7a9c5e6a68675b21aeaa140895656b5ada2
e0122299cf4ee7d97ca826a8f68eb799a5a56fe7
test: update test to use fixtures module Updated the test-http2-create-client-connect tests to use the test fixures module instead of the common module. PR-URL: https://github.com/nodejs/node/pull/15955 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Co...
[ { "path": "test/parallel/test-http2-create-client-connect.js", "patch": "@@ -5,9 +5,8 @@\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n-const fs = require('fs');\n+const fixtures = require('../common/fixtures');\n const h2 = require('http2');\n-const pat...
2017-10-06T17:04:29
huggingface/transformers
347916130c9d15f0fd62690dd3e58802917809f8
e68ff304194b4fba17cd13dc32fc3d3d61e9c0a7
Fix type hint for train_dataset param of Trainer.__init__() to allow IterableDataset. Issue 29678 (#29738) * Fixed typehint for train_dataset param in Trainer.__init__(). Added IterableDataset option. * make fixup
[ { "path": "src/transformers/trainer.py", "patch": "@@ -52,7 +52,7 @@\n from huggingface_hub import ModelCard, create_repo, upload_folder\n from packaging import version\n from torch import nn\n-from torch.utils.data import DataLoader, Dataset, RandomSampler, SequentialSampler\n+from torch.utils.data import ...
2024-03-22T10:46:14
ggml-org/llama.cpp
2fa51c19b028180b35d316e9ed06f5f0f7ada2c1
951520ddb05402bb8844509a7683d1a9a517dfc6
model-conversion : add token ids to prompt token output [no ci] (#17863) This commit adds the token ids to the printed prompt outputs. The motivation for this is that is can be useful to see the actual token ids alongside the token strings for debugging.
[ { "path": "examples/model-conversion/logits.cpp", "patch": "@@ -144,7 +144,7 @@ int main(int argc, char ** argv) {\n return 1;\n }\n std::string s(buf, n);\n- printf(\"%s\", s.c_str());\n+ printf(\"%s (%d)\", s.c_str(), id);\n }\n printf(\"\\n\");\n ", "...
2025-12-08T16:13:08
golang/go
a93a4c178025b52be85c9eb4b9f2815716a62d11
ba9e10889976025ee1d027db6b1cad383ec56de8
runtime: make nanotime1 reentrant Currently, nanotime1 (and walltime1) is not reentrant, in that it sets m.vdsoSP at entry and clears it at exit. If a signal lands in between, and nanotime1 is called from the signal handler, it will clear m.vdsoSP while we are still in nanotime1. If (in the unlikely event) it is signa...
[ { "path": "src/runtime/sys_linux_386.s", "patch": "@@ -222,7 +222,7 @@ TEXT runtime·mincore(SB),NOSPLIT,$0-16\n \tRET\n \n // func walltime1() (sec int64, nsec int32)\n-TEXT runtime·walltime1(SB), NOSPLIT, $0-12\n+TEXT runtime·walltime1(SB), NOSPLIT, $8-12\n \t// We don't know how much stack space the VDSO ...
2020-08-05T00:25:10
ollama/ollama
3b135ac96326a215c2406156d3280424c381af69
e6bae8d916d976d227489fe0daa57586472c6c4e
parser: fix case where multi line string termination error wouldnt show
[ { "path": "parser/parser.go", "patch": "@@ -62,10 +62,6 @@ func Parse(reader io.Reader) ([]Command, error) {\n }\n \n func scanModelfile(data []byte, atEOF bool) (advance int, token []byte, err error) {\n-\tif atEOF || len(data) == 0 {\n-\t\treturn 0, nil, nil\n-\t}\n-\n \tnewline := bytes.IndexByte(data, '...
2023-07-20T07:43:22
nodejs/node
bdf711dc62cb662b9390cd3d0b42e1c50582380d
5843b2c945c66d3c21541ae9d15b9fbd9dde6622
test: replace fixturesDir with common.fixtures PR-URL: https://github.com/nodejs/node/pull/16051 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
[ { "path": "test/parallel/test-internal-modules.js", "patch": "@@ -1,13 +1,13 @@\n 'use strict';\n-const common = require('../common');\n-const path = require('path');\n+require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n \n assert.throws(function() {...
2017-10-06T20:33:58
huggingface/transformers
fadb053379b3ef24c4ec8e6d7d58555af21f58db
b469ebc5cfd34846ab02e9038e60bc73b4c74a3a
Change in-place operations to out-of-place in LogitsProcessors (#29680) * change in-place -> out-of-place * add tests * add more tests * naming consistency * fix doctest * forgot min-length processors * empty * Revert "fix doctest" This reverts commit 4772768457f9bc057f1d4d9d67ea94eb7224eb8d. ...
[ { "path": "src/transformers/generation/logits_process.py", "patch": "@@ -151,11 +151,13 @@ def __init__(self, min_length: int, eos_token_id: Union[int, List[int]]):\n \n @add_start_docstrings(LOGITS_PROCESSOR_INPUTS_DOCSTRING)\n def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTens...
2024-03-21T16:37:33
ggml-org/llama.cpp
f896d2c34f7bb502c13986830b3ed7d85aac67d9
e4e9c4329c088d3aa97b8c242e18ff79bfe66248
server: improve speed of speculative decoding (#17808) * server: improve speed of speculative decoding * fix small draft case * add link to the PR * server : fix generation time measurement * server : fix draft acceptance logs (add SRV_CNT, SLT_CNT macros) * server : add comment * add PR to docs --------- Co-a...
[ { "path": "tools/server/README-dev.md", "patch": "@@ -81,6 +81,7 @@ For detailed instructions, see the [test documentation](./tests/README.md).\n - Separation of HTTP logic into dedicated files: https://github.com/ggml-org/llama.cpp/pull/17216\n - Large-scale code base split into smaller files: https://gith...
2025-12-08T13:35:28
golang/go
8370cbe64de345d4635e53202a04712ee6f777e5
d41b9066dad9091c55e2b6e6c48ceaee7dff1cf6
[dev.link] cmd/link: add PPC64 section splitting test Add a new PPC64-only linker test that does a build with the -debugppc64textsize debugging option (selecting a lower the threshold for text section splitting) to verify that no bugs have been introduced in the linker code that manages this process. Change-Id: Iea3f...
[ { "path": "src/cmd/link/internal/ld/ld_test.go", "patch": "@@ -134,3 +134,36 @@ func TestArchiveBuildInvokeWithExec(t *testing.T) {\n \t\tt.Errorf(\"expected '%s' in -v output, got:\\n%s\\n\", want, string(out))\n \t}\n }\n+\n+func TestPPC64LargeTextSectionSplitting(t *testing.T) {\n+\t// The behavior we're...
2020-07-08T15:02:51
ollama/ollama
ada0add89be0da299be3a59e52071be4ea6669e8
75e508e1d655cd4889c5cd3c77bbb933025c2f73
fix `llama` library templates
[ { "path": "library/modelfiles/llama2", "patch": "@@ -1,15 +1,19 @@\n FROM ../models/llama-2-7b-chat.ggmlv3.q4_0.bin\n \n-PROMPT \"\"\"\n-{{- if not .Context }}\n+TEMPLATE \"\"\"\n+{{- if .First }}\n <<SYS>>\n-You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while b...
2023-07-20T06:53:40
huggingface/transformers
ee38fc31fb8b50f6a1903c11622d5e1ba01d463b
5ffef2a9780aac5a5fc78ce0c999d4a5995104b2
Llama: always convert the causal mask in the SDPA code path (#29663) * always convert the mask * rebase and fix copies
[ { "path": "src/transformers/models/cohere/modeling_cohere.py", "patch": "@@ -1005,17 +1005,10 @@ def _update_causal_mask(self, attention_mask, input_tensor, cache_position):\n and attention_mask is not None\n and attention_mask.device.type == \"cuda\"\n ):\n- # TOD...
2024-03-21T16:30:18
nodejs/node
09d8b3576fbe473608e11c5045f42bb1d8df6137
d56f03caebfed3c29d0c5749e730fed126ab2b7f
test: improve coverage for 'internal/errors' PR-URL: https://github.com/nodejs/node/pull/16055 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yuta Hiroto <hello@a...
[ { "path": "test/parallel/test-internal-errors.js", "patch": "@@ -282,6 +282,20 @@ assert.strictEqual(\n 'Request path contains unescaped characters'\n );\n \n+// Test ERR_DNS_SET_SERVERS_FAILED\n+assert.strictEqual(\n+ errors.message('ERR_DNS_SET_SERVERS_FAILED', ['err', 'servers']),\n+ 'c-ares failed t...
2017-10-06T20:36:22
ggml-org/llama.cpp
636fc17a376dacc01da20d508e6986a299b1f819
51e0c2d917c21826585e84be1c27f75147325de0
Fix Kimi-K2 tool-call parsing issues (#17376) * Fix kimi-k2 parsing * fix template & add more tests for kimi-k2 * Another fix for Kimi-K2 chat template. * enable allow_toolcall_in_think for Kimi-K2 * Refine key-value separator and value end format * Enable tool call in think for kimi-k2 * allow_toolcall_in_think...
[ { "path": "common/chat-parser-xml-toolcall.cpp", "patch": "@@ -724,16 +724,10 @@ inline void parse_msg_with_xml_tool_calls(common_chat_msg_parser & builder, cons\n if (reasoning_unclosed) {\n if (auto pos = content.find(end_think); pos == std::string::npos && builder.pos() != builder.inp...
2025-12-08T13:32:04
golang/go
d41b9066dad9091c55e2b6e6c48ceaee7dff1cf6
18ee3498805f81ef7f3435800bc5581599c61872
[dev.link] cmd/link: add PPC64 debugging option to encourage text section splits Add a new debugging command line option (-debugppc64textsize=N) that forces the start of a new text section after ".text" hits N bytes as opposed to the architected limit of 2^26. This is intended to enable testing of the linker code path...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2247,37 +2247,52 @@ func assignAddress(ctxt *Link, sect *sym.Section, n int, s loader.Sym, va uint64\n \n \t// Only break at outermost syms.\n \n-\tif ctxt.Arch.InFamily(sys.PPC64) && ldr.OuterSym(s) == 0 && ctxt.IsExternal() && va-sect.Vaddr+funcs...
2020-07-07T16:54:46
ollama/ollama
7c6ea2a966bd7702922c81b05c7ea05bbcee67ba
c161aef5f970bc759c6241ec3d34e85324416190
fix dangling """
[ { "path": "docs/modelfile.md", "patch": "@@ -32,8 +32,6 @@ PARAMETER num_ctx 4096\n \n # Overriding the system prompt\n SYSTEM You are Mario from super mario bros, acting as an assistant.\n-\n-\"\"\"\n ```\n \n To use this:", "additions": 0, "deletions": 2, "language": "Markdown" } ]
2023-07-20T06:10:32
huggingface/transformers
73a73b415e36f41481369f6129cb4b62bb127a78
2ddceef9a2d1458918789c407286ed09d18e6ffd
[`LlavaNext`] Fix llava next unsafe imports (#29773) * path llava-next * styling * styling
[ { "path": "src/transformers/image_processing_utils.py", "patch": "@@ -748,6 +748,44 @@ def get_size_dict(\n return size_dict\n \n \n+def select_best_resolution(original_size: tuple, possible_resolutions: list) -> tuple:\n+ \"\"\"\n+ Selects the best resolution from a list of possible resolutions b...
2024-03-21T12:47:58
ggml-org/llama.cpp
5814b4dce18f9c5cbebef175e381a7b0ff147d72
79d61896d35f37b79f432ae935698c5459ba8a41
cuda: optimize SOLVE_TRI using registers and FMAF (#17703) * ggml-cuda: optimize solve_tri_f32_fast and fix stride handling - Switch from using shared memory for the RHS/solution matrix to a register-based approach (x_low, x_high), reducing shared memory pressure and bank conflicts. - Implement explicit `fmaf` instr...
[ { "path": "ggml/src/ggml-cuda/solve_tri.cu", "patch": "@@ -3,7 +3,6 @@\n #include \"solve_tri.cuh\"\n \n #define MAX_N_FAST 64\n-#define MAX_K_FAST 32\n \n // ======================\n // Fast Kernel (n <= 64, k <= 32) - Warp-based parallel reduction\n@@ -48,65 +47,58 @@ static __global__ void solve_tri_f32_...
2025-12-08T09:41:08
nodejs/node
d56f03caebfed3c29d0c5749e730fed126ab2b7f
6e1948ea06b5413c493c744b9409e7c6ef60c958
test: update fixturesDir to fixtures.readKey PR-URL: https://github.com/nodejs/node/pull/16016 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nieße...
[ { "path": "test/parallel/test-https-agent-servername.js", "patch": "@@ -5,12 +5,12 @@ if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const https = require('https');\n-const fs = require('fs');\n+const fixtures = require('../common/fixtures');\n \n const options = {\n- key: fs.readFileSync(`...
2017-10-06T18:55:39
golang/go
18ee3498805f81ef7f3435800bc5581599c61872
d9c19a7d3ea355cdf709fe6ec57ab158164a44d5
[dev.link] cmd/link: fix ppc64-specific bug in genelfsym The code in the the linker's genelfsym() routine was not properly including runtime.text.%d marker symbols that are emitted on PPC64 when a very large text section is split into chunks. This bug was introduced in CL 233338 when portions of asmb2() were converted...
[ { "path": "src/cmd/link/internal/ld/symtab.go", "patch": "@@ -180,12 +180,31 @@ func putelfsectionsym(ctxt *Link, out *OutBuf, s loader.Sym, shndx int) {\n func genelfsym(ctxt *Link, elfbind int) {\n \tldr := ctxt.loader\n \n-\t// Text symbols.\n+\t// runtime.text marker symbol(s).\n \ts := ldr.Lookup(\"run...
2020-07-08T14:43:42
huggingface/transformers
2ddceef9a2d1458918789c407286ed09d18e6ffd
fd734be1b626e664d5d8b0ac79efd2b900ae2633
Fix docker image build for `Latest PyTorch + TensorFlow [dev]` (#29764) * update * update --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "docker/transformers-all-latest-gpu/Dockerfile", "patch": "@@ -9,7 +9,7 @@ SHELL [\"sh\", \"-lc\"]\n # The following `ARG` are mainly used to specify the versions explicitly & directly in this docker file, and not meant\n # to be used as arguments for docker build (so far).\n \n-ARG PYTORCH='2.2.0...
2024-03-21T12:14:29
ollama/ollama
f2044b5838b867272417130c618e36809aa72b9d
d53988f6195e4e1afbe17f64d2966209e48d7152
web: fix newsletter signup
[ { "path": "web/app/api/signup/route.ts", "patch": "@@ -6,12 +6,22 @@ const analytics = new Analytics({ writeKey: process.env.TELEMETRY_WRITE_KEY || '\n export async function POST(req: Request) {\n const { email } = await req.json()\n \n- analytics.identify({\n- anonymousId: uuid(),\n+ const id = uuid...
2023-07-19T23:11:56
ggml-org/llama.cpp
08f9d3cc1d40169082ccf2416ebadb8a5afca9d9
0a540f9abd98915edb99fed47d80078ed8d2f343
Vulkan: improve mul_mat_vec_iq1_m (#16907) * Optimize Vulkan shader for matrix-vector multiplication * Revert changes on compute_outputs and main Refactor compute_outputs to handle remaining rows correctly. * Fix trailing whitespace
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_m.comp", "patch": "@@ -7,35 +7,85 @@ layout(local_size_x_id = 0, local_size_y = 1, local_size_z = 1) in;\n \n FLOAT_TYPE temp[NUM_COLS][NUM_ROWS];\n \n-void calc_superblock(const uint a_offset, const uint b_offset, const uint ib32, const uint i,...
2025-12-07T17:40:42
nodejs/node
6e1948ea06b5413c493c744b9409e7c6ef60c958
d2c0978831a863c854177c80a53e1039d04aa787
test: replace fixturesDir with common.fixtures PR-URL: https://github.com/nodejs/node/pull/15973 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Tobias Nie...
[ { "path": "test/parallel/test-http2-respond-file-fd.js", "patch": "@@ -1,19 +1,19 @@\n 'use strict';\n \n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n const http2 = require('http2');\n const assert = requ...
2017-10-06T17:22:27
rust-lang/rust
2ad3520d514d41eeb892652ea8da95323e1242ed
e479a9ff959df44e8b582834d123705e4b3477e1
fix: `too_long_first_doc_paragraph` suggests wrongly when first line too long
[ { "path": "clippy_lints/src/doc/too_long_first_doc_paragraph.rs", "patch": "@@ -51,7 +51,11 @@ pub(super) fn check(\n // We make this suggestion only if the first doc line ends with a punctuation\n // because it might just need to add an empty line with `///`.\n ...
2025-02-22T11:04:25
huggingface/transformers
fd734be1b626e664d5d8b0ac79efd2b900ae2633
691c3d7325ba77aa21c8e5295ac8955c3dee2b35
fix issue with logit processor during beam search in Flax (#29636) fix issue with logit processor in beam search in Flax
[ { "path": "src/transformers/generation/flax_utils.py", "patch": "@@ -911,7 +911,7 @@ def beam_search_body_fn(state, input_ids_length=1):\n # add new logprobs to existing running logprobs scores.\n log_probs = jax.nn.log_softmax(logits)\n log_probs = logits_processor(\n- ...
2024-03-21T11:27:03
golang/go
64fdc8b47a77d090def16d76ddf3522fac035a1e
b85033d153835c45cd4ee51046a34c1dac52f0e0
[dev.link] cmd/link: fix preallocation for function names This preallocation is way too large, and showed up in the metrics. Just remove it all together. Change-Id: Ib4646b63cd0a903656ada244f15e977cde2a2c4c Reviewed-on: https://go-review.googlesource.com/c/go/+/247177 Run-TryBot: Jeremy Faller <jeremy@golang.org> Try...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -104,7 +104,7 @@ func makePclntab(ctxt *Link, container loader.Bitmap) (*pclntab, []*sym.Compilat\n \tldr := ctxt.loader\n \n \tstate := &pclntab{\n-\t\tfuncNameOffset: make(map[loader.Sym]int32, ldr.NSym()),\n+\t\tfuncNameOffset: make(map[loader.Sy...
2020-08-06T13:54:54
ollama/ollama
10d502611fc815a9559b5baa8817d23551db8a91
7fe4103b946e8ee7a9ed834bbd6d1c274d480022
fix discord link in `README.md`
[ { "path": "README.md", "patch": "@@ -7,7 +7,7 @@\n \n # Ollama\n \n-![Discord](https://dcbadge.vercel.app/api/server/ollama?style=flat&compact=true)\n+[![Discord](https://dcbadge.vercel.app/api/server/ollama?style=flat&compact=true)](https://discord.gg/ollama)\n \n Create, run, and share large language mode...
2023-07-19T19:31:48
ggml-org/llama.cpp
d9e03db1e701e34ed0b764615025110041729864
db97837385edfbc772230debbd49e5efae843a71
sycl: add missing BF16 conversion support for Intel oneAPI (#17780) * sycl: add missing BF16 conversion support for Intel oneAPI * Fix Line 645: Trailing whitespace
[ { "path": "ggml/src/ggml-sycl/convert.cpp", "patch": "@@ -2,6 +2,13 @@\n #include \"dequantize.hpp\"\n #include \"presets.hpp\"\n \n+#if defined(__INTEL_LLVM_COMPILER)\n+ #if __has_include(<sycl/ext/oneapi/bfloat16.hpp>)\n+ #include <sycl/ext/oneapi/bfloat16.hpp>\n+ #define GGML_SYCL_HAS_BF...
2025-12-07T01:18:18
nodejs/node
d2c0978831a863c854177c80a53e1039d04aa787
1c97fa76f3e4f3832023a36f8c4b2eee1195fbbb
test: replace fixturesDir with common.fixtures PR-URL: https://github.com/nodejs/node/pull/15837 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "test/parallel/test-https-client-reject.js", "patch": "@@ -24,14 +24,14 @@ const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n+const fixtures = require('../common/fixtures');\n+\n const assert = require('assert');\n const https = require('https');\...
2017-10-06T16:40:18
huggingface/transformers
691c3d7325ba77aa21c8e5295ac8955c3dee2b35
9556054fb209bdb624ab18f0d66ed21005b88363
Allow `-OO` mode for `docstring_decorator` (#29689) Fixes ``` File "/nix/store/rv8xdwghdad9jv2w86b8g08kan9l6ksm-python3.11-transformers-4.38.2/lib/python3.11/site-packages/transformers/models/auto/configuration_auto.py", line 987, in <module> class AutoConfig: File "/nix/store/rv8xdwghdad9jv2w86b8g08kan9l6...
[ { "path": "src/transformers/models/auto/configuration_auto.py", "patch": "@@ -990,6 +990,9 @@ def _list_model_options(indent, config_to_class=None, use_model_types=True):\n def replace_list_option_in_docstrings(config_to_class=None, use_model_types=True):\n def docstring_decorator(fn):\n docstri...
2024-03-21T11:18:17
golang/go
ba9e10889976025ee1d027db6b1cad383ec56de8
027d7241ce050d197e7fabea3d541ffbe3487258
cmd: update golang.org/x/xerrors This pulls in CL 247217. Fixes #40573 Change-Id: I89eeebb5da9a4668adc6b5c5155651e5da421d59 Reviewed-on: https://go-review.googlesource.com/c/go/+/247186 Run-TryBot: Alexander Rakoczy <alex@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@...
[ { "path": "src/cmd/go.mod", "patch": "@@ -10,4 +10,5 @@ require (\n \tgolang.org/x/mod v0.3.0\n \tgolang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 // indirect\n \tgolang.org/x/tools v0.0.0-20200616133436-c1934b75d054\n+\tgolang.org/x/xerrors v0.0.0-20200806184451-1a77d5e9f316 // indirect\n )", "addit...
2020-08-06T18:57:38
ollama/ollama
f08c050e578101de11723fd797f15773bb8c4b89
4ca7c4be1fc0aeca41587ff6c74dd27e12ff54c7
fix page transitions flickering
[ { "path": "web/app/download/page.tsx", "patch": "@@ -1,3 +1,5 @@\n+import Image from 'next/image'\n+\n import Header from '../header'\n import Downloader from './downloader'\n import Signup from './signup'\n@@ -30,7 +32,7 @@ export default async function Download() {\n <>\n <Header />\n <mai...
2023-07-19T14:19:24
ggml-org/llama.cpp
db97837385edfbc772230debbd49e5efae843a71
017761daf5f543e3f064d956784a9c9421dc0b66
vulkan: perf_logger improvements (#17672) * vulkan: perf_logger improvements - Move perf_logger from device to ctx. - Add an env var to control the frequency we dump the stats. If you set a very large value, it just dumps when the ctx is destroyed. - Add a fusion info string to the tracking, only log one item per fus...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -777,11 +777,6 @@ struct vk_device_struct {\n std::unique_ptr<vk_memory_logger> memory_logger;\n #endif\n \n- // for GGML_VK_PERF_LOGGER\n- std::unique_ptr<vk_perf_logger> perf_logger;\n- vk::QueryPool query_pool;\n- int32_t num_...
2025-12-06T17:46:46
nodejs/node
1c97fa76f3e4f3832023a36f8c4b2eee1195fbbb
ee587f39ae44150e9105c7e401712e52cb9254fb
test: update 'fixturesDir' refs in a test file This was a task from Code & Learn at NINA17. PR-URL: https://github.com/nodejs/node/pull/15824 Reviewed-By: Ryan Graham <r.m.graham@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@...
[ { "path": "test/parallel/test-http-url.parse-https.request.js", "patch": "@@ -23,16 +23,16 @@\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n+const { readKey } = require('../common/fixtures');\n \n const assert = require('assert');\n const https = require...
2017-10-06T16:44:56
huggingface/transformers
9556054fb209bdb624ab18f0d66ed21005b88363
0639034a26e72842e6c6a2e1dae0e70d8991b52a
OWL-ViT box_predictor inefficiency issue (#29712) * Calculating box_bias at the start once, then reusing it at inference * Updating the compute_box_bias function for backwards compatibility * Caching compute_box_bias function * Bux fix * Update owlv2 accordingly to ensure repo consistency * Co-authored ...
[ { "path": "src/transformers/models/owlv2/modeling_owlv2.py", "patch": "@@ -16,9 +16,9 @@\n \n import warnings\n from dataclasses import dataclass\n+from functools import lru_cache\n from typing import Any, Dict, Optional, Tuple, Union\n \n-import numpy as np\n import torch\n import torch.utils.checkpoint\n ...
2024-03-21T11:17:45
golang/go
027d7241ce050d197e7fabea3d541ffbe3487258
6f08e89ec3280bf6577c2bdb01243cbeeb1a259d
encoding/binary: read at most MaxVarintLen64 bytes in ReadUvarint This CL ensures that ReadUvarint consumes only a limited amount of input (instead of an unbounded amount). On some inputs, ReadUvarint could read an arbitrary number of bytes before deciding to return an overflow error. After this CL, ReadUvarint retur...
[ { "path": "src/encoding/binary/varint.go", "patch": "@@ -106,20 +106,21 @@ var overflow = errors.New(\"binary: varint overflows a 64-bit integer\")\n func ReadUvarint(r io.ByteReader) (uint64, error) {\n \tvar x uint64\n \tvar s uint\n-\tfor i := 0; ; i++ {\n+\tfor i := 0; i < MaxVarintLen64; i++ {\n \t\tb,...
2020-08-04T15:45:32
ggml-org/llama.cpp
017761daf5f543e3f064d956784a9c9421dc0b66
c42712b056fb2cf03902ef57fd314c531e356965
ggml-zendnn : add ZenDNN backend for AMD CPUs (#17690) * ggml-zennn: add ZenDNN backend support * ggml-zendnn : address ZenDNN backend review fixes and suggestions * docs : apply blockquote syntax to ZenDNN docs --------- Co-authored-by: Manoj Kumar <mkumar@zettabolt.com>
[ { "path": "README.md", "patch": "@@ -276,6 +276,7 @@ Instructions for adding support for new models: [HOWTO-add-model.md](docs/develo\n | [MUSA](docs/build.md#musa) | Moore Threads GPU |\n | [CUDA](docs/build.md#cuda) | Nvidia GPU |\n | [HIP](docs/build.md#hip) | AMD GPU |\n+| [ZenDNN](docs/build.md#zendnn)...
2025-12-06T16:13:33
huggingface/transformers
0639034a26e72842e6c6a2e1dae0e70d8991b52a
5d1a58a6462a45a17380c2487ee733b2f6163c54
Fixed typo in quantization_config.py (#29766) Update quantization_config.py Fixed typo for clarity and correctness. previous: input time current: input type // changed time to type to fix the typo
[ { "path": "src/transformers/utils/quantization_config.py", "patch": "@@ -218,7 +218,7 @@ class BitsAndBytesConfig(QuantizationConfigMixin):\n This flag runs LLM.int8() with 16-bit main weights. This is useful for fine-tuning as the weights do not\n have to be converted back and forth...
2024-03-21T11:02:53
nodejs/node
e14fd570fdcbf1259f170847244697f7ce047605
d36433e1b6ce070026ccd14a341f7a564d58ad4b
test: replace common.fixturesDir in test-exception Replace common.fixturesDir with usage of the common.fixtures module in text-exception.js PR-URL: https://github.com/nodejs/node/pull/15964 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Gibson Fahnesto...
[ { "path": "test/inspector/test-exception.js", "patch": "@@ -1,13 +1,13 @@\n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n \n common.skipIfInspectorDisabled();\n \n const assert = require('assert');\n const { NodeInstance } = require('./inspector-hel...
2017-10-06T17:14:49
ollama/ollama
68df36ae509e5e2ad5909b810f5a263b0a54cd46
6e36f948df22beed4ced79c3a75f168978df6163
fix pull 0 bytes on completed layer
[ { "path": "api/client.go", "patch": "@@ -160,11 +160,11 @@ func (c *Client) Generate(ctx context.Context, req *GenerateRequest, fn Generate\n \t})\n }\n \n-type PullProgressFunc func(PullProgress) error\n+type PullProgressFunc func(ProgressResponse) error\n \n func (c *Client) Pull(ctx context.Context, req ...
2023-07-19T01:51:30
golang/go
6f08e89ec3280bf6577c2bdb01243cbeeb1a259d
f235275097eb68b36d171908cea6a0be23351a94
cmd/go: fix error stacks when there are scanner errors After golang.org/cl/228784 setLoadPackageDataError tries to decide whether an error is caused by an imported package or an importing package by examining the error itself to decide. Ideally, the errors themselves would belong to a specific interface or some other ...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -239,11 +239,25 @@ func (p *Package) setLoadPackageDataError(err error, path string, stk *ImportSta\n \t\terr = &NoGoError{Package: p}\n \t}\n \n+\t// Take only the first error from a scanner.ErrorList. PackageError only\n+\t// has room for one posit...
2020-08-04T17:24:37
ggml-org/llama.cpp
c42712b056fb2cf03902ef57fd314c531e356965
09c7c50e64c98adac452d090406b6e5f6c320a41
server: support multiple generations from one prompt (OAI "n" option) (#17775) * backend support * server: support multiple generations from one prompt (OAI "n" option) * fix invalid batch * format oai * clean up * disable ctx shift * add test * update comments * fix style * add n_cmpl to docs [no ci] * allo...
[ { "path": "tools/server/README.md", "patch": "@@ -493,6 +493,8 @@ Note for `multimodal_data` in JSON object prompts. This should be an array of st\n `n_keep`: Specify the number of tokens from the prompt to retain when the context size is exceeded and tokens need to be discarded. The number excludes the BOS...
2025-12-06T14:54:38
huggingface/transformers
ff841900e45763114d2417fb24ce29d950c6c956
8dd4ce6f2cea1316cb5bd5ccbd348310ced17856
[`BC 4.37 -> 4.38`] for Llama family, memory and speed (#29753) * attempt to fix * the actual fix that works with compilation! * this? * temporary update * nit? * dispatcg to memory efficient? * update both models that have static cache support * fix copies fix compile * make sure fix * fix...
[ { "path": "src/transformers/models/cohere/modeling_cohere.py", "patch": "@@ -274,9 +274,7 @@ def forward(\n attn_weights = torch.matmul(query_states, key_states.transpose(2, 3)) / math.sqrt(self.head_dim)\n \n if attention_mask is not None: # no matter the length, we just slice it\n- ...
2024-03-20T22:47:01
nodejs/node
d36433e1b6ce070026ccd14a341f7a564d58ad4b
be2a5b323e331aaef2991c7d7004f2ec833123f0
test: use fixtures.readKey in https-agent test PR-URL: https://github.com/nodejs/node/pull/15913 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-https-agent-create-connection.js", "patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n@@ -9,11 +10,9 @@ const https = require('http...
2017-10-06T16:56:47
golang/go
f235275097eb68b36d171908cea6a0be23351a94
f92337422ef2ca27464c198bb3426d2dc4661653
net/http: fix cancelation of requests with a readTrackingBody wrapper Use the original *Request in the reqCanceler map, not the transient wrapper created to handle body rewinding. Change the key of reqCanceler to a struct{*Request}, to make it more difficult to accidentally use the wrong request as the key. Fixes #4...
[ { "path": "src/net/http/transport.go", "patch": "@@ -100,7 +100,7 @@ type Transport struct {\n \tidleLRU connLRU\n \n \treqMu sync.Mutex\n-\treqCanceler map[*Request]func(error)\n+\treqCanceler map[cancelKey]func(error)\n \n \taltMu sync.Mutex // guards changing altProto only\n \taltProto at...
2020-07-28T19:49:52
huggingface/transformers
17e4467f0e8b131bb590ddc16a5ae8a410492e02
c78f57729f6f76fbe47c54ead0908978ac44d1f4
Fix docker image build (#29762) update Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/build-docker-images.yml", "patch": "@@ -59,7 +59,7 @@ jobs:\n \n latest-torch-deepspeed-docker:\n name: \"Latest PyTorch + DeepSpeed\"\n- runs-on: ubuntu-22.04\n+ runs-on: [intel-cpu, 8-cpu, ci]\n steps:\n - name: Cleanup disk\n run: |\n@@ -96,7 +96...
2024-03-20T18:17:26
ggml-org/llama.cpp
09c7c50e64c98adac452d090406b6e5f6c320a41
f334b79494008e8eac6b41edbb62639226394d82
ggml : add circular tiling support to pad, for Vulkan, CUDA, and CPU (used for making seamless textures) (#16985) * Feat: Added vulkan circular tiling support * Feat: Added cpu circular * Feat: Added cuda kernels * Added tests * Added tests * Removed non-pad operations * Removed unneded changes * removed backen...
[ { "path": "ggml/include/ggml.h", "patch": "@@ -2196,6 +2196,15 @@ extern \"C\" {\n int p2,\n int p3);\n \n+ // pad each dimension with values on the other side of the torus (looping around)\n+ GGML_API struct ggml_tensor * ggml_pad_circular(\n+...
2025-12-06T14:07:02
nodejs/node
be2a5b323e331aaef2991c7d7004f2ec833123f0
baa156f39dce577704aeba308a49f12be39bb992
deps: cherry-pick f4a2b7f3 from V8 upstream. Original commit message: should ignore asyncTask* with null In V8Debugger code we don't expect task_id == null, e.g. asyncTaskStartedForStepping will trigger debug break on null as task_id. Let's filter task_id == null out. This issue is originally fil...
[ { "path": "deps/v8/src/inspector/v8-inspector-impl.cc", "patch": "@@ -286,18 +286,22 @@ std::unique_ptr<V8StackTrace> V8InspectorImpl::captureStackTrace(\n \n void V8InspectorImpl::asyncTaskScheduled(const StringView& taskName, void* task,\n bool recurring) {\n+ if ...
2017-10-02T22:49:52
golang/go
b85033d153835c45cd4ee51046a34c1dac52f0e0
5c9b540378ed81fd45cc13f0a610bb29140e28ff
[dev.link] cmd/link: fix pclntab symbol handling on AIX On AIX, container symbols are handled in a weird way (unlike other platforms): the outer symbol needs to have size (but still no data), and the inner symbols must not be in the symbol table (otherwise it overlaps with the outer symbol, which the system linker doe...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1925,6 +1925,9 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \tldr.SetSymSect(ldr.LookupOrCreateSym(\"runtime.funcnametab\", 0), sect)\n \tldr.SetSymSect(ldr.LookupOrCreateSym(\"runtime.pclntab_old\", 0), sect)\n \tldr.SetSymSec...
2020-08-03T21:59:41
ggml-org/llama.cpp
f334b79494008e8eac6b41edbb62639226394d82
a28e3c7567ae2f064d663db7019ca2d5da73df55
HIP: fix RDNA3 FP16/BF16 matrix multiplication (#17817)
[ { "path": "ggml/src/ggml-cuda/mmf.cu", "patch": "@@ -160,9 +160,9 @@ bool ggml_cuda_should_use_mmf(enum ggml_type type, int cc, int warp_size, const\n case GGML_TYPE_F32:\n return ampere_mma_available(cc);\n case GGML_TYPE_F16:\n- return volta_mma_available(cc) || turi...
2025-12-06T12:45:36
huggingface/transformers
d91fd7f92c76be2b128d3a7b4b0e2d7435723af1
9d999481b2bb231de3c5980e407200bd0ce3ce4d
Add LLaVa-1.6, bis (#29586) * First draft * Fix tests, add docs * Improve docstrings * Fix test * Address comments * Address comments * Remove vocab_size attribute * Remove batch_size * Address comment * Add image processor tests * Support fx * Update docstring * Add support for 34b...
[ { "path": "README.md", "patch": "@@ -409,6 +409,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[LLaMA](https://huggingface.co/docs/transformers/model_doc/llama)** (from The FAIR team of Meta AI) released with the paper [LLaMA: Open and Efficient Foundation Langu...
2024-03-20T15:51:12
ollama/ollama
553fa39fe86ac7a3c69a391cfc97829f7e72dc77
3e10f902f5f5521e20b7c7110d9f7a8a30fa11c7
fix memory leak in create
[ { "path": "server/images.go", "patch": "@@ -3,7 +3,6 @@ package server\n import (\n \t\"bytes\"\n \t\"crypto/sha256\"\n-\t\"encoding/hex\"\n \t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n@@ -42,10 +41,9 @@ type Layer struct {\n \tSize int `json:\"size\"`\n }\n \n-type LayerWithBuffer struct {\n+ty...
2023-07-19T00:14:12
nodejs/node
baa156f39dce577704aeba308a49f12be39bb992
fabd618eef9a502eaad2d482f063f86bdd3f8d7e
test: add common.fixtures to https-req-split Replaced readFileSync with fixtures.readKey. PR-URL: https://github.com/nodejs/node/pull/15801 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cj...
[ { "path": "test/parallel/test-https-req-split.js", "patch": "@@ -21,6 +21,7 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n@@ -30,11 +31,10 @@ process.env.NODE_TLS_REJECT_UNAUTHORI...
2017-10-06T16:25:00
golang/go
f92337422ef2ca27464c198bb3426d2dc4661653
e49b2308a523c3bb69753caee2eacce41f097039
runtime/race: fix ppc64le build The .syso test also fails for ppc64le. Not sure why. For now, just disable the test for that architecture. The test really only needs to run on a single builder of any arch. Change-Id: I346cdc01ada09d43c4c504fbc30be806f59d5422 Reviewed-on: https://go-review.googlesource.com/c/go/+/2463...
[ { "path": "src/runtime/race/syso_test.go", "patch": "@@ -2,10 +2,10 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// +build !android,!js\n+// +build !android,!js,!ppc64le\n \n-// Note: we don't run on Android because if there is any non-r...
2020-08-01T19:55:47
ggml-org/llama.cpp
e31b5c55c3dbbf5c8e47c8dcb17ba92250f82303
21f24f27a9bd58e35ba2ba9a3366bfc660b1f095
webui: Fix context available value in Multi-model Router mode (#17804) * fix: Use context size from `/props?model=...` in ROUTER mode * chore: update webui build output
[ { "path": "tools/server/webui/src/lib/stores/chat.svelte.ts", "patch": "@@ -2,7 +2,11 @@ import { DatabaseService, ChatService } from '$lib/services';\n import { conversationsStore } from '$lib/stores/conversations.svelte';\n import { config } from '$lib/stores/settings.svelte';\n import { contextSize, isRo...
2025-12-06T12:23:29
huggingface/transformers
9d999481b2bb231de3c5980e407200bd0ce3ce4d
3c17c529cc87881c30ef0c49685a949c858c9985
Add correct batched handling for apply_chat_template (#29222) * Add correct batched handling for apply_chat_template * Fix warning method * Add error for incompatible options * expand tests * Add a skip for markuplm * Add skips for other layout models * Skip for LayoutLMv2 * Slightly update the wa...
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -1692,7 +1692,7 @@ def get_vocab(self) -> Dict[str, int]:\n \n def apply_chat_template(\n self,\n- conversation: Union[List[Dict[str, str]], \"Conversation\"],\n+ conversation: Union[List[Dict[str, str]], List[Li...
2024-03-20T15:50:22
nodejs/node
3aea4c884ba3b5fff1f497f1918be747a4aa3887
d6031bc1c6f6b5b630790cf916bebcfb51a948b1
src: fix ^ in stack trace with vm's columnOffset While VM module's columnOffset option does succeed in applying an offset to the column number in the stack trace, the wavy diagram printed does not account for potential offsets, resulting in erroneous location of `^` in the first line of the script. Before: ``` > vm....
[ { "path": "src/node.cc", "patch": "@@ -1731,6 +1731,7 @@ void AppendExceptionLine(Environment* env,\n }\n \n // Print (filename):(line number): (message).\n+ ScriptOrigin origin = message->GetScriptOrigin();\n node::Utf8Value filename(env->isolate(), message->GetScriptResourceName());\n const char*...
2017-10-04T03:51:12
ollama/ollama
820e581ad8bcc9e7134f87a8e9097ef2f7280877
d14785738e0192f68fcbc0d64091b59cc2faf702
web: fix typos and add link to discord
[ { "path": "web/app/header.tsx", "patch": "@@ -1,24 +1,24 @@\n-\n const navigation = [\n- { name: 'Github', href: 'https://github.com/jmorganca/ollama' },\n+ { name: 'Discord', href: 'https://discord.gg/MrfB5FbNWN' },\n+ { name: 'GitHub', href: 'https://github.com/jmorganca/ollama' },\n { name: 'Downloa...
2023-07-19T00:03:40
golang/go
e49b2308a523c3bb69753caee2eacce41f097039
10523c0efb908ab0ff4872a2e9e91b314d3d46ed
runtime/race: rebuild some .syso files to remove getauxval dependency We can't depend on getauxval because it only exists in glibc >= 2.16. Tsan has been updated to avoid that dependency (https://reviews.llvm.org/D84859). This CL rebuilds the affected .syso files, and adds a test to make sure we don't regress. Fixes ...
[ { "path": "src/runtime/race/README", "patch": "@@ -6,8 +6,8 @@ To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n race_darwin_amd64.syso built with LLVM 3496d6e4bea9cb99cb382939b7e79a50a3b863a5 and Go 553e003414d3aa90cc39830ee22f08453d9f3408.\n race_freebsd_amd64.syso built with LLVM 3496d...
2020-07-31T20:56:18
ggml-org/llama.cpp
7b43f5575399b18c7847efb665a3c1f16d5fcc2c
444f00b0ec814a071ce1b9dc0de5ea4b4850bd1b
ggml : improve error handling for search path existence checks (#17653) * Improve error handling for search path existence checks Refactor existence checks for search paths using std::error_code to handle potential errors. * Improve cache file existence check with error code Update fs::exists to use std::error_cod...
[ { "path": "ggml/src/ggml-backend-reg.cpp", "patch": "@@ -534,8 +534,12 @@ static ggml_backend_reg_t ggml_backend_load_best(const char * name, bool silent,\n fs::path best_path;\n \n for (const auto & search_path : search_paths) {\n- if (!fs::exists(search_path)) {\n- GGML_LOG_DEBUG...
2025-12-06T11:28:16
huggingface/transformers
11ef35e8281ccf38fe28c6ba6a38b565cc722585
870bbb4c6b3b3d731a1970e88a8084c739a571fa
Support sharded safetensors in TF (#29350) * Initial commit (still lots of unfinished bits) * (Still untested) add safetensors sharding to save_pretrained * Fix savetensors saving, update default shard size to match PT * Add proper loading of TF-format safetensors * Revert default size in case that changes...
[ { "path": "src/transformers/modeling_tf_pytorch_utils.py", "patch": "@@ -21,10 +21,24 @@\n \n import numpy\n \n-from .utils import ExplicitEnum, expand_dims, is_numpy_array, is_torch_tensor, logging, reshape, squeeze, tensor_size\n+from .utils import (\n+ ExplicitEnum,\n+ expand_dims,\n+ is_numpy_a...
2024-03-20T14:22:35
nodejs/node
ce4903426dac9b0c851cf8dba2511e3eebd5c352
1b358f1fde0efc83058e85c7767c4f78a8e6d723
doc: fix http2 API docs typos PR-URL: https://github.com/nodejs/node/pull/15778 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Lance Ball <lball@redhat.com> Reviewed-By: Bryan English <bryan@bryanenglish.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/http2.md", "patch": "@@ -372,7 +372,7 @@ const {\n \n const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' });\n req.on('response', (headers) => {\n- console.log(HTTP2_HEADER_STATUS);\n+ console.log(headers[HTTP2_HEADER_STATUS]);\n req.on('data', (chunk) => { /** .. **/ });\n ...
2017-10-05T13:14:39
golang/go
10523c0efb908ab0ff4872a2e9e91b314d3d46ed
7388956b76ce15a11346cebefcf6193db044caaf
doc/go1.15: fix a few trivial inconsistencies For #37419 Change-Id: I8ede539df5d5344aeb44ba1a7e2383363d92157f Reviewed-on: https://go-review.googlesource.com/c/go/+/245977 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.or...
[ { "path": "doc/go1.15.html", "patch": "@@ -655,8 +655,8 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"flag\"><dt><a href=\"/pkg/flag/\">flag</a></dt>\n <dd>\n <p><!-- CL 221427 -->\n- When the flag package sees <code>-h</code> or <code>-help</code>, and\n- ...
2020-07-31T03:02:55
ggml-org/llama.cpp
dbc15a79672e72e0b9c1832adddf3334f5c9229c
c6c5e859798163c2e41d848d1157438467a2a34a
convert: support Mistral 3 Large MoE (#17730) * convert: support Mistral 3 Large MoE * filter out vision tensors, add missing keys * handle vocab * add temperature_length * fix mscale_all_dim * clean up * Apply suggestions from code review Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> * fix *...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -1524,6 +1524,79 @@ def _set_vocab_interns1(self):\n special_vocab._set_special_token(\"bos\", 151643)\n special_vocab.add_to_gguf(self.gguf_writer)\n \n+ def _set_vocab_mistral(self):\n+ if not _mistral_common_installed:\n+ ...
2025-12-06T09:49:33
huggingface/transformers
870bbb4c6b3b3d731a1970e88a8084c739a571fa
76b3b20fb276e18998d4125742bbfd876d59d228
fix jinja2 package version check (#29754)
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -1819,7 +1819,7 @@ def _compile_jinja_template(self, chat_template):\n except ImportError:\n raise ImportError(\"apply_chat_template requires jinja2 to be installed.\")\n \n- if version.parse(jinja2.__version__)...
2024-03-20T13:51:16
nodejs/node
1b358f1fde0efc83058e85c7767c4f78a8e6d723
4552cf774d7fa203e02a4735959edd333f7a3ca4
doc: fix: correctly use `public key` instead of `private key` Although, as docs mention, private keys can be used instead of public keys, I presume that these parameter explanations should be corrected. Fixes: https://github.com/nodejs/node/issues/13633 PR-URL: https://github.com/nodejs/node/pull/16038 Reviewed-By: A...
[ { "path": "doc/api/crypto.md", "patch": "@@ -1714,8 +1714,8 @@ treated as the key with no passphrase and will use `RSA_PKCS1_PADDING`.\n added: v1.1.0\n -->\n - `publicKey` {Object | string}\n- - `key` {string} A PEM encoded private key.\n- - `passphrase` {string} An optional passphrase for the private ke...
2017-10-06T19:09:52
golang/go
7388956b76ce15a11346cebefcf6193db044caaf
b56791cdea5caa87ffcd585d29c294bd3d08a06a
cmd/cgo: fix mangling of enum and union types Consider this test package: package p // enum E { E0 }; // union U { long x; }; // void f(enum E e, union U* up) {} import "C" func f() { C.f(C.enum_E(C.E0), (*C.union_U)(nil)) } In Go 1.14, cgo translated this to (omitting irrelevant d...
[ { "path": "misc/cgo/test/test.go", "patch": "@@ -901,6 +901,12 @@ typedef struct S32579 { unsigned char data[1]; } S32579;\n // issue 38649\n // Test that #define'd type aliases work.\n #define netbsd_gid unsigned int\n+\n+// issue 40494\n+// Inconsistent handling of tagged enum and union types.\n+enum Enum...
2020-07-31T01:35:00
ggml-org/llama.cpp
8ce774a102cd1b24f06cb74c056d05415cddb08e
67788f68468e1d8c0da40d7015e2e8b704c42f8a
metal : fix build(#17799) * metal : fix build * tests : fix context destruction
[ { "path": "examples/save-load-state/save-load-state.cpp", "patch": "@@ -241,6 +241,12 @@ int main(int argc, char ** argv) {\n \n llama_batch_free(batch);\n \n+ // this one is managed by common_init_result\n+ //llama_free(ctx);\n+\n+ llama_free(ctx2);\n+ llama_free(ctx3);\n+\n if (result0...
2025-12-06T07:33:59
ollama/ollama
d14785738e0192f68fcbc0d64091b59cc2faf702
9e15635c2d891574de72e20ae16a22149f384d81
README typo fix (#106) * Fixed typo in README
[ { "path": "README.md", "patch": "@@ -59,7 +59,7 @@ Ollama includes a library of open-source, pre-trained models. More models are co\n | Llama2 | 7B | 3.8GB | `ollama pull llama2` |\n | Orca Mini | 3B | 1.9GB | `ollama pull orca` |\n | Vicuna | 7B | 3.8GB | `ol...
2023-07-18T23:24:57
huggingface/transformers
a1a7454107e5f005dc55c3f702d96517ad0beca4
8692aa88e2dce9b4195db29fff475091a8b625e2
fix galore layerwise with frozen params (#29743)
[ { "path": "src/transformers/optimization.py", "patch": "@@ -385,7 +385,8 @@ def scheduler_hook(param):\n scheduler_dict[param].step()\n \n for param in optimizer_dict.keys():\n- param.register_post_accumulate_grad_hook(scheduler_hook)\n+ if param.requires_grad:\...
2024-03-20T10:06:52
nodejs/node
4552cf774d7fa203e02a4735959edd333f7a3ca4
2da7d9b8207d9c35d199734da75fa2bb15f326b6
doc: fix incorrect vm.createContext usage In code example `vm.createContext` called with new operator by mistake. It is not a constructor. PR-URL: https://github.com/nodejs/node/pull/16059 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum ...
[ { "path": "doc/api/vm.md", "patch": "@@ -117,7 +117,7 @@ const sandbox = {\n \n const script = new vm.Script('count += 1; name = \"kitty\";');\n \n-const context = new vm.createContext(sandbox);\n+const context = vm.createContext(sandbox);\n for (let i = 0; i < 10; ++i) {\n script.runInContext(context);\n...
2017-10-07T00:28:37
rust-lang/rust
fe90883ef7124f5b9dae69374f9bfb37c9aebb8f
794c12416b2138064af1f2746646973fafd9419d
fix build regressions
[ { "path": "compiler/rustc_builtin_macros/src/autodiff.rs", "patch": "@@ -242,6 +242,7 @@ mod llvm_enzyme {\n defaultness: ast::Defaultness::Final,\n sig: d_sig,\n generics: Generics::default(),\n+ contract: None,\n body: Some(d_body),\n });\...
2025-02-22T02:45:29
ggml-org/llama.cpp
d8c0a7b085302017f6583dbb309e4da83084087a
933414c0b6f21af269bdb4fa2fa1b257b9c0fc53
vulkan: Fix mismatch in TOPK_MOE unit test (#17541) * Fix shader to support 2D workgroup mapping to a single subgroup * Set required_subgroup_size topk_moe shader requires static WARP_SIZE and actual subgroup size to match
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -4174,9 +4174,9 @@ static void ggml_vk_load_shaders(vk_device& device) {\n ggml_vk_create_pipeline(device, device->pipeline_conv2d_dw_cwhn_f16_f32, \"conv2d_dw_cwhn_f16_f32\", conv2d_dw_cwhn_f16_f32_len, conv2d_dw_cwhn_f16_f32_data, \"main\"...
2025-12-06T05:23:30
golang/go
b56791cdea5caa87ffcd585d29c294bd3d08a06a
10374e2435687a27ac99b2a19284f1aa0c7dc338
runtime: validate candidate searchAddr in pageAlloc.find Currently pageAlloc.find attempts to find a better estimate for the first free page in the heap, even if the space its looking for isn't necessarily going to be the first free page in the heap (e.g. if npages >= 2). However, in doing so it has the potential to r...
[ { "path": "src/runtime/mpagealloc.go", "patch": "@@ -233,16 +233,12 @@ type pageAlloc struct {\n \n \t// The address to start an allocation search with. It must never\n \t// point to any memory that is not contained in inUse, i.e.\n-\t// inUse.contains(searchAddr) must always be true.\n+\t// inUse.contains(...
2020-07-13T19:51:50
ollama/ollama
aa6714f25ca6ff4dedadccd8e1a661a0fdd56bdc
7f3a37aed42266111555d7bcbe075146da944c41
fix typo in `README.md`
[ { "path": "README.md", "patch": "@@ -27,7 +27,7 @@ ollama run llama2\n Hello! How can I help you today?\n ```\n \n-### Creating a model\n+### Creating a custom model\n \n Create a `Modelfile`:\n \n@@ -56,7 +56,7 @@ Ollama includes a library of open-source, pre-trained models. More models are co\n \n | Model...
2023-07-18T21:03:11
huggingface/transformers
8692aa88e2dce9b4195db29fff475091a8b625e2
243d0de9971d953b2a69636fba0420fb56cd42e4
fixed the issue of DPO trainer that using one node and mutiple GPUs and set the device_map='auto' (#29695) * fixed the issue of DPO trainer that using one node and mutiple GPUs * before update, add the assert * run the ruff formatter * Update src/transformers/trainer.py Thank you. Co-authored-by: Younes...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2124,6 +2124,10 @@ def _inner_training_loop(\n # if loss is nan or inf simply add the average of previous logged losses\n tr_loss += tr_loss / (1 + self.state.global_step - self._globalstep_last_logged)\n ...
2024-03-20T10:05:28
nodejs/node
2da7d9b8207d9c35d199734da75fa2bb15f326b6
4f339b54e9cd8a2cb69b41d87832ad8ca3a6b5e2
http2: near full http1 compatibility, add tests Extensive re-work of http1 compatibility layer based on tests in express, on-finished and finalhandler. Fix handling of HEAD method to match http1. Adjust write, end, etc. to call writeHead as in http1 and as expected by user-land modules. Add socket proxy that instead u...
[ { "path": "doc/api/errors.md", "patch": "@@ -802,6 +802,12 @@ SETTINGS. By default, a maximum number of un-acknowledged `SETTINGS` frame may\n be sent at any given time. This error code is used when that limit has been\n reached.\n \n+<a id=\"ERR_HTTP2_NO_SOCKET_MANIPULATION\"></a>\n+### ERR_HTTP2_NO_SOCKET...
2017-10-03T01:56:53
golang/go
365059e1d13c30c26ef0725becea2329f47cc16f
ba9c639470cb962a799116fea55c91638752fe87
[dev.link] cmd/link: add back SUNDEFEXT case The SUNDEFEXT case was lost during the refactoring. Add it back. Fix ppc64le build. Change-Id: I14594ee2c3e0a794c93839247fb3e6206c2e657a Reviewed-on: https://go-review.googlesource.com/c/go/+/245919 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -658,7 +658,7 @@ func ExtrelocViaOuterSym(ldr *loader.Loader, r loader.Reloc, s loader.Sym) loade\n \trs, off := FoldSubSymbolOffset(ldr, rs)\n \trr.Xadd = r.Add() + off\n \trst := ldr.SymType(rs)\n-\tif rst != sym.SHOSTOBJ && rst != sym.SDYNIMPORT ...
2020-07-30T18:35:51
ggml-org/llama.cpp
a0f3897d53e0e956982ca23abb0d381fe71722f8
e15cd06a94fce1fafe68f44db01ca69963623df4
vulkan: fix top_k bug when there are ties in the input (#17659) * vulkan: Reduce temporary memory usage for TOP_K - Compute row size for the temp buffer based on the output of the first pass. - Update shader addressing math to use the output row size - Pass the output row size as "ncols_output", what used to be "ncol...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -4013,7 +4013,7 @@ static void ggml_vk_load_shaders(vk_device& device) {\n uint32_t nary_shmem = 2 * sizeof(int) * BLOCK_SIZE +\n sizeof(int) * device->subgroup_size +\n ...
2025-12-05T21:03:19
ollama/ollama
7f3a37aed42266111555d7bcbe075146da944c41
7b0828035547413b0673c15085f57f072edf1d6b
fix typo
[ { "path": "README.md", "patch": "@@ -34,7 +34,7 @@ Create a `Modelfile`:\n ```\n FROM llama2\n PROMPT \"\"\"\n-You are super mario from super mario bros. Answer Mario, the assistant, only.\n+You are Mario from Super Mario Bros. Answer as Mario, the assistant, only.\n \n User: {{ .Prompt }}\n Mario:", "a...
2023-07-18T20:32:06
rust-lang/rust
3d5438accdd111b4e507bbfae5e2df6062fb5689
e1819a889a2606b79dc9cc790205da1497d617b7
Fix binding mode problems
[ { "path": "compiler/rustc_abi/src/lib.rs", "patch": "@@ -329,19 +329,19 @@ impl TargetDataLayout {\n [p] if p.starts_with('P') => {\n dl.instruction_address_space = parse_address_space(&p[1..], \"P\")?\n }\n- [\"a\", ref a @ ..] => dl.aggreg...
2025-02-20T18:28:48
huggingface/transformers
1a5c500f1232f5fd21caeab918b1534622926029
66ce9593fdb8e340df546ddd0774eb444f17a12c
Tests: Musicgen tests + `make fix-copies` (#29734) * make fix-copies * some tests fixed * tests fixed
[ { "path": "src/transformers/models/musicgen_melody/modeling_musicgen_melody.py", "patch": "@@ -1294,7 +1294,7 @@ def generate(\n )\n \n # 11. run greedy search\n- outputs = self.greedy_search(\n+ outputs = self._greedy_search(\n input_ids,\n ...
2024-03-20T07:45:53
nodejs/node
0c49038f88086dd4ad79e471aa730d3891acc443
fca6c5839a6154275913656dfedb3242959031e3
doc: fix YAML syntax in fs.md Fixes YAML parsing issues introduced in c8a2143. PR-URL: https://github.com/nodejs/node/pull/15769 Refs: https://github.com/nodejs/node/pull/15680 Reviewed-By: Lance Ball <lball@redhat.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>...
[ { "path": "doc/api/fs.md", "patch": "@@ -2339,10 +2339,10 @@ and `fs.unwatchFile()` when possible.\n <!-- YAML\n added: v0.4.2\n changes:\n- - version: v8.0.0\n+ - version: v8.0.0\n pr-url: https://github.com/nodejs/node/pull/11919\n- description: `NaN`, `Infinity`, and `-Infinity` are no longer v...
2017-10-04T16:24:23
golang/go
10374e2435687a27ac99b2a19284f1aa0c7dc338
7f8608047644ca34bad1728d5e2dbef041a1b3f2
testing: fix quotation marks Change-Id: I4b816e26718ef5521afba2b200a6333373b09c58 Reviewed-on: https://go-review.googlesource.com/c/go/+/245136 Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "src/testing/testing.go", "patch": "@@ -3,7 +3,7 @@\n // license that can be found in the LICENSE file.\n \n // Package testing provides support for automated testing of Go packages.\n-// It is intended to be used in concert with the ``go test'' command, which automates\n+// It is intended to be u...
2020-07-28T16:24:06
ggml-org/llama.cpp
fd57b24c0f2b28f54c1375481f470b8e589909eb
6ab0d6496074f51644def999f94686d1d939785e
ggml webgpu: unary op suppport, code refactoring, ops support (#17764) * Squashed commit of the following: commit b3c6bf4b0450d8d452b934df27a0fb7cb53cd755 Author: Abhijit Ramesh <abhijitramesh2k@gmail.com> Date: Mon Dec 1 18:29:00 2025 -0800 ggml webgpu: fix xielu parameter passing (#11) The XIELU operati...
[ { "path": "docs/ops.md", "patch": "@@ -12,111 +12,111 @@ Legend:\n - 🟡 Partially supported by this backend\n - ❌ Not supported by this backend\n \n-| Operation | BLAS | CANN | CPU | CUDA | Metal | OpenCL | SYCL | Vulkan | zDNN |\n-|-----------|------|------|------|------|------|------|------|------|------|...
2025-12-05T20:25:51