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 |
|---|---|---|---|---|---|
huggingface/transformers | fcea1e1fe060bddf364a3936dded1ab1e23fdb33 | 563f2ffb21544ed7d2981c43179c27266a41cfb7 | Fixes Flash Attention implementation for models (#42149)
* flash-att3 fix for smolvlm2
* flash-att3 fix for idefics2
* idefics2 changes
* reset idefics2 | [
{
"path": "src/transformers/models/idefics3/modeling_idefics3.py",
"patch": "@@ -24,7 +24,7 @@\n from ...activations import ACT2FN\n from ...cache_utils import Cache, DynamicCache\n from ...generation import GenerationMixin\n-from ...modeling_attn_mask_utils import _prepare_4d_attention_mask\n+from ...maski... | 2025-11-12T12:33:15 |
ollama/ollama | 3bc8b9832b3bfab9ddca01ec0ebc012303362361 | ab6be852c77064d7abeffb0b03c096aab90e95fe | fix gpu_test.go Error (same type) uint64->uint32 (#1921) | [
{
"path": "gpu/gpu_test.go",
"patch": "@@ -18,7 +18,7 @@ func TestBasicGetGPUInfo(t *testing.T) {\n \tcase \"linux\", \"windows\":\n \t\tassert.Greater(t, info.TotalMemory, uint64(0))\n \t\tassert.Greater(t, info.FreeMemory, uint64(0))\n-\t\tassert.Greater(t, info.DeviceCount, uint64(0))\n+\t\tassert.Greate... | 2024-01-11T13:22:23 |
ggml-org/llama.cpp | 79bb74351213da6c368fd53372be17378458b161 | 3ae282a06f74f8a24fa1ac3b1ab6dc8dda4ea22c | ggml : remove useless and error-prone variadic macros (#17399)
Signed-off-by: Adrien Gallouët <angt@huggingface.co> | [
{
"path": "ggml/src/ggml-cpu/simd-mappings.h",
"patch": "@@ -160,18 +160,18 @@ inline static float ggml_lookup_fp16_to_fp32(ggml_fp16_t f) {\n #define GGML_F32xt svfloat32_t\n #define GGML_F32xt_ZERO svdup_n_f32(0.0f)\n #define GGML_F32xt_SET1(x) svdup... | 2025-11-20T10:18:27 |
vuejs/vue | 9b4dbba384bc81a99abe429476729f80cb06d19a | 082fc3967db4d3290e901a38504dcd9bb698e561 | fix(transition): should trigger transition hooks for v-show in ie9
fix #5525 | [
{
"path": "src/platforms/web/runtime/directives/show.js",
"patch": "@@ -1,6 +1,5 @@\n /* @flow */\n \n-import { isIE9 } from 'core/util/env'\n import { enter, leave } from '../modules/transition'\n \n // recursively search for possible transition defined inside the component root\n@@ -16,7 +15,7 @@ export d... | 2017-07-21T00:03:33 |
huggingface/transformers | 563f2ffb21544ed7d2981c43179c27266a41cfb7 | 6f479d5d7512f4ce037e3e0974fcad43474358b2 | fix failure of tests/models/shieldgemma2/test_modeling_shieldgemma2.p… (#42022)
* fix failure of tests/models/shieldgemma2/test_modeling_shieldgemma2.py::ShieldGemma2IntegrationTest::test_model
Signed-off-by: Wang, Yi <yi.a.wang@intel.com>
* add common kwargs in processing_shieldgemma2.py
---------
Signed-off-by: ... | [
{
"path": "src/transformers/models/shieldgemma2/processing_shieldgemma2.py",
"patch": "@@ -126,6 +126,10 @@ def __call__(\n if not self.chat_template:\n raise ValueError(\"ShieldGemma 2 requires the use of a specific chat template\")\n \n+ common_kwargs = kwargs.setdefault(\"commo... | 2025-11-12T09:59:50 |
denoland/deno | 8e5efb0509958ab5513b59c87cb83a98f1e897e6 | b0a58f307e52957ac9fce373d4e9a7b658a28633 | fix(core): store Global<Context> ptr for libuv-compat callbacks (#32361)
## Summary
- Store a `v8::Global<Context>` via `Global::into_raw()` once during
`register_uv_loop` instead of storing a `v8::Local<Context>` pointer at
the start of each event loop tick
- V8 keeps the persistent-handle slot updated across GC cyc... | [
{
"path": "libs/core/runtime/jsrealm.rs",
"patch": "@@ -115,9 +115,9 @@ pub struct ContextState {\n /// `UvLoopInner` and `ContextState` are `!Send` -- all access is on the\n /// event loop thread.\n pub(crate) uv_loop_inner: Cell<Option<*const UvLoopInner>>,\n- /// Raw pointer to the `uv_loop_t` han... | 2026-02-28T09:47:49 |
ollama/ollama | b24e8d17b29246cbf520cffc48eac374ec245e48 | f83881390f571da412d09809b6e5547783ec2392 | Increase minimum CUDA memory allocation overhead and fix minimum overhead for multi-gpu (#1896)
* increase minimum cuda overhead and fix minimum overhead for multi-gpu
* fix multi gpu overhead
* limit overhead to 10% of all gpus
* better wording
* allocate fixed amount before layers
* fixed only include... | [
{
"path": "gpu/gpu.go",
"patch": "@@ -184,10 +184,11 @@ func getCPUMem() (memInfo, error) {\n func CheckVRAM() (int64, error) {\n \tgpuInfo := GetGPUInfo()\n \tif gpuInfo.FreeMemory > 0 && (gpuInfo.Library == \"cuda\" || gpuInfo.Library == \"rocm\") {\n-\t\t// leave 10% or 384Mi of VRAM free for unaccounted... | 2024-01-11T00:08:51 |
vuejs/vue | 082fc3967db4d3290e901a38504dcd9bb698e561 | 17130611261fdbab70d0e5ab45036e4b612b17fe | fix(parser): only ignore the first newline in <pre>
fix #6146 | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -79,9 +79,6 @@ export function parseHTML (html, options) {\n last = html\n // Make sure we're not in a plaintext content element like script/style\n if (!lastTag || !isPlainTextElement(lastTag)) {\n- if (shouldIgnoreFirstNewline(l... | 2017-07-20T23:30:09 |
ggml-org/llama.cpp | 3ae282a06f74f8a24fa1ac3b1ab6dc8dda4ea22c | 5be353ec4a4c74a9efc96ba686264bf4a282a493 | kleidiai: fix zero-size array declaration (#17240) | [
{
"path": "ggml/src/ggml-cpu/kleidiai/kernels.cpp",
"patch": "@@ -39,7 +39,7 @@\n \n #include \"kernels.h\"\n \n-#define NELEMS(x) sizeof(x) / sizeof(*x)\n+#define NELEMS(x) (sizeof(x) / sizeof(*x))\n \n template<size_t(*Fn)(size_t,size_t,size_t)>\n static inline size_t kernel_offs_fn3(size_t a, size_t b, s... | 2025-11-20T09:45:49 |
huggingface/transformers | e76364d5c12e66eb02c035d5a4f39450bb6aab56 | 2b8068c306a4c79350e1af5fea5f7e3d93d82d95 | fix: improve visibility of ValueError root causes in model config loading (#41972)
* Make config util exception handling more informative when ValueError is raised
* transform ValueError into OSError and propagate upstream instead
---------
Co-authored-by: Scott Zhang <scottzh@fb.com> | [
{
"path": "src/transformers/utils/hub.py",
"patch": "@@ -514,6 +514,8 @@ def cached_files(\n \"Check cache directory permissions. Common causes: 1) another user is downloading the same model (please wait); \"\n \"2) a previous download was canceled and the lock file needs man... | 2025-11-12T08:51:43 |
denoland/deno | b0a58f307e52957ac9fce373d4e9a7b658a28633 | ad52a9f35f427cb9a930c1a071f74784ad6cf417 | fix: Update libffi and libffi-sys to fix build (#32301)
Bumps libffi and libffi-sys to latest versions.
Fixes: #32281 | [
{
"path": "Cargo.lock",
"patch": "@@ -6254,19 +6254,19 @@ dependencies = [\n \n [[package]]\n name = \"libffi\"\n-version = \"4.1.2\"\n+version = \"5.1.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"b0feebbe0ccd382a2790f78d380540500d7b78ed7a3498b68fcfbc1593749a94\"\n... | 2026-02-28T09:39:54 |
ollama/ollama | 3c49c3ab0da9cccbcca333ae278687734bb5cec8 | 9754ae4c899c5a55e7725f195f5581aad33866b2 | Harden GPU mgmt library lookup
When there are multiple management libraries installed on a system
not every one will be compatible with the current driver. This change
improves our management library algorithm to build up a set of discovered
libraries based on glob patterns, and then try all of them until we're able ... | [
{
"path": "gpu/gpu.go",
"patch": "@@ -13,7 +13,10 @@ import \"C\"\n import (\n \t\"fmt\"\n \t\"log\"\n+\t\"os\"\n+\t\"path/filepath\"\n \t\"runtime\"\n+\t\"strings\"\n \t\"sync\"\n \t\"unsafe\"\n )\n@@ -29,31 +32,79 @@ var gpuHandles *handles = nil\n // With our current CUDA compile flags, 5.2 and older wil... | 2024-01-10T22:39:51 |
ggml-org/llama.cpp | 5be353ec4a4c74a9efc96ba686264bf4a282a493 | 7d77f07325985c03a91fa371d0a68ef88a91ec7f | ggml-cpu:add RISC-V RVV (Zvfh) optimization for FP16 vector scaling (#17314)
* ggml-cpu:add RISC-V RVV (Zvfh) optimization for FP16 vector scaling
Signed-off-by: Wang Yang <yangwang@iscas.ac.cn>
* fix comment
* fix comment 2
---------
Signed-off-by: Wang Yang <yangwang@iscas.ac.cn> | [
{
"path": "ggml/src/ggml-cpu/vec.h",
"patch": "@@ -698,60 +698,61 @@ inline static void ggml_vec_scale_f32(const int n, float * y, const float v) {\n }\n \n inline static void ggml_vec_scale_f16(const int n, ggml_fp16_t * y, const float v) {\n-#if defined(GGML_SIMD)\n- #if defined(__ARM_FEATURE_SVE)\n-... | 2025-11-20T06:09:18 |
vuejs/vue | 17130611261fdbab70d0e5ab45036e4b612b17fe | 06b9b0bbadcc6c5afd300ed7748294e62ba00803 | fix(v-on): revert component root data.on/data.nativeOn behavior for
weex-vue-render compat
close #6109 | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -54,12 +54,12 @@ export function initRender (vm: Component) {\n defineReactive(vm, '$attrs', parentData && parentData.attrs, () => {\n !isUpdatingChildComponent && warn(`$attrs is readonly.`, vm)\n }, true)\n- defineReactive(vm, '$listen... | 2017-07-19T23:39:42 |
huggingface/transformers | 2b8068c306a4c79350e1af5fea5f7e3d93d82d95 | 33c60a52540962d1d5efdbf29ef0b585649ff175 | T5 migration to new masking interface (#41804)
* Refactor: migrate T5 attention masking to masking_utils interface
* Refactor: migrate T5 attention masking to masking_utils interface
* create_bidirectional_mask function with appropriate paramaters
* create_bidirectional_mask function with appropriate paramaters
* ... | [
{
"path": "src/transformers/models/mt5/modeling_mt5.py",
"patch": "@@ -25,7 +25,7 @@\n from ...activations import ACT2FN\n from ...cache_utils import Cache, DynamicCache, EncoderDecoderCache\n from ...generation import GenerationMixin\n-from ...modeling_attn_mask_utils import AttentionMaskConverter\n+from .... | 2025-11-11T18:10:12 |
denoland/deno | 81e50edbd793c3e775ac4d1e66ade137bfd7efdf | 54db4e6fe745617eeb45775b106cc45a2c805098 | fix(lsp): tsgo request cancellation (#32356) | [
{
"path": "cli/lsp/tsgo.rs",
"patch": "@@ -2,8 +2,6 @@\n \n use std::collections::BTreeMap;\n use std::collections::HashMap;\n-use std::io::BufRead;\n-use std::io::Write;\n use std::path::Path;\n use std::path::PathBuf;\n use std::process::Child;\n@@ -23,6 +21,7 @@ use deno_core::serde_json;\n use deno_grap... | 2026-02-27T17:55:08 |
ollama/ollama | 224fbf27959ed05f6508c3555fbd0632878a763c | 2c6e8f52484f36a39e8bc0c8d7389fd4c55e3533 | update submodule to commit `1fc2f265ff9377a37fd2c61eae9cd813a3491bea` until its main branch is fixed | [
{
"path": "llm/llama.cpp",
"patch": "@@ -1 +1 @@\n-Subproject commit 6efb8eb30e7025b168f3fda3ff83b9b386428ad6\n+Subproject commit 1fc2f265ff9377a37fd2c61eae9cd813a3491bea",
"additions": 1,
"deletions": 1,
"language": "C++"
}
] | 2024-01-10T22:03:11 |
vuejs/vue | 06b9b0bbadcc6c5afd300ed7748294e62ba00803 | d03fa26687605a43d9a0c3f395d1d32375f7eaee | fix(v-bind): respect .prop modifier on components (#6159) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -483,8 +483,8 @@ function processAttrs (el) {\n )\n }\n }\n- if (!el.component && (\n- isProp || platformMustUseProp(el.tag, el.attrsMap.type, name)\n+ if (isProp || (\n+ !el.component && pla... | 2017-07-19T22:11:51 |
ggml-org/llama.cpp | 99c53d6558e1882fdddd1077495b618f3210cc02 | 07b0e7a5ac5ae2ed553fccb12d452c027fb3c060 | webui: Add a "Continue" Action for Assistant Message (#16971)
* feat: Add "Continue" action for assistant messages
* feat: Continuation logic & prompt improvements
* chore: update webui build output
* feat: Improve logic for continuing the assistant message
* chore: update webui build output
* chore: Linting
* c... | [
{
"path": "tools/server/webui/.gitignore",
"patch": "@@ -25,3 +25,4 @@ vite.config.ts.timestamp-*\n \n *storybook.log\n storybook-static\n+*.code-workspace\n\\ No newline at end of file",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "tools/server/webui/package-lock.... | 2025-11-19T13:39:50 |
huggingface/transformers | 33c60a52540962d1d5efdbf29ef0b585649ff175 | fa22b569038540d31eacbf5d333a1e9aa0787131 | [`T5Gemma`] Fix cross attention cache (#41890)
* fix
* add test
* style
* added comment | [
{
"path": "src/transformers/models/t5gemma/modeling_t5gemma.py",
"patch": "@@ -797,7 +797,9 @@ def forward(\n inputs_embeds = self.embed_tokens(input_ids)\n \n if not self.training and use_cache and past_key_values is None:\n- past_key_values = EncoderDecoderCache(DynamicCache... | 2025-11-11T18:08:34 |
ollama/ollama | e868c8a5c794cd71704cfaeae47488438a364533 | c336693f07b77f412b2762f5327bc44eb16dc7de | Update api.md (#1878)
Fixed assistant in the example response. | [
{
"path": "docs/api.md",
"patch": "@@ -409,7 +409,7 @@ A stream of JSON objects is returned:\n \"model\": \"llama2\",\n \"created_at\": \"2023-08-04T08:52:19.385406455-07:00\",\n \"message\": {\n- \"role\": \"assisant\",\n+ \"role\": \"assistant\",\n \"content\": \"The\",\n \"images\": n... | 2024-01-09T21:21:17 |
denoland/deno | 54db4e6fe745617eeb45775b106cc45a2c805098 | 9747a26f59074363a9c45ffab5ab5f272f6baf30 | fix(ext/node): support process.stdout resize events (#32343)
## Summary
- Add Windows support for `Deno.addSignalListener("SIGWINCH", ...)` by
polling console size changes every 250ms using
`GetConsoleScreenBufferInfo`
- Wire `process.stdout.on("resize")` / `process.stderr.on("resize")` to
emit on SIGWINCH, matching ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -518,6 +518,7 @@ deno_core::extension!(deno_node,\n \"internal/streams/utils.js\",\n \"internal/test/binding.ts\",\n \"internal/timers.mjs\",\n+ \"internal/tty.js\",\n \"internal/url.ts\",\n \"internal/util.mjs\",\n \"internal/util/colors.... | 2026-02-27T15:41:14 |
ggml-org/llama.cpp | fd7353d5eb828def58b1e2afc09ea01df395d8cb | 6fd4f953673e6a91041b827c45cdfd1d85e9bb64 | cuda: fix rope fusion for gemma3 (#17378) | [
{
"path": "ggml/src/ggml-cuda/ggml-cuda.cu",
"patch": "@@ -3001,6 +3001,10 @@ static void update_cuda_graph_executable(ggml_backend_cuda_context * cuda_ctx) {\n static bool ggml_cuda_should_fuse_rope_set_rows(const ggml_tensor * rope,\n const ggml_tensor * vie... | 2025-11-19T10:25:05 |
vuejs/vue | d03fa26687605a43d9a0c3f395d1d32375f7eaee | b0f00e31e7d06edfdc733e2e7f24d5ca448759f9 | fix(compile): properly generate comments with special character (#6156)
close #6150 | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -442,7 +442,7 @@ export function genText (text: ASTText | ASTExpression): string {\n }\n \n export function genComment (comment: ASTText): string {\n- return `_e('${comment.text}')`\n+ return `_e(${JSON.stringify(comment.text)})`\n }\n \n function ge... | 2017-07-19T22:09:21 |
ollama/ollama | 1961a81f03b474eab428e30e5c9e867548fa9110 | 8a8c7e7f8dcf4b71601e9912e6dbc12064d77a24 | Set corret CUDA minimum compute capability version
If you attempt to run the current CUDA build on compute capability 5.2
cards, you'll hit the following failure:
cuBLAS error 15 at ggml-cuda.cu:7956: the requested functionality is not supported | [
{
"path": "gpu/gpu.go",
"patch": "@@ -26,8 +26,8 @@ type handles struct {\n var gpuMutex sync.Mutex\n var gpuHandles *handles = nil\n \n-// TODO verify this is the correct min version\n-const CudaComputeMajorMin = 5\n+// With our current CUDA compile flags, 5.2 and older will not work properly\n+const CudaC... | 2024-01-09T19:28:24 |
huggingface/transformers | fa22b569038540d31eacbf5d333a1e9aa0787131 | f30c22500b126aa42e73ee86b7db5e3d7564734b | :rotating_light: Fix gradient checkpointing for several models and improve test robustness (#41818)
* Implement gradient checkpointing in GPTBigCode
Support for gradient checkpointing was lost in the major refactoring in PR #38635
and this is the attempt to re-add it.
I extended the tests to
- test `use_reentrant=... | [
{
"path": "src/transformers/models/gpt_bigcode/modeling_gpt_bigcode.py",
"patch": "@@ -26,6 +26,7 @@\n from ...generation import GenerationMixin\n from ...masking_utils import create_causal_mask\n from ...modeling_flash_attention_utils import is_flash_attn_available\n+from ...modeling_layers import Gradient... | 2025-11-11T17:13:38 |
denoland/deno | 9747a26f59074363a9c45ffab5ab5f272f6baf30 | 3c9cbfa847f3c4547a2ef763b9f0c43ec8c9fdfc | feat: v8 14.6, fix require(esm), libuv compat (#32347) | [
{
"path": "Cargo.lock",
"patch": "@@ -1929,9 +1929,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.386.0\"\n+version = \"0.387.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f5cdb60d25f7e87f7f3bb5b1fcbd8d059ab908d614c0ad67dafce7f6c1514f0... | 2026-02-27T11:20:34 |
ggml-org/llama.cpp | 6fd4f953673e6a91041b827c45cdfd1d85e9bb64 | 980b7cd17e055c8c587f79ffda7eb4fddf405566 | Fix too relaxed check on CUDA "fast copy" (can_be_transposed) condition (#17332)
* Fix too relaxed check on CUDA "fast copy" (can_be_transposed) condition
* Argh.
* Making CISC happy ;)
* Integrate CONT tests
* Use loopy loop
* Skip new tests for (B)F16 for now. | [
{
"path": "ggml/src/ggml-cuda/cpy.cu",
"patch": "@@ -384,7 +384,8 @@ void ggml_cuda_cpy(ggml_backend_cuda_context & ctx, const ggml_tensor * src0, gg\n char * src1_ddc = (char *) src1->data;\n \n const bool contiguous_srcs = ggml_is_contiguous(src0) && ggml_is_contiguous(src1);\n- const bool can_... | 2025-11-19T09:36:33 |
vuejs/vue | b0f00e31e7d06edfdc733e2e7f24d5ca448759f9 | c70addf7d1a8e820ed80b6ab14aace5aa7b604c5 | fix(provide/inject): resolve inject properly from mixins (#6107)
fix #6093 | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -1,7 +1,6 @@\n /* @flow */\n \n import { warn } from '../util/index'\n-import { hasOwn } from 'shared/util'\n import { hasSymbol } from 'core/util/env'\n import { defineReactive, observerState } from '../observer/index'\n \n@@ -56,7 +55,7 @@ export funct... | 2017-07-19T22:07:33 |
huggingface/transformers | f30c22500b126aa42e73ee86b7db5e3d7564734b | 496c283615dc1aaf0863089b16d55abbf17ac681 | Fix logic error in `prepare_inputs_for_generation` cache slicing condition (#41764)
Fix logic error in cache slicing condition
Co-authored-by: Raushan Turganbay <raushan@huggingface.co> | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -608,7 +608,7 @@ def prepare_inputs_for_generation(\n use_cache = kwargs.get(\"use_cache\")\n if use_cache is None:\n use_cache = getattr(self.config, \"use_cache\", False)\n- if past_key_values is None or use_... | 2025-11-11T16:52:38 |
ggml-org/llama.cpp | 980b7cd17e055c8c587f79ffda7eb4fddf405566 | c49daff5baf34cabe41b70f99cc42a9dec87c8ae | vulkan: force full subgroups for flash attention to fix intel subgroup crash (#17356) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -2901,15 +2901,15 @@ static void ggml_vk_load_shaders(vk_device& device) {\n if (path == FAPATH) { \\\n if (aligned) { \\\n if (f32acc) { \\\n- ggml_vk_create_pipeline(device... | 2025-11-19T07:46:26 |
ollama/ollama | f95d2f25f35c5140acbec44aaf8078c3c0526a7b | 2b9892a808a56f9d2634f85907fdc5e0498000c6 | fix temporary history file permissions | [
{
"path": "readline/history.go",
"patch": "@@ -132,7 +132,7 @@ func (h *History) Save() error {\n \n \ttmpFile := h.Filename + \".tmp\"\n \n-\tf, err := os.OpenFile(tmpFile, os.O_CREATE|os.O_WRONLY|os.O_TRUNC|os.O_APPEND, 0o666)\n+\tf, err := os.OpenFile(tmpFile, os.O_CREATE|os.O_WRONLY|os.O_TRUNC|os.O_APPE... | 2023-12-18T18:53:51 |
denoland/deno | 3c9cbfa847f3c4547a2ef763b9f0c43ec8c9fdfc | f12a8b6803668ede2c910c5f01ead8bdee3d8149 | refactor(ext/node): `assert` get error source using V8 API (#32339) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -173,6 +173,7 @@ deno_core::extension!(deno_node,\n deps = [ deno_io, deno_fs ],\n parameters = [TInNpmPackageChecker: InNpmPackageChecker, TNpmPackageFolderResolver: NpmPackageFolderResolver, TSys: ExtNodeSys],\n ops = [\n+ ops::assert::op_node_get_error_s... | 2026-02-27T11:11:22 |
vuejs/vue | c70addf7d1a8e820ed80b6ab14aace5aa7b604c5 | be3dc9c6e923248bcf81eb8240dd4f3c168fac59 | fix(v-model): use stricter check for <select> option update
close #6112 | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -30,6 +30,7 @@ export default {\n if (isIE || isEdge) {\n setTimeout(cb, 0)\n }\n+ el._vOptions = [].map.call(el.options, getValue)\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n ... | 2017-07-19T21:51:41 |
huggingface/transformers | 496c283615dc1aaf0863089b16d55abbf17ac681 | df45a92cea0385970fabb21f8c329150cc3d5a9c | Add dinov3 autobackbone (#41276)
* feat: Add DINOv3 support to AutoBackbone [DRAFT]
- Implement DINOv3ViTConfig, DINOv3ViTModel, and DINOv3ViTBackbone
- Add DINOv3 to MODEL_FOR_BACKBONE_MAPPING_NAMES
- Support get_intermediate_layers for Facebook compatibility
- Enable multi-scale feature extraction for detection/seg... | [
{
"path": "docs/source/en/model_doc/dinov3.md",
"patch": "@@ -169,6 +169,9 @@ print(\"Pooled output shape:\", pooled_output.shape)\n [[autodoc]] DINOv3ViTModel\n - forward\n \n+## DINOv3ViTBackbone \n+[[autodoc]] DINOv3ViTBackbone\n+\n ## DINOv3ConvNextModel\n \n [[autodoc]] DINOv3ConvNextModel",
... | 2025-11-11T16:22:06 |
ollama/ollama | 2b9892a808a56f9d2634f85907fdc5e0498000c6 | 2bb2bdd5d41af52a19d34cf3ee5d4148839562e5 | fix(windows): modelpath and list | [
{
"path": "server/modelpath.go",
"patch": "@@ -46,7 +46,7 @@ func ParseModelPath(name string) ModelPath {\n \t\tname = after\n \t}\n \n-\tparts := strings.Split(name, string(os.PathSeparator))\n+\tparts := strings.Split(name, \"/\")\n \tswitch len(parts) {\n \tcase 3:\n \t\tmp.Registry = parts[0]",
"add... | 2023-12-15T23:50:51 |
ggml-org/llama.cpp | 10e9780154365b191fb43ca4830659ef12def80f | a045492088dd105231cc5f8bfaae2d527ce47344 | chat: fix int overflow, prevent size calculation in float/double (#17357)
* chat: fix int overflow, prevent size calculation in float/double
* Update common/chat.cpp
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> | [
{
"path": "common/chat.cpp",
"patch": "@@ -3359,7 +3359,7 @@ static common_chat_params common_chat_templates_apply_legacy(\n const struct common_chat_templates * tmpls,\n const struct common_chat_templates_inputs & inputs)\n {\n- int alloc_size = 0;\n+ size_t alloc_size = 0;\n std::vector<... | 2025-11-18T18:11:53 |
denoland/deno | f12a8b6803668ede2c910c5f01ead8bdee3d8149 | 2f42a460913eba2210a2d48e833d1e0e55423ed8 | fix(ext/node): provide CJS globals in worker_threads eval mode (#32266)
## Summary
- When using `new Worker(code, { eval: true })` in
`node:worker_threads`, Node.js evaluates the code as CommonJS, making
`require()` available. Deno was wrapping the code in a
`data:text/javascript` URL (ESM), causing `require is not de... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -364,10 +364,22 @@ class NodeWorker extends EventEmitter {\n \n if (options?.eval) {\n const code = typeof specifier === \"string\"\n- ? encodeURIComponent(specifier)\n+ ? specifier\n // deno-lint-ignore prefer-pr... | 2026-02-27T08:20:35 |
vuejs/vue | be3dc9c6e923248bcf81eb8240dd4f3c168fac59 | 381b48503aae796c5c21c318cae8b0a8322dde35 | fix: include boolean in isPrimitive check (#6127)
suppresses key warning for boolean values, closes #6126 | [
{
"path": "src/shared/util.js",
"patch": "@@ -22,7 +22,11 @@ export function isFalse (v: any): boolean %checks {\n * Check if value is primitive\n */\n export function isPrimitive (value: any): boolean %checks {\n- return typeof value === 'string' || typeof value === 'number'\n+ return (\n+ typeof va... | 2017-07-19T12:27:48 |
ollama/ollama | 2bb2bdd5d41af52a19d34cf3ee5d4148839562e5 | acfc376efda39919baeca9a8b68992b7fb74bcc0 | fix lint | [
{
"path": "cmd/interactive.go",
"patch": "@@ -238,10 +238,7 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {\n \t\t\t\t\t\tusageParameters()\n \t\t\t\t\t\tcontinue\n \t\t\t\t\t}\n-\t\t\t\t\tvar params []string\n-\t\t\t\t\tfor _, p := range args[3:] {\n-\t\t\t\t\t\tparams = appen... | 2023-12-15T22:07:34 |
huggingface/transformers | df45a92cea0385970fabb21f8c329150cc3d5a9c | 3ff0e69f84247ec8ed263ca412adc42f19fadbe2 | Enforce check_auto_docstring (#41635)
fix issues and enforce check_auto_docstring | [
{
"path": "src/transformers/models/deprecated/gptsan_japanese/modeling_gptsan_japanese.py",
"patch": "@@ -22,7 +22,7 @@\n from ....cache_utils import Cache\n from ....modeling_outputs import MoECausalLMOutputWithPast, MoEModelOutputWithPastAndCrossAttentions\n from ....modeling_utils import PreTrainedModel\... | 2025-11-11T16:05:55 |
ggml-org/llama.cpp | a045492088dd105231cc5f8bfaae2d527ce47344 | 1920345c3bcec451421bb6abc4981678cc721154 | vocab : call reserve() for building plamo-2-translate suffix (#17343)
Test 'Q4_K_M' quantization on https://huggingface.co/pfnet/plamo-2-translate
The 'suffix_to_score' size is 193510, it needs 19 memory allocation with final
capacity 262144 to hold the value, if not preserve the memory.
Signed-off-by: Haiyue Wang <... | [
{
"path": "src/llama-vocab.cpp",
"patch": "@@ -1281,6 +1281,7 @@ struct llm_tokenizer_plamo2 : llm_tokenizer {\n \n // Build suffix list in lexicographical order of reversed strings\n std::vector<std::string> suffixes;\n+ suffixes.reserve(suffix_to_score.size() + 1);\n for (co... | 2025-11-18T17:58:22 |
denoland/deno | 2f42a460913eba2210a2d48e833d1e0e55423ed8 | 7545be7ce2977fb13f75ecd81c24aa57597d0ebe | fix(node/vm): support vm.constants.DONT_CONTEXTIFY in createContext (#32337)
Closes https://github.com/denoland/deno/issues/31192
Adds support for creating vanilla (non-contextified) V8 contexts via
vm.createContext(vm.constants.DONT_CONTEXTIFY). This creates a context
without property interceptors, where globalThis ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -234,6 +234,7 @@ deno_core::extension!(deno_node,\n ops::v8::op_v8_write_value,\n ops::vm::op_vm_create_script,\n ops::vm::op_vm_create_context,\n+ ops::vm::op_vm_create_context_without_contextify,\n ops::vm::op_vm_script_run_in_context,\n ops... | 2026-02-27T01:53:18 |
huggingface/transformers | 3ff0e69f84247ec8ed263ca412adc42f19fadbe2 | 31839d741a30d7fe5daf982d9f2d9cc549ec6181 | Avoid mutating user-provided arguments in preprocessing utils (#42126)
* fix: deepcopy kwargs to avoid mutating user-provided arguments
* mod: shallow copy instead of deepcopy
---------
Co-authored-by: Leonardo Emili <lemili@apple.com> | [
{
"path": "src/transformers/processing_utils.py",
"patch": "@@ -1226,6 +1226,9 @@ class MyProcessingKwargs(ProcessingKwargs, CommonKwargs, TextKwargs, ImagesKwarg\n Dictionary of per-modality kwargs to be passed to each modality-specific processor.\n \n \"\"\"\n+ # holding a c... | 2025-11-11T14:52:07 |
denoland/deno | 7545be7ce2977fb13f75ecd81c24aa57597d0ebe | c76ab60e5b8068bd5457da5033145792e13a6154 | fix: deflake run_watch_env_file_with_multiline_values (#32346) | [
{
"path": "tests/integration/watcher_tests.rs",
"patch": "@@ -2563,13 +2563,18 @@ console.log(\"---\");\n .arg(\"--watch\")\n .arg(\"--allow-env\")\n .arg(\"--env-file=.env\")\n+ .arg(\"-L\")\n+ .arg(\"debug\")\n .arg(&main_script)\n .env(\"NO_COLOR\", \"1\")\n .piped_output()\... | 2026-02-26T21:54:24 |
ggml-org/llama.cpp | 1920345c3bcec451421bb6abc4981678cc721154 | 561a3e2788b6310f5ac6691d1b2a91546887191e | common : Generalized XML-style tool-call parsing with streaming support (GLM 4.5/4.6 + MiniMax M2 + SeedOSS + Kimi-K2 + Qwen3-Coder + Apriel-1.5 + Xiaomi-MiMo) (#16932)
* Add files via upload
* fix unit test
* fix crashes for --reasoning-format=none
* Patch buggy official MiniMax-M2 chat template
* add upstream mi... | [
{
"path": "common/CMakeLists.txt",
"patch": "@@ -50,6 +50,8 @@ add_library(${TARGET} STATIC\n base64.hpp\n chat-parser.cpp\n chat-parser.h\n+ chat-parser-xml-toolcall.h\n+ chat-parser-xml-toolcall.cpp\n chat.cpp\n chat.h\n common.cpp",
"additions": 2,
"deletions": 0,
... | 2025-11-18T17:54:15 |
ollama/ollama | 37708931fb37f228a9bf5c74c4c98ad1b1c9650e | f6cb0a553cc2ab87192c5ac9f001ad7c366d396e | update cuda overhead to 20% to fix crashes when switching between models and large context sizes | [
{
"path": "gpu/gpu.go",
"patch": "@@ -131,14 +131,8 @@ func getCPUMem() (memInfo, error) {\n func CheckVRAM() (int64, error) {\n \tgpuInfo := GetGPUInfo()\n \tif gpuInfo.FreeMemory > 0 && (gpuInfo.Library == \"cuda\" || gpuInfo.Library == \"rocm\") {\n-\t\t// leave 15% or 400MiB of VRAM free for overhead\n-... | 2024-01-09T05:05:23 |
huggingface/transformers | 31839d741a30d7fe5daf982d9f2d9cc549ec6181 | 2072f3059eea2d5c5061516b8fc089853e50a654 | Bugfix/remove emojis from print (#42091)
* Removed initial batch of emojis from strings and print statements.
* Removed many of the emojis that are printed to the client.
* Removed the Hugging Face emoji from the arg-parse help descriptions.
* Removed even more emojis.
* Used cursor to do a pass on top of my manua... | [
{
"path": "examples/pytorch/language-modeling/run_clm_no_trainer.py",
"patch": "@@ -127,7 +127,7 @@ def parse_args():\n parser.add_argument(\n \"--use_slow_tokenizer\",\n action=\"store_true\",\n- help=\"If passed, will use a slow tokenizer (not backed by the 🤗 Tokenizers library... | 2025-11-11T14:38:38 |
ggml-org/llama.cpp | 561a3e2788b6310f5ac6691d1b2a91546887191e | f40a2e5f1134cd78cca4f2c911685517e5deb8a7 | ci : change the openEuler-310p image to fix release (#17361) | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -1390,14 +1390,10 @@ jobs:\n strategy:\n matrix:\n arch: [x86, aarch64]\n- cann:\n- - '8.3.rc1.alpha001-910b-openeuler22.03-py3.11'\n- chip_type:\n- - '910b'\n- build:\n- - 'Release'\n+ ... | 2025-11-18T17:10:23 |
denoland/deno | c76ab60e5b8068bd5457da5033145792e13a6154 | 124de8b54f2675732346da76a577fbb061ba8d65 | chore: upgrade rustyline to 17.0 and nix to 0.30 (#32344)
Upgrade rustyline to v17.0.0 (with custom-bindings feature)
and rustyline-derive to v0.11.1. Upgrade nix to v0.30.1 to align
with rustyline 17's dependency.
API changes:
- highlight_char: bool → CmdKind parameter
- set_keyseq_timeout: i32 → Option<i32>
- Readl... | [
{
"path": "Cargo.lock",
"patch": "@@ -1708,7 +1708,7 @@ dependencies = [\n \"malva\",\n \"markup_fmt\",\n \"memchr\",\n- \"nix 0.27.1\",\n+ \"nix 0.30.1\",\n \"node_resolver\",\n \"node_shim\",\n \"notify\",\n@@ -2184,7 +2184,7 @@ dependencies = [\n \"filetime\",\n \"junction\",\n \"libc\",\n- \"ni... | 2026-02-26T21:22:57 |
vuejs/vue | a7615ef053d8bca85623666cb9a68e4d21f76952 | ac3d1eaea34ee23978d395a84f68154e7e86caa1 | build: fix postinstall script causing user install errors | [
{
"path": ".github/CONTRIBUTING.md",
"patch": "@@ -41,9 +41,10 @@ After cloning the repo, run:\n \n ``` bash\n $ npm install\n+& npm run setup\n ```\n \n-This will also run the `postinstall` script which links two git hooks:\n+The `setup` script links two git hooks:\n \n - `pre-commit`: runs ESLint on stage... | 2017-07-13T06:38:31 |
ollama/ollama | 2680078c137a93e12a55392a7e4d64632c58fb7b | f1b7e5f560e5c45b13f4c9dfb8114d67bb99d3d9 | fix build on linux | [
{
"path": "gpu/gpu.go",
"patch": "@@ -132,7 +132,7 @@ func CheckVRAM() (int64, error) {\n \tgpuInfo := GetGPUInfo()\n \tif gpuInfo.FreeMemory > 0 && (gpuInfo.Library == \"cuda\" || gpuInfo.Library == \"rocm\") {\n \t\t// leave 15% or 400MiB of VRAM free for overhead\n-\t\toverhead := gpuInfo.FreeMemory 3 / ... | 2024-01-09T04:44:13 |
huggingface/transformers | 2072f3059eea2d5c5061516b8fc089853e50a654 | 3760afb21c1f4c14aa48c41d1b025702777b1c53 | DataCollatorForLanguageModeling warning error fixed (#42144)
* warning error fixed
* Update src/transformers/data/data_collator.py
---------
Co-authored-by: Matt <Rocketknight1@users.noreply.github.com> | [
{
"path": "src/transformers/data/data_collator.py",
"patch": "@@ -723,7 +723,7 @@ def __post_init__(self):\n \n if self.mask_replace_prob < 1:\n warnings.warn(\n- \"Random token replacement is not supported with whole word masking.\",\n+ \"Ra... | 2025-11-11T14:22:20 |
ggml-org/llama.cpp | bc4064cfea99e139f92bdefcead7ba2af5d7b496 | 97cb3fd5ae65dfeee93af677549e75a81d23120c | CANN: fix acl_tensor_ptr usage in ASCEND_310P ROPE (#17347)
* cann: fix acl_tensor_ptr usage in ASCEND_310P ROPE implementation
Fix compilation errors in the ASCEND_310P-specific ROPE operation code
by adding .get() calls when passing acl_tensor_ptr smart pointers to
functions expecting raw aclTensor* pointers.
This... | [
{
"path": "ggml/src/ggml-cann/aclnn_ops.cpp",
"patch": "@@ -2544,7 +2544,7 @@ void ggml_cann_rope(ggml_backend_cann_context & ctx, ggml_tensor * dst) {\n \n int64_t shifts[] = { 1 };\n int64_t dims[] = { 3 };\n- aclnn_roll(ctx, acl_input_tensor, acl_input_roll_tensor, shifts, dims);... | 2025-11-18T08:41:52 |
denoland/deno | 124de8b54f2675732346da76a577fbb061ba8d65 | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | fix(lsp): tsgo typings for bytes/text imports (#32333) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -42,6 +42,7 @@ use node_resolver::NodeResolutionKind;\n use node_resolver::ResolutionMode;\n use node_resolver::cache::NodeResolutionThreadLocalCache;\n use once_cell::sync::Lazy;\n+use percent_encoding::percent_decode_str;\n use serde::Serialize;\n use tower_l... | 2026-02-26T20:42:01 |
vuejs/vue | 086e6d98f4217542afcc2794717119c62dde89b8 | dc1bca1361807596f73340e54d76d16568b3224f | fix: handle arrays in v-on object syntax | [
{
"path": "src/core/instance/render-helpers/bind-object-listeners.js",
"patch": "@@ -14,7 +14,7 @@ export function bindObjectListeners (data: any, value: any): VNodeData {\n for (const key in value) {\n const existing = on[key]\n const ours = value[key]\n- on[key] = existing ? [... | 2017-07-13T05:41:01 |
ollama/ollama | 18ddf6d57d809b22e12f276854b2949f8b52d956 | 61e650244963c791ddaf11051f69d9ff2eb49221 | fix windows build | [
{
"path": "llm/ext_server_windows.go",
"patch": "@@ -4,9 +4,9 @@ import (\n \t\"github.com/jmorganca/ollama/api\"\n )\n \n-func newDefaultExtServer(model string, adapters, projectors []string, numLayers int64, opts api.Options) (extServer, error) {\n+func newDefaultExtServer(model string, adapters, projecto... | 2024-01-09T01:04:01 |
huggingface/transformers | 3760afb21c1f4c14aa48c41d1b025702777b1c53 | 3c0b2b101ec4bd68bf1c0c3edfd81ccd9a422236 | Fix T5Gemma module structure (#42145)
* fix modular
* oupsi typo | [
{
"path": "src/transformers/models/t5gemma/modeling_t5gemma.py",
"patch": "@@ -448,11 +448,28 @@ def forward(\n return hidden_states\n \n \n-class T5GemmaDecoderLayer(T5GemmaEncoderLayer):\n+class T5GemmaDecoderLayer(GradientCheckpointingLayer):\n \"\"\"Decoder sub-layer: an extra cross-attentio... | 2025-11-11T11:26:03 |
ggml-org/llama.cpp | 97cb3fd5ae65dfeee93af677549e75a81d23120c | ffa277a54c7c7a9838da8b332e66dba761015a32 | fix: resolve undefined variable 'svr' compilation error (#17348) | [
{
"path": "tools/server/server-http.cpp",
"patch": "@@ -46,25 +46,26 @@ bool server_http_context::init(const common_params & params) {\n port = params.port;\n hostname = params.hostname;\n \n+ auto & srv = pimpl->srv;\n+\n #ifdef CPPHTTPLIB_OPENSSL_SUPPORT\n if (params.ssl_file_key != \"\" &&... | 2025-11-18T08:10:47 |
denoland/deno | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | fix(install): do not panic if lockfile incorrectly says package has a bin (#32345)
Confirmed added test panics before this PR, passes after | [
{
"path": "libs/npm_installer/bin_entries.rs",
"patch": "@@ -81,10 +81,14 @@ impl<'a, TSys: SetupBinEntrySys> BinEntries<'a, TSys> {\n extra: &'b NpmPackageExtraInfo,\n package_path: PathBuf,\n ) {\n+ let Some(bin) = extra.bin.as_ref() else {\n+ // likely lockfile incorrectly said that the... | 2026-02-26T20:15:10 |
vuejs/vue | 91deb4fd910afd51137820f120d4c26d0a99e629 | 6bf97721f1e38713353d5ac9906c88dca2cdad9b | fix: multiple merged vnode hooks not invoked properly
fix #6076 | [
{
"path": "src/core/vdom/helpers/update-listeners.js",
"patch": "@@ -27,8 +27,9 @@ export function createFnInvoker (fns: Function | Array<Function>): Function {\n function invoker () {\n const fns = invoker.fns\n if (Array.isArray(fns)) {\n- for (let i = 0; i < fns.length; i++) {\n- fn... | 2017-07-12T09:56:04 |
huggingface/transformers | 3c0b2b101ec4bd68bf1c0c3edfd81ccd9a422236 | e869e9df5426d5a7ffc9ad32d4199b177e5c5382 | fix: improve video processing fps assignment logic (#42009)
* fix: improve video processing fps and do_sample_frames assignment logic
* fix: set return_metadata=True to get metadata
* reformat the modular file
* fix typo
* revert flag change and fix fps assignment
* Taking 'num_frames' into considered.
Avoid err... | [
{
"path": "src/transformers/models/qwen2_5_vl/modular_qwen2_5_vl.py",
"patch": "@@ -839,6 +839,7 @@ class Qwen2_5_VLProcessorKwargs(ProcessingKwargs, total=False):\n \"padding\": False,\n \"return_mm_token_type_ids\": False,\n },\n+ \"videos_kwargs\": {\"return_metadat... | 2025-11-11T09:54:33 |
ggml-org/llama.cpp | ffa277a54c7c7a9838da8b332e66dba761015a32 | da95bf2a8577ab4ba20b12fd0e7bdf4617abb7e0 | CANN: Add openEuler-cann in build and release (#17192)
Update openEuler version
Remove variable ASCEND_SOC_TYPE
Modify the chip type
Fix case in zip filename
Change "device" to "chip_type"
Modify the value of chip_type | [
{
"path": ".devops/cann.Dockerfile",
"patch": "@@ -3,17 +3,15 @@\n # ==============================================================================\n \n # Define the CANN base image for easier version updates later\n-ARG CANN_BASE_IMAGE=quay.io/ascend/cann:8.1.rc1-910b-openeuler22.03-py3.10\n+ARG CHIP_TYPE=... | 2025-11-18T08:08:55 |
vuejs/vue | 606666d5a9008ab72f7cce9803b26310c636eef8 | 1f9e924971d7894517075f7f0efeeb85994a7ba0 | test: fix Object.prototype.watch related warnings | [
{
"path": "src/core/instance/state.js",
"patch": "@@ -20,6 +20,7 @@ import {\n hasOwn,\n isReserved,\n handleError,\n+ nativeWatch,\n validateProp,\n isPlainObject,\n isReservedAttribute\n@@ -53,7 +54,9 @@ export function initState (vm: Component) {\n observe(vm._data = {}, true /* asRootDa... | 2017-07-12T07:50:09 |
denoland/deno | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | dca6b1a9ed2561ff5300aaa47437b4910646e44b | fix(install): global install should not warn about using node_modules dir for npm specifiers (#32341) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -1184,6 +1184,9 @@ impl CliOptions {\n .first()\n .and_then(|url| file_to_url(url))\n .map(|url| vec![url]),\n+ DenoSubcommand::Install(InstallFlags::Local(\n+ InstallFlagsLocal::Entrypoints(flags),\n+ )) => Some(... | 2026-02-26T17:01:30 |
ollama/ollama | 08f1e18965c15648504fc5ec367134898e92ec6d | 7e8f7c835859b54abe50dc855f90357db27c7059 | Offload layers to GPU based on new model size estimates (#1850)
* select layers based on estimated model memory usage
* always account for scratch vram
* dont load +1 layers
* better estmation for graph alloc
* Update gpu/gpu_darwin.go
Co-authored-by: Bruce MacDonald <brucewmacdonald@gmail.com>
* Upd... | [
{
"path": "gpu/gpu.go",
"patch": "@@ -16,8 +16,6 @@ import (\n \t\"runtime\"\n \t\"sync\"\n \t\"unsafe\"\n-\n-\t\"github.com/jmorganca/ollama/api\"\n )\n \n type handles struct {\n@@ -133,31 +131,14 @@ func getCPUMem() (memInfo, error) {\n func CheckVRAM() (int64, error) {\n \tgpuInfo := GetGPUInfo()\n \tif... | 2024-01-08T21:42:00 |
huggingface/transformers | 37d48bbb48483dd93541bca7c0c689b06e3ba729 | 21913b2e100959467e9d97052575d33b45e06e0a | Remove unused functions in `image_transforms.py` (#42044)
* up
* make style
* Update trimaps logic
* fix typo
* Revert changes
---------
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com> | [
{
"path": "src/transformers/image_transforms.py",
"patch": "@@ -821,12 +821,6 @@ def split_to_tiles(images: \"torch.Tensor\", num_tiles_height: int, num_tiles_widt\n return image\n \n \n-def _cast_tensor_to_float(x):\n- if x.is_floating_point():\n- return x\n- return x.float()\n-\n-\n def _... | 2025-11-10T16:55:57 |
vuejs/vue | 0a9aab510bcca85c78ef06487b5dcf25d76d780d | fed602b90be89a43b4ec41b5a2e0a526d3a5f4a2 | fix(v-model): fix input change check for type="number"
The change should only apply to the .number modifier, not type="number".
fix #6069 | [
{
"path": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -158,7 +158,7 @@ function genDefaultModel (\n \n addProp(el, 'value', `(${value})`)\n addHandler(el, event, code, null, true)\n- if (trim || number || type === 'number') {\n+ if (trim || number) {\n addHandler(el, 'blur', '$f... | 2017-07-11T05:04:55 |
ggml-org/llama.cpp | 0de8878c961c36c88cca5a0c188ae7a6e5a4b778 | 38e2c1b4128fe3ac75dc563dd12d31b9011f4a26 | server: split HTTP into its own interface (#17216)
* server: split HTTP into its own interface
* move server-http and httplib to its own file
* add the remaining endpoints
* fix exception/error handling
* renaming
* missing header
* fix missing windows header
* fix error responses from http layer
* fix slot sa... | [
{
"path": "tools/server/CMakeLists.txt",
"patch": "@@ -14,6 +14,8 @@ endif()\n set(TARGET_SRCS\n server.cpp\n utils.hpp\n+ server-http.cpp\n+ server-http.h\n )\n set(PUBLIC_ASSETS\n index.html.gz",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "t... | 2025-11-17T21:05:44 |
denoland/deno | dca6b1a9ed2561ff5300aaa47437b4910646e44b | 126b6fb5da78621cdbbd9465a805f415e9fdb794 | Revert "fix(ext/node): implement `after`, `afterEach`, `before`, and … (#32340)
…`beforeEach` of `node:test` (#32320)"
This reverts commit 9612761ee60df178b418ca756c181ff0757483dd.
The tests from this commit are flaky and failing on `main`. | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,8 +21,6 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n-type HookFn = () => void | Promise<void>;\n-\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -63,3... | 2026-02-26T16:35:15 |
huggingface/transformers | 21913b2e100959467e9d97052575d33b45e06e0a | f028e9340cca466a64592dbea542d3bdd2c89d5e | Fix MaskFormer/Mask2Former fast image processors (#41393)
* Merge conflict
* add fast processor
* add fast processor
* make style
* add new convert rgb
* use nested group by shape in mllama fast, add support for multiple inputs in group by shape
* fix maskformer mask2 former fast im proc and add tests
* refacto... | [
{
"path": "src/transformers/image_transforms.py",
"patch": "@@ -828,7 +828,25 @@ def _cast_tensor_to_float(x):\n \n \n def _group_images_by_shape(nested_images, *paired_inputs, is_nested: bool = False):\n- \"\"\"Helper function to flatten a single level of nested image and batch structures and group by s... | 2025-11-10T16:48:10 |
ggml-org/llama.cpp | 38e2c1b4128fe3ac75dc563dd12d31b9011f4a26 | cb44fc84e8450acf88e913611f5c26a0c8b1aefa | vulkan: add log RTE support to fix Nvidia CI (#17320)
* vulkan: add log RTE support to fix Nvidia CI
* actually use the rte shader | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -3793,8 +3793,14 @@ static void ggml_vk_load_shaders(vk_device& device) {\n ggml_vk_create_pipeline(device, device->pipeline_sqrt_f32, \"sqrt_f32\", sqrt_f32_len, sqrt_f32_data, \"main\", 2, sizeof(vk_op_unary_push_constants), {512, 1, 1}, {... | 2025-11-17T20:37:49 |
denoland/deno | d7208c94811c07b17e8113fd964a9d7b58baca56 | 8209f3d4198325289192743d4881b2b334e84b7e | chore: fix duplicate words in source comments (#32314) | [
{
"path": "libs/lockfile/graphs.rs",
"patch": "@@ -276,7 +276,7 @@ impl LockfilePackageGraph {\n \n fn remove_root_pkg_by_id(&mut self, id: &LockfilePkgId) {\n // The ideal goal here is to only disassociate the package\n- // from the root so that the the current dependencies can be\n+ // from th... | 2026-02-26T14:40:57 |
vuejs/vue | 4d680794a5a345078827a3fee3db8658bd35ec3a | a1d1145c9123f7175f3ac20b503cfa507ad455f4 | fix(parser): the first newline following pre and textarea tag should be ignored (#6022)
fix #6022 | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -59,6 +59,10 @@ const decodingMap = {\n const encodedAttr = /&(?:lt|gt|quot|amp);/g\n const encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10);/g\n \n+// #5992\n+const isIgnoreNewlineTag = makeMap('pre,textarea', true)\n+const shouldIgnoreFirstNew... | 2017-07-10T13:42:00 |
huggingface/transformers | f028e9340cca466a64592dbea542d3bdd2c89d5e | 4dd4a8fafed79e28187ba8f5913b1e0442097ea4 | Fix model name test for compressed tensors (#42128)
* fix models
* fix output | [
{
"path": "tests/quantization/compressed_tensors_integration/test_compressed_models.py",
"patch": "@@ -155,8 +155,8 @@ def test_no_warnings_for_all_models(self):\n @require_compressed_tensors\n @require_torch\n class RunCompressedTest(unittest.TestCase):\n- tinyllama_w4a16 = \"nm-testing/tinyllama-w4a16-... | 2025-11-10T15:22:46 |
ollama/ollama | d74ce6bd4f78f8a06c97bf9b24485211c48a41d8 | 57942b467696f9d7dbd194a2591d144e1da596b9 | Detect very old CUDA GPUs and fall back to CPU
If we try to load the CUDA library on an old GPU, it panics and crashes
the server. This checks the compute capability before we load the
library so we can gracefully fall back to CPU mode. | [
{
"path": "gpu/gpu.go",
"patch": "@@ -28,6 +28,9 @@ type handles struct {\n var gpuMutex sync.Mutex\n var gpuHandles *handles = nil\n \n+// TODO verify this is the correct min version\n+const CudaComputeMajorMin = 5\n+\n // Note: gpuMutex must already be held\n func initGPUHandles() {\n \t// TODO - if the o... | 2024-01-07T05:40:04 |
ggml-org/llama.cpp | cb44fc84e8450acf88e913611f5c26a0c8b1aefa | cb623de3fc61011e5062522b4d05721a22f2e916 | cmake : fix ARM feature verification (#17170)
* cmake : fix ARM feature verification
Use check_cxx_source_compiles to prevent conflicts with
the existing GGML_NATIVE detection code.
Signed-off-by: Adrien Gallouët <angt@huggingface.co>
* cmake : unset __ARM_FEATURE when feature is disabled
Signed-off-by: Adrien Gal... | [
{
"path": "ggml/src/ggml-cpu/CMakeLists.txt",
"patch": "@@ -145,26 +145,27 @@ function(ggml_add_cpu_backend_variant_impl tag_name)\n \n include(CheckCXXSourceRuns)\n \n- function(check_arm_feature tag code)\n+ macro(check_arm_feature tag feature code)\n ... | 2025-11-17T20:37:29 |
denoland/deno | defb168115d29be50d40d8f61aa2b854bfaacdd9 | 9612761ee60df178b418ca756c181ff0757483dd | fix(ext/node): rename conflict callback field typo (#32306)
Co-authored-by: Rohan Santhosh <181558744+Rohan5commit@users.noreply.github.com> | [
{
"path": "ext/node_sqlite/database.rs",
"patch": "@@ -1084,7 +1084,7 @@ impl DatabaseSync {\n \n struct HandlerCtx<'a, 'b, 'c> {\n scope: &'a mut v8::PinScope<'b, 'c>,\n- confict: Option<v8::Local<'b, v8::Function>>,\n+ conflict: Option<v8::Local<'b, v8::Function>>,\n filter: Opti... | 2026-02-26T09:30:21 |
vuejs/vue | a1d1145c9123f7175f3ac20b503cfa507ad455f4 | 8d66691ee264969447390822971b8caa029cac3e | fix(v-model): should generate component-specific code for tags with "is" attribute
fix #6066 | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -483,7 +483,9 @@ function processAttrs (el) {\n )\n }\n }\n- if (isProp || platformMustUseProp(el.tag, el.attrsMap.type, name)) {\n+ if (!el.component && (\n+ isProp || platformMustUseProp(el.tag, el.... | 2017-07-10T13:34:40 |
huggingface/transformers | 4dd4a8fafed79e28187ba8f5913b1e0442097ea4 | 03538a80be2b96d11590c2aee4d0f7f70abcc017 | Fix GPT-2 Flash Attention 2 generation with left-padding (#41966)
* Fix GPT-2 Flash Attention 2 generation with left-padding
* repo consistency
* define is_causal in init
* fix | [
{
"path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py",
"patch": "@@ -121,7 +121,7 @@ def __init__(self, config, is_cross_attention=False, layer_idx=None):\n \n self.attn_dropout = nn.Dropout(config.attn_pdrop)\n self.resid_dropout = nn.Dropout(config.resid... | 2025-11-10T15:14:30 |
denoland/deno | 9612761ee60df178b418ca756c181ff0757483dd | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | fix(ext/node): implement `after`, `afterEach`, `before`, and `beforeEach` of `node:test` (#32320) | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,6 +21,8 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n+type HookFn = () => void | Promise<void>;\n+\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -61,1... | 2026-02-26T09:19:43 |
ggml-org/llama.cpp | dbed61294abbc91b93aef64047bf2fecbf44b48b | 80deff3648b93727422461c41c7279ef1dac7452 | vulkan: add LOG operation support for F32 and F16 (#17183)
* vulkan: add LOG operation support for F32 and F16
Part of #14909.
* vulkan: Fix LOG operation types
* docs: Update operation support documentation for Vulkan LOG operation
* vulkan: fix log_f16 shader
* docs: restore missing LOG test cases and regenerat... | [
{
"path": "docs/ops.md",
"patch": "@@ -63,7 +63,7 @@ Legend:\n | IM2COL_3D | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ❌ |\n | L2_NORM | ❌ | ❌ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ |\n | LEAKY_RELU | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | 🟡 | ❌ |\n-| ... | 2025-11-16T21:50:09 |
huggingface/transformers | 03538a80be2b96d11590c2aee4d0f7f70abcc017 | 700c48a29f03bea03465b30e1240a650f905c2b5 | [`Attn Masks`] Non-vmap default for attention masks (#41852)
* atmpt 1
* fixup masking to work correctly with old torch
* few changes to make things a bit more cleaner
* oopsie
* fix integer overflow on bidirectional masks via indexing fn
* rm executorch workarounds --> still need to handle on sliding etc fns pro... | [
{
"path": "src/transformers/integrations/executorch.py",
"patch": "@@ -11,7 +11,6 @@\n # specific language governing permissions and limitations under the License.\n \n import logging\n-from collections.abc import Callable\n from typing import Optional\n \n import torch\n@@ -24,13 +23,7 @@\n StaticCache... | 2025-11-10T15:04:21 |
vuejs/vue | 8d66691ee264969447390822971b8caa029cac3e | 5dbca4e3c4641a652163aac8b5c9d4e214ca2597 | fix(core): should preserve reactivity-ness of injected objects
fix #5913 | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -3,7 +3,7 @@\n import { warn } from '../util/index'\n import { hasOwn } from 'shared/util'\n import { hasSymbol } from 'core/util/env'\n-import { defineReactive } from '../observer/index'\n+import { defineReactive, observerState } from '../observer/index... | 2017-07-10T13:12:43 |
denoland/deno | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | 1df618d969894353731981a17784816167ad82fb | fix(node/buffer): fix base64 decoding for strings with hyphens (#32298)
## Summary
- Fix `Buffer.from(str, "base64")` throwing on strings containing `-`
characters (e.g. `"base64-encoded-bytes-from-browser"`)
- Two bugs in `base64ToBytes` / `base64clean`:
1. Base64url character replacements (`-`→`+`, `_`→`/`) were app... | [
{
"path": "ext/node/polyfills/internal_binding/_utils.ts",
"patch": "@@ -21,8 +21,10 @@ export function base64ToBytes(str: string) {\n try {\n return forgivingBase64Decode(str);\n } catch {\n- str = base64clean(str);\n+ // Convert base64url characters to standard base64 before cleaning,\n+ ... | 2026-02-26T08:14:16 |
ollama/ollama | 2ef9352b941bce4280d5a42a7781984b1625f7df | 3a9f4471412cf132f0fa7b872cb4f616a1dd8b59 | fix(cmd): history in alt mode | [
{
"path": "readline/buffer.go",
"patch": "@@ -25,10 +25,7 @@ func NewBuffer(prompt *Prompt) (*Buffer, error) {\n \t\treturn nil, err\n \t}\n \n-\tlwidth := width - len(prompt.Prompt)\n-\tif prompt.UseAlt {\n-\t\tlwidth = width - len(prompt.AltPrompt)\n-\t}\n+\tlwidth := width - len(prompt.prompt())\n \n \tb... | 2024-01-06T00:19:37 |
ggml-org/llama.cpp | 80deff3648b93727422461c41c7279ef1dac7452 | 8b1c339bd2eb04f5771b4f1e6c88ab95438f109e | vulkan: fix MMQ quantize_y condition (#17301) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -6444,7 +6444,7 @@ static void ggml_vk_mul_mat_q_f16(ggml_backend_vk_context * ctx, vk_context& sub\n \n const bool y_f32_kernel = src1->type == GGML_TYPE_F32 && !y_non_contig;\n \n- bool quantize_y = ctx->device->integer_dot_product && s... | 2025-11-16T18:38:17 |
huggingface/transformers | 700c48a29f03bea03465b30e1240a650f905c2b5 | 18a19dea61f41dbdf23425037f01a3e0a2855043 | fix qwen2vl/qwen3vl video processor temporal padding when num_frames%temporal_patch_size!=1 (#42083)
* qwen3vl video process padding video frames
* add two video processor test cases
* fix typo
* down test image size
* fix qwen2vl video processor t padding
* delete padding when num_frames < temporal_patch_size
*... | [
{
"path": "src/transformers/models/qwen2_vl/video_processing_qwen2_vl.py",
"patch": "@@ -232,9 +232,10 @@ def _preprocess(\n patches = stacked_videos\n \n # Check that videos have `num_frames` divisible by `temporal_patch_size`\n- if patches.shape[1] % temporal_patch_size ... | 2025-11-10T14:36:21 |
vuejs/vue | 0d6ad12a4805473579440d0f817641760c364dcf | 306997eaf4ff36f4757c753c8a00ce3851e29cca | refactor(weex): sync recent changes of Weex (#6028)
* compile bundle on native side if 'compileBundle()' is available on
native side.
* refactor sendTasks
* reset renderer.compileBundle
* v2.2.2-weex.1
* v2.2.2-weex.2 && fixed memory leak
* call C++ timer instead of WxTimerModule in weex-vue-framwork
... | [
{
"path": "src/platforms/weex/entry-framework.js",
"patch": "@@ -22,7 +22,7 @@ export function init (cfg) {\n renderer.Document = cfg.Document\n renderer.Element = cfg.Element\n renderer.Comment = cfg.Comment\n- renderer.sendTasks = cfg.sendTasks\n+ renderer.compileBundle = cfg.compileBundle\n }\n \... | 2017-07-07T03:42:47 |
ollama/ollama | 5580ae2472f982db5c3aae1433a02a56e0b967ec | 9c2941e61b31ca3c90098d10f3cef496011ddf0a | fix: set template without triple quotes | [
{
"path": "cmd/interactive.go",
"patch": "@@ -139,8 +139,8 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {\n \tfmt.Print(readline.StartBracketedPaste)\n \tdefer fmt.Printf(readline.EndBracketedPaste)\n \n+\tvar sb strings.Builder\n \tvar multiline MultilineState\n-\tvar prompt ... | 2024-01-05T23:51:33 |
denoland/deno | c08e78ddf4e6a3b1e8457039c0e2965ae147b3d4 | 1b4eac4c0a3ca77c64d0071f9716316c497ce864 | ci: fix script for release builds (#32321)
Without this condition, tagged builds were marked as canary, instead of
"stable" | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -772,6 +772,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n {\n // do this on PRs as well as main so that PRs can use the cargo build cache from main\n name: \"Configure canary build\",\n+ ... | 2026-02-25T14:08:32 |
huggingface/transformers | 18a19dea61f41dbdf23425037f01a3e0a2855043 | dba6aeb1e389416ebaae29f2351af71cdd6c82ac | 📝 docs(smolvlm): fix variable name in batch inference example (#42123)
Fixed incorrect variable name on line 162. The code creates a list called
'conversations' (plural) but incorrectly references 'conversation' (singular)
in the apply_chat_template call, which would cause a NameError.
This fixes the batch mixed med... | [
{
"path": "docs/source/en/model_doc/smolvlm.md",
"patch": "@@ -159,7 +159,7 @@ conversation3 = [\n \n conversations = [conversation1, conversation2, conversation3]\n inputs = processor.apply_chat_template(\n- conversation,\n+ conversations,\n add_generation_prompt=True,\n tokenize=True,\n ... | 2025-11-10T13:48:25 |
vuejs/vue | 306997eaf4ff36f4757c753c8a00ce3851e29cca | 254d85cfc42d58bf9e3d0626ba959379bdc32d6f | fix(core): add merge strategy for provide option (#6025)
Fix #6008 | [
{
"path": "src/core/util/options.js",
"patch": "@@ -63,7 +63,7 @@ function mergeData (to: Object, from: ?Object): Object {\n /**\n * Data\n */\n-strats.data = function (\n+export function mergeDataOrFn (\n parentVal: any,\n childVal: any,\n vm?: Component\n@@ -73,15 +73,6 @@ strats.data = function (... | 2017-07-07T03:39:25 |
ggml-org/llama.cpp | 52e5d421f1d0584d2dc2caaa1c35126215660bde | 4db56412103502347e000142ffc01b1eca217e27 | opencl: fix rms_norm_mul (#17250)
* opencl: use subgrroup reduce for reduction in rms_norm_mul
* opencl: add comment about workgroup size | [
{
"path": "ggml/src/ggml-opencl/ggml-opencl.cpp",
"patch": "@@ -5705,7 +5705,7 @@ static void ggml_opencl_op_rms_norm_fused(ggml_backend_t backend, ggml_tensor *\n CL_CHECK(clSetKernelArg(kernel, 21, sizeof(cl_ulong), &nb2));\n CL_CHECK(clSetKernelArg(kernel, 22, sizeof(cl_ulong), &nb3));\... | 2025-11-16T01:40:14 |
ollama/ollama | 22e93efa410a5523c5896a0ac6597fc4534f1b3e | 2909dce89435fdf7227233483a64558ac593e9ec | add show info command and fix the modelfile | [
{
"path": "api/types.go",
"patch": "@@ -148,7 +148,12 @@ type DeleteRequest struct {\n }\n \n type ShowRequest struct {\n-\tName string `json:\"name\"`\n+\tName string `json:\"name\"`\n+\tModel string `json:\"model\"`\n+\tSystem string `json:\"system\"`\n+\tTemplate string `json:\"template\"`\n+\n+... | 2024-01-05T01:23:11 |
denoland/deno | ede0e2ae4901ffa3d85d618c1a198430f76915b0 | 9c4102a765e10958fd36de3679702c61de3b7bb5 | fix(permissions): allow /proc/pressure/* files with --allow-read (#30780)
The /proc/pressure/* files (memory, cpu, io) are read-only system
monitoring files that only expose PSI (Pressure Stall Information)
metrics. These files are safe to read and commonly used for system
monitoring and performance analysis.
Previou... | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -4268,6 +4268,9 @@ impl PermissionsContainer {\n {\n if path.ends_with(\"/environ\") {\n self.check_env_all()?;\n+ } else if path.starts_with(\"/proc/pressure/\") {\n+ // Allow /proc/pressure/* files with just --all... | 2026-02-24T16:58:47 |
huggingface/transformers | dba6aeb1e389416ebaae29f2351af71cdd6c82ac | 1c9077f66dc285dd32aa2410bed8acc680d64475 | fix continuous batching issues, extend ut cases to xpu (#41830)
* extend conrinuous batching cases to xpu
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
---------
Signed-off-by: Yao, Ma... | [
{
"path": "src/transformers/generation/continuous_batching/requests.py",
"patch": "@@ -19,6 +19,7 @@\n \n import torch\n \n+from ...utils import is_torch_xpu_available\n from ...utils.logging import logging\n from ...utils.metrics import traced\n \n@@ -35,6 +36,13 @@ def get_device_and_memory_breakdown() ->... | 2025-11-10T13:03:52 |
vuejs/vue | 254d85cfc42d58bf9e3d0626ba959379bdc32d6f | d8d4ca6763af55e1715bbc1e0fadd10e5be41db3 | fix(ref): refactor function registerRef (#6039)
fix #5997 | [
{
"path": ".flowconfig",
"patch": "@@ -20,3 +20,4 @@ module.name_mapper='^weex/\\(.*\\)$' -> '<PROJECT_ROOT>/src/platforms/weex/\\1'\n module.name_mapper='^server/\\(.*\\)$' -> '<PROJECT_ROOT>/src/server/\\1'\n module.name_mapper='^entries/\\(.*\\)$' -> '<PROJECT_ROOT>/src/entries/\\1'\n module.name_mapper=... | 2017-07-07T03:37:19 |
ggml-org/llama.cpp | 4db56412103502347e000142ffc01b1eca217e27 | 72bd7321a7d7465d371eb2ae46cd5518842c8f44 | opencl: add kernel to handle mat mul in attention to improve encoding speed (#17181)
* Add mul_mm_f16_f32_kq_kqv kernel
* Add ggml_cl_mul_mat_kq_kqv_adreno func
* fix whitespace
* remove unused variable
* remove redundant
* refactor and clean up
* remove trailing whitespace | [
{
"path": "ggml/src/ggml-opencl/CMakeLists.txt",
"patch": "@@ -119,6 +119,7 @@ set(GGML_OPENCL_KERNELS\n pad\n repeat\n mul_mat_f16_f32\n+ mul_mm_f16_f32_kq_kqv\n conv2d\n conv2d_f16_f32\n flash_attn_f32_f16",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
... | 2025-11-16T01:33:10 |
ollama/ollama | df086d3c8c7fc79164aa02d6a8b927473c450d34 | cd8fad339826b15c109f8a9487ac0a7577f98b3b | fix docker doc to point to hub
Signed-off-by: Matt Williams <m@technovangelist.com> | [
{
"path": "docs/README.md",
"patch": "@@ -12,7 +12,7 @@ Import models using source model weights found on Hugging Face and similar sites\n \n Installing on Linux in most cases is easy using the script on Ollama.ai. To get more detail about the install, including CUDA drivers, see the **[Linux Documentation]... | 2024-01-05T02:42:23 |
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.