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 |
|---|---|---|---|---|---|
ggml-org/llama.cpp | 1743d9805706fba86e89bff1de0b6410dd56252d | 7ca0c9cca72061806ae48c9a90ef1311b2259a2c | mtmd: fix "v.patch_embd" quant and unsupported im2col ops on Metal for deepseek-ocr (#21027)
* mtmd: fix "v.patch_embd" quant and unsupported im2col ops on Metal for deepseek-ocr
* Update src/llama-quant.cpp
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-authored-by: Sigbjørn Skjæret <... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -7150,6 +7150,8 @@ def tensor_force_quant(self, name, new_name, bid, n_dims):\n return gguf.GGMLQuantizationType.F32\n if \".rel_pos_h\" in name or '.rel_pos_w' in name:\n return gguf.GGMLQuantizationType.F32\n+ if \".nec... | 2026-03-26T23:07:55 |
facebook/react | 5ed297fa74fb75d4b25d8b3e9dfa0608c23872aa | bf518c2b2cb09025c28c07c2686ee71585ace071 | [snap tester] Support @only / @skip with special file
---
Changes:
- Added `testfilter.txt`
```
// @only
call
capture-param-mutate
jsx-spread
```
or
```
// @skip
call
error.todo-kitchensink
```
- grouped all commands under `--mode`
```js
// runs all tests
yarn snap
// runs all te... | [
{
"path": "compiler/forget/.gitignore",
"patch": "@@ -6,3 +6,4 @@ package-lock.json\n .vscode\n !packages/playground/.vscode\n .spr.yml\n+testfilter.txt",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "compiler/forget/packages/snap/src/runner.ts",
"patch": "@@ -8... | 2023-04-25T18:36:06 |
golang/go | e8d95619978c4602d4446f113b3b69b7a22308fa | e06e29b9b4afbb30f5c77551ff8e6bdaafcf8e9b | crypto/x509: implement policy validation
Implement support for parsing the various policy related extensions,
and for validating the policy graph for chains.
Policy validation is only run if VerifyOptions.CertificatePolicies is
set. Policy validation is run after chains are built. If the computed
policy graph for a c... | [
{
"path": "api/next/68484.txt",
"patch": "@@ -0,0 +1,13 @@\n+pkg crypto/x509, type Certificate struct, InhibitAnyPolicy int #68484\n+pkg crypto/x509, type Certificate struct, InhibitAnyPolicyZero bool #68484\n+pkg crypto/x509, type Certificate struct, InhibitPolicyMapping int #68484\n+pkg crypto/x509, type ... | 2024-11-16T19:17:54 |
electron/electron | e589e9b259ecad5a2f2f47f0b8d40618d1c54601 | 86e746c36b20c54c8e77d3d65bc9470b247b232c | fix: fire show event when BrowserWindow shown via maximize() (#32979) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -580,11 +580,13 @@ void NativeWindowViews::SetEnabledInternal(bool enable) {\n \n #if BUILDFLAG(IS_LINUX)\n void NativeWindowViews::Maximize() {\n- if (IsVisible())\n+ if (IsVisible()) {\n widget()->Maximize();\n- else\n+ } else {\n ... | 2022-03-09T22:30:42 |
ggml-org/llama.cpp | a73bbd5d92ee16f0dcdf5c7db90b319fa4ed022e | ded446b34c0cd803a0122446b848619adbb458cf | mtmd: refactor image preprocessing (#21031)
* mtmd: refactor image pre-processing
* correct some places
* correct lfm2
* fix deepseek-ocr on server
* add comment to clarify about mtmd_image_preprocessor_dyn_size | [
{
"path": "tools/mtmd/CMakeLists.txt",
"patch": "@@ -5,6 +5,7 @@ find_package(Threads REQUIRED)\n add_library(mtmd\n mtmd.cpp\n mtmd-audio.cpp\n+ mtmd-image.cpp\n mtmd.h\n mtmd-helper.cpp\n mtmd-helper.h",
"additions": 1,
"deleti... | 2026-03-26T18:49:20 |
huggingface/transformers | 760eae30588036f09614ce09ec5d687faf1b595b | af496d74ca7d97e29defb3480cc831400e504387 | [Trainer] Move optimizer cls init to trainer_optimizer.py (#43738)
* update optimizer static method
* fix
* maybe this is a bit better ?
* update tests
* fix
* fix
* add api
* update
* let's remove for now
* Apply repo consistency fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@user... | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -18,7 +18,6 @@\n import contextlib\n import functools\n import glob\n-import importlib.metadata\n import inspect\n import json\n import math\n@@ -71,7 +70,7 @@\n MODEL_FOR_CAUSAL_LM_MAPPING_NAMES,\n MODEL_MAPPING_NAMES,\n )\n-from .optimization i... | 2026-02-10T14:26:43 |
facebook/react | bf518c2b2cb09025c28c07c2686ee71585ace071 | a8db941fb7de28f72e0725dee89b6a298683b3a7 | [snap tester] watch mode: ignore changes from test updates
A bit of a hack -
We currently trigger test runs when we detect changes in the test fixtures
directory. This trigger is also hit when we run `snap` in update mode, since
updating performs file writes.
This PR will ignore subscription changes (callbacks)... | [
{
"path": "compiler/forget/packages/snap/src/runner.ts",
"patch": "@@ -329,6 +329,15 @@ export async function main(opts: RunnerOptions): Promise<void> {\n // safe to use a cached compiler version\n let compilerVersion = 0;\n let isCompilerValid = false;\n+ let lastUpdate = -1;\n+\n+ functi... | 2023-04-25T18:15:25 |
electron/electron | ebfcf89a0b554804fc8707215752a1130dc10182 | 865a29ed17d498335790c2c6998578e1e76c5513 | fix: propagate unsafely-treat-insecure-origin-as-secure to renderer children (#33189)
* fix: propagate unsafely-treat-insecure-origin-as-secure to renderer children
* fix build | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -21,6 +21,7 @@\n #include \"base/no_destructor.h\"\n #include \"base/path_service.h\"\n #include \"base/stl_util.h\"\n+#include \"base/strings/strcat.h\"\n #include \"base/strings/string_number_conversions.h\"\n #include \"base/strings/strin... | 2022-03-09T15:15:50 |
golang/go | e06e29b9b4afbb30f5c77551ff8e6bdaafcf8e9b | e6977837fc3d7d187436c2e8c8ac88f044ab551f | os: allow for variant plan9 error messages in TestOpenError
Different Plan 9 file servers may return different error strings
on an attempt to open a directory for writing: EISDIR, EACCES or
EPERM. TestOpenError allows for the first two, but it needs to
allow for EPERM as well.
Fixes #70440
Change-Id: I705cc086e21630... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -1840,9 +1840,11 @@ func testOpenError(t *testing.T, dir string, rooted bool) {\n \t\t\t\texpectedErrStr := strings.Replace(tt.error.Error(), \"file \", \"\", 1)\n \t\t\t\tif !strings.HasSuffix(syscallErrStr, expectedErrStr) {\n \t\t\t\t\t// Some Plan 9 file serve... | 2024-11-19T12:15:26 |
ollama/ollama | 97fe45e36da2880bef95398fda711f09c3028998 | 64a9cc8f05c44a7267c73eaa8bd61ea077c5280a | server: add `OpenAI-Beta` header to CORS safelist
alphabetized the compat list and then added a single header
fixes: #9801 | [
{
"path": "server/routes.go",
"patch": "@@ -1152,17 +1152,18 @@ func (s *Server) GenerateRoutes(rc *ollama.Registry) (http.Handler, error) {\n \t\t\"X-Requested-With\",\n \n \t\t// OpenAI compatibility headers\n+\t\t\"OpenAI-Beta\",\n+\t\t\"x-stainless-arch\",\n+\t\t\"x-stainless-async\",\n+\t\t\"x-stainles... | 2025-04-14T22:36:10 |
ggml-org/llama.cpp | f8d4abae86740bed849c1d2a664dc4f56e35ff0a | 3d5acab3e774c3d30748d1e60093f19f0c80506e | convert : support Qwen3.5/Qwen3.5 Moe NVFP4 and add input scales (#20505)
* convert : fix Qwen3.5 NVFP4 conversion
* Updated copilot concerns and rebased
* move into _LinearAttentionVReorderBase and simplify
* --flake
* new_name not needed
* Added input_scale to gguf
* Fixed input_scale addition as tensor
* Add... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -486,15 +486,15 @@ def dequant_packed(w: Tensor, scale: Tensor, shape_tensor: Tensor, zero_point: T\n elif quant_method == \"modelopt\":\n # Mixed-precision ModelOpt models: NVFP4 tensors are handled by\n # _generate... | 2026-03-26T15:52:06 |
huggingface/transformers | 520fad98fe370c69807481e2cf2e2dce946f9374 | 44f92b63d8d5e704995533dae43d3cb7fe963a16 | Remove unnecessary code or checks for PT 2.4+ (#43787)
* Remove unnecessary code or checks for PT 2.4+
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* More fixes
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Format code
Signed-off-by: Y... | [
{
"path": "src/transformers/activations.py",
"patch": "@@ -257,7 +257,7 @@ def __init__(\n self._xielu_cuda_obj = torch.classes.xielu.XIELU()\n msg = \"Using experimental xIELU CUDA.\"\n try:\n- from torch._dynamo import allow_in_graph\n+ fro... | 2026-02-10T13:30:23 |
facebook/react | f87e97a0a67fa7cfd7e6f2ec985621c0e825cb23 | 25b99efe0c9c9d593c86829386c86740d409fa8c | Handle line endings correctly on Windows in build script for RN (#26727)
## Summary
We added some post-processing in the build for RN in #26616 that broke
for users on Windows due to how line endings were handled to the regular
expression to insert some directives in the docblock. This fixes that
problem, report... | [
{
"path": "scripts/rollup/packaging.js",
"patch": "@@ -148,9 +148,9 @@ function processGenerated(directory) {\n const originalContents = readFileSync(file, 'utf8');\n const contents = originalContents\n // Replace {@}format with {@}noformat\n- .replace(/(\\n\\s*\\*\\s*)@format\\b.*(\\n)/,... | 2023-04-25T16:26:34 |
electron/electron | 373a9053199f8881cdec7d44b8f3524d68ae8223 | 27527fe5ca790dc7061c6e816cc8b6ff72fe56d0 | fix: settings not persisting across devtools loads (#33120)
* fix: settings not persisting across devtools loads
* chore: remove redundant RegisterPreference impl | [
{
"path": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -86,13 +86,6 @@ const char kChromeUIDevToolsRemoteFrontendPath[] = \"serve_file\";\n const char kDevToolsBoundsPref[] = \"electron.devtools.bounds\";\n const char kDevToolsZoomPref[] = \"electron.devtools.zoom\";\n const char kDevToolsPr... | 2022-03-09T01:17:43 |
ollama/ollama | f50d691254e671e69975c4e54fc4d0469b538f10 | 34c3b68fc8a14eb5a93f6bdd175fa94e2e8fa12b | ggml: Fix memory leak on input tensors
For every forward pass through the model, we need to allocate input
tensors: tokens, images, positions, outputs and masks. These get
allocated in system memory.
However, when we close the context that the tensors were allocated
through, the metadata gets freed but the actual bac... | [
{
"path": "ml/backend/ggml/ggml.go",
"patch": "@@ -447,13 +447,16 @@ func (b *Backend) NewContextSize(n int) ml.Context {\n \t\tpanic(fmt.Errorf(\"requested number of graph nodes (%v) for new context exceeds maximum (%v)\", n, b.maxGraphNodes))\n \t}\n \n+\tvar allocatedBuffers []*C.struct_ggml_backend_buff... | 2025-04-08T19:11:55 |
ggml-org/llama.cpp | 3d5acab3e774c3d30748d1e60093f19f0c80506e | 9900b29c3abc5fa0b70dd5a3a68696912250d69a | convert : add RuGPT3XL (RuGPT3XLForCausalLM) support (#21011)
* Support of ruGPT3XL model added
* Update convert_hf_to_gguf.py
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* Update convert_hf_to_gguf.py
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* Update convert_hf_to_gguf.py... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -1311,6 +1311,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"b3d1dd861f1d4c5c0d2569ce36baf3f90fe8a102db3de50dd71ff860d91be3df\":\n # ref: https://huggingface.co/aari1995/German_Semantic_V3\n res = \"jina-v... | 2026-03-26T15:49:09 |
golang/go | c4e6ab9750e9d673a29203a9f41a517bcdc7a64c | 0edea47f264a4185d78e00e1e9e977d99f5c997b | cmd/compile: modify CSE to remove redundant OpLocalAddrs
Remove the OpLocalAddrs that are unnecessary in the CSE pass, so the
following passes like DSE and memcombine can do its work better.
Fixes #70300
Change-Id: I600025d49eeadb3ca4f092d614428399750f69bc
Reviewed-on: https://go-review.googlesource.com/c/go/+/62807... | [
{
"path": "src/cmd/compile/internal/ssa/cse.go",
"patch": "@@ -35,6 +35,8 @@ func cse(f *Func) {\n \ta := f.Cache.allocValueSlice(f.NumValues())\n \tdefer func() { f.Cache.freeValueSlice(a) }() // inside closure to use final value of a\n \ta = a[:0]\n+\to := f.Cache.allocInt32Slice(f.NumValues()) // the ord... | 2024-11-14T16:13:34 |
huggingface/transformers | 44f92b63d8d5e704995533dae43d3cb7fe963a16 | 6028dd2ba16f5bd51a7f0ca38099e7483821d8b7 | Update TrainingArguments (#43806)
* update test
* update
* update help
* change to tmp_trainer like trainer
* reorder
* fix
* fix
* Apply suggestion from @qgallouedec
Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com>
---------
Co-authored-by: Quentin Gallouédec <45557362+qgal... | [
{
"path": "src/transformers/training_args.py",
"patch": "@@ -107,26 +107,6 @@\n smp.init()\n \n \n-def get_int_from_env(env_keys, default):\n- \"\"\"Returns the first positive env value found in the `env_keys` list or the default.\"\"\"\n- for e in env_keys:\n- val = int(os.environ.get(e, \... | 2026-02-10T13:19:24 |
facebook/react | 25b99efe0c9c9d593c86829386c86740d409fa8c | ed545ae3d3478cd82aa498494025cb3a15188e4c | [DevTools] Add support for useMemoCache (#26696)
useMemoCache wasn't previously supported in the DevTools, so any attempt
to inspect a component using the hook would result in a
`dispatcher.useMemoCache is not a function (it is undefined)` error. | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -51,9 +51,19 @@ type Dispatch<A> = A => void;\n \n let primitiveStackCache: null | Map<string, Array<any>> = null;\n \n+type MemoCache = {\n+ data: Array<Array<any>>,\n+ index: number,\n+};\n+\n+type FunctionComponentUpdateQueue =... | 2023-04-25T16:19:25 |
ollama/ollama | bc108b9ad61da81a5d170e0f487b7603fbeb768f | ef65174df23fb2efb499a18d7071348cc0ec58da | ggml: Log filesystem errors
Sometimes loading the GGUF file fails with:
panic: context canceled
This is probably a filesystem error but it doesn't provide any
information about what happened. | [
{
"path": "ml/backend/ggml/ggml.go",
"patch": "@@ -332,6 +332,7 @@ func New(ctx context.Context, r *os.File, params ml.BackendParams) (ml.Backend,\n \t\t\t// seeking around within an FD shared between all goroutines.\n \t\t\tfile, err := os.Open(r.Name())\n \t\t\tif err != nil {\n+\t\t\t\tslog.Warn(\"file o... | 2025-04-10T18:55:05 |
electron/electron | e41c3e960dd3a53c1f423c746b7079abb4359841 | 076bc58b2a15ff18ab07d67e23864aa7b4a4a9eb | fix: non-client mouse events on WCO-enabled windows (#32871) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -113,3 +113,4 @@ fix_crash_when_saving_edited_pdf_files.patch\n port_autofill_colors_to_the_color_pipeline.patch\n build_disable_partition_alloc_on_mac.patch\n build_disable_thin_lto_on_mac.patch\n+fix_non-client_mouse_tracking_and_message_bubbling_on_wind... | 2022-03-08T21:06:20 |
ggml-org/llama.cpp | dc8d14c5821c4244800fbdf2baf84b0c801d6487 | 93dfbc1291406978bc0f565303e775a51a56f63e | fix(ggml): correct RISC-V ISA string canonical ordering for RVV in CMake (#20888)
Signed-off-by: ihb2032 <hebome@foxmail.com> | [
{
"path": "ggml/src/ggml-cpu/CMakeLists.txt",
"patch": "@@ -460,27 +460,32 @@ function(ggml_add_cpu_backend_variant_impl tag_name)\n endif()\n if(NOT GGML_CPU_ALL_VARIANTS)\n set(MARCH_STR \"rv64gc\")\n+ if (GGML_RVV)\n+ string(APPEND MARCH_STR \"v\")\n+... | 2026-03-26T11:08:41 |
golang/go | d306003ff8fa4d5fbbebdd2eb186137b6328dca4 | 3467a91c0b05dcfb54030ab50c708d0b935618a1 | crypto/tls: test with FIPS 140-3 TLS mode
For tests that are interested in testing the difference between TLS in
FIPS 140-3 required mode or otherwise two new helpers are introduced,
runWithFIPSEnabled and runWithFIPSDisabled. They take care of forcing
the correct TLS FIPS 140-3 state regardless of the overal GODEBUG=... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -715,14 +715,12 @@ func (t *tester) registerTests() {\n \n \t// Check that all crypto packages compile (and test correctly, in longmode) with fips.\n \tif fipsSupported() {\n-\t\t/* TODO(cpu): Restore in #629736\n \t\t// Test standard crypto packages with fips1... | 2024-11-21T01:09:50 |
huggingface/transformers | 6028dd2ba16f5bd51a7f0ca38099e7483821d8b7 | 6df88fab49ace487c105225a5859c9c21b69d68e | Fix old tech stack in doc (#43879) | [
{
"path": "docs/source/en/installation.md",
"patch": "@@ -20,7 +20,7 @@ rendered properly in your Markdown viewer.\n \n # Installation\n \n-Transformers works with [PyTorch](https://pytorch.org/get-started/locally/). It has been tested on Python 3.9+ and PyTorch 2.4+.\n+Transformers works with [PyTorch](htt... | 2026-02-10T13:02:46 |
facebook/react | 919620b2935ca6bb8dfc96204a7cf8754c006240 | 9ece58ebaa46f8b5e90a6ad71be4919e1dc9c563 | Add stub for experimental_useFormStatus (#26719)
This wires up, but does not yet implement, an experimental hook called
useFormStatus. The hook is imported from React DOM, not React, because
it represents DOM-specific state — its return type includes FormData as
one of its fields. Other renderers that implement sim... | [
{
"path": "packages/react-dom/index.classic.fb.js",
"patch": "@@ -31,6 +31,7 @@ export {\n unstable_createEventHandle,\n unstable_renderSubtreeIntoContainer,\n unstable_runWithPriority, // DO NOT USE: Temporarily exposed to migrate off of Scheduler.runWithPriority.\n+ useFormStatus as experimental_us... | 2023-04-25T00:18:34 |
ollama/ollama | 42ecb9f13896c5329764e1946ec3ab1aad2de0a1 | 5c0331fd83877a5a91ec216c6d40b7ceaa8ff51e | fix(scheduler): make model unload order deterministic (#10185) | [
{
"path": "server/sched.go",
"patch": "@@ -667,13 +667,19 @@ func (runner *runnerRef) waitForVRAMRecovery() chan any {\n \treturn finished\n }\n \n-type ByDuration []*runnerRef\n-\n-func (a ByDuration) Len() int { return len(a) }\n-func (a ByDuration) Swap(i, j int) { a[i], a[j] = a[j], a[i] }\n-func (... | 2025-04-09T23:01:02 |
electron/electron | 076bc58b2a15ff18ab07d67e23864aa7b4a4a9eb | b96f15bfc262edd88d5df8c3684484c894d08ce5 | fix: crash when showin item in folder on DevTools (#33024) | [
{
"path": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -175,6 +175,10 @@ GURL GetDevToolsURL(bool can_dock) {\n return GURL(url_string);\n }\n \n+void OnOpenItemComplete(const base::FilePath& path, const std::string& result) {\n+ platform_util::ShowItemInFolder(path);\n+}\n+\n constexpr b... | 2022-03-08T19:40:25 |
golang/go | a276c811a7c906d94ed5e468a17d277400e4e94b | 66abc557077c026cf21b228fe0f53afe652a4d1c | internal/copyright: close files
Fixes #70507
Change-Id: I2ab1f221ebd45fedc70d1fded29b084147eadd28
Reviewed-on: https://go-review.googlesource.com/c/go/+/630815
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Tim King <taking@google.com>
LUCI-TryBot-Resu... | [
{
"path": "src/internal/copyright/copyright_test.go",
"patch": "@@ -49,6 +49,7 @@ func TestCopyright(t *testing.T) {\n \t\t\tt.Error(err)\n \t\t\treturn nil\n \t\t}\n+\t\tdefer f.Close()\n \t\tn, err := f.Read(buf)\n \t\tif err != nil && err != io.EOF {\n \t\t\tt.Error(err)",
"additions": 1,
"deleti... | 2024-11-21T21:09:20 |
ggml-org/llama.cpp | 3cba8bba18462be32604a2c6a824cac400802587 | 112c78159f917c88ca08f74e67359599c3311829 | common : fix split model migration (#21019)
Sadly the manifest does not list all required files, i honestly thought
it was the case
Without the files listed we don't have the sha256, so if the first file
is valid, and all others have the correct size, then we can assume we
are good and do the migration...
Here my te... | [
{
"path": "common/hf-cache.cpp",
"patch": "@@ -325,9 +325,15 @@ hf_files get_repo_files(const std::string & repo_id,\n if (item[\"lfs\"].contains(\"oid\") && item[\"lfs\"][\"oid\"].is_string()) {\n file.oid = item[\"lfs\"][\"oid\"].get<std::string>();\n }\... | 2026-03-26T11:04:37 |
huggingface/transformers | 6df88fab49ace487c105225a5859c9c21b69d68e | 9b4de431b63b935365bccddfd9efe53604b442ea | Fix SwanLab callback to forward resume init args (#43848)
test: keep SwanLab env forwarding coverage | [
{
"path": "tests/trainer/test_trainer_callback.py",
"patch": "@@ -27,7 +27,8 @@\n import shutil\n import tempfile\n import unittest\n-from unittest.mock import patch\n+from types import SimpleNamespace\n+from unittest.mock import Mock, patch\n \n from transformers import (\n DefaultFlowCallback,\n@@ -41... | 2026-02-10T12:57:07 |
facebook/react | a8db941fb7de28f72e0725dee89b6a298683b3a7 | 4cf86028c0d6c73066dddb731b651cd07a96f290 | [snap tester] Handle interrupts by forking runner
Run snap tester on a forked node process so runs can be interrupted. (Currently,
`Ctrl+C` is not handled until after all test fixtures finish compiling). This
*feels* a bit heavy-handed, but main.ts is pretty small and doesn't do much
other than listen for input / ... | [
{
"path": "compiler/forget/package.json",
"patch": "@@ -14,7 +14,7 @@\n \"hash\": \"scripts/hash-dist.sh\",\n \"playground\": \"cd packages/playground && yarn && yarn dev\",\n \"test\": \"tsc && jest\",\n- \"snap\": \"node packages/snap/dist/runner.js\",\n+ \"snap\": \"node packages/snap/d... | 2023-04-24T23:09:40 |
ollama/ollama | 5c0331fd83877a5a91ec216c6d40b7ceaa8ff51e | e7019c94554e6d93bf216cb484c8c1c69df98fcb | Fix dockerfile. (#9855)
Signed-off-by: zhanluxianshen <zhanluxianshen@163.com> | [
{
"path": "Dockerfile",
"patch": "@@ -104,8 +104,8 @@ COPY --from=cuda-12 dist/lib/ollama/cuda_v12 /lib/ollama/cuda_v12\n FROM --platform=linux/arm64 scratch AS arm64\n COPY --from=cuda-11 dist/lib/ollama/cuda_v11 /lib/ollama/cuda_v11\n COPY --from=cuda-12 dist/lib/ollama/cuda_v12 /lib/ollama/cuda_v12\n-COP... | 2025-04-09T20:24:56 |
golang/go | c0bccdd2fd2a26c34b30ec93e64fa1ebe704dc10 | 4aa1c02daee42c37ddd30ae2aa91bd3fd3b72e77 | go/parser: fix typo in tracing output (make trace match function)
Change-Id: Ia79c7c8c4245b1ff8221296bc47bcba257e153e2
Reviewed-on: https://go-review.googlesource.com/c/go/+/630895
Reviewed-by: Tim King <taking@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
LU... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -793,7 +793,7 @@ func (p *parser) parseParamDecl(name *ast.Ident, typeSetsOK bool) (f field) {\n \t// TODO(rFindley) refactor to be more similar to paramDeclOrNil in the syntax\n \t// package\n \tif p.trace {\n-\t\tdefer un(trace(p, \"ParamDeclOrNil\"))\n+\t... | 2024-11-21T23:22:39 |
ggml-org/llama.cpp | 0fac87b157305eb82a70902327abffbbce25bd3e | 0a524f240456d7727570043f97757ea2c249003b | imatrix : fix crash when using --show-statistics with zero counts (#19532)
* imatrix: fix crash when using --show-statistics with zero counts
Fixes division by zero that caused floating point exceptions when processing imatrix files with zero count values. Added checks to skip zero counts and handle empty activation ... | [
{
"path": "tools/imatrix/imatrix.cpp",
"patch": "@@ -143,11 +143,20 @@ static void compute_statistics(std::vector<tensor_statistics> & tstats, const st\n activations.reserve(e.values.size());\n \n for (int i = 0; i < n_mat; ++i) {\n+ if (e.counts[i] == 0) {\n+ LOG_DBG(\"%s: skippin... | 2026-03-26T07:14:36 |
electron/electron | b96f15bfc262edd88d5df8c3684484c894d08ce5 | 3bc3896ee75df30883be05e064d6cbd7d74dd609 | fix: patches to use BUILDFLAG(IS_WIN) / BUILDFLAG(IS_MAC) checks (#33160) | [
{
"path": "patches/chromium/feat_add_data_transfer_to_requestsingleinstancelock.patch",
"patch": "@@ -19,7 +19,7 @@ instance, but also so the second instance can send back additional\n data to the first instance if needed.\n \n diff --git a/chrome/browser/process_singleton.h b/chrome/browser/process_singlet... | 2022-03-08T19:38:15 |
huggingface/transformers | 9b4de431b63b935365bccddfd9efe53604b442ea | 3b2abb8f7aab97efc51153478f02e86e2ea0e0dd | [`Jamba`] Fallback to slow path and warn instead of error out (#43889)
* fix
* style | [
{
"path": "src/transformers/models/jamba/modeling_jamba.py",
"patch": "@@ -328,8 +328,6 @@ def __init__(self, config: JambaConfig, layer_idx):\n self.activation = config.hidden_act\n self.act = ACT2FN[config.hidden_act]\n \n- self.use_fast_kernels = config.use_mamba_kernels\n-\n ... | 2026-02-10T12:35:45 |
facebook/react | 4cf86028c0d6c73066dddb731b651cd07a96f290 | 46752845eb5f2921869cccf00bf51c9156c818aa | [snap tester] Patch runner for sync mode
---
`yarn snap --sync` currently fails on `error.file-has-non-critical-errors`. This
is because we're relying on a globally overwritten `console.error` function to
report non-fatal errors. However, executing `Promise.all(...)` on a single
nodejs thread will interleave cal... | [
{
"path": "compiler/forget/packages/snap/src/runner.ts",
"patch": "@@ -99,28 +99,32 @@ async function run(compilerVersion: number): Promise<Results> {\n )\n ).sort();\n \n- // Note: promise.all to ensure parallelism when enabled\n- const entries: Array<[string, TestResult]> = await Promise.all(\n- ... | 2023-04-24T19:52:54 |
ollama/ollama | e7019c94554e6d93bf216cb484c8c1c69df98fcb | d98bfe7e7083f54e4c9065d4138f53bd47348761 | fix(integration): move waitgroup Add(1) outside goroutine to avoid potential issue (#10070)
Signed-off-by: googs1025 <googs1025@gmail.com> | [
{
"path": "integration/max_queue_test.go",
"patch": "@@ -52,8 +52,8 @@ func TestMaxQueue(t *testing.T) {\n \tembedCtx := ctx\n \n \tvar genwg sync.WaitGroup\n+\tgenwg.Add(1)\n \tgo func() {\n-\t\tgenwg.Add(1)\n \t\tdefer genwg.Done()\n \t\tslog.Info(\"Starting generate request\")\n \t\tDoGenerate(ctx, t, cl... | 2025-04-08T22:17:40 |
electron/electron | 3bc3896ee75df30883be05e064d6cbd7d74dd609 | a20216de7a1fe71057862aa429484e5f8af35537 | docs: fix documented return value for getFocusedWebContents (#33170) | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -35,7 +35,7 @@ for all windows, webviews, opened devtools, and devtools extension background pa\n \n ### `webContents.getFocusedWebContents()`\n \n-Returns `WebContents` - The web contents that is focused in this application, otherwise\n+Returns `WebContent... | 2022-03-08T19:15:05 |
golang/go | 4aa1c02daee42c37ddd30ae2aa91bd3fd3b72e77 | 0dafae13605409231f410d329c86269b19814caa | cmd/compile: refactor inline interleaving
This is intended to simplify future experiments/changes.
It does slightly change the fixedpoint order (across all
functions in a func+closures set or recursive set, but
that seems not to affect tests or benchmarks).
Change-Id: I80bcaabf277b317523e538f5fd4d2ff6dc08c033
Reviewe... | [
{
"path": "src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go",
"patch": "@@ -134,7 +134,7 @@ func init() {\n // <endpropsdump>\n // {\"Flags\":0,\"ParamFlags\":[0],\"ResultFlags\":[0]}\n // callsite: calls.go:141:19|0 flagstr \"\" flagval 0 score -24 mask 512 maskstr \"passInlinableFuncToIndCa... | 2024-11-18T19:55:12 |
ggml-org/llama.cpp | a970515bdb0b1d09519106847660b0d0c84d2472 | 056b50c319724ef4788da46c605673b94dc2374e | mtmd: Add DeepSeekOCR Support (#17400)
* mtmd: llama.cpp DeepSeekOCR support
init commit
* loading sam tensors
* mtmd: fix vision model processing
* deepseek-ocr clip-vit model impl
* mtmd: add DeepSeek-OCR LM support with standard attention
* mtmd: successfully runs DeepSeek-OCR LM in llama-cli
* mtmd: Fix RoPE... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -947,6 +947,9 @@ def load_hparams(dir_model: Path, is_mistral_format: bool):\n if \"thinker_config\" in config:\n # rename for Qwen2.5-Omni\n config[\"text_config\"] = config[\"thinker_config\"][\"text_config\"]\n+ if \"l... | 2026-03-25T18:57:40 |
huggingface/transformers | 3b2abb8f7aab97efc51153478f02e86e2ea0e0dd | 476600a9518bfe0ff07b471f334124a77836159c | [MistralCommonBackend] fix loading proc (#43887)
custom repr | [
{
"path": "src/transformers/tokenization_mistral_common.py",
"patch": "@@ -1589,6 +1589,18 @@ def _get_validation_mode(mode: str | ValidationMode) -> ValidationMode:\n raise ValueError(_invalid_mode_msg)\n return mode\n \n+ def __repr__(self) -> str:\n+ # MistralCommonBackend d... | 2026-02-10T12:32:22 |
facebook/react | 46752845eb5f2921869cccf00bf51c9156c818aa | a6769df6b11291d5c582a8f5783fcc7f2c61e9bb | [snap tester] QoL: help messages, cmd line validation, ts errors
---
Next PRs: skip / only tests, pretty diffing
This PR:
1. Add help messages:
```
$ node packages/snap/dist/runner.js --help
Options:
--version Show version number [boolean]
--sync Run c... | [
{
"path": "compiler/forget/packages/snap/src/runner.ts",
"patch": "@@ -14,8 +14,8 @@ import path from \"path\";\n import process from \"process\";\n import * as readline from \"readline\";\n import ts from \"typescript\";\n+import yargs from \"yargs\";\n import { hideBin } from \"yargs/helpers\";\n-import y... | 2023-04-24T19:52:52 |
ollama/ollama | dbb149e6f78673cc1c84e6527321c740d8d36a9a | a807985e598c7a905f563023e1f8ee04756e2e36 | ollamarunner: Preallocate worst case graph at startup
Currently, the KV cache and graph are lazily allocated as needed.
The cache is fully allocated on first use of the corresponding
layer whereas the graph grows with the size of the context.
This can be an issue if another application allocates more VRAM
after we do... | [
{
"path": "kvcache/cache.go",
"patch": "@@ -56,8 +56,9 @@ type Cache interface {\n \n \t// StartForward is called before the start of the model's forward pass.\n \t// For each token in the coming batch, there must be a corresponding\n-\t// entry in positions and seqs.\n-\tStartForward(ctx ml.Context, batch ... | 2025-04-03T19:50:20 |
huggingface/transformers | 476600a9518bfe0ff07b471f334124a77836159c | 884749a1f7d84678b30e8a4ba5e402d19bed457f | Fix GlmMoeDsaConfig default mlp_layer_types in modular conversion (#43876)
* Fix GlmMoeDsaConfig default mlp layer pattern
* fix(glm-moe-dsa): dedupe config init and colocate test
* Apply repo consistency fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | [
{
"path": "src/transformers/models/glm_moe_dsa/configuration_glm_moe_dsa.py",
"patch": "@@ -181,80 +181,17 @@ def __init__(\n index_topk: int | None = 2048,\n **kwargs,\n ):\n- self.hidden_size = hidden_size\n- self.intermediate_size = intermediate_size\n- self.num_h... | 2026-02-10T12:24:19 |
ggml-org/llama.cpp | 056b50c319724ef4788da46c605673b94dc2374e | f2c72b8f1f39ee189b8f4c161532080dbe8608f1 | common : fix verbosity setup (#20989)
The verbosity threshold was set at the end of common_params_parse_ex(),
after doing many things (like downloading files..)
Signed-off-by: Adrien Gallouët <angt@huggingface.co> | [
{
"path": "common/arg.cpp",
"patch": "@@ -423,6 +423,9 @@ static bool parse_bool_value(const std::string & value) {\n static bool common_params_parse_ex(int argc, char ** argv, common_params_context & ctx_arg) {\n common_params & params = ctx_arg.params;\n \n+ // setup log directly from params.verbos... | 2026-03-25T18:41:01 |
golang/go | 0dafae13605409231f410d329c86269b19814caa | f0b01092429a449313c9f54434417337ed26b20b | reflect: add test of maps with keys larger than key size
This finds the bug fixed in CL 630279.
reflect mutates the SwissMapType of a map[unsafe.Pointer]unsafe.Pointer,
which happened to already have the correct GroupSize for all of the maps
used in the reflect tests.
For #54766.
Change-Id: If4428e1e799598e7512edce... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -6309,6 +6309,32 @@ func TestMapOfGCKeys(t *testing.T) {\n \t}\n }\n \n+// Test assignment and access to a map with keys larger than word size.\n+func TestMapOfGCBigKey(t *testing.T) {\n+\ttype KV struct {\n+\t\ti int64\n+\t\tj int64\n+\t}\n+\n+\tkvTyp := Ty... | 2024-11-21T18:56:57 |
electron/electron | aa8119515f87d87716345cf454da5113e700ab69 | 3d9b9b97cfcfe34411e359d504e9b8a772622d56 | fix: gracefully fail if app.configureHostResolver is called before ready (#33062) | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -1630,6 +1630,11 @@ v8::Local<v8::Value> App::GetDockAPI(v8::Isolate* isolate) {\n void ConfigureHostResolver(v8::Isolate* isolate,\n const gin_helper::Dictionary& opts) {\n gin_helper::ErrorThrower thrower(isolate)... | 2022-03-08T00:52:40 |
ollama/ollama | a807985e598c7a905f563023e1f8ee04756e2e36 | 8643c4d5bfa8ba131661713029d09b9f1792761a | ggml: Check for OOM and return as Go errors
If there is a CUDA OOM, we currently don't check the return value
and will evetually segfault. This checks for the problem and generates
a Go error. At the moment, this will still result in a panic but having
the error is the first step to being able to handle it more gracef... | [
{
"path": "ml/backend/ggml/ggml.go",
"patch": "@@ -281,6 +281,10 @@ func New(ctx context.Context, r *os.File, params ml.BackendParams) (ml.Backend,\n \t\t}\n \n \t\tb := C.ggml_backend_alloc_ctx_tensors_from_buft(c, bt)\n+\t\tif b == nil {\n+\t\t\treturn nil, fmt.Errorf(\"unable to allocate memory from devi... | 2025-04-04T22:04:25 |
facebook/react | a6769df6b11291d5c582a8f5783fcc7f2c61e9bb | 32dccd48d2c326a235e8af3cfbab949c1a13860c | [babel] Alias unstable_useMemoCache to useMemoCache
DevTools relies on built-in hook names at their call site to be unprefixed in
order to correctly track them. This PR updates our Babel plugin to:
- Check if there are any existing import declarations of `import { /* ... /* }
from 'react';`
- If true, we add t... | [
{
"path": "compiler/forget/src/Babel/BabelPlugin.ts",
"patch": "@@ -214,48 +214,76 @@ export default function ReactForgetBabelPlugin(\n opts: { ...pass.opts, ...options },\n });\n \n- // If there isn't already an import of * as React, insert it so React.useMemoCache doesn't\n+ ... | 2023-04-26T17:40:22 |
ggml-org/llama.cpp | f2c72b8f1f39ee189b8f4c161532080dbe8608f1 | ec54ac13a8e3977b3a5cfe75ee841226049ee1aa | common : fix gguf selection in common_list_cached_models (#20996)
Signed-off-by: Adrien Gallouët <angt@huggingface.co> | [
{
"path": "common/download.cpp",
"patch": "@@ -454,7 +454,9 @@ static gguf_split_info get_gguf_split_info(const std::string & path) {\n std::smatch m;\n \n std::string prefix = path;\n- string_remove_suffix(prefix, \".gguf\");\n+ if (!string_remove_suffix(prefix, \".gguf\")) {\n+ return... | 2026-03-25T18:18:06 |
huggingface/transformers | 884749a1f7d84678b30e8a4ba5e402d19bed457f | b7b9d25226d7b4e9ec2f6eac5f7839adc195fa43 | Fix init weights in remote code (#43768)
* init or tie weight in remote code
* processing
* config attr
* maybe? the special token logic is breaking many tests
* updates
* oh c'mon
* omg
* try None and see if tests fail
* oops | [
{
"path": "src/transformers/feature_extraction_utils.py",
"patch": "@@ -79,7 +79,8 @@ def __init__(\n skip_tensor_conversion: list[str] | set[str] | None = None,\n ):\n super().__init__(data)\n- self.convert_to_tensors(tensor_type=tensor_type, skip_tensor_conversion=skip_tensor_co... | 2026-02-10T10:58:46 |
electron/electron | 12aa991df2acd9e62f5c17325e5e81fa6dfffd74 | 0ff1727ec09003fced33dad2e2e3145bd8ece79e | Fix a typo (#33042) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -64,7 +64,7 @@ win.loadURL('https://github.com')\n ```\n \n Note that even for apps that use `ready-to-show` event, it is still recommended\n-to set `backgroundColor` to make app feel more native.\n+to set `backgroundColor` to make the app feel more nativ... | 2022-03-07T22:17:12 |
golang/go | 97ae1817fb22913f0bbfa0be2b8181e806c26853 | f69711434ae0ab383fb6088000736af9bd5638f4 | net: check for MPTCP in DialTCP and ListenTCP
Setting GODEBUG=multipathtcp= [1] has no effects on apps using
ListenTCP or DialTCP directly.
According to the documentation, these functions are supposed to act like
Listen and Dial respectively:
ListenTCP acts like Listen for TCP networks.
DialTCP acts like Dia... | [
{
"path": "src/net/tcpsock.go",
"patch": "@@ -324,7 +324,15 @@ func DialTCP(network string, laddr, raddr *TCPAddr) (*TCPConn, error) {\n \t\treturn nil, &OpError{Op: \"dial\", Net: network, Source: laddr.opAddr(), Addr: nil, Err: errMissingAddress}\n \t}\n \tsd := &sysDialer{network: network, address: raddr... | 2024-11-21T20:21:18 |
ollama/ollama | 8643c4d5bfa8ba131661713029d09b9f1792761a | b0c3aba5906ebc51b1c4cbb4532173559ba6e6ed | readme: fix url for big-AGI in community integrations (#10173) | [
{
"path": "README.md",
"patch": "@@ -291,7 +291,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Typescript UI](https://github.com/ollama-interface/Ollama-Gui?tab=readme-ov-file)\n - [Minimalistic React UI for Ollama Models](https://github.com/richawo/minimal-llm-ui)\n - [Ollamac](htt... | 2025-04-08T02:42:26 |
ggml-org/llama.cpp | ec54ac13a8e3977b3a5cfe75ee841226049ee1aa | 80322ebdaf8ab41fe3e66a17d7a4ec9360c54eac | ci : fix parsing of vgpr counts in hip-quality-check (#20987)
* scripts: hip: gcn-cdna-vgpr-check: fix parsing of vgpr counts when an amdclang Remark block is interlieved with another from a different process
* Return warning ignore
* obay pep8 inline double space before inline commets
* add # noqa: NP100 for other... | [
{
"path": ".github/workflows/hip-quality-check.yml",
"patch": "@@ -8,15 +8,17 @@ on:\n paths: [\n '.github/workflows/hip-quality-check.yml',\n '**/*.cu',\n- '**/*.cuh'\n+ '**/*.cuh',\n+ 'scripts/hip/gcn-cdna-vgpr-check.py'\n ]\n \n pull_request:\n types: [opened, syn... | 2026-03-25T18:00:37 |
facebook/react | 5e5342b10059bf90738a8d9171fcf0af9d9d5d51 | 9c58a0b6475509f9124da578207aa0d3b7364035 | Insert temporary input node to polyfill submitter argument in FormData (#26714)
Insert temporary input node to polyfill submitter argument in FormData.
This works for buttons too and fixes a bug where the type attribute
wasn't reset.
I also exclude the submitter if it's a function action. This ensures
that we do... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -132,6 +132,9 @@ function validateFormActionInDevelopment(\n props: any,\n ) {\n if (__DEV__) {\n+ if (value == null) {\n+ return;\n+ }\n if (tag === 'form') {\n if (key === 'formAction') {\n ... | 2023-04-24T18:18:09 |
electron/electron | 0ff1727ec09003fced33dad2e2e3145bd8ece79e | a1c01ded9c988c082ec51bc76a33b547216e39e3 | docs: fix missing dependencies in ipc patterns (#33082) | [
{
"path": "docs/fiddles/ipc/pattern-2/main.js",
"patch": "@@ -1,4 +1,4 @@\n-const {app, BrowserWindow, ipcMain,dialog} = require('electron')\n+const {app, BrowserWindow, ipcMain, dialog} = require('electron')\n const path = require('path')\n \n async function handleFileOpen() {",
"additions": 1,
"de... | 2022-03-07T22:04:58 |
huggingface/transformers | b7b9d25226d7b4e9ec2f6eac5f7839adc195fa43 | b2028e775a52bf57ac2b6bd71b49ce61fa3adde6 | Improve PR comment CI feedback (#43852)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/check_failed_tests.yml",
"patch": "@@ -24,6 +24,10 @@ on:\n pr_number:\n required: false\n type: string\n+ outputs:\n+ is_check_failures_ok:\n+ description: \"Whether the failure checking infrastructure succeeded\"\n+ value: ${{ jobs.c... | 2026-02-10T09:45:39 |
ggml-org/llama.cpp | 44c51e526b1f51dd9906cb49858eac9722829a0c | 1922f87c2f753d8f6630050a7ce8292994c27356 | model : allow causal_attn and pooling_type on all architectures (#20973)
* models : allow causal_attn and pooling_type on all architectures
* fix: move location | [
{
"path": "src/llama-model.cpp",
"patch": "@@ -370,6 +370,8 @@ void llama_model::load_hparams(llama_model_loader & ml) {\n ml.get_key(LLM_KV_CONTEXT_LENGTH, hparams.n_ctx_train);\n ml.get_key(LLM_KV_EMBEDDING_LENGTH, hparams.n_embd);\n ml.get_key(LLM_KV_EMBEDDING_LENGTH_OUT, h... | 2026-03-25T17:12:38 |
facebook/react | 9c58a0b6475509f9124da578207aa0d3b7364035 | 9ee796430278c6f6e8acec4f54fd9be7f7868c0d | Update Flight fixture to use use() instead of Promise as a child (#26715)
The Promise as a child case seems buggy. It ends up throwing the Promise
as fatal when used in Sync rendering. | [
{
"path": "fixtures/flight/src/index.js",
"patch": "@@ -1,5 +1,5 @@\n import * as React from 'react';\n-import {Suspense} from 'react';\n+import {use, Suspense} from 'react';\n import ReactDOM from 'react-dom/client';\n import {createFromFetch, encodeReply} from 'react-server-dom-webpack/client';\n \n@@ -27... | 2023-04-24T18:00:25 |
golang/go | f69711434ae0ab383fb6088000736af9bd5638f4 | 50087aa1b46460c8cd65f28afb59c5f79d8f27d8 | crypto/tls: add server-side ECH
Adds support for server-side ECH.
We make a couple of implementation decisions that are not completely
in-line with the spec. In particular, we don't enforce that the SNI
matches the ECHConfig public_name, and we implement a hybrid
shared/backend mode (rather than shared or split mode,... | [
{
"path": "api/next/68500.txt",
"patch": "@@ -0,0 +1,5 @@\n+pkg crypto/tls, type Config struct, EncryptedClientHelloKeys []EncryptedClientHelloKey #68500\n+pkg crypto/tls, type EncryptedClientHelloKey struct #68500\n+pkg crypto/tls, type EncryptedClientHelloKey struct, Config []uint8 #68500\n+pkg crypto/tls... | 2024-10-30T03:22:27 |
electron/electron | a1c01ded9c988c082ec51bc76a33b547216e39e3 | 94a85cb191a4a4a3e3c91de35e88322b1d72deab | fix: really strip crashpad handler binary (#33126) | [
{
"path": "script/lib/config.py",
"patch": "@@ -15,7 +15,7 @@\n \n LINUX_BINARIES = [\n 'chrome-sandbox',\n- 'crashpad_handler',\n+ 'chrome_crashpad_handler',\n 'electron',\n 'libEGL.so',\n 'libGLESv2.so',",
"additions": 1,
"deletions": 1,
"language": "Python"
}
] | 2022-03-07T19:49:50 |
huggingface/transformers | a47a89a4557d07f7556b71440b6c1a321de94e60 | 82a5b3d7368c883baae89d49a3a777842c27b878 | [xLSTM] Fix bugs preventing small model training (#43209)
* Fix xLSTM bugs preventing small model training
- Fix typo: vecM_k_combine should use .reshape() not ()
- Fix shape mismatch: use dqk // nc for correct head dimension
- Fix return_last_states default to match docstring (bool | None = None)
Fixes #43208
* Pr... | [
{
"path": "src/transformers/models/xlstm/modeling_xlstm.py",
"patch": "@@ -176,12 +176,13 @@ def mlstm_chunkwise_parallel_fw_H(\n _device = matQ.device\n nc = num_chunks\n batch_size, nh, dqk, dhv = matC_states.shape\n- matC_k_states = matC_states.view(batch_size, nh, nc, dqk ... | 2026-02-09T18:05:43 |
ollama/ollama | c38680b8a1058b79a98d87aa671361cafed09536 | 16fca86c4a6c43e2752062e7f82d20f00d9fd292 | CONTRIBUTING: fix code block formatting
There were only 3 spaces instead of 4, so the example was being considered to include html elements | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -51,7 +51,7 @@ see if the change were accepted.\n \n The title should look like:\n \n- <package>: <short description>\n+ <package>: <short description>\n \n The package is the most affected Go package. If the change does not affect Go\n code, then use the direc... | 2025-04-07T20:53:33 |
facebook/react | 9ee796430278c6f6e8acec4f54fd9be7f7868c0d | 2fa632381839c8732dad9107b90911163b7f2b7a | Fix escaping in ReactDOMInput code (#26630)
JSON.stringify isn't the right thing here. Luckily this doesn't look to have any security impact. | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMInput.js",
"patch": "@@ -18,6 +18,7 @@ import {disableInputAttributeSyncing} from 'shared/ReactFeatureFlags';\n import {checkAttributeStringCoercion} from 'shared/CheckStringCoercion';\n \n import type {ToStringValue} from './ToStringValue';\n+import... | 2023-04-24T17:33:11 |
ggml-org/llama.cpp | 1922f87c2f753d8f6630050a7ce8292994c27356 | 345de3cd870ef363398f3c3cffb4f34b398770ff | snapdragon: add missing features to WoS scripts to achieve parity with ADB scripts (#20884)
* Add missing features to WoS scripts to achieve parity with ADB scripts
* Fix line-ending in run-mtmd.ps1
Signed-off-by: Max Krasnyansky <maxk@qti.qualcomm.com>
---------
Signed-off-by: Max Krasnyansky <maxk@qti.qualcomm.c... | [
{
"path": "scripts/snapdragon/windows/run-bench.ps1",
"patch": "@@ -20,6 +20,14 @@ if ($null -ne $env:V) {\n $env:GGML_HEXAGON_VERBOSE=$env:V\n }\n \n+if ($null -ne $env:E) {\n+ $env:GGML_HEXAGON_EXPERIMENTAL=$env:E\n+}\n+\n+if ($null -ne $env:PROF) {\n+ $env:GGML_HEXAGON_PROFILE=$env:PROF; $env:G... | 2026-03-25T16:43:12 |
golang/go | 50087aa1b46460c8cd65f28afb59c5f79d8f27d8 | 0db250104c0ebfa82f62fe9f12338565dd8f674d | crypto/rand: add Text for secure random strings
Fixes #67057
Change-Id: Id4a1d07bc45d9ebf90b7e6ef507002908dcfa12d
Reviewed-on: https://go-review.googlesource.com/c/go/+/627477
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.... | [
{
"path": "api/next/67057.txt",
"patch": "@@ -0,0 +1 @@\n+pkg crypto/rand, func Text() string #67057",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/rand/67057.md",
"patch": "@@ -0,0 +1 @@\n+The new [Text] function can be use... | 2024-11-14T18:43:29 |
electron/electron | 41c81ed066116e8649548a90661c9c8f830b288c | 62366aeb95f0ec352abd4fdf320d8fc4e65d7bf7 | docs: Updated list numbering (#32991)
* docs: Updated list numbering
The steps to package and distribute an application using electron had incorrect numbering
* Indented text within ordered list sections
* Removed single space
* Fixed indentation | [
{
"path": "docs/tutorial/quick-start.md",
"patch": "@@ -463,46 +463,46 @@ The fastest way to distribute your newly created app is using\n 1. Add Electron Forge as a development dependency of your app, and use its `import` command to set up\n Forge's scaffolding:\n \n-```sh npm2yarn\n-npm install --save-dev ... | 2022-03-03T23:35:51 |
huggingface/transformers | 82a5b3d7368c883baae89d49a3a777842c27b878 | d7ac5cd00af1784cf23999b9a8f0e69b1bc11c01 | docs: Add Switch Transformers docstring notes and update spectrogram comment (#43336)
* fix: Correct Switch Transformers sparse layer logic and outdated spectrogram comment
* docs: Add docstring notes for Switch Transformers sparse layer edge case | [
{
"path": "src/transformers/audio_utils.py",
"patch": "@@ -620,7 +620,7 @@ def window_function(\n return padded_window\n \n \n-# TODO This method does not support batching yet as we are mainly focused on inference.\n+# Note: This method processes a single waveform. For batch processing, use spectrogram_... | 2026-02-09T17:33:44 |
facebook/react | a21d1475ffd7225a463f2d0c0c9b732c8dd795eb | 36e4cbe2e918ec9c8a7abbfda28898c835361fb2 | [Flight] Fix File Upload in Node.js (#26700)
Use the Blob constructor + append with filename instead of File
constructor. Node.js doesn't expose a global File constructor but does
support it in this form.
Queue fields until we get the 'end' event from the previous file. We
rely on previous files being available ... | [
{
"path": "fixtures/flight/src/Form.js",
"patch": "@@ -20,8 +20,14 @@ export default function Form({action, children}) {\n React.startTransition(() => setIsPending(false));\n }\n }}>\n- <input name=\"name\" />\n+ <label>\n+ Name: <input name=\"name\" />\n... | 2023-04-22T05:04:24 |
ollama/ollama | b51e0f397ced70bbfa7f22e9b3c94953967cb8e5 | b42970063d8f05c47dd6d9a6b71f1e14cc4805c9 | model: fix issues with spm tokenizer for Gemma 3 (#10081) | [
{
"path": "model/models/gemma2/model.go",
"patch": "@@ -38,7 +38,6 @@ const (\n func New(c ml.Config) (model.Model, error) {\n \tm := Model{\n \t\tSentencePieceModel: model.NewSentencePieceModel(\n-\t\t\tc.String(\"tokenizer.ggml.pretokenizer\", `(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?\\p{L}+|\\... | 2025-04-02T20:22:56 |
golang/go | 83e6781cb75f9470430fd40c9751e846b998a49e | a925402b62c06d1cfe2b345cba0b11fa06b8401d | os: drop unnecessary trailing . from symlink targets
Adjust splitPathInRoot to match its documented behavior
of dropping . path components except at the end of the path.
This function takes a prefix, path, and suffix; previously
it would preserve a trailing . at the end of the path
even when joining to a suffix.
The ... | [
{
"path": "src/os/root.go",
"patch": "@@ -230,6 +230,10 @@ func splitPathInRoot(s string, prefix, suffix []string) (_ []string, err error)\n \t\t}\n \t\ti = j\n \t}\n+\tif len(suffix) > 0 && len(parts) > 0 && parts[len(parts)-1] == \".\" {\n+\t\t// Remove a trailing \".\" component if we're joining to a suf... | 2024-11-21T17:20:46 |
electron/electron | ebd80a06022c6208c350ea9c70047caa422012ee | 306147ddf5e529e0455caa51101a7e6870f23196 | fix: max window size defaults to 0 (#33025) | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -161,16 +161,25 @@ void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n // On Linux and Window we may already have maximum size defined.\n extensions::SizeConstraints size_constraints(\n use_content_size ? GetContent... | 2022-03-01T22:20:07 |
huggingface/transformers | d7ac5cd00af1784cf23999b9a8f0e69b1bc11c01 | 9e4a8c44573340636ad6295fa153a944c005dc31 | Fix cardinality error for DETR models without explicit background class (#43513)
Fix cardinality error for DETR models without explicit background class (#42199)
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com> | [
{
"path": "src/transformers/loss/loss_deformable_detr.py",
"patch": "@@ -64,6 +64,22 @@ def __init__(self, matcher, num_classes, focal_alpha, losses):\n self.focal_alpha = focal_alpha\n self.losses = losses\n \n+ @torch.no_grad()\n+ def loss_cardinality(self, outputs, targets, indices,... | 2026-02-09T17:30:42 |
facebook/react | 8f42196892847a3dd1ab4c84eda0c8d52508ecf6 | 967d46c76cf9f7f35cf659a6a47c9ad456c685a8 | Change DOM HostContext to number instead of string (#26698)
In React DOM, we use HostContext to represent the namespace of whatever
is currently rendering — SVG, Math, or HTML. Because there is a fixed
set of possible values, we can switch this to be a number instead. My
motivation is that I want to start tracking ... | [
{
"path": "packages/react-dom-bindings/src/client/DOMNamespaces.js",
"patch": "@@ -7,34 +7,5 @@\n * @flow\n */\n \n-export const HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\n export const MATH_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\n export const SVG_NAMESPACE = 'http://www.w3.org/2000/svg... | 2023-04-22T01:44:43 |
ollama/ollama | b2a465296d7131ca440fd81c1bee888f4103a585 | 5d097277ef8b08c86f354b54596976869998257d | runner: Release semaphore and improve error messages on failures
If we have an error after creating a new sequence but before
finding a slot for it, we return without releasing the semaphore.
This reduces our parallel sequences and eventually leads to deadlock.
In practice this should never happen because once we hav... | [
{
"path": "runner/llamarunner/runner.go",
"patch": "@@ -599,7 +599,7 @@ func (s *Server) completion(w http.ResponseWriter, r *http.Request) {\n \t\tif errors.Is(err, context.Canceled) {\n \t\t\tslog.Info(\"aborting completion request due to client closing the connection\")\n \t\t} else {\n-\t\t\tslog.Error(... | 2025-03-15T00:24:46 |
golang/go | a925402b62c06d1cfe2b345cba0b11fa06b8401d | 154fb4e1d45e503658542dee5296243a6146e7ca | all: fix some function names and typos in comment
Change-Id: I07e7c8eaa5bd4bac0d576b2f2f4cd3f81b0b77a4
Reviewed-on: https://go-review.googlesource.com/c/go/+/630055
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ia... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/PPC64Ops.go",
"patch": "@@ -290,7 +290,7 @@ func init() {\n \n \t\t// Movement between float and integer registers with no change in bits; accomplished with stores+loads on PPC.\n \t\t// Because the 32-bit load-literal-bits instructions have impoverished addressa... | 2024-11-20T13:56:27 |
ggml-org/llama.cpp | 345de3cd870ef363398f3c3cffb4f34b398770ff | 9c600bcd4b3b21f70c9d95cf8a938e43192eb492 | Use docker in build-android.yml (#20928)
* use docker instead of SDK separately
* fix whitespaces
* Update .github/workflows/build-android.yml
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-authored-by: Max Krasnyansky <maxk@qti.qualcomm.com>
Co-authored-by: Sigbjørn Skjæret <sigbjorn... | [
{
"path": ".github/workflows/build-android.yml",
"patch": "@@ -40,13 +40,9 @@ jobs:\n steps:\n - name: Clone\n uses: actions/checkout@v6\n-\n- # Disabled due to size (400MB) and always 0 cache hits\n- # - name: ccache\n- # uses: ggml-org/ccache-action@v1.2.16\n- # w... | 2026-03-25T16:36:27 |
electron/electron | 306147ddf5e529e0455caa51101a7e6870f23196 | 7cb62bfc22c5919d76b9800432d3c776a0266f72 | fix: disable partition alloc on mac (#33114) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -111,3 +111,4 @@ fix_dont_delete_SerialPortManager_on_main_thread.patch\n feat_add_data_transfer_to_requestsingleinstancelock.patch\n fix_crash_when_saving_edited_pdf_files.patch\n port_autofill_colors_to_the_color_pipeline.patch\n+build_disable_partition_... | 2022-03-01T22:16:37 |
facebook/react | 2b75c7915bed25e9114d76b3c0c019dfc7b61f1f | b184d8567c9117beb8fca2b86e39a53aae3ec53a | Add @panicOnBailout support to snap
Test plan: tests pass with snap | [
{
"path": "compiler/forget/packages/snap/src/compiler-worker.ts",
"patch": "@@ -9,6 +9,8 @@ import fs from \"fs/promises\";\n import path from \"path\";\n import { exists } from \"./utils\";\n \n+const originalConsoleError = console.error;\n+\n let version: number | null = null;\n export function clearRequi... | 2023-04-21T19:22:56 |
ollama/ollama | 5d097277ef8b08c86f354b54596976869998257d | 071a9872cb76f07d09dc8a3c65046d35d921f4e6 | ollamarunner: Ensure batch size limits are not exceeded
With the llama runner, we can generate up to NUM_PARALLEL batches
at once, which will then get broken up to into individual batches
to get executed by llama.cpp (i.e. we add up to 2048 tokens and
this gets split into 4 batches of 512 tokens at default settings).
... | [
{
"path": "runner/ollamarunner/runner.go",
"patch": "@@ -267,6 +267,9 @@ type Server struct {\n \t// KV cache\n \tcache *InputCache\n \n+\t// next sequence for prompt processing to avoid starvation\n+\tnextSeq int\n+\n \t// multimodalHash generates hashes for comparing equality\n \t// of non-text data\n \tm... | 2025-03-27T21:00:05 |
golang/go | 154fb4e1d45e503658542dee5296243a6146e7ca | 0c6dbd99c570874ef5ec353298708677c1675dd0 | testing: Update testing.B.Loop to save benchmark results.
This is fixing some the missing logic of CL 627755.
Change-Id: I35acffef7299331fce21da4a80a26185b2e909f4
Reviewed-on: https://go-review.googlesource.com/c/go/+/630455
Commit-Queue: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -230,13 +230,12 @@ func (b *B) run1() bool {\n \tb.mu.RLock()\n \tfinished := b.finished\n \tb.mu.RUnlock()\n-\t// b.Loop() does its own ramp-up so we just need to run it once.\n-\tif b.hasSub.Load() || finished || b.loopN != 0 {\n+\tif b.hasSub.Load() || f... | 2024-11-21T07:36:25 |
ggml-org/llama.cpp | b2704f90282f55b647f3a3cc0849847c46aff5c2 | 3fab96cd045fc114e697df5643ae84bdb33cd6f7 | ci: Allow ninja to be used during unit test (#20742)
* Remove make dependency
* Added option to specify Ninja generator
* use ninja-build as default for several CI
* Revert "use ninja-build as default for several CI"
This reverts commit f552c4559b85e222aab37f654da764af4283fee7.
* changed use plain string rather t... | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -87,7 +87,7 @@ jobs:\n -DGGML_METAL_EMBED_LIBRARY=OFF \\\n -DGGML_METAL_SHADER_DEBUG=ON \\\n -DGGML_RPC=ON\n- cmake --build build --config Release -j $(sysctl -n hw.logicalcpu)\n+ time cmake --build b... | 2026-03-25T13:00:49 |
facebook/react | 967d46c76cf9f7f35cf659a6a47c9ad456c685a8 | 5d7ebb4b784cb7e41e28653d89054cfe65637a93 | Add error boundary to Flight fixture (#26695)
Errors in form actions are now rethrown during render (#26689), so we
can handle them using an error boundary. | [
{
"path": "fixtures/flight/src/Button.js",
"patch": "@@ -1,27 +1,30 @@\n 'use client';\n \n import * as React from 'react';\n+import {flushSync} from 'react-dom';\n+import ErrorBoundary from './ErrorBoundary.js';\n \n export default function Button({action, children}) {\n const [isPending, setIsPending] =... | 2023-04-21T18:23:50 |
electron/electron | 283fa2b79d44cd18b9d4865edaf65a3e107207ce | 1e50f7d2b64832aa98e5adcddd9af20d7ed72783 | fix: macOS tray icon alternate images (#33026) | [
{
"path": "shell/browser/ui/tray_icon_cocoa.mm",
"patch": "@@ -93,6 +93,15 @@ - (void)setImage:(NSImage*)image {\n \n - (void)setAlternateImage:(NSImage*)image {\n [[statusItem_ button] setAlternateImage:image];\n+\n+ // We need to change the button type here because the default button type for\n+ // NS... | 2022-02-28T22:59:27 |
ggml-org/llama.cpp | 914eb5ff0c74c88c7ef8aec115878d8f64c81e56 | 8fc17493c3a2c39e6843e043e6227fb006668600 | jinja: fix macro with kwargs (#20960)
* jinja: fix macro with kwargs
* Apply suggestions from code review
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* fix newline problem
---------
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> | [
{
"path": "common/jinja/runtime.cpp",
"patch": "@@ -667,17 +667,19 @@ value macro_statement::execute_impl(context & ctx) {\n if (is_stmt<identifier>(this->args[i])) {\n // normal parameter\n std::string param_name = cast_stmt<identifier>(this->args[i])... | 2026-03-25T11:22:48 |
golang/go | 0c6dbd99c570874ef5ec353298708677c1675dd0 | 5a22174eee959d8c2ec18581445195434a48464d | os: fix Root tests on Plan9
Fixes #70484
Change-Id: I609834aca3e97bf494565da513cd2b8a83123c89
Reviewed-on: https://go-review.googlesource.com/c/go/+/630216
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> | [
{
"path": "src/os/root_test.go",
"patch": "@@ -810,6 +810,10 @@ func (test rootConsistencyTest) run(t *testing.T, f func(t *testing.T, path stri\n \t\t\tif f := test.detailedErrorMismatch; f != nil {\n \t\t\t\tdetailedErrorMismatch = f(t)\n \t\t\t}\n+\t\t\tif runtime.GOOS == \"plan9\" {\n+\t\t\t\t// Plan9 s... | 2024-11-21T16:43:23 |
ollama/ollama | 0bd0454ea7f51b1ddf527b4ebdaf1e614df211bc | 01aa7887221e7bd286ebcb14a088c94ba1c22a99 | server: organize error types (#9465)
Co-authored-by: Bruce MacDonald <brucewmacdonald@gmail.com> | [
{
"path": "server/download.go",
"patch": "@@ -29,8 +29,9 @@ import (\n const maxRetries = 6\n \n var (\n-\terrMaxRetriesExceeded = errors.New(\"max retries exceeded\")\n-\terrPartStalled = errors.New(\"part stalled\")\n+\terrMaxRetriesExceeded = errors.New(\"max retries exceeded\")\n+\terrPartStall... | 2025-03-28T18:50:22 |
facebook/react | fd3fb8e3c5d1c977f4bfa73d715143804c69d4b0 | c57a0f68a49d0a7fbe45e7b28820478d0fa4e32f | Rethrow errors from form actions (#26689)
This is the next step toward full support for async form actions.
Errors thrown inside form actions should cause the form to re-render and
throw the error so it can be captured by an error boundary. The behavior
is the same if the `<form />` had an internal useTransition ... | [
{
"path": "packages/react-dom-bindings/src/events/plugins/FormActionEventPlugin.js",
"patch": "@@ -14,6 +14,7 @@ import type {EventSystemFlags} from '../EventSystemFlags';\n import type {Fiber} from 'react-reconciler/src/ReactInternalTypes';\n \n import {getFiberCurrentPropsFromNode} from '../../client/Reac... | 2023-04-21T17:29:46 |
huggingface/transformers | 4b8ba25aea69b6bd9912b0f335c861d2c8211b6b | 7d5681b3cdcbcf20048c5a7a31136e551152fd2b | :rotating_light: [`Attn`] New attn mask interface everywhere (#42848)
* fix
* fix order
* style
* vision 3d rope get extra test for now
* fix gpt2
* more gpt2 fixes
* let's see...
* fix
* test
* fix opt+biogpt
* fix
* fix
* fix
* fix opt
* mask exchange test
* style
* several small fixes
* shouldnt be... | [
{
"path": "examples/modular-transformers/modeling_test_detr.py",
"patch": "@@ -4,30 +4,93 @@\n # the file from the modular. If any change should be done, please apply the change to the\n # modular_test_detr.py file directly. One of our CI enforces this.\n # ... | 2026-02-09T15:44:47 |
ggml-org/llama.cpp | 8fc17493c3a2c39e6843e043e6227fb006668600 | 36dafba5c476297261692bfb24c49ec657030c62 | gguf-split : clarify operation of gguf-split (#19749)
* clarify operation of gguf-split
so that you don't have to find out by trial and error
* formatting | [
{
"path": "tools/gguf-split/README.md",
"patch": "@@ -7,4 +7,4 @@ CLI to split / merge GGUF files.\n - `--split`: split GGUF to multiple GGUF, default operation.\n - `--split-max-size`: max size per split in `M` or `G`, f.ex. `500M` or `2G`.\n - `--split-max-tensors`: maximum tensors in each split: default(... | 2026-03-25T11:12:50 |
electron/electron | 3da598015bccb8f9ab6833d1163c2fe2b0f2b058 | c1a667c931355fdb21b85ddfce9d9b32096dacd3 | chore: bump chromium to 100.0.4894.0 (main) (#32852)
* chore: bump chromium in DEPS to 100.0.4880.0
* resolve conflicts
* chore: update patches
* fix patch
* PIP20: add a new DocumentOverlayWindowViews subtype
https://chromium-review.googlesource.com/c/chromium/src/+/3252789
* Clean up PictureInPictu... | [
{
"path": ".circleci/build_config.yml",
"patch": "@@ -52,11 +52,17 @@ executors:\n parameters:\n size:\n description: \"macOS executor size\"\n- default: large\n+ default: macos.x86.medium.gen2\n type: enum\n enum: [\"macos.x86.medium.gen2\", \"large\"]\n+ ... | 2022-02-25T18:17:35 |
golang/go | efe0a86551c30ceaf71361645023cbea913249d3 | 6a7733af45493ddc1ededd2d0545004102c811a2 | cmd/compile/internal/ssa: make _gen an actual submodule and skip it in TestStdlib
After tools CL 612038, the package astutil stops being vendored, but
_gen/rulegen.go needs to import this package.
In particular, after update golang.org/x/tools, the package astutil
is deleted from the vendor directory, and got error wh... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/go.mod",
"patch": "@@ -0,0 +1,5 @@\n+module _gen\n+\n+go 1.24\n+\n+require golang.org/x/tools v0.27.0",
"additions": 5,
"deletions": 0,
"language": "Unknown"
},
{
"path": "src/cmd/compile/internal/ssa/_gen/go.sum",
"patch": "@@ -0,0 +1,2 @... | 2024-11-18T08:15:36 |
ollama/ollama | f66216e3990b73869341c58ac9561b26c468c558 | f4f0992b6ea5d651eff609461c24ece936bd5708 | ggml: Support heterogeneous KV cache layer sizes in memory estimation
Gemma3 uses sliding windows for its context on 5/6 layers, significantly
reducing memory usage but leading to uneven usage across layers,
which makes allocation to the correct GPU difficult. We currently
estimate very conservatively by assuming all ... | [
{
"path": "fs/ggml/ggml.go",
"patch": "@@ -413,7 +413,7 @@ func Decode(rs io.ReadSeeker, maxArraySize int) (*GGML, int64, error) {\n \t}, offset, nil\n }\n \n-func (f GGML) GraphSize(context, batch uint64, kvCacheType string) (kv, partialOffload, fullOffload uint64) {\n+func (f GGML) GraphSize(context, batc... | 2025-03-24T20:39:07 |
huggingface/transformers | 7d5681b3cdcbcf20048c5a7a31136e551152fd2b | 018af00b00a122425a7f13bd736c63855219cb82 | Fix video interpolation in pe_audio_video (#43811) | [
{
"path": "src/transformers/models/pe_audio_video/modeling_pe_audio_video.py",
"patch": "@@ -195,7 +195,9 @@ def _align_video_hidden_state(\n # note: when one of the above is true, we can expect the other to be true as there is no reason\n # to have masked audio without masked video ... | 2026-02-09T12:51:50 |
facebook/react | f4896b45b2ff4c7f10bf710c9c9d2b87d6352e0d | e9abc41ea3f0170659292ce1151a015300105999 | Fix temporaries accessed outside of their defining scope
Fixed a bug identified in repro cases earlier in the stack. The case is where
some later value is composed of several values, say A and B, where A is an
identifier that is reassigned within B. Also, the mutable range of B surrounds
the evaluation of A. In th... | [
{
"path": "compiler/forget/src/ReactiveScopes/PropagateScopeDependencies.ts",
"patch": "@@ -71,7 +71,8 @@ class Context {\n // ReactiveScope (B) that uses the produced temporary.\n // - codegen will inline these PropertyLoads back into scope (B)\n #properties: Map<Identifier, ReactiveScopeProperty... | 2023-04-21T01:52:39 |
electron/electron | c5a2af7811e35acf67651725d1099b15de0c6ee4 | 8cf345660c35d88bfad0b9fff25f3974482df2f2 | fix: tray garbage collection (#33040) | [
{
"path": "shell/browser/api/electron_api_tray.cc",
"patch": "@@ -89,8 +89,10 @@ gin::Handle<Tray> Tray::New(gin_helper::ErrorThrower thrower,\n }\n #endif\n \n- return gin::CreateHandle(thrower.isolate(),\n- new Tray(args->isolate(), image, guid));\n+ auto handle = gin::Create... | 2022-02-24T19:03:59 |
huggingface/transformers | 018af00b00a122425a7f13bd736c63855219cb82 | 1f62d4ed3e64121bc6b9149ed87aacf9d8ccdf02 | [docs] Remove pipeline() examples from summarization/translation tasks (#43831)
Remove pipeline()-based inference examples from summarization and
translation task documentation since SummarizationPipeline and
TranslationPipeline were removed in transformers v5.
The manual tokenize/generate/decode workflow remains as ... | [
{
"path": "docs/source/en/tasks/summarization.md",
"patch": "@@ -230,18 +230,6 @@ Come up with some text you'd like to summarize. For T5, you need to prefix your\n >>> text = \"summarize: The Inflation Reduction Act lowers prescription drug costs, health care costs, and energy costs. It's the most aggressiv... | 2026-02-09T12:32:42 |
ollama/ollama | f4f0992b6ea5d651eff609461c24ece936bd5708 | 1feff619779115d76f033eb59a7a896aad6c2e18 | llm: Fix debug logging for memory estimates | [
{
"path": "llm/memory.go",
"patch": "@@ -374,7 +374,7 @@ func (m MemoryEstimate) LogValue() slog.Value {\n \t\t\tslog.Group(\n \t\t\t\t\"weights\",\n \t\t\t\t// memory of the weights\n-\t\t\t\t\"total\", format.HumanBytes2(m.memoryWeights),\n+\t\t\t\t\"total\", format.HumanBytes2(m.memoryWeights+m.memoryLay... | 2025-03-25T18:41:26 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.