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 | 709dc43239c66318f6f3c23123700192adf4fc2b | eb8e7a005fcc1f7e7896ea9cbf3e2aaf7d260cca | Fix symbolic_trace with kv cache (#28724)
* fix symbolic_trace with kv cache
* comment & better test | [
{
"path": "src/transformers/utils/fx.py",
"patch": "@@ -765,7 +765,7 @@ def __init__(self, autowrap_modules=(math,), autowrap_functions=()):\n )\n \n def _generate_dummy_input(\n- self, model: PreTrainedModel, input_name: str, shape: List[int]\n+ self, model: PreTrainedModel, i... | 2024-02-01T08:45:02 |
vuejs/vue | 4d1d0f0a82c5aa109a74b52782daabb442f8ead3 | c19fabd9302ad4f6fba2b79de5e5cd623014a481 | chore: fix dev scripts | [
{
"path": "package.json",
"patch": "@@ -14,15 +14,15 @@\n ],\n \"sideEffects\": false,\n \"scripts\": {\n- \"dev\": \"rollup -w -c scripts/config.ts --environment TARGET:web-full-dev\",\n- \"dev:cjs\": \"rollup -w -c scripts/config.ts --environment TARGET:web-runtime-cjs-dev\",\n- \"dev:esm\"... | 2022-05-19T08:18:36 |
rust-lang/rust | 56f8f48e05a0635f28fa293557aa10c0162b8526 | f77247ac59b29ce927f4d2cd1c26a4b2d1d358c9 | fix broken `x {doc, build} core`
Signed-off-by: onur-ozkan <work@onurozkan.dev> | [
{
"path": "src/bootstrap/src/core/build_steps/compile.rs",
"patch": "@@ -95,7 +95,7 @@ impl Step for Std {\n const DEFAULT: bool = true;\n \n fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {\n- run.crate_or_deps(\"sysroot\").path(\"library\").alias(\"core\")\n+ run.crate_or_deps(\"... | 2025-02-16T09:11:25 |
golang/go | 2cb10d42b762f5f47dd239a2c114d1840dc5cfbf | daf39d06ee04414fa962aa61fd0e7bc4ee166bfd | cmd/compile: in prove, zero right shifts of positive int by #bits - 1
Taking over Zach's CL 212277. Just cleaned up and added a test.
For a positive, signed integer, an arithmetic right shift of count
(bit-width - 1) equals zero. e.g. int64(22) >> 63 -> 0. This CL makes
prove replace these right shifts with a zero-va... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -1189,15 +1189,38 @@ func simplifyBlock(sdom SparseTree, ft *factsTable, b *Block) {\n \t\t\t\t}\n \t\t\t\tv.Op = ctzNonZeroOp[v.Op]\n \t\t\t}\n-\n+\t\tcase OpRsh8x8, OpRsh8x16, OpRsh8x32, OpRsh8x64,\n+\t\t\tOpRsh16x8, OpRsh16x16, OpRsh16x32, O... | 2020-05-07T20:44:51 |
ggml-org/llama.cpp | 41386cf365d894134ee0813d15e2f5d76f6a4d8e | 3d4e86bbeb15f487d6da6174ba6191b7c212cc25 | rpc : report actual free memory (#16616)
* rpc : report actual free memory
Start reporting the free memory on every device instead of using
fixed values. Now llama-cli users can get a nice memory breakdown
when using RPC devices.
* drop --mem in rpc-server | [
{
"path": "ggml/include/ggml-rpc.h",
"patch": "@@ -21,8 +21,7 @@ GGML_BACKEND_API ggml_backend_buffer_type_t ggml_backend_rpc_buffer_type(const c\n GGML_BACKEND_API void ggml_backend_rpc_get_device_memory(const char * endpoint, uint32_t device, size_t * free, size_t * total);\n \n GGML_BACKEND_API void ggml... | 2025-10-17T15:02:52 |
nodejs/node | 9f175d1229169753307f7cfb2656cdcd16cbcdfb | c77e6d3f8c9e1179b8d90df49d781e0a048f7d7c | lib: remove the invalid command line options
The option --remote_debugging_server and --debug-agent are
not supported now.
PR-URL: https://github.com/nodejs/node/pull/13764
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Revi... | [
{
"path": "lib/internal/bootstrap_node.js",
"patch": "@@ -136,14 +136,6 @@\n NativeModule.require('node-inspect/lib/_inspect').start();\n });\n \n- } else if (process.argv[1] === '--remote_debugging_server') {\n- // Start the debugging server\n- NativeModule.require('internal/insp... | 2017-06-18T14:48:39 |
huggingface/transformers | eb8e7a005fcc1f7e7896ea9cbf3e2aaf7d260cca | 0d26abdd3a9f2594d736161eba136007dcd649ba | Make `is_torch_bf16_available_on_device` more strict (#28796)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/utils/import_utils.py",
"patch": "@@ -359,6 +359,14 @@ def is_torch_fp16_available_on_device(device):\n try:\n x = torch.zeros(2, 2, dtype=torch.float16).to(device)\n _ = x @ x\n+\n+ # At this moment, let's be strict of the check: check if `LayerNorm` i... | 2024-02-01T08:03:53 |
rust-lang/rust | 8ae3ca98e5c225da22e7ab1a86069098a74cdfe2 | c3fe9e7e4d259759589f3431aaadf7ab35b9269f | Fix test that relies on error language | [
{
"path": "tests/ui/unpretty/staged-api-invalid-path-108697.rs",
"patch": "@@ -2,8 +2,8 @@\n // ICE: tcx.resolutions(()) is not supported for local crate -Zunpretty=mir\n // on invalid module path with staged_api\n //@ compile-flags: -Zunpretty=mir\n-//@ normalize-stderr: \"The system cannot find the file s... | 2025-02-16T09:08:24 |
golang/go | d40b0a1494cc3b717207ce822d01d0f180627a3f | 57e32c4fbd4f20d567d1767dfc2d94bec828a8dc | cmd/link: fix mode parameter to fallocate on Linux
Fix the mode parameter to fallocate on Linux which is the operation mode
and not the file mode as with os.OpenFile.
Also handle syscall.EINTR.
Fixes #38950
Change-Id: Ieed20d9ab5c8a49be51c9f9a42b7263f394a5261
Reviewed-on: https://go-review.googlesource.com/c/go/+/2... | [
{
"path": "src/cmd/link/internal/ld/outbuf_linux.go",
"patch": "@@ -7,5 +7,5 @@ package ld\n import \"syscall\"\n \n func (out *OutBuf) fallocate(size uint64) error {\n-\treturn syscall.Fallocate(int(out.f.Fd()), outbufMode, 0, int64(size))\n+\treturn syscall.Fallocate(int(out.f.Fd()), 0, 0, int64(size))\n ... | 2020-05-08T12:09:00 |
ggml-org/llama.cpp | 342c728d031d50673feded797520a44127d73379 | ababae7e1ec3e9cfdab0322ee55ea3389e82a4d5 | ggml : fix SpaceMit IME array out-of-bounds in task assignment (#16629)
Fix incorrect task-to-batch index calculation in the quantization phase.
The bug caused out-of-bounds access to qnbitgemm_args array when
compute_idx exceeded per_gemm_block_count_m, leading to invalid
pointer dereferences and SIGBUS errors.
Cor... | [
{
"path": "ggml/src/ggml-cpu/spacemit/ime.cpp",
"patch": "@@ -485,8 +485,9 @@ template <typename BLOC_TYPE, int64_t INTER_SIZE, int64_t NB_COLS> class tensor_\n int32_t start = ith * task_per_thread;\n int32_t end = std::min((ith ... | 2025-10-17T10:01:23 |
nodejs/node | c77e6d3f8c9e1179b8d90df49d781e0a048f7d7c | 4218afce9aabb2a4df9b6156bfb839b030190ba1 | n-api: adds function to adjust external memory
Added a wrapper around
v8::Isolate::AdjustAmountOfExternalAllocatedMemory
PR-URL: https://github.com/nodejs/node/pull/14310
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Rev... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -3394,6 +3394,31 @@ support it:\n * If the function is not available, provide an alternate implementation\n that does not use the function.\n \n+## Memory Management\n+\n+### napi_adjust_external_memory\n+<!-- YAML\n+added: REPLACEME\n+-->\n+```C\n+NAPI_EXTERN na... | 2017-06-28T03:56:15 |
vuejs/vue | 40dccfedd1d92ef9d61ee350ed8fbd7fc525b5b9 | cf8b16568d4f83185de4575ac5462c8692b4cff9 | chore: fix test harness; most of the tooling + test harness is happy; coverage still needs fixing | [
{
"path": ".babelrc.js",
"patch": "@@ -6,7 +6,7 @@ module.exports = {\n ],\n plugins: [\n require(\"babel-plugin-transform-vue-jsx\"),\n- require(\"@babel/plugin-syntax-dynamic-import\"),\n+ require(\"@babel/plugin-syntax-dynamic-import\")\n ],\n \n ignore: [\"dist/*.js\", \"packages/**/*.... | 2022-05-03T17:04:55 |
huggingface/transformers | 0d26abdd3a9f2594d736161eba136007dcd649ba | 7b2bd1fbbd50e57cf28013e2d0737912ecc0f2eb | Adding [T5/MT5/UMT5]ForTokenClassification (#28443)
* Adding [T5/MT5/UMT5]ForTokenClassification
* Add auto mappings for T5ForTokenClassification and variants
* Adding ForTokenClassification to the list of models
* Adding attention_mask param to the T5ForTokenClassification test
* Remove outdated comment i... | [
{
"path": "docs/source/en/model_doc/mt5.md",
"patch": "@@ -101,6 +101,10 @@ See [`T5TokenizerFast`] for all details.\n \n [[autodoc]] MT5ForSequenceClassification\n \n+## MT5ForTokenClassification\n+\n+[[autodoc]] MT5ForTokenClassification\n+\n ## MT5ForQuestionAnswering\n \n [[autodoc]] MT5ForQuestionAnswe... | 2024-02-01T02:53:49 |
rust-lang/rust | f396a3107507bb1925eba5a429da6adc40a06d61 | 500a686ba8bb1b51df7e7f8f81d286b2e20209ff | Add an example for std::error::Error | [
{
"path": "library/core/src/error.rs",
"patch": "@@ -22,6 +22,30 @@ use crate::fmt::{self, Debug, Display, Formatter};\n /// accessing that error via [`Error::source()`]. This makes it possible for the\n /// high-level module to provide its own errors while also revealing some of the\n /// implementation fo... | 2025-02-16T07:49:22 |
ggml-org/llama.cpp | ababae7e1ec3e9cfdab0322ee55ea3389e82a4d5 | b19491599d4d42c606601d75e95c1d1de3291f8e | webui: reorganize settings layout (#16607)
* webui: reorganize settings layout
* chore: update webui build output
* fix: remove unused variable
* chore: update webui build output | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsDialog.svelte",
"patch": "@@ -4,7 +4,7 @@\n \t\tFunnel,\n \t\tAlertTriangle,\n \t\tBrain,\n-\t\tCog,\n+\t\tCode,\n \t\tMonitor,\n \t\tSun,\n \t\tMoon,\n@@ -88,9 +88,59 @@\n \t\t\t]\n \t\t},\n \t\t{\n-\t\t\ttitle: 'Samplers',\... | 2025-10-17T08:35:03 |
vuejs/vue | ee5243fdccec55bba52ccd04cc80eecff449d335 | 8e047df75adaca168a69edfdbcbe89ff63a4f910 | chore: fix tests | [
{
"path": ".flowconfig",
"patch": "@@ -1,23 +0,0 @@\n-[ignore]\n-.*/node_modules/.*\n-.*/test/.*\n-.*/scripts/.*\n-.*/examples/.*\n-.*/benchmarks/.*\n-\n-[include]\n-\n-[libs]\n-flow\n-\n-[options]\n-unsafe.enable_getters_and_setters=true\n-module.name_mapper='^compiler/\\(.*\\)$' -> '<PROJECT_ROOT>/src/com... | 2022-04-30T08:07:01 |
huggingface/transformers | 47358661416bf6f243d42254f8641189155d50cd | 95346e9dcd2724ba8203c61759907fb3a8b737cb | Split daily CI using 2 level matrix (#28773)
* update / add new workflow files
* Add comment
* Use env.NUM_SLICES
* use scripts
* use scripts
* use scripts
* Fix
* using one script
* Fix
* remove unused file
* update
* fail-fast: false
* remove unused file
* fix
* fix
* use... | [
{
"path": ".github/workflows/model_jobs.yml",
"patch": "@@ -0,0 +1,102 @@\n+name: model jobs\n+\n+on:\n+ workflow_call:\n+ inputs:\n+ folder_slices:\n+ required: true\n+ type: string\n+ machine_type:\n+ required: true\n+ type: string\n+ slice_id:\n+ requ... | 2024-01-31T17:04:43 |
golang/go | c9442dc8506e52c2846e436adb6be3831c37beb6 | 0242d461c9293d50f429fc9bdc41a02510b86995 | runtime: fix dead link in gcc_androd.c file
Old url 404s because the file no longer exists on master; change it to
point to the android 10 release branch.
Change-Id: If0f8b645f2c746f9fc8bbd68f4d1fe41868493ba
Reviewed-on: https://go-review.googlesource.com/c/go/+/232809
Reviewed-by: Ian Lance Taylor <iant@golang.org> | [
{
"path": "src/runtime/cgo/gcc_android.c",
"patch": "@@ -35,7 +35,7 @@ fatalf(const char* format, ...)\n // Truncated to a different magic value on 32-bit; that's ok.\n #define magic1 (0x23581321345589ULL)\n \n-// From https://android.googlesource.com/platform/bionic/+/refs/heads/master/libc/private/bionic_... | 2020-05-09T15:10:32 |
ggml-org/llama.cpp | b19491599d4d42c606601d75e95c1d1de3291f8e | 9ad4f1931ee0f3b41d9355245ef744786aaae0aa | vulkan: fix debug build (add_rms_len/data not found) (#16624) | [
{
"path": "ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp",
"patch": "@@ -959,7 +959,7 @@ void write_output_files() {\n }\n \n std::string suffixes[2] = {\"_f32\", \"_f16\"};\n- for (auto op : {\"add\", \"sub\", \"mul\", \"div\", \"add_rms\"}) {\n+ for (std::string op : {\"add\", \... | 2025-10-17T07:31:04 |
vuejs/vue | 8e047df75adaca168a69edfdbcbe89ff63a4f910 | da64b4a41f9e7c0edae074abd279bdf385575ff0 | update deps and other code -- still need to fix some issues with testing - basically dependencies issues | [
{
"path": "dist/vue.esm.browser.js",
"patch": "@@ -1,6 +1,6 @@\n /*!\n- * Vue.js v2.6.12\n- * (c) 2014-2021 Evan You\n+ * Vue.js v2.6.14\n+ * (c) 2014-2022 Evan You\n * Released under the MIT License.\n */\n const emptyObject = Object.freeze({});\n@@ -30,7 +30,7 @@ function isPrimitive(value) {\n }\n /**\... | 2022-04-29T18:54:08 |
huggingface/transformers | beb2a0968771ba0a07f9633a7846361cbb9746c0 | f7076cd346f48aee850b8c54e6e129c33a404308 | DeepSpeed: hardcode `torch.arange` dtype on `float` usage to avoid incorrect initialization (#28760) | [
{
"path": "src/transformers/models/clvp/modeling_clvp.py",
"patch": "@@ -255,7 +255,7 @@ class ClvpRotaryPositionalEmbedding(nn.Module):\n def __init__(self, config):\n super().__init__()\n dim = max(config.projection_dim // (config.num_attention_heads * 2), 32)\n- inv_freq = 1.0 ... | 2024-01-31T14:39:07 |
golang/go | b9c9cbf9267cc9b19649e8bdbf679946d40d9a23 | c844fec7f6097289abb657d9a334cce97786c48c | net: only enable broadcast on sockets which support it
Only enable broadcast on SOCK_DGRAM and SOCK_RAW sockets, SOCK_STREAM
and others don't support it.
Don't enable SO_BROADCAST on UNIX domain sockets as they don't support it.
This caused failures on WSL which strictly checks setsockopt calls
unlike other OSes whi... | [
{
"path": "src/net/sockopt_aix.go",
"patch": "@@ -16,8 +16,11 @@ func setDefaultSockopts(s, family, sotype int, ipv6only bool) error {\n \t\t// never admit this option.\n \t\tsyscall.SetsockoptInt(s, syscall.IPPROTO_IPV6, syscall.IPV6_V6ONLY, boolint(ipv6only))\n \t}\n-\t// Allow broadcast.\n-\treturn os.Ne... | 2020-05-08T14:17:55 |
vuejs/vue | 86f8b52822c7cd6a9b4cc14755c69c51bb289107 | 05d05c0e69f446c9bb4ee911fb9004bd386c76ce | chore: fix typo (#12360) [skip ci] | [
{
"path": "test/unit/features/global-api/set-delete.spec.js",
"patch": "@@ -14,7 +14,7 @@ describe('Global API: set/delete', () => {\n }).then(done)\n })\n \n- it('should update a observing object', done => {\n+ it('should update an observing object', done => {\n const vm = new Vue({\n... | 2021-11-17T09:16:58 |
ggml-org/llama.cpp | 9ad4f1931ee0f3b41d9355245ef744786aaae0aa | 79967ec596c0dacfd2251b085a57e79df292b1cc | metal : add `CONV_TRANSPOSE_2D` (#16542)
* initial: headers and metal-device.cpp updates
* adding conv_transpose_2d
* fix type
* fix type: int32->int64
* Update ggml/src/ggml-metal/ggml-metal.metal
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
* Update ggml/src/ggml-metal/ggml-metal.metal
Co-authored-by... | [
{
"path": "ggml/src/ggml-metal/ggml-metal-device.cpp",
"patch": "@@ -1406,6 +1406,31 @@ ggml_metal_pipeline_t ggml_metal_library_get_pipeline_conv_transpose_1d(ggml_met\n return res;\n }\n \n+ggml_metal_pipeline_t ggml_metal_library_get_pipeline_conv_transpose_2d(ggml_metal_library_t lib, const ggml_ten... | 2025-10-17T06:33:58 |
huggingface/transformers | f7076cd346f48aee850b8c54e6e129c33a404308 | 7a4961007a5092a098742e0cc63459c6333af946 | Flax mistral (#26943)
* direct copy from llama work
* mistral modules forward pass working
* flax mistral forward pass with sliding window
* added tests
* added layer collection approach
* Revert "added layer collection approach"
This reverts commit 0e2905bf2236ec323163fc1a9f0c016b21aa8b8f.
* Reve... | [
{
"path": "docs/source/en/index.md",
"patch": "@@ -190,7 +190,7 @@ Flax), PyTorch, and/or TensorFlow.\n | [Megatron-BERT](model_doc/megatron-bert) | ✅ | ❌ | ❌ |\n | [Megatron-GPT2](model_doc/megatron_gpt2) ... | 2024-01-31T13:19:02 |
golang/go | 7cfa7d69259590319524c3715df4a39b39924bc3 | 60368c2477d2517d7d4d83412eba5420fdb81a2b | testing: tests and benchmarks can assume flag.Parsed
testing.M.Run has this bit of code:
if !flag.Parsed() {
flag.Parse()
}
It makes sense, and it's common knowledge for many Go developers that
test flags are automatically parsed by the time tests and benchmarks are
run. However, the docs didn't clarify that. Th... | [
{
"path": "src/testing/testing.go",
"patch": "@@ -219,9 +219,12 @@\n // directly. TestMain runs in the main goroutine and can do whatever setup\n // and teardown is necessary around a call to m.Run. m.Run will return an exit\n // code that may be passed to os.Exit. If TestMain returns, the test wrapper\n-//... | 2020-05-08T13:14:15 |
nodejs/node | 4218afce9aabb2a4df9b6156bfb839b030190ba1 | ad3d2ce68a92fd160f72ed5c0dba0e18a90e906d | doc: fix comment about http2.createSecureServer
PR-URL: https://github.com/nodejs/node/pull/15085
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/http2.md",
"patch": "@@ -1549,7 +1549,7 @@ const options = {\n cert: fs.readFileSync('server-cert.pem')\n };\n \n-// Create a plain-text HTTP/2 server\n+// Create a secure HTTP/2 server\n const server = http2.createSecureServer(options);\n \n server.on('stream', (stream, headers) => {",... | 2017-08-30T06:55:55 |
vuejs/vue | 93bd4406ac4b07339a9c623f7e4ceaa11bfdbf40 | abfbf2d43054e15f7a6b90f252b50555e7f816a2 | fix typos (#12348) | [
{
"path": "packages/weex-vue-framework/index.js",
"patch": "@@ -28,7 +28,7 @@ function createInstanceContext (\n data: data\n };\n \n- // Each instance has a independent `Vue` module instance\n+ // Each instance has an independent `Vue` module instance\n var Vue = instance.Vue = createVueModuleIns... | 2021-11-06T22:43:57 |
ggml-org/llama.cpp | ceff6bb253dd306f5404d7ccb3f11fadafe71b52 | 1bb4f43380944e94c9a86e305789ba103f5e62bd | SYCL SET operator optimized for F32 tensors (#16350)
* SYCL/SET: implement operator + wire-up; docs/ops updates; element_wise & ggml-sycl changes
* sycl(SET): re-apply post-rebase; revert manual docs/ops.md; style cleanups
* move SET op to standalone file, GPU-only implementation
* Update SYCL SET operator for F32
... | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -42,6 +42,7 @@\n #include \"ggml-sycl/presets.hpp\"\n #include \"ggml-sycl/gemm.hpp\"\n #include \"ggml-sycl/set_rows.hpp\"\n+#include \"ggml-sycl/set.hpp\"\n #include \"ggml-sycl/sycl_hw.hpp\"\n #include \"ggml-sycl/getrows.hpp\"\n #include \"ggml-... | 2025-10-17T02:36:40 |
huggingface/transformers | bebeeee01275c32fccec3fa36d8b148d3813a7dc | 65a926e82b64a53f869efe858e2896b2002dee13 | Resolve DeepSpeed cannot resume training with PeftModel (#28746)
* fix: resolve deepspeed resume peft model issues
* chore: update something
* chore: update model instance pass into is peft model checks
* chore: remove hard code value to tests
* fix: format code | [
{
"path": "src/transformers/integrations/deepspeed.py",
"patch": "@@ -143,14 +143,25 @@ def trainer_config_process(self, args, auto_find_batch_size=False):\n \"per_device_train_batch_size\",\n not auto_find_batch_size,\n )\n- self.fill_match(\"gradient_accumulation_ste... | 2024-01-31T12:58:26 |
golang/go | 60368c2477d2517d7d4d83412eba5420fdb81a2b | f1ac85c8d10e16fbc07e8b7ef93aa04bdc4c67e9 | encoding/json: reuse values when decoding map elements
When we decode into a struct, each input key-value may be decoded into
one of the struct's fields. Particularly, existing data isn't dropped,
so that some sub-fields can be decoded into without zeroing all other
data.
However, decoding into a map behaved in the o... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -677,7 +677,6 @@ func (d *decodeState) object(v reflect.Value) error {\n \t\treturn nil\n \t}\n \n-\tvar mapElem reflect.Value\n \torigErrorContext := d.errorContext\n \n \tfor {\n@@ -701,17 +700,66 @@ func (d *decodeState) object(v reflect.Value) error ... | 2019-05-29T10:09:50 |
nodejs/node | 0f7c06eb2d885d59dc87b47b8c524eed60a89a0a | 6eeb06f234ea5766831f2c51dbb2e3c84bc9bff6 | tls: fix object prototype type confusion
Use `Object.create(null)` for dictionary objects so that keys from
certificate strings or the authorityInfoAccess field cannot conflict
with Object.prototype properties.
PR-URL: https://github.com/nodejs/node/pull/14447
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By:... | [
{
"path": "lib/_tls_common.js",
"patch": "@@ -199,14 +199,11 @@ exports.translatePeerCertificate = function translatePeerCertificate(c) {\n if (c.subject != null) c.subject = tls.parseCertString(c.subject);\n if (c.infoAccess != null) {\n var info = c.infoAccess;\n- c.infoAccess = {};\n+ c.inf... | 2017-07-24T12:36:36 |
ggml-org/llama.cpp | 683fa6ba4ed3a23b939d3e11e6dc860bd47a0ccf | b22572e97dc51757d3ebe917a5a283385010ec68 | fix: added a normalization step for MathJax-style \[\] and \(\) delimiters (#16599)
* fix: added a normalization step for MathJax-style \[\] and \(\) delimiters
So inline and block equations are converted before KaTeX rendering,
enabling proper display of model-generated LaTeX in the WebUI
* chore: update webui buil... | [
{
"path": "tools/server/webui/src/lib/components/app/misc/MarkdownContent.svelte",
"patch": "@@ -154,9 +154,20 @@\n \t\treturn mutated ? tempDiv.innerHTML : html;\n \t}\n \n+\tfunction normalizeMathDelimiters(text: string): string {\n+\t\treturn text\n+\t\t\t.replace(/(^|[^\\\\])\\\\\\[((?:\\\\.|[\\s\\S])*?... | 2025-10-16T14:28:41 |
huggingface/transformers | 65a926e82b64a53f869efe858e2896b2002dee13 | f9f1f2ac5e03bba46d18cfc5df30472b2b85ba54 | [Whisper] Refactor forced_decoder_ids & prompt ids (#28687)
* up
* Fix more
* Correct more
* Fix more tests
* fix fast tests
* Fix more
* fix more
* push all files
* finish all
* make style
* Fix timestamp wrap
* make style
* make style
* up
* up
* up
* Fix lang detectio... | [
{
"path": "src/transformers/models/whisper/generation_whisper.py",
"patch": "@@ -16,7 +16,7 @@\n import math\n import warnings\n import zlib\n-from typing import Callable, List, Optional, Tuple, Union\n+from typing import Callable, Iterator, List, Optional, Tuple, Union\n \n import numpy as np\n import torc... | 2024-01-31T12:02:07 |
vuejs/vue | 531b7619b137aecd71441e1ea53dae3066d71bc8 | 30a43afa10e3ae461edc1152beb11b1e61dc4469 | chore: fix typo in test (#12291) | [
{
"path": "test/ssr/ssr-basic-renderer.spec.js",
"patch": "@@ -52,7 +52,7 @@ describe('SSR: basicRenderer', () => {\n })\n \n // #5941\n- it('should work peoperly when accessing $ssrContext in root component', done => {\n+ it('should work properly when accessing $ssrContext in root component', done =>... | 2021-09-22T13:58:08 |
golang/go | f1ac85c8d10e16fbc07e8b7ef93aa04bdc4c67e9 | 7cbee1244437bafa1e52ca761d7c32d7587a9fdd | cmd/internal/obj/arm64: fix 32-bit BITCON test
The BITCON test, isbitcon, assumes 32-bit constants are expanded
repeatedly, i.e. by copying the low 32 bits to high 32 bits,
instead of zero extending. We already do such expansion in
progedit. In con32class when classifying 32-bit constants, we
should use the expanded c... | [
{
"path": "src/cmd/asm/internal/asm/testdata/arm64.s",
"patch": "@@ -274,6 +274,9 @@ TEXT\tfoo(SB), DUPOK|NOSPLIT, $-8\n \tADDW\t$0x60060, R2 // ADDW\t$393312, R2 // 4280011142804111\n \tCMPW\t$0x60060, R2 // CMPW\t$393312, R2 ... | 2020-05-08T19:08:55 |
ggml-org/llama.cpp | adc9b60f190c1016a09f439862fa1cbb302262ac | ee50ee1eadff58777ae746827b04de7ba0befc55 | ggml-cpu: replace putenv with setenv for const-correctness (#16573)
## Why it failed
When compiling with strict compiler flags (-Wwrite-strings -Werror=discarded-qualifiers),
the build fails with the following error:
```
cmake \
-S . \
-B ../llama.cpp.build \
--preset=x64-linux-gcc-debug \
-DCMAKE_INSTALL_PR... | [
{
"path": "ggml/src/ggml-cpu/ggml-cpu.c",
"patch": "@@ -3567,13 +3567,17 @@ void ggml_cpu_init(void) {\n #ifdef GGML_USE_OPENMP\n //if (!getenv(\"OMP_WAIT_POLICY\")) {\n // // set the wait policy to active, so that OpenMP threads don't sleep\n- // putenv(\"OMP_WAIT_P... | 2025-10-16T05:10:32 |
nodejs/node | 44d486500de528fa955f9126d7b82cef0deb0ab8 | a80b1621b034b6bcd920805681db22e1f6c5a282 | test: increase coverage for internal/errors.js
PR-URL: https://github.com/nodejs/node/pull/15044
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "test/parallel/test-internal-errors.js",
"patch": "@@ -199,6 +199,16 @@ assert.strictEqual(errors.message('ERR_INVALID_ARG_TYPE',\n assert.strictEqual(errors.message('ERR_INVALID_ARG_TYPE',\n ['a', 'b', null]),\n 'The \"a\" argument must be of t... | 2017-08-26T16:14:33 |
huggingface/transformers | a937425e94d463c6dd147e22f7cfccb8a500def8 | d703eaaeff7d68ee54ee3c693992b0a2aa365f0a | Prevent MLflow exception from disrupting training (#28779)
Modified MLflow logging metrics from synchronous to asynchronous
Co-authored-by: codiceSpaghetti <alessio.ser@hotmail.it> | [
{
"path": "src/transformers/integrations/integration_utils.py",
"patch": "@@ -1036,7 +1036,7 @@ def on_log(self, args, state, control, logs, model=None, **kwargs):\n f'Trainer is attempting to log a value of \"{v}\" of type {type(v)} for key \"{k}\" as a metric. '\n ... | 2024-01-31T01:10:44 |
vuejs/vue | 515467a618479792abedf01a7b1dcef2ac2a17ed | 4f6f39a26cfc0d78d6b09fd6d3802d45aabb758e | feat(compiler): condenses staticClass whitespace (fix #12113) (#12195)
* feat(compiler): template staticClass no longer preserves whitespace
Template static classes used to preserve whitespace after compilation, resulting in builds that had
bigger file outputs with whitespace in component's staticClass attributes
... | [
{
"path": "src/platforms/web/compiler/modules/class.js",
"patch": "@@ -23,7 +23,7 @@ function transformNode (el: ASTElement, options: CompilerOptions) {\n }\n }\n if (staticClass) {\n- el.staticClass = JSON.stringify(staticClass)\n+ el.staticClass = JSON.stringify(staticClass.replace(/\\s+/g, ... | 2021-09-08T09:23:49 |
rust-lang/rust | fcfabc107691774ee3b15d9d771b4dc1d6a014bc | b4791992a3f7f5331105761843c3a91e43241e0c | Fix CI schedule | [
{
"path": "src/doc/rustc-dev-guide/.github/workflows/ci.yml",
"patch": "@@ -7,7 +7,7 @@ on:\n pull_request:\n schedule:\n # Run multiple times a day as the successfull cached links are not checked every time.\n- - cron: '0 */3 * * *'\n+ - cron: '0 */8 * * *'\n \n jobs:\n ci:",
"additions... | 2025-02-15T22:03:42 |
ggml-org/llama.cpp | ee50ee1eadff58777ae746827b04de7ba0befc55 | 7adc79c03234de9a20661fd6dbf2d02c32ca7acb | SYCL: Add GGML_OP_MEAN operator support (#16009)
* SYCL: Add GGML_OP_MEAN operator support
* SYCL: Fix formatting for GGML_OP_MEAN case
* Update ggml/src/ggml-sycl/ggml-sycl.cpp
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -2151,6 +2151,30 @@ inline void ggml_sycl_op_sum_rows(ggml_backend_sycl_context & ctx, ggml_tensor *\n sum_rows_f32_sycl(src0_dd, dst_dd, ncols, nrows, main_stream);\n }\n \n+inline void ggml_sycl_op_mean(ggml_backend_sycl_context & ctx, ggml_te... | 2025-10-16T04:21:28 |
golang/go | 7cbee1244437bafa1e52ca761d7c32d7587a9fdd | 65126c588e5c3ea73cd6721f831b01957f7ecbe0 | cmd/compile: improve error when setting unexported fields
Improve the error user experience when users try to set/refer
to unexported fields and methods of struct literals, by directly saying
"cannot refer to unexported field or method"
Fixes #31053
Change-Id: I6fd3caf64b7ca9f9d8ea60b7756875e340792d59
Reviewed-... | [
{
"path": "src/cmd/compile/internal/gc/typecheck.go",
"patch": "@@ -2967,6 +2967,8 @@ func typecheckcomplit(n *Node) (res *Node) {\n \t\t\t\t\tif ci := lookdot1(nil, l.Sym, t, t.Fields(), 2); ci != nil { // Case-insensitive lookup.\n \t\t\t\t\t\tif visible(ci.Sym) {\n \t\t\t\t\t\t\tyyerror(\"unknown field '... | 2019-10-17T06:13:25 |
nodejs/node | b98e8d995efb426bbdee56ce503017bdcbbc6332 | 244ada3c71588f02c10c0fcc526863660d460c96 | path: fix normalize on directories with two dots
PR-URL: https://github.com/nodejs/node/pull/14107
Fixes: https://github.com/nodejs/node/issues/14105
Reviewed-By: Refael Ackermann <refack@gmail.com> | [
{
"path": "lib/path.js",
"patch": "@@ -35,6 +35,7 @@ function normalizeStringWin32(path, allowAboveRoot) {\n var lastSlash = -1;\n var dots = 0;\n var code;\n+ var isAboveRoot = false;\n for (var i = 0; i <= path.length; ++i) {\n if (i < path.length)\n code = path.charCodeAt(i);\n@@ -46,7... | 2017-07-06T15:14:16 |
huggingface/transformers | d703eaaeff7d68ee54ee3c693992b0a2aa365f0a | 74c9cfeaa764400a784c9cf82c657a1e0225706c | [`bnb`] Fix bnb slow tests (#28788)
fix bnb slow tests | [
{
"path": "src/transformers/utils/quantization_config.py",
"patch": "@@ -342,6 +342,8 @@ def to_dict(self) -> Dict[str, Any]:\n \"\"\"\n output = copy.deepcopy(self.__dict__)\n output[\"bnb_4bit_compute_dtype\"] = str(output[\"bnb_4bit_compute_dtype\"]).split(\".\")[1]\n+ outp... | 2024-01-31T00:31:20 |
vuejs/vue | 3d29ba863b89fd90dabd0856c0507eacdf5fef22 | 509de2af793a770c7c29897980b27dfe5278d274 | fix(v-on): add removing all dom event listeners when vnode destroyed (#10085) | [
{
"path": "src/platforms/web/runtime/modules/events.js",
"patch": "@@ -5,6 +5,7 @@ import { updateListeners } from 'core/vdom/helpers/index'\n import { isIE, isFF, supportsPassive, isUsingMicroTask } from 'core/util/index'\n import { RANGE_TOKEN, CHECKBOX_RADIO_TOKEN } from 'web/compiler/directives/model'\n... | 2021-08-05T09:21:12 |
rust-lang/rust | 4d551dd754477bb81ddef0829121ca90c8a8b286 | 61a97448e51bafab3f94a7c4ccb5d43c6c97ad22 | docs: fix broken intra-doc links that never worked | [
{
"path": "library/alloc/src/boxed.rs",
"patch": "@@ -1053,7 +1053,6 @@ impl<T: ?Sized> Box<T> {\n /// ```\n ///\n /// [memory layout]: self#memory-layout\n- /// [`Layout`]: crate::Layout\n #[stable(feature = \"box_raw\", since = \"1.4.0\")]\n #[inline]\n #[must_use = \"call `drop... | 2025-01-31T21:28:44 |
ggml-org/llama.cpp | 0cb7a0683b0529172472d74d21f05470a607f297 | d93f8439b08c4f35e13a41a7366901fdbe770fc8 | opencl: add q8_0 mm support (#16469)
* opencl: add mm_q8_0_f32
* opencl: fix data loading for incomplete tile
* opencl: use q8_0 mm for larger matrix
* opencl: add some tests to cover the path | [
{
"path": "ggml/src/ggml-opencl/CMakeLists.txt",
"patch": "@@ -93,6 +93,7 @@ set(GGML_OPENCL_KERNELS\n mul_mv_id_mxfp4_f32_flat\n mul_mm_f32_f32_l4_lm\n mul_mm_f16_f32_l4_lm\n+ mul_mm_q8_0_f32_l4_lm\n mul\n norm\n relu",
"additions": 1,
"deletions": 0,
"language": "Pla... | 2025-10-15T17:51:04 |
golang/go | 65126c588e5c3ea73cd6721f831b01957f7ecbe0 | 26de581a709428d55ffc38cc0dbc7ddfc96b9443 | strconv: fix ParseComplex for strings with separators
The recently added function parseFloatPrefix tested the entire
string for correct placement of separators rather than just the
consumed part. The 4-char fix is in readFloat (atof.go:303).
Added more tests. Also added some white space for nicer
grouping of the test... | [
{
"path": "src/strconv/atoc_test.go",
"patch": "@@ -17,6 +17,7 @@ var (\n \tinfm0 = complex(math.Inf(-1), 0)\n \tinf0p = complex(0, math.Inf(+1))\n \tinf0m = complex(0, math.Inf(-1))\n+\n \tinfpp = complex(math.Inf(+1), math.Inf(+1))\n \tinfpm = complex(math.Inf(+1), math.Inf(-1))\n \tinfmp = complex(math.I... | 2020-05-08T19:13:11 |
huggingface/transformers | 74c9cfeaa764400a784c9cf82c657a1e0225706c | 415e9a0980b00ef230d850bff7ecf0021c52640d | Pin Torch to <2.2.0 (#28785)
* Pin torch to <2.2.0
* Pin torchvision and torchaudio as well
* Playing around with versions to see if this helps
* twiddle something to restart the CI
* twiddle it back
* Try changing the natten version
* make fixup
* Revert "Try changing the natten version"
This ... | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -474,6 +474,7 @@ def job_name(self):\n \"pip install -U --upgrade-strategy eager python-Levenshtein\",\n \"pip install -U --upgrade-strategy eager opencv-python\",\n \"pip install -U --upgrade-strategy eager nltk\",\n+ ... | 2024-01-30T22:01:12 |
vuejs/vue | c52427b0d2c1d203deea6eb69f2b4b181d56022c | 80e7730946538e0371e213100a0fe81299c2f4b2 | fix(types): async Component types (#11906)
* Update options.d.ts
* Create async-component-test.ts
* add generics to Component ad EsModuleComponent
* remove not needed , and ;
* revert unrelated changes
* revert unrelated changes
* revert unrelated changes
* revert unrelated changes
* optimize E... | [
{
"path": "types/options.d.ts",
"patch": "@@ -12,9 +12,10 @@ export type Component<Data=DefaultData<never>, Methods=DefaultMethods<never>, Co\n | FunctionalComponentOptions<Props>\n | ComponentOptions<never, Data, Methods, Computed, Props>\n \n-interface EsModuleComponent {\n- default: Component\n-}\n+... | 2021-06-03T13:13:33 |
nodejs/node | 244ada3c71588f02c10c0fcc526863660d460c96 | 5e443d7398e8dadf0c44b3011f97deead75b1148 | async_hooks: emitAfter correctly on fatalException
Previously calling emitAfter() from _fatalException would skipt the
first asyncId. Instead use the size() of the std::stack to determine how
many times to loop and call emitAfter().
PR-URL: https://github.com/nodejs/node/pull/14914
Reviewed-By: James M Snell <jasnell... | [
{
"path": "lib/internal/bootstrap_node.js",
"patch": "@@ -383,7 +383,7 @@\n // Arrays containing hook flags and ids for async_hook calls.\n const { async_hook_fields, async_uid_fields } = async_wrap;\n // Internal functions needed to manipulate the stack.\n- const { clearIdStack, popAsyncIds ... | 2017-08-17T22:44:27 |
ggml-org/llama.cpp | d93f8439b08c4f35e13a41a7366901fdbe770fc8 | f9fb33f2630b4b4ba9081ce9c0c921f8cd8ba4eb | opencl: fix FA for f32 (#16584) | [
{
"path": "ggml/src/ggml-opencl/kernels/flash_attn_f32.cl",
"patch": "@@ -4,6 +4,7 @@\n #define ACC_TYPE4 float4\n #define DATA_TYPE float\n #define DATA_TYPE4 float4\n+#define MASK_DATA_TYPE half\n #define CONVERT_ACC4(x) (x)\n #define CONVERT_DATA4(x) (x)\n \n@@ -148,7 +149,7 @@ __kernel void flash_attn_f... | 2025-10-15T17:48:28 |
vuejs/vue | 38f71de380d566e4eef60968a8eca6bd6f482dd5 | 67901e78ef9d31809ea154f359f0512c5a913bf4 | fix(v-slot): fix scoped slot normalization combined with v-if (#12104) | [
{
"path": "src/core/vdom/helpers/normalize-scoped-slots.js",
"patch": "@@ -61,10 +61,10 @@ function normalizeScopedSlot(normalSlots, key, fn) {\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res)\n- let vnode: VNode = res && r... | 2021-06-02T12:44:18 |
golang/go | 26de581a709428d55ffc38cc0dbc7ddfc96b9443 | 8f4be42b37469d7c392c330ac13599a88d5c9ea2 | cmd/compile: omit file:pos for non-existent errors
Omits printing the file:line:column when trying to
open non-existent files
Given:
go tool compile x.go
* Before:
x.go:0: open x.go: no such file or directory
* After:
open x.go: no such file or directory
Reverts the revert in CL 231043 by only fixing t... | [
{
"path": "src/cmd/compile/internal/gc/noder.go",
"patch": "@@ -44,7 +44,7 @@ func parseFiles(filenames []string) uint {\n \n \t\t\tf, err := os.Open(filename)\n \t\t\tif err != nil {\n-\t\t\t\tp.error(syntax.Error{Pos: syntax.MakePos(base, 0, 0), Msg: err.Error()})\n+\t\t\t\tp.error(syntax.Error{Msg: err.E... | 2020-04-30T03:55:22 |
nodejs/node | 1ffd01cf7fbf66b1bd9bdf5ae6630cdf228f0a3b | 5c0d64ea11fe559f6309c3eff82c4f4f3904e808 | test: fix hijackStdout behavior in console
`console.log` and some other function will swallow the exception in
`stdout.write`. So an asynchronous exception is needed, or
`common.hijackStdout` won't detect some exception.
Refs: https://github.com/nodejs/node/blob/v8.2.1/lib/console.js#L87
PR-URL: https://github.com/n... | [
{
"path": "test/common/index.js",
"patch": "@@ -809,7 +809,12 @@ function hijackStdWritable(name, listener) {\n \n stream.writeTimes = 0;\n stream.write = function(data, callback) {\n- listener(data);\n+ try {\n+ listener(data);\n+ } catch (e) {\n+ process.nextTick(() => { throw e; })... | 2017-08-06T06:16:05 |
ggml-org/llama.cpp | 17304cbcc1dd24de7741cbe57925d58e90a98ac1 | 3e3cb19f6449f9168a128eaeae01f8f41b049acc | server : fix img token logs (#16595) | [
{
"path": "tools/server/server.cpp",
"patch": "@@ -3839,14 +3839,14 @@ struct server_context {\n \n {\n const auto token = slot.prompt.tokens[i];\n- const auto piece = common_token_... | 2025-10-15T13:53:12 |
vuejs/vue | 0ff1356ef7922f9c082a11fd2ec9124539468a6b | f2a6a1b8d3d43065056b8eb956804ff1f75e3f0b | chore: fix typo in README.md [ci skip] (#12064) | [
{
"path": "README.md",
"patch": "@@ -17,7 +17,7 @@ Vue.js is an MIT-licensed open source project with its ongoing development made\n \n - [Become a backer or sponsor on Patreon](https://www.patreon.com/evanyou).\n - [Become a backer or sponsor on Open Collective](https://opencollective.com/vuejs).\n-- [One-... | 2021-05-08T06:48:32 |
huggingface/transformers | 415e9a0980b00ef230d850bff7ecf0021c52640d | 1d489b3e61e29f96b6407fa3a4f226dc14624e6b | Add tf_keras imports to prepare for Keras 3 (#28588)
* Port core files + ESM (because ESM code is odd)
* Search-replace in modelling code
* Fix up transfo_xl as well
* Fix other core files + tests (still need to add correct import to tests)
* Fix cookiecutter
* make fixup, fix imports in some more core ... | [
{
"path": "docs/source/ja/troubleshooting.md",
"patch": "@@ -69,7 +69,6 @@ TensorFlowの[model.save](https://www.tensorflow.org/tutorials/keras/save_and_lo\n \n ```py\n >>> from transformers import TFPreTrainedModel\n->>> from tensorflow import keras\n \n >>> model.save_weights(\"some_folder/tf_model.h5\")\n ... | 2024-01-30T17:26:36 |
golang/go | 8f4be42b37469d7c392c330ac13599a88d5c9ea2 | 4f65fb3b309050f26d41885243df99f917727a53 | runtime: use first line of cpuset output on FreeBSD
Fix TestFreeBSDNumCPU on newer versions of FreeBSD which have multi line
output from cpuset e.g.
cpuset -g -p 4141
pid 4141 mask: 0, 1, 2, 3, 4, 5, 6, 7, 8
pid 4141 domain policy: first-touch mask: 0, 1
The test now uses just the first line of output.
Fixes #38937... | [
{
"path": "src/runtime/testdata/testprog/numcpu_freebsd.go",
"patch": "@@ -85,7 +85,13 @@ func getList() ([]string, error) {\n \tif err != nil {\n \t\treturn nil, fmt.Errorf(\"fail to execute '%s': %s\", cmdline, err)\n \t}\n-\tpos := bytes.IndexRune(output, ':')\n+\tpos := bytes.IndexRune(output, '\\n')\n+... | 2020-05-07T22:34:25 |
nodejs/node | a26be6866b0d63ee0a7f59cdbfb608193c7bcd79 | 4218f1974d3945cd4d675b5bc5292d88b993f9b8 | deps: cherry-pick 0ef4a0c64b6 from c-ares upstream
Original commit message:
gethostbyaddr: fail with `ECANCELLED` for `ares_cancel()`
When `ares_cancel()` was invoked, `ares_gethostbyaddr()`
queries would fail with `ENOTFOUND` instead of `ECANCELLED`.
It seems appropriate to treat `ares_cancel()` like `ares... | [
{
"path": "deps/cares/src/ares_gethostbyaddr.c",
"patch": "@@ -157,7 +157,7 @@ static void addr_callback(void *arg, int status, int timeouts,\n }\n end_aquery(aquery, status, host);\n }\n- else if (status == ARES_EDESTRUCTION)\n+ else if (status == ARES_EDESTRUCTION || status == ARES_ECA... | 2017-08-14T16:12:30 |
ggml-org/llama.cpp | 3e3cb19f6449f9168a128eaeae01f8f41b049acc | 5acd455460f457942d8dd02e3dd9b1eebfce99fe | llama-quant: add support for mmproj (#16592)
* llama-quant: add support for mmproj
* Update src/llama.cpp
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
* check prefix instead
* small fix
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> | [
{
"path": "src/llama-arch.cpp",
"patch": "@@ -5,6 +5,7 @@\n #include <map>\n \n static const std::map<llm_arch, const char *> LLM_ARCH_NAMES = {\n+ { LLM_ARCH_CLIP, \"clip\" }, // dummy, only used by llama-quantize\n { LLM_ARCH_LLAMA, \"llama\" },\n {... | 2025-10-15T12:48:08 |
vuejs/vue | df4e385c8f9fe9ec21e6304b1c470f7a718cc447 | bb9190b30234da895df570027489d63521efad7d | chore: fix opencollective silver sponsors in backers.md [ci skip] | [
{
"path": "BACKERS.md",
"patch": "@@ -330,6 +330,13 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <a href=\"https://opencollective.com/vuejs/tiers/silver-sponsors/0/website\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://opencollective.com/vuejs/tie... | 2021-05-03T13:30:00 |
huggingface/transformers | 1d489b3e61e29f96b6407fa3a4f226dc14624e6b | 2fa1c808aed8bcd54b3f95ef461a20dae878f305 | Task-specific pipeline init args (#28439)
* Abstract out pipeline init args
* Address PR comments
* Reword
* BC PIPELINE_INIT_ARGS
* Remove old arguments
* Small fix | [
{
"path": "src/transformers/pipelines/audio_classification.py",
"patch": "@@ -18,7 +18,7 @@\n import requests\n \n from ..utils import add_end_docstrings, is_torch_available, is_torchaudio_available, logging\n-from .base import PIPELINE_INIT_ARGS, Pipeline\n+from .base import Pipeline, build_pipeline_init_a... | 2024-01-30T16:54:57 |
golang/go | 4f65fb3b309050f26d41885243df99f917727a53 | 55361a26177b3faf151a1d35467db5d403b51f22 | strconv: add ParseComplex and FormatComplex
Adds two functions to deal with complex numbers:
* FormatComplex
* ParseComplex
ParseComplex accepts complex numbers in this format: N+Ni
Fixes #36771
Change-Id: Id184dc9e277e5fa01a714ad656a88255ead05085
GitHub-Last-Rev: 036a075d36363774a95f6000b7c4098896474744
GitHub-Pul... | [
{
"path": "src/strconv/atoc.go",
"patch": "@@ -0,0 +1,105 @@\n+// Copyright 2020 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package strconv\n+\n+const fnParseComplex = \"ParseComplex\"\n+\n+// convErr ... | 2020-05-08T16:34:57 |
ggml-org/llama.cpp | 554fd578a5ed78a10f371f5850c6a69aa83df15a | fa882fd2b1bcb663de23af06fdc391489d05b007 | server : fix mtmd checkpoints (#16591) | [
{
"path": "tools/server/server.cpp",
"patch": "@@ -3812,7 +3812,7 @@ struct server_context {\n if (slot.n_past > 0 && slot.n_past < (int) slot.prompt.tokens.size()) {\n const auto pos_min = llama_memory_seq_pos_min(llama_get_memory(ctx), slot.id);\... | 2025-10-15T09:51:27 |
nodejs/node | 4218f1974d3945cd4d675b5bc5292d88b993f9b8 | f3eb193a3019d79a82cec8b561e028e4e37a7b87 | crypto: fix error of createCipher in wrap mode
EVP_CIPHER_CTX_FLAG_WRAP_ALLOW flag needs to be set in using wrap mode
ciphers. In `crypto.createCipher()`, AES key wrap mode does not use a
default IV defined in RFC3394 but a generated IV with
`EVP_BytesToKey()` to be consistent API behaviors with other ciphers.
The bu... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -3349,6 +3349,9 @@ void CipherBase::Init(const char* cipher_type,\n cipher_type);\n }\n \n+ if (mode == EVP_CIPH_WRAP_MODE)\n+ EVP_CIPHER_CTX_set_flags(&ctx_, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);\n+\n if (!EVP_CIPHER_CTX_set_key_length(... | 2017-08-24T16:42:55 |
huggingface/transformers | c24c52454a305b2ac15bb011729ae065ce1e10ad | 6f7d5db58c7c149c75642b5a4647b5cbc6c55643 | Further pin pytest version (in a temporary way) (#28780)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -513,7 +513,7 @@ def job_name(self):\n \"pip install --upgrade --upgrade-strategy eager pip\",\n \"pip install -U --upgrade-strategy eager -e .[dev]\",\n \"pip install -U --upgrade-strategy eager -e git+https://github.com/... | 2024-01-30T16:48:49 |
golang/go | 55361a26177b3faf151a1d35467db5d403b51f22 | ea5f9b666ccf7affca596be3ab0dc523ca4444fb | encoding/json: don't mangle strings in an edge case when decoding
The added comment contains some context. The original optimization
assumed that each call to unquoteBytes (or unquote) followed its
corresponding call to rescanLiteral. Otherwise, unquoting a literal
might use d.safeUnquote from another re-scanned liter... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -1221,6 +1221,11 @@ func (d *decodeState) unquoteBytes(s []byte) (t []byte, ok bool) {\n \tif r == -1 {\n \t\treturn s, true\n \t}\n+\t// Only perform up to one safe unquote for each re-scanned string\n+\t// literal. In some edge cases, the decoder unquo... | 2020-03-27T23:56:09 |
ggml-org/llama.cpp | fa882fd2b1bcb663de23af06fdc391489d05b007 | ffa059034c1e41f3e58363ef3c46d2fcf854bc4d | metal : avoid using Metal's gpuAddress property (#16576)
* metal : avoid using Metal's gpuAddress property
* metal : fix rope kernels buffer check | [
{
"path": "ggml/src/ggml-metal/ggml-metal-device.m",
"patch": "@@ -7,6 +7,8 @@\n \n #include <Metal/Metal.h>\n \n+#include <stdatomic.h>\n+\n #ifndef TARGET_OS_VISION\n #define TARGET_OS_VISION 0\n #endif\n@@ -22,6 +24,9 @@\n // overload of MTLGPUFamilyMetal3 (not available in some environments)\n static co... | 2025-10-14T17:33:05 |
nodejs/node | 689a64319864433b32235b9d6ac4889f4cdcfea5 | 095c9463dd707330f633283c7d419f09eafcd968 | build: fix indentation in node.gyp
One line in node.gyp was indented using a mix of a tab and spaces,
convert it to all spaces.
PR-URL: https://github.com/nodejs/node/pull/15051
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.c... | [
{
"path": "node.gyp",
"patch": "@@ -654,7 +654,7 @@\n 'conditions': [\n ['node_target_type!=\"static_library\"', {\n 'libraries': [\n-\t '<(OBJ_GEN_PATH)<(OBJ_SEPARATOR)node_javascript.<(OBJ_SUFFIX)',\n+ '<(OBJ_GEN_PATH)<(OBJ_SEPARATOR)node_javascript.<(OBJ_SUFFIX)',\n ... | 2017-08-27T06:16:07 |
huggingface/transformers | 6f7d5db58c7c149c75642b5a4647b5cbc6c55643 | 5c8d941d66734811d2ef6f57f15b44f7fb7a98c4 | Fix transformers.utils.fx compatibility with torch<2.0 (#28774)
guard sdpa on torch>=2.0 | [
{
"path": "src/transformers/utils/fx.py",
"patch": "@@ -53,6 +53,7 @@\n MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING_NAMES,\n MODEL_MAPPING_NAMES,\n )\n+from ..pytorch_utils import is_torch_greater_or_equal_than_2_0\n from ..utils import (\n ENV_VARS_TRUE_VALUES,\n TORCH_FX_REQUIRED_VERS... | 2024-01-30T13:54:42 |
vuejs/vue | e7baaa12055231c9367fa1c7bf917e534bd8a739 | 2b93e86aa1437168476cbb5100cfb3bbbac55efa | fix(keep-alive): cache what is really needed not the whole VNode data (#12015)
Co-authored-by: zrh122 <1229550935@qq.com> | [
{
"path": "src/core/components/keep-alive.js",
"patch": "@@ -3,7 +3,13 @@\n import { isRegExp, remove } from 'shared/util'\n import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n-type VNodeCache = { [key: string]: ?VNode };\n+type CacheEntry = {\n+ name: ?string;\n+ tag: ?string;\n+ compo... | 2021-04-16T17:19:29 |
ggml-org/llama.cpp | 120bf7046d85a893f064c12abe58bfeebd735f84 | 4258e0cfe72c72ad2787be1e9f93253e89219455 | CUDA + openCL: fix bug in accessing rms_norm->src while doing fusion (#16577) | [
{
"path": "ggml/src/ggml-cuda/ggml-cuda.cu",
"patch": "@@ -2876,7 +2876,7 @@ static bool ggml_cuda_can_fuse(const struct ggml_cgraph * cgraph, int node_idx,\n }\n \n //if rms norm is the B operand, then we don't handle broadcast\n- if (rms_norm == mul->src[1] && !ggml_are_same_shape(m... | 2025-10-14T14:48:08 |
golang/go | d69509ff995bf3b92246365980e3d27eaf720e6a | dba1205b2fc458829e783bd0a4d1eff7231ae16c | runtime: make addrRange[s] operate on offset addresses
Currently addrRange and addrRanges operate on real addresses. That is,
the addresses they manipulate don't include arenaBaseOffset. When added
to an address, arenaBaseOffset makes the address space appear contiguous
on platforms where the address space is segmente... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -748,8 +748,8 @@ func (p *PageAlloc) InUse() []AddrRange {\n \tranges := make([]AddrRange, 0, len(p.inUse.ranges))\n \tfor _, r := range p.inUse.ranges {\n \t\tranges = append(ranges, AddrRange{\n-\t\t\tBase: r.base,\n-\t\t\tLimit: r.limit,\n+\t\t\tBase:... | 2020-04-28T21:09:17 |
nodejs/node | 095c9463dd707330f633283c7d419f09eafcd968 | 65c9537adc867ea65c20df6ef599e7f2ae7f2e49 | perf_hooks: fix presumed typo in node_perf.cc
PR-URL: https://github.com/nodejs/node/pull/15019
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/node_perf.cc",
"patch": "@@ -224,7 +224,7 @@ inline void MarkGarbageCollectionEnd(Isolate* isolate,\n \n inline void SetupGarbageCollectionTracking(Isolate* isolate) {\n isolate->AddGCPrologueCallback(MarkGarbageCollectionStart);\n- isolate->AddGCPrologueCallback(MarkGarbageCollectionEnd);... | 2017-08-24T18:47:00 |
huggingface/transformers | 5c8d941d66734811d2ef6f57f15b44f7fb7a98c4 | 866253f85eb95522c686881c04a9eb9bdf8fea4e | Use Conv1d for TDNN (#25728)
* use conv for tdnn
* run make fixup
* update TDNN
* add PEFT LoRA check
* propagate tdnn warnings to others
* add missing imports
* update TDNN in wav2vec2_bert
* add missing imports | [
{
"path": "src/transformers/models/data2vec/modeling_data2vec_audio.py",
"patch": "@@ -35,7 +35,13 @@\n XVectorOutput,\n )\n from ...modeling_utils import PreTrainedModel\n-from ...utils import add_code_sample_docstrings, add_start_docstrings, add_start_docstrings_to_model_forward, logging\n+from ...uti... | 2024-01-30T08:33:55 |
vuejs/vue | 2b93e86aa1437168476cbb5100cfb3bbbac55efa | 52608302e9bca84fb9e9f0499e89acade78d3d07 | fix(types): make $refs undefined possible (#11112)
Added undefined as a return type of $refs as it was quite hard to convince typescript that something COULD be undefined if you type in a ref that doesn't exist,
I also changed the two array statements from `Element[] | Vue[]` to `(Element | Vue)[]` because it's not g... | [
{
"path": "types/vue.d.ts",
"patch": "@@ -26,7 +26,7 @@ export interface Vue {\n readonly $parent: Vue;\n readonly $root: Vue;\n readonly $children: Vue[];\n- readonly $refs: { [key: string]: Vue | Element | Vue[] | Element[] };\n+ readonly $refs: { [key: string]: Vue | Element | (Vue | Element)[] |... | 2021-04-16T15:59:37 |
ggml-org/llama.cpp | 1ee9d0b415cdf5240418c110a18b419f4002b154 | 48e2fa9fb7c2de1e53808fdb65ec33f916020fc4 | CUDA: use fastdiv + ggml_cuda_mad for mmvf (#16557)
* CUDA: use fastdiv + ggml_cuda_mad for mmvf
* use bf16 directly + fix formatting
* Add exception for HIP code | [
{
"path": "ggml/src/ggml-cuda/mmvf.cu",
"patch": "@@ -7,14 +7,14 @@ template <typename T, typename type_acc, int ncols_dst, int block_size>\n static __global__ void mul_mat_vec_f(\n const T * __restrict__ x, const float * __restrict__ y, const int32_t * __restrict__ ids, float * __restrict__ dst,\n ... | 2025-10-14T11:16:21 |
golang/go | dba1205b2fc458829e783bd0a4d1eff7231ae16c | 55ec5182d7b84eb2461c495a55984162b23f3df8 | runtime: avoid re-scanning scavenged and untouched memory
Currently the scavenger will reset to the top of the heap every GC. This
means if it scavenges a bunch of memory which doesn't get used again,
it's going to keep re-scanning that memory on subsequent cycles. This
problem is especially bad when it comes to heap ... | [
{
"path": "src/runtime/mgcscavenge.go",
"patch": "@@ -450,6 +450,25 @@ func (s *pageAlloc) scavengeStartGen() {\n \t\tprintScavTrace(s.scav.gen, s.scav.released, false)\n \t}\n \ts.inUse.cloneInto(&s.scav.inUse)\n+\n+\t// Pick the new starting address for the scavenger cycle.\n+\tvar startAddr uintptr\n+\ti... | 2020-02-10T23:11:30 |
nodejs/node | 7854562143ccd3add3f31cc6f4f7ab22ce6582ca | cacce304cbce79ff878aaedf946f16f03ec91b8a | tools: fix linter error in html.js
PR-URL: https://github.com/nodejs/node/pull/15063
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> | [
{
"path": "tools/doc/html.js",
"patch": "@@ -196,11 +196,9 @@ function replaceInText(text) {\n }\n \n function altDocs(filename) {\n- let html = '';\n-\n if (!docCreated) {\n console.error(`Failed to add alternative version links to ${filename}`);\n- return html;\n+ return '';\n }\n \n func... | 2017-08-28T14:57:33 |
vuejs/vue | 52608302e9bca84fb9e9f0499e89acade78d3d07 | e4dea59f84dfbf32cda1cdd832380dd90b1a6fd1 | fix(core): fix sameVnode for async component (#11107)
Co-authored-by: mac2 <mac2@example.com> | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -34,15 +34,15 @@ const hooks = ['create', 'activate', 'update', 'remove', 'destroy']\n \n function sameVnode (a, b) {\n return (\n- a.key === b.key && (\n+ a.key === b.key &&\n+ a.asyncFactory === b.asyncFactory && (\n (\n a.tag === b... | 2021-04-16T15:58:02 |
ggml-org/llama.cpp | 48e2fa9fb7c2de1e53808fdb65ec33f916020fc4 | 5b6913c47b6bc71a6f927805a45387d5657d8b89 | CUDA: add fp kernel for larger batch size MoE (#16512)
* CUDA: kernel for larger batch sizes for MoE
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* fixup
* tests
* Move mmq_ids_helper to mmid
* cleanup
* Remove redundant checks | [
{
"path": "ggml/src/ggml-cuda/mmf.cu",
"patch": "@@ -1,5 +1,7 @@\n #include \"ggml.h\"\n #include \"mmf.cuh\"\n+#include \"mmid.cuh\"\n+\n \n void ggml_cuda_mul_mat_f(ggml_backend_cuda_context & ctx, const ggml_tensor * src0, const ggml_tensor * src1, const ggml_tensor * ids, ggml_tensor * dst) {\n GGML... | 2025-10-14T11:15:15 |
huggingface/transformers | d78e78a0e44da2b74e9d98d608ccd4e74b311cd9 | 1f5590d32e4965a5295a17c94f538e09d5ab40ec | `HfQuantizer` class for quantization-related stuff in `modeling_utils.py` (#26610)
* squashed earlier commits for easier rebase
* rm rebase leftovers
* 4bit save enabled @quantizers
* TMP gptq test use exllama
* fix AwqConfigTest::test_wrong_backend for A100
* quantizers AWQ fixes
* _load_pretrained_... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -137,6 +137,8 @@\n title: Overview\n - local: quantization\n title: Quantization\n+ - local: hf_quantizer\n+ title: Contribute new quantization method\n - sections:\n - local: perf_train_gpu_one\n title: Methods and tools for ef... | 2024-01-30T01:48:25 |
golang/go | 55ec5182d7b84eb2461c495a55984162b23f3df8 | b1a48af7e8ee87cc46e1bbb07f81ac4853e0f27b | runtime: remove scavAddr in favor of address ranges
This change removes the concept of s.scavAddr in favor of explicitly
reserving and unreserving address ranges. s.scavAddr has several
problems with raciness that can cause the scavenger to miss updates, or
move it back unnecessarily, forcing future scavenge calls to ... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -735,9 +735,12 @@ func (p *PageAlloc) Free(base, npages uintptr) {\n func (p *PageAlloc) Bounds() (ChunkIdx, ChunkIdx) {\n \treturn ChunkIdx((*pageAlloc)(p).start), ChunkIdx((*pageAlloc)(p).end)\n }\n-func (p *PageAlloc) Scavenge(nbytes uintptr, locked bo... | 2019-11-21T17:05:14 |
vuejs/vue | e4dea59f84dfbf32cda1cdd832380dd90b1a6fd1 | 3ad60fea73d042fc9a127d19de8329948d3f2ef0 | fix(errorHandler): async error handling for watchers (#9484)
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> | [
{
"path": "src/core/instance/state.js",
"patch": "@@ -25,7 +25,8 @@ import {\n validateProp,\n isPlainObject,\n isServerRendering,\n- isReservedAttribute\n+ isReservedAttribute,\n+ invokeWithErrorHandling\n } from '../util/index'\n \n const sharedPropertyDefinition = {\n@@ -357,12 +358,9 @@ export ... | 2021-04-16T15:57:25 |
nodejs/node | cacce304cbce79ff878aaedf946f16f03ec91b8a | 79773f8af940912264b55e5255db9f50e25ac16a | doc: add links to alternative versions of doc
Each page of the API documentation should have links to other versions
of the same page. This will make it easier to switch between the current
"live" release at nodejs.org and LTS versions.
PR-URL: https://github.com/nodejs/node/pull/10958
Fixes: https://github.com/nodej... | [
{
"path": "doc/api/addons.md",
"patch": "@@ -1,5 +1,7 @@\n # C++ Addons\n \n+<!--introduced_in=v0.10.0-->\n+\n Node.js Addons are dynamically-linked shared objects, written in C++, that\n can be loaded into Node.js using the [`require()`][require] function, and used\n just as if they were an ordinary Node.j... | 2017-01-23T03:16:21 |
ggml-org/llama.cpp | e38b7c6e9e4453e3b3e96d76e38bc2ccb6bce458 | 5016b7286240d29f8f640039989b84ea3a854344 | graph : support cacheless embeddings with FA and iSWA (#16528)
* graph : support cacheless embeddings with FA and iSWA
* cont : deduplicate mask creation
* cont : fix name | [
{
"path": "src/llama-graph.cpp",
"patch": "@@ -261,12 +261,17 @@ void llm_graph_input_cross_embd::set_input(const llama_ubatch * ubatch) {\n }\n }\n \n-static void print_mask(float * data, int64_t n_tokens, int64_t n_kv, int64_t n_swa, llama_swa_type swa_type) {\n+static void print_mask(const float * da... | 2025-10-13T19:42:37 |
huggingface/transformers | cd2eb8cb2b40482ae432d97e65c5e2fa952a4f8f | a055d09e117eea5a578dafd9f09e3dd5b29c9f21 | Add French translation: french README.md (#28696)
* doc: french README
Signed-off-by: ThibaultLengagne <thibaultl@padok.fr>
* doc: Add Depth Anything
Signed-off-by: ThibaultLengagne <thibaultl@padok.fr>
* doc: Add french link in other docs
Signed-off-by: ThibaultLengagne <thibaultl@padok.fr>
* doc: A... | [
{
"path": "README.md",
"patch": "@@ -55,6 +55,7 @@ limitations under the License.\n <a href=\"https://github.com/huggingface/transformers/blob/main/README_ru.md\">Русский</a> |\n <a href=\"https://github.com/huggingface/transformers/blob/main/README_pt-br.md\">Рortuguês</a> |\n <a hr... | 2024-01-29T18:07:49 |
vuejs/vue | c6d7a6fce795ffbd6b8a599787eca986bb260a25 | ce457f9f4d48548d5e8763c47d013e23c2b65c12 | fix(v-on): avoid events with empty keyCode (autocomplete) (#11326) | [
{
"path": "src/core/instance/render-helpers/check-keycodes.js",
"patch": "@@ -31,4 +31,5 @@ export function checkKeyCodes (\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n+ return eventKeyCode === undefined\n }",
"additions": 1,
"deletions": 0,
"language": "J... | 2021-04-16T15:53:45 |
golang/go | b1a48af7e8ee87cc46e1bbb07f81ac4853e0f27b | 98d20fb23551a7ab900fcfe9d25fd9cb6a98a07f | encoding/json: properly encode strings with ",string" again
golang.org/cl/193604 fixed one bug when one encodes a string with the
",string" option: if SetEscapeHTML(false) is used, we should not be
using HTML escaping for the inner string encoding. The CL correctly
fixed that.
The CL also tried to speed up this edge ... | [
{
"path": "src/encoding/json/encode.go",
"patch": "@@ -635,11 +635,12 @@ func stringEncoder(e *encodeState, v reflect.Value, opts encOpts) {\n \t\treturn\n \t}\n \tif opts.quoted {\n-\t\tb := make([]byte, 0, v.Len()+2)\n-\t\tb = append(b, '\"')\n-\t\tb = append(b, []byte(v.String())...)\n-\t\tb = append(b, ... | 2020-03-31T11:20:15 |
ggml-org/llama.cpp | 5016b7286240d29f8f640039989b84ea3a854344 | 7049736b2dd9011bf819e298b844ebbc4b5afdc9 | opencl: fix build targeting CL 2 (#16554) | [
{
"path": "ggml/src/ggml-opencl/ggml-opencl.cpp",
"patch": "@@ -2348,8 +2348,13 @@ static ggml_backend_opencl_context * ggml_cl2_init(ggml_backend_dev_t dev) {\n svm_caps & CL_DEVICE_SVM_ATOMICS ? \"true\" : \"false\");\n \n if (opencl_c_version.major >= 3) {\n+ // Assume it is not availa... | 2025-10-13T18:50:37 |
huggingface/transformers | e694e985d770d14266dfd53378575a5d2a90256f | 9e8f35fa289613d299198f5be022c55e92b7ebd8 | Fix typo of `Block`. (#28727) | [
{
"path": "src/transformers/models/mixtral/modeling_mixtral.py",
"patch": "@@ -787,7 +787,7 @@ def forward(\n }\n \n \n-class MixtralBLockSparseTop2MLP(nn.Module):\n+class MixtralBlockSparseTop2MLP(nn.Module):\n def __init__(self, config: MixtralConfig):\n super().__init__()\n self.ffn_d... | 2024-01-29T15:25:00 |
nodejs/node | 9a5c3cf185c6e9c4fb9264cf8e61a74a5d697ff9 | 53c5bf546e8e52db5b11287ab3bf1375819b369b | test: continue normalizing fixtures use
PR-URL: https://github.com/nodejs/node/pull/14716
Refs: https://github.com/nodejs/node/pull/14332
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yuta Hiroto <hello@ab... | [
{
"path": "test/async-hooks/test-graph.tls-write.js",
"patch": "@@ -9,9 +9,8 @@ if (!common.hasIPv6)\n \n const initHooks = require('./init-hooks');\n const verifyGraph = require('./verify-graph');\n-const fs = require('fs');\n const tls = require('tls');\n-const path = require('path');\n+const fixtures = r... | 2017-08-09T17:29:40 |
vuejs/vue | ce457f9f4d48548d5e8763c47d013e23c2b65c12 | 77b5330c5498a6b14a83197371e9a2dbf9939a9c | fix(slot): add a function to return the slot fallback content (#12014)
Co-authored-by: zrh122 <1229550935@qq.com> | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -547,7 +547,7 @@ export function genComment (comment: ASTText): string {\n function genSlot (el: ASTElement, state: CodegenState): string {\n const slotName = el.slotName || '\"default\"'\n const children = genChildren(el, state)\n- let res = `_t(... | 2021-04-16T15:37:35 |
golang/go | 62a3f2e27c7732656bb3ae8f14047b74a9956e77 | 43f2f5024b2a1438a642fe5340b929d3069099e9 | crypto/tls: add Config.VerifyConnection callback
Since the ConnectionState will now be available during
verification, some code was moved around in order to
initialize and make available as much of the fields on
Conn as possible before the ConnectionState is verified.
Fixes #36736
Change-Id: I0e3efa97565ead7de5c48bb... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -219,7 +219,7 @@ type ConnectionState struct {\n \tCipherSuite uint16 // cipher suite in use (TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, ...)\n \tNegotiatedProtocol string // negotiated next protocol (not... | 2020-04-20T21:55:37 |
rust-lang/rust | dce265224a7674814d4d81a81192bf9077ed2edd | 27566abd87367e374f5575f2799eac7350065350 | Fix examples to work with nightly-2025-02-13
While there were comments indicating which nightly versions the examples
were tested with, those versions did not work for me: neither did the
examples compile, nor did they produce the expected output.
This commit fixes the compilation issues, using nightly-2025-02-13 for... | [
{
"path": "src/doc/rustc-dev-guide/examples/README",
"patch": "@@ -4,7 +4,10 @@ For each example to compile, you will need to first run the following:\n \n To create an executable:\n \n- rustc rustc-driver-example.rs\n+ rustup run nightly rustc rustc-driver-example.rs\n+\n+You might need to be more sp... | 2025-02-15T18:44:32 |
ggml-org/llama.cpp | 7049736b2dd9011bf819e298b844ebbc4b5afdc9 | 01d2bdc2bc61b676706830305b286b08b9885a41 | CUDA: fix numerical issues in tile FA kernel (#16540) | [
{
"path": "ggml/src/ggml-cuda/fattn-tile.cuh",
"patch": "@@ -540,10 +540,12 @@ static __device__ __forceinline__ void flash_attn_tile_iter(\n KQ_acc[(i_KQ_0/(np*warp_size))*cpw + jc0] = logit_softcap * tanhf(KQ_acc[(i_KQ_0/(np*warp_size))*cpw + jc0]);\n }\n \n- KQ_acc[... | 2025-10-13T14:29:45 |
huggingface/transformers | f72c7c22d9b7ba8a4c8cf1dd62c12c966434a6f2 | 3a08cc485fa2d7225e85174cbc814909ea606b52 | PatchtTST and PatchTSMixer fixes (#28083)
* :bug: fix .max bug
* remove prediction_length from regression output dimensions
* fix parameter names, fix output names, update tests
* ensure shape for PatchTST
* ensure output shape for PatchTSMixer
* update model, batch, and expected for regression distribu... | [
{
"path": "src/transformers/models/patchtsmixer/configuration_patchtsmixer.py",
"patch": "@@ -40,7 +40,7 @@ class PatchTSMixerConfig(PretrainedConfig):\n Args:\n context_length (`int`, *optional*, defaults to 32):\n The context/history length for the input sequence.\n- patch_l... | 2024-01-29T10:09:26 |
vuejs/vue | 77b5330c5498a6b14a83197371e9a2dbf9939a9c | af54514cf97e724d224408c1ecc6c81ddccd4b75 | fix: force update between two components with and without slot (#11795) | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -234,7 +234,8 @@ export function updateChildComponent (\n const hasDynamicScopedSlot = !!(\n (newScopedSlots && !newScopedSlots.$stable) ||\n (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||\n- (newScopedSlots && vm.$scopedS... | 2021-04-16T15:34:34 |
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.