repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
ggml-org/llama.cpp | 793c0d7f46384001738c337d7afa46b45ae32745 | ce111d39d666f4a3b6a561ad020f6feb8cc67790 | metal: SSM_SCAN performance (#14743)
* feat: Add s_off as a parameter in the args struct
This may not be necessary, but it more closely mirrors the CUDA kernel
Branch: GraniteFourPerf
Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
* perf: Parallelize mamba2 SSM_SCAN metal kernel over d_state
This is a first atte... | [
{
"path": "ggml/src/ggml-metal/ggml-metal-impl.h",
"patch": "@@ -528,6 +528,7 @@ typedef struct {\n int64_t n_group;\n int64_t n_seq_tokens;\n int64_t n_seqs;\n+ int64_t s_off;\n uint64_t nb01;\n uint64_t nb02;\n uint64_t nb03;",
"additions": 1,
"deletions": 0,
"la... | 2025-07-25T16:47:39 |
nodejs/node | 2d2986ae72f2f5c63d95a94f05fa996d9f0609f1 | cc1a47dc6b94b2feb4de9e46be9333d81d537783 | test: simplify test skipping
* Make common.skip() exit.
Also add common.printSkipMessage() for partial skips.
* Don't make needless things before skip
PR-URL: https://github.com/nodejs/node/pull/14021
Fixes: https://github.com/nodejs/node/issues/14016
Reviewed-By: Refael Ackermann <refack@gmail.com> | [
{
"path": "test/abort/test-abort-backtrace.js",
"patch": "@@ -1,13 +1,11 @@\n 'use strict';\n const common = require('../common');\n+if (common.isWindows)\n+ common.skip('Backtraces unimplemented on Windows.');\n+\n const assert = require('assert');\n const cp = require('child_process');\n \n-if (common.is... | 2017-06-30T23:29:09 |
vuejs/vue | 2deda3d4328eb7aea0adb0eaf01d68537ed0e0af | 4441e0f9d16e924f409a3711140932c50590ced6 | refactor(weex): Adjust the weex platform entry file to fit the new weex runtime (#6620)
* trim trailing whitespace
* revert(weex): remove the new Function hack for V8, as Weex uses JSC now
Remove the `callFunctionNative` method and `compileBundle`, which is provided by modified V8. In
order to maintain the cons... | [
{
"path": "build/config.js",
"patch": "@@ -17,7 +17,7 @@ const banner =\n \n const weexFactoryPlugin = {\n intro () {\n- return 'module.exports = function weexFactory (exports, renderer) {'\n+ return 'module.exports = function weexFactory (exports, document) {'\n },\n outro () {\n return '}'... | 2017-09-18T19:38:27 |
huggingface/transformers | bc086a251699f7c22af0434a2eaa2024098ffaa0 | e9adb0c9cf9f2e4017615ab64f4d2f364339136e | Put doctest options back to `pyproject.toml` (#27366)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "pyproject.toml",
"patch": "@@ -18,6 +18,6 @@ line-length = 119\n lines-after-imports = 2\n known-first-party = [\"transformers\"]\n \n-# This is ignored, maybe because of the header? If someone finds a fix, we can uncomment and remove setup.cfg\n-# [tool.pytest]\n-# doctest_optionflags=\"NUMBER N... | 2023-11-09T10:50:19 |
golang/go | 24925c7ed9da15fe780d0d2fce21bbaa707e8751 | 5d47f870a64982173f3da8a82a6a793b83075d6a | cmd/compile: fold LEAQ with constant scale into LEA
Discovered this after rebasing CL196679 (use poset bounds in prove).
Some tests fail with that CL applied:
codegen/smallintiface.go:11: linux/amd64/: opcode not found: "^LEAQ\\truntime.staticuint64s\\+8\\(SB\\)"
codegen/smallintiface.go:16: linux/amd64/: opcode not ... | [
{
"path": "src/cmd/compile/internal/ssa/gen/AMD64.rules",
"patch": "@@ -1202,6 +1202,14 @@\n (LEAQ8 [off1+4*off2] {sym1} x y)\n // TODO: more?\n \n+// Lower LEAQ2/4/8 when the offset is a constant\n+(LEAQ2 [off] {sym} x (MOV(Q|L)const [scale])) && is32Bit(off+scale*2) ->\n+\t(LEAQ [off+scale*2] {sym} ... | 2020-03-23T08:21:44 |
ggml-org/llama.cpp | 749e0d27f0247337869f4698f59dd7fafba94326 | 64bf1c3744053cf7def10aeed21ff48883ee755b | mtmd : fix 32-bit narrowing issue in export-lora and mtmd clip (#14503)
* [fix] Fix 32-bit narrowing issue in export-lora and mtmd clip
* Update export-lora.cpp
* Update clip.cpp
* Update export-lora.cpp
* format: use space to replace tab | [
{
"path": "tools/export-lora/export-lora.cpp",
"patch": "@@ -148,7 +148,7 @@ struct lora_merge_ctx {\n \n ctx_out = gguf_init_empty();\n struct ggml_init_params params = {\n- /*.mem_size =*/ gguf_get_n_tensors(base_model.ctx_gguf)*ggml_tensor_overhead(),\n+ /*.mem_siz... | 2025-07-25T11:08:04 |
vuejs/vue | 4459b87de902cf3ba496a104304ca80d1c9824c1 | 8164ce6169851d673ed0904289ece4c22ca20e95 | fix(core): avoid observing VNodes
fix #6610 | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -1,6 +1,7 @@\n /* @flow */\n \n import Dep from './dep'\n+import VNode from '../vdom/vnode'\n import { arrayMethods } from './array'\n import {\n def,\n@@ -104,7 +105,7 @@ function copyAugment (target: Object, src: Object, keys: Array<string>) {\n * or... | 2017-09-15T14:16:39 |
huggingface/transformers | 7ecd229ba475dbf78040f368ae86c86bba875442 | ced9fd86f55ebb6b656c273f6e23f8ba50652f83 | Smangrul/fix failing ds ci tests (#27358)
* fix failing DeepSpeed CI tests due to `safetensors` being default
* debug
* remove debug statements
* resolve comments
* Update test_deepspeed.py | [
{
"path": "tests/deepspeed/test_deepspeed.py",
"patch": "@@ -48,7 +48,7 @@\n slow,\n )\n from transformers.trainer_utils import get_last_checkpoint, set_seed\n-from transformers.utils import WEIGHTS_NAME, is_torch_bf16_gpu_available\n+from transformers.utils import SAFE_WEIGHTS_NAME, is_torch_bf16_gpu_a... | 2023-11-09T06:17:24 |
nodejs/node | cc1a47dc6b94b2feb4de9e46be9333d81d537783 | f1c890afb05274880df0f1ce4084607c03b194bf | test: fix require nits in some test-tls-* tests
* Do not require if test is skipped.
* Do not re-require without need.
* Sort requiring by module names.
PR-URL: https://github.com/nodejs/node/pull/14008
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "test/internet/test-tls-add-ca-cert.js",
"patch": "@@ -10,10 +10,11 @@ if (!common.hasCrypto) {\n \n const assert = require('assert');\n const fs = require('fs');\n+const path = require('path');\n const tls = require('tls');\n \n function filenamePEM(n) {\n- return require('path').join(common.fix... | 2017-06-30T17:52:53 |
golang/go | 5d47f870a64982173f3da8a82a6a793b83075d6a | 67c2dcbc592f3ee03aa89ddcb1f07715b047f4b2 | crypto/x509: add RevocationList and CreateRevocationList
The existing Certificate.CreateCRL method generates non-conformant CRLs and
as such cannot be used for implementations that require standards
compliance. This change implements a new top level method, CreateCRL, which
generates compliant CRLs, and offers an exte... | [
{
"path": "src/crypto/x509/x509.go",
"patch": "@@ -1633,6 +1633,7 @@ var (\n \toidExtensionNameConstraints = []int{2, 5, 29, 30}\n \toidExtensionCRLDistributionPoints = []int{2, 5, 29, 31}\n \toidExtensionAuthorityInfoAccess = []int{1, 3, 6, 1, 5, 5, 7, 1, 1}\n+\toidExtensionCRLNumber = ... | 2020-03-20T20:28:43 |
ggml-org/llama.cpp | c12bbde37258c6d053322d1cedd4a9672109ae58 | 3f4fc97f1d745f1d5d3c853949503136d419e6de | sched : fix multiple evaluations of the same graph with pipeline parallelism (#14855)
ggml-ci | [
{
"path": "ggml/src/ggml-backend.cpp",
"patch": "@@ -647,6 +647,7 @@ struct ggml_backend_sched {\n // pipeline parallelism support\n int n_copies;\n int cur_copy;\n+ int next_copy;\n ggml_backend_event_t events[GGML_SCHED_MAX_BACKENDS][GGML_SCHED_MAX_COPIES];\n struct ggml_tensor * gr... | 2025-07-25T08:07:26 |
vuejs/vue | b080a14138262f0f274d0888555a11bd7387d576 | 94512f3e8cee4030a1096121700ed49afab48073 | fix(ssr): fix hydration mismatch with adjacent text node from slots
fix vuejs/vue-loader#974 | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -42,28 +42,35 @@ function isTextNode (node): boolean {\n \n function normalizeArrayChildren (children: any, nestedIndex?: string): Array<VNode> {\n const res = []\n- let i, c, last\n+ let i, c, lastIndex, last\n for (i = 0; i < chil... | 2017-09-14T16:25:22 |
nodejs/node | f1c890afb05274880df0f1ce4084607c03b194bf | bec387725af44a1f250c8dcf5f7e584d6d432b77 | test,fs: delay unlink in test-regress-GH-4027.js
The sequential/test-regress-GH-4027 test is flaky with an increased
system load, failing when the watched file is unlinked before the
first state of the watched file is retrieved.
After increasing the delay before unlinking and calling setTimeout
after watchFile, the f... | [
{
"path": "test/sequential/test-regress-GH-4027.js",
"patch": "@@ -29,10 +29,11 @@ common.refreshTmpDir();\n \n const filename = path.join(common.tmpDir, 'watched');\n fs.writeFileSync(filename, 'quis custodiet ipsos custodes');\n-setTimeout(fs.unlinkSync, 100, filename);\n \n fs.watchFile(filename, { inter... | 2017-06-30T18:35:52 |
golang/go | 8c30971da654a37a5f5f211e6dccf8d83e7ee463 | 830ee4792e52cc8c7c0a4d54259f55fa3629271a | cmd/compile: panic if trying to alias an intrinsic with no definitions
Currently if we try to alias an intrinsic which hasn't been defined for
any architecture (such as by accidentally creating the alias before the
intrinsic is created with addF), then we'll just silently not apply any
intrinsics to those aliases.
Ca... | [
{
"path": "src/cmd/compile/internal/gc/ssa.go",
"patch": "@@ -3251,11 +3251,16 @@ func init() {\n \t}\n \t// alias defines pkg.fn = pkg2.fn2 for all architectures in archs for which pkg2.fn2 exists.\n \talias := func(pkg, fn, pkg2, fn2 string, archs ...*sys.Arch) {\n+\t\taliased := false\n \t\tfor _, a := r... | 2020-03-20T19:08:13 |
ggml-org/llama.cpp | 60f816a79dd74007158745530e71738aa6caa67e | 5592f278b6ec6aa4a1793e89e8c61838a12ebc9d | cmake : fix usage issues (ggml/1257)
* CMake config: Create target only once
Fix error on repeated find_package(ggml).
For simplicity, check only for the top-level ggml::ggml.
* CMake config: Add CUDA link libs
* CMake config: Add OpenCL link libs
* CMake config: Use canonical find_dependency
Use set and append t... | [
{
"path": "ggml/cmake/ggml-config.cmake.in",
"patch": "@@ -1,94 +1,130 @@\n-\n-@GGML_VARIABLES_EXPANDED@\n-\n @PACKAGE_INIT@\n \n-set_and_check(GGML_INCLUDE_DIR \"@PACKAGE_GGML_INCLUDE_INSTALL_DIR@\")\n-set_and_check(GGML_LIB_DIR \"@PACKAGE_GGML_LIB_INSTALL_DIR@\")\n-#set_and_check(GGML_BIN_DIR \"@PACKAGE_G... | 2025-07-22T18:13:21 |
vuejs/vue | a2f73f2c2e28771e6597334bd86f82851ce0955e | 0c9534ff0069b5289ea9598bcb4f5e5ac346c979 | fix(ssr): fix style injection regression
fix #6603, (regression caused by attempt to fix #6353) | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -106,7 +106,7 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n // slightly differently.\n let runner // lazy creation so that errors can be caught by user\n let initialContext\n- ret... | 2017-09-14T14:54:59 |
huggingface/transformers | ced9fd86f55ebb6b656c273f6e23f8ba50652f83 | 0e402e1478ff8c9db876eb7b3a708c1477cec2fa | translate debugging.md to chinese (#27374)
* update
* update | [
{
"path": "docs/source/zh/_toctree.yml",
"patch": "@@ -47,6 +47,8 @@\n title: 综述\n - local: big_models\n title: 实例化大模型\n+ - local: debugging\n+ title: 问题定位及解决\n title: 性能和可扩展性\n - sections:\n - local: task_summary",
"additions": 2,
"deletions": 0,
"language": "YAML"
},
{
... | 2023-11-08T22:04:06 |
nodejs/node | 4b276e985fc682dc326f27f2e3ab9ddd41814a23 | 380929ec0c4c4004b522bed5e3800ebce2b68bfd | http: guard against failed sockets creation
PR-URL: https://github.com/nodejs/node/pull/13839
Fixes: https://github.com/nodejs/node/issues/13045
Fixes: https://github.com/nodejs/node/issues/13831
Refs: https://github.com/nodejs/node/issues/13352
Refs: https://github.com/nodejs/node/issues/13548#issuecomment-307177400
... | [
{
"path": "lib/_http_agent.js",
"patch": "@@ -181,15 +181,7 @@ Agent.prototype.addRequest = function addRequest(req, options, port/*legacy*/,\n } else if (sockLen < this.maxSockets) {\n debug('call onSocket', sockLen, freeLen);\n // If we are under maxSockets create a new one.\n- this.createSoc... | 2017-07-03T03:52:41 |
golang/go | 330f53b6155954af81d8876a8dc251d8908db581 | 54c32590f0369f1b67ad3c988424676d3f1eebb8 | [dev.link] cmd/asm, cmd/compile: add back newobj flag
Add back the newobj flag, renamed to go115newobj, for feature
gating. The flag defaults to true.
This essentially reverts CL 206398 as well as CL 220060.
The old object format isn't working yet. Will fix in followup CLs.
Change-Id: I1ace2a9cbb1a322d2266972670d27... | [
{
"path": "src/cmd/asm/internal/flags/flags.go",
"patch": "@@ -24,6 +24,8 @@ var (\n \tAllErrors = flag.Bool(\"e\", false, \"no limit on number of errors reported\")\n \tSymABIs = flag.Bool(\"gensymabis\", false, \"write symbol ABI information to output file, don't assemble\")\n \tImportpath = flag.Stri... | 2020-03-20T16:36:11 |
vuejs/vue | 0c9534ff0069b5289ea9598bcb4f5e5ac346c979 | 5376dab415591011f6a9650a06e224fab4614af4 | fix(ssr): fix bundleRenderer Promise rejection regression | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -106,7 +106,7 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n // slightly differently.\n let runner // lazy creation so that errors can be caught by user\n let initialContext\n- ret... | 2017-09-14T13:50:33 |
ggml-org/llama.cpp | 820de57d4faa427a3d0bfb14e48057247fae036e | cb4a63aad6650c2b536a7578403935388cb2920e | chat : fix kimi-k2 chat template (#14852) | [
{
"path": "src/llama-arch.cpp",
"patch": "@@ -1933,12 +1933,6 @@ static const std::map<llm_arch, std::map<llm_tensor, const char *>> LLM_TENSOR_N\n { LLM_TENSOR_TOKEN_EMBD_NORM, \"token_embd_norm\" },\n }\n },\n- {\n- LLM_ARCH_UNKNOWN,\n- {\n- { LLM_TENS... | 2025-07-24T11:59:56 |
huggingface/transformers | a5bee89c9d5ec2402cb72e819860d51cc2ca35fc | ef716736165cbbac433a3c4b2c3ea97246b3d6b9 | Add Flash Attention 2 support to Bark (#27364)
* change handmade attention mask to _prepare_4d_attention_mask
* add flashattention2 support in Bark
* add flashattention2 tests on BarkSemanticModel
* make style
* fix flashattention and tests + make style
* fix memory leak and allow Bark to pass flash att... | [
{
"path": "src/transformers/models/bark/modeling_bark.py",
"patch": "@@ -26,12 +26,14 @@\n BarkEosPrioritizerLogitsProcessor,\n SuppressTokensLogitsProcessor,\n )\n+from ...modeling_attn_mask_utils import _prepare_4d_attention_mask\n from ...modeling_outputs import CausalLMOutputWithPast, MaskedLMOu... | 2023-11-08T17:06:35 |
ggml-org/llama.cpp | cb4a63aad6650c2b536a7578403935388cb2920e | 86f5623d904cfd392fdeb14a143097b4074660f6 | sycl: fixed semantics of block offset calculation (#14814) | [
{
"path": "ggml/src/ggml-sycl/quants.hpp",
"patch": "@@ -48,11 +48,11 @@ template <> struct block_q_t<GGML_TYPE_Q4_0> {\n };\n \n static constexpr std::pair<int, int> get_block_offset(const int block_index, const int /* nblocks */) {\n- return { block_index * (traits::qk / traits::qr), 0 };\n... | 2025-07-24T10:09:57 |
nodejs/node | 380929ec0c4c4004b522bed5e3800ebce2b68bfd | 932ee65cd280808dd27e08fea7dfc4ebdc492b7a | test: remove common.noop
This change removes `common.noop` from the Node.js internal testing
common module.
Over the last few weeks, I've grown to dislike the `common.noop`
abstraction.
First, new (and experienced) contributors are unaware of it and so it
results in a large number of low-value nits on PRs. It also i... | [
{
"path": "test/common/README.md",
"patch": "@@ -209,26 +209,26 @@ Gets IP of localhost\n Array of IPV6 hosts.\n \n ### mustCall([fn][, exact])\n-* `fn` [<Function>](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function) default = `common.noop`\n+* `fn` [<Function>]... | 2017-05-04T04:07:54 |
huggingface/transformers | bd8f45b1674be4da875097cb5557557d80bcce46 | 7b175cfaa780ff54c534f236fae5bcaa22214874 | Fix tiny model script: not using `from_pt=True` (#27372)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "utils/create_dummy_models.py",
"patch": "@@ -916,7 +916,7 @@ def build_composite_models(config_class, output_dir):\n model.save_pretrained(model_path)\n \n if tf_model_class is not None:\n- model = tf_model_class.from_pretrained(model_path, from_pt=True)\n+ ... | 2023-11-08T16:15:57 |
ggml-org/llama.cpp | 86f5623d904cfd392fdeb14a143097b4074660f6 | 39cffdf18855e0d2beba62572542251d87421e73 | llama : fix MiniCPM inference after Granite Four changes (#14850)
MiniCPM models use the llm_build_granite constructor which was changed
in the Granite Four PR to use hparams.rope_finetuned instead of a
use_rope parameter. MiniCPM models need rope enabled by default.
Fixes inference from gibberish to correct response... | [
{
"path": "src/llama-model.cpp",
"patch": "@@ -646,6 +646,9 @@ void llama_model::load_hparams(llama_model_loader & ml) {\n ml.get_key(LLM_KV_RESIDUAL_SCALE, hparams.f_residual_scale);\n ml.get_key(LLM_KV_LOGIT_SCALE, hparams.f_logit_scale);\n \n+ ... | 2025-07-24T09:50:51 |
huggingface/transformers | eb30a49b2028f2411514c10e432792ad581fc08b | f16ff0f07e3867db5feda00a661572a190f404e6 | Translate index.md to Turkish (#27093)
* Add index.md for tukish language
* Fix index.md (huggingface/transformers#27088)
* Add 'tr' to additional files
* Update docs/source/tr/_toctree.yml
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
* Update index.md
---------
Co-autho... | [
{
"path": ".github/workflows/build_documentation.yml",
"patch": "@@ -15,7 +15,7 @@ jobs:\n commit_sha: ${{ github.sha }}\n package: transformers\n notebook_folder: transformers_doc\n- languages: de en es fr hi it ko pt zh ja te\n+ languages: de en es fr hi it ko pt tr zh ja te\n ... | 2023-11-08T13:35:20 |
nodejs/node | 932ee65cd280808dd27e08fea7dfc4ebdc492b7a | fe730d34ce5d93e61341915007ef2a6504e63e2e | test: refactor test-http(s)-set-timeout-server
* Make changes to `test-https-set-timeout-server` to resolve
inconsistencies with its http counterpart:
- Apply the changes analogous to those in GH-13802 to the https test.
- Add a missing `common.mustCall()` wrapper.
- Make small stylistic changes (e.g., remove... | [
{
"path": "test/parallel/test-http-set-timeout-server.js",
"patch": "@@ -42,11 +42,11 @@ function run() {\n }\n \n test(function serverTimeout(cb) {\n- const server = http.createServer(common.mustCall(function(req, res) {\n+ const server = http.createServer(common.mustCall((req, res) => {\n // just do... | 2017-06-26T18:41:28 |
vuejs/vue | 5376dab415591011f6a9650a06e224fab4614af4 | ed88ac411403782bb0e249a9bad73c2174c27c5e | chore: fix bronze sponsors | [
{
"path": "BACKERS.md",
"patch": "@@ -227,36 +227,36 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h2 align=\"center\">Bronze via OpenCollective</h2>\n \n-<a href=\"https://opencollective.com/vuejs/sponsor/0/website\" target=\"_blank\"><img src=\"https://opencollec... | 2017-09-14T13:00:00 |
golang/go | 54c32590f0369f1b67ad3c988424676d3f1eebb8 | f652eb72b6b65a63572650de5b5c08cfcf65de6b | [dev.link] cmd/oldlink: add back the old linker
Basically a "cp -r" from tip's cmd/link (at commit
776a9d0958973bff6a66e61baa6a9a240ada4255), and fix up import
paths.
It is not used for now. A flag will be introduced in followup
CLs, which will allow to switch between the old and new linker.
Some adjustments to make... | [
{
"path": "src/cmd/oldlink/doc.go",
"patch": "@@ -0,0 +1,129 @@\n+// Copyright 2009 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+/*\n+Link, typically invoked as ``go tool link,'' reads the Go archive or ... | 2020-03-20T15:54:24 |
ggml-org/llama.cpp | 065908cb09adff8b2a5f1173f80050d5d9a6790b | 4ec6291a2407404de52239c1f9ca66c07e7fb28b | metal : fix fusion across different encoders (#14849)
* metal : fix fusion across different encoders
ggml-ci
* cont : add assertion
ggml-ci | [
{
"path": "ggml/src/ggml-metal/ggml-metal.m",
"patch": "@@ -1955,6 +1955,7 @@ static bool ggml_metal_supports_op(const struct ggml_backend_metal_device_contex\n static int ggml_metal_encode_node(\n ggml_backend_t backend,\n int idx,\n+ ... | 2025-07-24T07:24:05 |
huggingface/transformers | f16ff0f07e3867db5feda00a661572a190f404e6 | 5ef650b0aeb8ce3a9491db9f39591264dbff4145 | MusicGen Update (#27084)
* [MusicGen] Add stereo model
* safe serialization
* Update src/transformers/models/musicgen/modeling_musicgen.py
* split over 2 lines
* fix slow tests on cuda | [
{
"path": "docs/source/en/model_doc/musicgen.md",
"patch": "@@ -57,6 +57,11 @@ Generation is limited by the sinusoidal positional embeddings to 30 second input\n than 30 seconds of audio (1503 tokens), and input audio passed by Audio-Prompted Generation contributes to this limit so,\n given an input of 20 s... | 2023-11-08T13:26:02 |
nodejs/node | fe730d34ce5d93e61341915007ef2a6504e63e2e | 44256bb0aaa54df60ec3d2c53bcfe7004fb61427 | child_process: use internal/errors
PR-URL: https://github.com/nodejs/node/pull/14009
Refs: https://github.com/nodejs/node/issues/11273
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipi... | [
{
"path": "lib/internal/child_process.js",
"patch": "@@ -264,8 +264,10 @@ ChildProcess.prototype.spawn = function(options) {\n var ipcFd;\n var i;\n \n- if (options === null || typeof options !== 'object')\n- throw new TypeError('\"options\" must be an object');\n+ if (options === null || typeof op... | 2017-06-30T18:46:11 |
vuejs/vue | ed88ac411403782bb0e249a9bad73c2174c27c5e | 7cea42b4ef34d6a502b9f7fb99fe295ee92876b2 | docs(packages): fix syntax (#6600) | [
{
"path": "packages/vue-template-compiler/README.md",
"patch": "@@ -51,6 +51,7 @@ The optional `options` object can contain the following:\n test (node, directiveMeta) {\n // transform node based on directiveMeta\n }\n+ }\n })\n ```\n ",
"additions": 1,
"deletions": 0,
... | 2017-09-14T12:37:53 |
golang/go | f652eb72b6b65a63572650de5b5c08cfcf65de6b | 6def07cf1ec9b4ac5ae8a4cbcddb603e0c3e982b | [dev.link] cmd/internal/dwarf: add back some constant prefixes
They are still used by the old linker.
This is for introducing gating for the new object file format and
the new linker.
Change-Id: I97bb6ab4cc2c03f90f199c705d4c127e45ca07f6
Reviewed-on: https://go-review.googlesource.com/c/go/+/224621
Run-TryBot: Cherry... | [
{
"path": "src/cmd/internal/dwarf/dwarf.go",
"patch": "@@ -18,9 +18,21 @@ import (\n \t\"strings\"\n )\n \n+// TODO(go115newobj): clean up. Some constant prefixes here are no longer\n+// needed in the new object files.\n+\n // InfoPrefix is the prefix for all the symbols containing DWARF info entries.\n con... | 2020-03-20T15:51:34 |
ggml-org/llama.cpp | 4ec6291a2407404de52239c1f9ca66c07e7fb28b | a12363bbf0ca11f787dee9756861043136edc0df | sycl: fix undefined variable in work group size check (#14843) | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -3531,7 +3531,7 @@ static void ggml_sycl_mul_mat_id(ggml_backend_sycl_context & ctx,\n stream->memset(dev_cur_src1_row.get(), 0, sizeof(int))));\n \n const unsigned int max_work_group_size = ggml_sycl_info().max_work_grou... | 2025-07-24T04:50:41 |
huggingface/transformers | 5ef650b0aeb8ce3a9491db9f39591264dbff4145 | efa57cb234eeebe831f241fe2bb97da567e3ab05 | Fix `Kosmos-2` device issue (#27346)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/kosmos2/modeling_kosmos2.py",
"patch": "@@ -1149,7 +1149,9 @@ def forward_embedding(\n inputs_embeds = self.embed_tokens(input_ids)\n \n if image_embeds is not None:\n- inputs_embeds[img_input_mask.to(dtype=torch.bool)] = image_embeds.view(-1... | 2023-11-08T13:14:45 |
vuejs/vue | fa6a7290e3b8cb62fb7f999389f476617b56503e | 1c86b9ebebebc15ff9ef4ababa64194ef9c349a2 | fix: $off should ignore undefined handler argument
fix #6591 | [
{
"path": "src/core/instance/events.js",
"patch": "@@ -95,14 +95,16 @@ export function eventsMixin (Vue: Class<Component>) {\n vm._events[event] = null\n return vm\n }\n- // specific handler\n- let cb\n- let i = cbs.length\n- while (i--) {\n- cb = cbs[i]\n- if (cb === f... | 2017-09-13T07:08:22 |
nodejs/node | 44256bb0aaa54df60ec3d2c53bcfe7004fb61427 | 1d7414354e4cce9ebc48c4f7117170c746f12970 | path: fix incorrect use of ERR_INVALID_ARG_TYPE
PR-URL: https://github.com/nodejs/node/pull/14011
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "lib/path.js",
"patch": "@@ -960,7 +960,7 @@ const win32 = {\n format: function format(pathObject) {\n if (pathObject === null || typeof pathObject !== 'object') {\n throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'pathObject', 'Object',\n- typeof path... | 2017-06-30T19:31:21 |
golang/go | bb929b7452b5b8a6a584a94a110c98b0c6543a6e | 0c302459968511865ec6a5ee4ff2172e4e54cef8 | cmd/compile: skip generating args_stackmap for "pulled" funcs
In golang.org/cl/171464, we cleaned up generation of .stkobj linker
symbols, but we couldn't figure out why a similar cleanup to
.args_stackmap linker symbols caused problems.
The issue is that we only need/want to generate .args_stackmap for
functions tha... | [
{
"path": "src/cmd/compile/internal/gc/pgen.go",
"patch": "@@ -12,7 +12,6 @@ import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/src\"\n \t\"cmd/internal/sys\"\n-\t\"fmt\"\n \t\"internal/race\"\n \t\"math/rand\"\n \t\"sort\"\n@@ -28,11 +27,10 @@ var (\n )\n \n func emitptrargsmap(fn *Node) {\n-\tif fn.f... | 2020-03-12T19:14:02 |
ggml-org/llama.cpp | a12363bbf0ca11f787dee9756861043136edc0df | a86f52b2859dae4db5a7a0bbc0f1ad9de6b43ec6 | convert : text-only support for GLM-4.1V-9B-Thinking (#14823)
* use language_model part only, ignore visual layers
* fix rope_dim calculation | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -6486,7 +6486,7 @@ def prepare_tensors(self):\n self.gguf_writer.add_max_alibi_bias(self.max_alibi_bias)\n \n \n-@ModelBase.register(\"Glm4ForCausalLM\")\n+@ModelBase.register(\"Glm4ForCausalLM\", \"Glm4vForConditionalGeneration\")\n class Glm4Model(Te... | 2025-07-23T21:23:57 |
huggingface/transformers | efa57cb234eeebe831f241fe2bb97da567e3ab05 | b6dbfee0a21d333447b47887dbe2cb87720ebfd0 | Fix example tests from failing (#27353)
* Fix example tests from failing
* CHange thresh | [
{
"path": "examples/pytorch/test_accelerate_examples.py",
"patch": "@@ -21,7 +21,6 @@\n import shutil\n import sys\n import tempfile\n-import unittest\n from unittest import mock\n \n from accelerate.utils import write_basic_config\n@@ -89,6 +88,7 @@ def test_run_glue_no_trainer(self):\n --per_d... | 2023-11-08T12:45:21 |
vuejs/vue | 1baa0a7884cfa147df7623a34ee277f7d39c7a21 | aa820cba37b69772868c9cdb69235c424e23f529 | fix(types): add `inject` option in functional component options type (#6530) | [
{
"path": "types/options.d.ts",
"patch": "@@ -47,7 +47,7 @@ export interface ComponentOptions<V extends Vue> {\n filters?: { [key: string]: Function };\n \n provide?: Object | (() => Object);\n- inject?: { [key: string]: string | symbol } | Array<string>;\n+ inject?: { [key: string]: string | symbol }... | 2017-09-13T06:25:50 |
nodejs/node | 1d7414354e4cce9ebc48c4f7117170c746f12970 | 8b2c61c1698bb01fd54e78d27b90356606864f84 | assert: fix incorrect use of ERR_INVALID_ARG_TYPE
PR-URL: https://github.com/nodejs/node/pull/14011
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "lib/assert.js",
"patch": "@@ -527,7 +527,7 @@ function innerThrows(shouldThrow, block, expected, message) {\n if (typeof block !== 'function') {\n const errors = lazyErrors();\n throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'block', 'function',\n- type... | 2017-06-30T19:30:23 |
ggml-org/llama.cpp | a86f52b2859dae4db5a7a0bbc0f1ad9de6b43ec6 | b284197df426fb189cdcfe56a43c863a788ac756 | CUDA: fix overflow in FA, tune performance (#14840) | [
{
"path": "ggml/src/ggml-cuda/fattn-common.cuh",
"patch": "@@ -23,33 +23,13 @@ typedef void (* fattn_kernel_t)(\n const float m1,\n const uint32_t n_head_log2,\n const float logit_softcap,\n- const int ne00,\n- const int ne01,\n- const int ne02,\n- const i... | 2025-07-23T19:43:25 |
huggingface/transformers | be74b2ead69df1849ec62ac5c86c7d5dee663448 | e2647450511e44ad9020d7d5dd455b2851850538 | Add numpy alternative to FE using torchaudio (#26339)
* add audio_utils usage in the FE of SpeechToText
* clean unecessary parameters of AudioSpectrogramTransformer FE
* add audio_utils usage in AST
* add serialization tests and function to FEs
* make style
* remove use_torchaudio and move to_dict to FE... | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -146,6 +146,7 @@\n \"models.audio_spectrogram_transformer\": [\n \"AUDIO_SPECTROGRAM_TRANSFORMER_PRETRAINED_CONFIG_ARCHIVE_MAP\",\n \"ASTConfig\",\n+ \"ASTFeatureExtractor\",\n ],\n \"models.auto\": [\n \"ALL_P... | 2023-11-08T07:39:37 |
vuejs/vue | 3ee62fd59e20030dd63c08c2390e803d034928fe | 1f52a2a9f433452c15715131ed74433a43d5cfb7 | fix(inject): exclude not enumerable keys of inject object (#6346)
close #6574 | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -41,7 +41,9 @@ export function resolveInject (inject: any, vm: Component): ?Object {\n // inject is :any because flow is not smart enough to figure out cached\n const result = Object.create(null)\n const keys = hasSymbol\n- ? Reflect.o... | 2017-09-13T05:05:11 |
rust-lang/rust | d282a67d5848dba94b6d362492950a252c2c901a | d28678e6216f63544cdea37deff4ca26158a67f5 | Fix whitespace in lift macros.
This has been bugging me for some time. | [
{
"path": "compiler/rustc_middle/src/ty/context.rs",
"patch": "@@ -2243,21 +2243,23 @@ macro_rules! nop_list_lift {\n };\n }\n \n-nop_lift! {type_; Ty<'a> => Ty<'tcx>}\n-nop_lift! {region; Region<'a> => Region<'tcx>}\n-nop_lift! {const_; Const<'a> => Const<'tcx>}\n-nop_lift! {pat; Pattern<'a> => Pattern... | 2025-02-05T03:54:13 |
nodejs/node | 8b2c61c1698bb01fd54e78d27b90356606864f84 | 9955c30df34e4fc17282e0cbed13fa9dc483b5b5 | doc: fix api docs style
doc/api/cluster.md
L337: Use the definition link
doc/api/deprecations.md
L106: Fix the definition link name
doc/api/errors.md
L901: Remove unused definition
PR-URL: https://github.com/nodejs/node/pull/13970
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <an... | [
{
"path": "doc/api/cluster.md",
"patch": "@@ -334,7 +334,7 @@ added: v6.0.0\n \n Set by calling `.kill()` or `.disconnect()`. Until then, it is `undefined`.\n \n-The boolean `worker.exitedAfterDisconnect` allows distinguishing between\n+The boolean [`worker.exitedAfterDisconnect`][] allows distinguishing be... | 2017-06-28T18:55:48 |
ggml-org/llama.cpp | b284197df426fb189cdcfe56a43c863a788ac756 | 221c0e0c5841a814e95b9bfd549de9d6ae00ac6e | CUDA: fix compilation with GGML_CUDA_F16 (#14837) | [
{
"path": "ggml/src/ggml-cuda/convert.cu",
"patch": "@@ -31,8 +31,8 @@ static __global__ void dequantize_block(const void * __restrict__ vx, dst_t * __\n dequantize_kernel(vx, ib, iqs, v);\n \n const int64_t iy0 = ((i03*ne02 + i02)*ne01 + i01)*ne00 + iybs + iqs;\n- y[iy0 + 0] = v.x;\n- ... | 2025-07-23T16:22:30 |
vuejs/vue | 1f52a2a9f433452c15715131ed74433a43d5cfb7 | 09106f066a1ba71431e4f9f26246aaf619153e2e | fix(ssr): expose context.styles when no lifecycle styles are injected
fix #6353 | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -130,7 +130,23 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n if (initialContext._styles) {\n userContext._styles = deepClone(initialContext._styles)\n }\n- resolve(runne... | 2017-09-13T04:32:07 |
huggingface/transformers | e2647450511e44ad9020d7d5dd455b2851850538 | f213d5dd8cea1eb31d9b44dbdf268e4265a6d338 | translate model_sharing.md and llm_tutorial.md to chinese (#27283)
* translate model_sharing.md
* translate llm_tutorial.md to chiense
* update wrong translation
* update _torctree.yml
* update typos
* update | [
{
"path": "docs/source/zh/_toctree.yml",
"patch": "@@ -21,8 +21,12 @@\n title: 使用🤗Accelerate进行分布式训练\n - local: peft\n title: 使用🤗 PEFT加载和训练adapters\n+ - local: model_sharing\n+ title: 分享您的模型\n - local: transformers_agents\n title: agents教程\n+ - local: llm_tutorial\n+ title: 使用LLMs进行... | 2023-11-07T23:34:33 |
nodejs/node | 4dff05f4a7ba93782ab2fdf6124941bb82128f78 | 31349e224576f1846a900958c9fecf566d07a04c | src: fix process.abort() interaction with V8
Since V8 5.9 V8 installs a default signal handler for some signals
when creating a default platform instance that prints a stack trace.
However, Node already does the same thing, so it would seem like the
two different stack traces would be printed; also, the V8 handler
wo... | [
{
"path": "src/node.cc",
"patch": "@@ -247,7 +247,10 @@ node::DebugOptions debug_options;\n static struct {\n #if NODE_USE_V8_PLATFORM\n void Initialize(int thread_pool_size) {\n- platform_ = v8::platform::CreateDefaultPlatform(thread_pool_size);\n+ platform_ = v8::platform::CreateDefaultPlatform(\n... | 2017-06-29T11:33:54 |
ggml-org/llama.cpp | 07a19e27a26f76d34be62da53807f93131fb3cab | 18f3b5ff9e5eda4e7d04bceff8ffdccb0a696ed8 | CUDA: fix quantized KV cache + multiple sequences (#14822)
* CUDA: fix quantized KV cache + multiple sequences
* Update ggml/src/ggml-cuda/fattn-common.cuh
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> | [
{
"path": "ggml/src/ggml-cuda/convert.cu",
"patch": "@@ -6,24 +6,33 @@\n #define CUDA_Q8_0_NE_ALIGN 2048\n \n template <int qk, int qr, dequantize_kernel_t dequantize_kernel, typename dst_t>\n-static __global__ void dequantize_block(const void * __restrict__ vx, dst_t * __restrict__ y, const int64_t k) {\n-... | 2025-07-23T10:35:53 |
vuejs/vue | 09106f066a1ba71431e4f9f26246aaf619153e2e | 7116af4e07520040ed7328c39d0a456808bfe1e1 | fix(ssr): handle v-text/v-html with non-string value
fix #6572 | [
{
"path": "src/server/optimizing-compiler/codegen.js",
"patch": "@@ -200,10 +200,10 @@ function elementToOpenTagSegments (el, state): Array<StringSegment> {\n function childrenToSegments (el, state): Array<StringSegment> {\n let binding\n if ((binding = el.attrsMap['v-html'])) {\n- return [{ type: EX... | 2017-09-13T03:23:24 |
huggingface/transformers | ac5d4cf6de24b4f7fa92996e92d1d71dd5411a6a | 8f840edd31d933230bc191d4a8b5aa5c00b5a4a0 | FIx Bark batching feature (#27271)
* fix bark batching
* make style
* add tests and make style | [
{
"path": "src/transformers/models/bark/modeling_bark.py",
"patch": "@@ -909,8 +909,9 @@ def generate(\n coarse_generation_config: BarkCoarseGenerationConfig = None,\n codebook_size: int = 1024,\n history_prompt: Optional[Dict[str, torch.Tensor]] = None,\n+ return_output_lengt... | 2023-11-07T18:32:00 |
golang/go | ab2cc45cc9a094bb29d7adc3191dd6ee2080af83 | 02e492f1a33033d88c2c307262a56e578939fc60 | go/ast: fix inflection in comments to match plurality
Change-Id: I3a725c5691a1090952acdc2ae0bed96aaa8d7067
GitHub-Last-Rev: 339a0dda36aeb1c0b38e531b4292048ebfae05ad
GitHub-Pull-Request: golang/go#37256
Reviewed-on: https://go-review.googlesource.com/c/go/+/219737
Reviewed-by: Robert Griesemer <gri@golang.org> | [
{
"path": "src/go/ast/ast.go",
"patch": "@@ -226,8 +226,8 @@ func (f *FieldList) NumFields() int {\n // or more of the following concrete expression nodes.\n //\n type (\n-\t// A BadExpr node is a placeholder for expressions containing\n-\t// syntax errors for which no correct expression nodes can be\n+\t//... | 2020-03-23T03:23:27 |
ggml-org/llama.cpp | 7233358d29df3dfbf80693f2de7e5865401ad724 | 6c88b3bb2509d980e6a64c50fdf8dd304929f770 | memory : handle saving/loading null layers in recurrent memory (#14675)
* Update llama-memory-recurrent.cpp
handle saving/loading null layers in recurrent memory
* fixed styling issues and updated comments
* fix styling issue
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-authored-by... | [
{
"path": "src/llama-memory-recurrent.cpp",
"patch": "@@ -768,6 +768,8 @@ void llama_memory_recurrent::state_write_data(llama_io_write_i & io, const std::\n // Iterate and write all the keys first, each row is a cell\n // Get whole range at a time\n for (uint32_t il = 0; il < n_layer; ++il) {\n+... | 2025-07-23T08:16:41 |
nodejs/node | 31349e224576f1846a900958c9fecf566d07a04c | 0794c101efe223a3d4b79a2848327946fb1b8c60 | deps: cherry-pick 3f4536894ac from V8 upstream
Original commit message:
d8: Make in process stack dumping optional
Adds a flag (--disable-in-process-stack-traces) to not install
signal handlers so that e.g. ASan signal handlers will work.
This flag mirrors chromium's one.
R=jochen@chromium.org
... | [
{
"path": "deps/v8/include/libplatform/libplatform.h",
"patch": "@@ -13,6 +13,7 @@ namespace v8 {\n namespace platform {\n \n enum class IdleTaskSupport { kDisabled, kEnabled };\n+enum class InProcessStackDumping { kDisabled, kEnabled };\n \n /**\n * Returns a new instance of the default v8::Platform imple... | 2017-05-05T16:00:27 |
huggingface/transformers | 8c91f15ae576a5f33559aa243218199697195279 | 9459d821d15575943bcacedcc32835c9459bf39b | Resolve AttributeError by utilizing device calculation at the start of the forward function (#27347)
This commit addresses the 'NoneType' object AttributeError within the IdeficsModel forward function. Previously, the 'device' attribute was accessed directly from input_ids, resulting in a potential 'NoneType' error. N... | [
{
"path": "src/transformers/models/idefics/modeling_idefics.py",
"patch": "@@ -1161,7 +1161,6 @@ def forward(\n position_ids = attention_mask.long().cumsum(-1) - 1\n position_ids.masked_fill_(attention_mask == 0, 1)\n elif position_ids is None:\n- device = input_id... | 2023-11-07T16:26:15 |
golang/go | 02e492f1a33033d88c2c307262a56e578939fc60 | 9a2db7c41ba5b1f9498d5354e6c2570610f626fb | runtime: speed up receive on empty closed channel
Currently, nonblocking receive on an open channel is about
700 times faster than nonblocking receive on a closed channel.
This change makes closed channels equally fast.
Fixes #32529. Includes a correction based on #36714.
relevant benchstat output:
name ... | [
{
"path": "src/runtime/chan.go",
"patch": "@@ -121,6 +121,21 @@ func chanbuf(c *hchan, i uint) unsafe.Pointer {\n \treturn add(c.buf, uintptr(i)*uintptr(c.elemsize))\n }\n \n+// full reports whether a send on c would block (that is, the channel is full).\n+// It uses a single word-sized read of mutable stat... | 2019-06-10T16:29:23 |
vuejs/vue | 7116af4e07520040ed7328c39d0a456808bfe1e1 | 684cd7d21aa7cb9a40fb4a8542c4e08fb3801a86 | fix: set value as domProp for <progress>
fix #6561 | [
{
"path": "src/platforms/web/util/attrs.js",
"patch": "@@ -7,7 +7,7 @@ import { makeMap } from 'shared/util'\n export const isReservedAttr = makeMap('style,class')\n \n // attributes that should be using props for binding\n-const acceptValue = makeMap('input,textarea,option,select')\n+const acceptValue = ma... | 2017-09-13T02:06:07 |
ggml-org/llama.cpp | 6c88b3bb2509d980e6a64c50fdf8dd304929f770 | 14c28dfc50a2e3915e697122cd3c5343224009be | ggml: fix loongarch quantize_row_q8_1 error (#14827) | [
{
"path": "ggml/src/ggml-cpu/arch/loongarch/quants.c",
"patch": "@@ -544,7 +544,7 @@ void quantize_row_q8_1(const float * GGML_RESTRICT x, void * GGML_RESTRICT vy, i\n __m128 max4 = __lsx_vfmax_s( lasx_extractf128( max_abs, 1 ), lasx_extractf128( max_abs, 0) );\n max4 = __lsx_vfmax_s( max4, ... | 2025-07-23T06:39:51 |
rust-lang/rust | ada2d9ae1d8747cd6159fc090c4fa39b0c74d3bd | 23989245ce549411b9d80323b89c9eb48fff53ec | Switch `musl` to track `master`
A few bugs have been fixed, including the sign of `fma(tiny, -tiny,
0.0)`. Switch to tracking `master` rather than the latest tag so we
don't need to xfail these tests. | [
{
"path": "library/compiler-builtins/libm/crates/musl-math-sys/musl",
"patch": "@@ -1 +1 @@\n-Subproject commit 0784374d561435f7c787a555aeab8ede699ed298\n+Subproject commit 61399d4bd02ae1ec03068445aa7ffe9174466bfd",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2025-02-06T01:59:44 |
huggingface/transformers | 88832c01c8a962b653874c4ce4ed8df5783ac5cd | 0ded281557f88add8733aa536763fae61207b382 | [`Whisper`] Add conversion script for the tokenizer (#27338)
* draft
* updates
* full conversion taken from `https://gist.github.com/xenova/a452a6474428de0182b17605a98631ee`
* psuh
* nits
* updates
* more nits
* Add co author
Co-authored-by: Joshua Lochner <admin@xenova.com>
* fixup
* c... | [
{
"path": "docs/source/en/model_doc/whisper.md",
"patch": "@@ -34,8 +34,13 @@ The original code can be found [here](https://github.com/openai/whisper).\n - Inference is currently only implemented for short-form i.e. audio is pre-segmented into <=30s segments. Long-form (including timestamps) will be impleme... | 2023-11-07T14:07:55 |
nodejs/node | 0794c101efe223a3d4b79a2848327946fb1b8c60 | ed19a18b72dcf2bd6219f5689564c3d10c71d89a | doc: fix example in child_process.md
PR-URL: https://github.com/nodejs/node/pull/13716
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail... | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -469,7 +469,7 @@ grep.on('close', (code) => {\n ```\n \n \n-Example of checking for failed exec:\n+Example of checking for failed `spawn`:\n \n ```js\n const { spawn } = require('child_process');",
"additions": 1,
"deletions": 1,
"language": "Ma... | 2017-06-16T09:41:11 |
vuejs/vue | 684cd7d21aa7cb9a40fb4a8542c4e08fb3801a86 | 844a540c647dfa93dc714540953524830dd3475a | fix: preserve slot attribute if not resolved by Vue
close #6553 | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -431,6 +431,8 @@ function processSlot (el) {\n const slotTarget = getBindingAttr(el, 'slot')\n if (slotTarget) {\n el.slotTarget = slotTarget === '\"\"' ? '\"default\"' : slotTarget\n+ // preserve slot as an attribute for native shado... | 2017-09-13T01:45:44 |
golang/go | 9a2db7c41ba5b1f9498d5354e6c2570610f626fb | 683c266f958db9acff705856f2c0aeb031d9782c | cmd/compile: remove unused isIntOrdering method
Fixes #37989
Change-Id: Iabf86529fde3be9a98222b7e8d09ff8301cf8830
Reviewed-on: https://go-review.googlesource.com/c/go/+/224777
Reviewed-by: Michael Munday <mike.munday@ibm.com>
Run-TryBot: Michael Munday <mike.munday@ibm.com>
TryBot-Result: Gobot Gobot <gobot@golang.or... | [
{
"path": "src/cmd/compile/internal/gc/walk.go",
"patch": "@@ -3527,16 +3527,6 @@ func finishcompare(n, r *Node, init *Nodes) *Node {\n \treturn r\n }\n \n-// isIntOrdering reports whether n is a <, ≤, >, or ≥ ordering between integers.\n-func (n *Node) isIntOrdering() bool {\n-\tswitch n.Op {\n-\tcase OLE,... | 2020-03-22T06:33:52 |
ggml-org/llama.cpp | 14c28dfc50a2e3915e697122cd3c5343224009be | 8c988fa41db4d9dbc05abfd666c04def1259c645 | CANN: weight format to NZ for Ascend310P3 (#14407)
* weight format to nz for 310p
* remove quant weight format to nz
* clean code
* fix
* make the conditions for converting weights to NZ format consistent
* clean code | [
{
"path": "ggml/src/ggml-cann/aclnn_ops.cpp",
"patch": "@@ -1785,8 +1785,27 @@ static void ggml_cann_mat_mul_fp(ggml_backend_cann_context& ctx,\n size_t transpose_nb[] = {bcast_weight_nb[1], bcast_weight_nb[0],\n bcast_weight_nb[2], bcast_weight_nb[3],\n ... | 2025-07-23T03:58:00 |
rust-lang/rust | 23989245ce549411b9d80323b89c9eb48fff53ec | 3fbe59f8503fb5eb151bc995ba2c1ebad80dcbb5 | fma: Ensure zero has the correct sign
Currently, `fma(tiny, -tiny, 0.0)` returns 0.0 while the answer should
be -0.0. This is because `-0.0 + 0.0 = +0.0` in the default rounding
mode; however, the result should be negative. Musl has the same pattern
but that version worked because the C compiler was contracting `x*y +... | [
{
"path": "library/compiler-builtins/libm/crates/libm-test/src/precision.rs",
"patch": "@@ -558,48 +558,5 @@ impl MaybeOverride<(f64, i32)> for SpecialCase {}\n #[cfg(f128_enabled)]\n impl MaybeOverride<(f128, i32)> for SpecialCase {}\n \n-impl MaybeOverride<(f32, f32, f32)> for SpecialCase {\n- fn check... | 2025-02-06T00:34:56 |
huggingface/transformers | 606d90845ff149ee08629edab95b576f788243a0 | 90b4adc1f1111f42eada62ea611895646aaee6b6 | Fix Whisper Conversion Script: Correct decoder_attention_heads and _download function (#26834)
* Fix error in convert_openai_to_hf.py: "_download() missing 1 required positional argument: root"
* Fix error in convert_openai_to_hf.py: "TypeError: byte indices must be integers or slices, not str"
* Fix decoder_att... | [
{
"path": "docs/source/en/model_doc/whisper.md",
"patch": "@@ -34,6 +34,42 @@ The original code can be found [here](https://github.com/openai/whisper).\n - Inference is currently only implemented for short-form i.e. audio is pre-segmented into <=30s segments. Long-form (including timestamps) will be impleme... | 2023-11-07T12:39:42 |
nodejs/node | ea927b3711dbd8032709dfec6f9736a181a522b9 | 3129b2c035a1fb9b1bf07e5ecddcebce4c5fa4b0 | doc: fix some broken references
PR-URL: https://github.com/nodejs/node/pull/13811
Reviewed-By: Jackson Tian <shyvo1987@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ib... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -558,4 +558,4 @@ equivalent to using the `--redirect-warnings=file` command-line flag.\n [REPL]: repl.html\n [SlowBuffer]: buffer.html#buffer_class_slowbuffer\n [debugger]: debugger.html\n-[emit_warning]: process.html#process_process_emitwarning_warning_name_ctor\n+[... | 2017-06-20T06:04:24 |
vuejs/vue | 844a540c647dfa93dc714540953524830dd3475a | 6f312d636c3d6049dc9e60007f88ea871b8e8173 | fix: do not use MutationObserver in IE11
MutationObserver is unreliable in IE11. fix #6466 | [
{
"path": "src/core/util/env.js",
"patch": "@@ -99,13 +99,13 @@ export const nextTick = (function () {\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) setTimeout(noop)\n }\n- } else if (typeof MutationObserver !== 'undefined' && (\n+ } else if (!isIE... | 2017-09-12T23:56:18 |
golang/go | 683c266f958db9acff705856f2c0aeb031d9782c | 787e7b048cff392d1cb68c57c99ff71602997475 | build: add default GOROOT_BOOTSTRAP in Windows
CL 57753 added support to make.bash and make.rc to
default GOROOT_BOOTSTRAP to 'go env GOROOT'. This
patch does the same in make.bat for Windows.
Updates #18545
Fixes #28641
Change-Id: I9152cc5080ed219b4de5bad0bd12d7725422ee1a
Reviewed-on: https://go-review.googlesource... | [
{
"path": "src/make.bat",
"patch": "@@ -61,7 +61,8 @@ del /F \".\\pkg\\runtime\\runtime_defs.go\" 2>NUL\n \n :: Set GOROOT for build.\n cd ..\n-set GOROOT=%CD%\n+set GOROOT_TEMP=%CD%\n+set GOROOT=\n cd src\n set vflag=\n if x%1==x-v set vflag=-v\n@@ -70,8 +71,25 @@ if x%3==x-v set vflag=-v\n if x%4==x-v set... | 2018-02-25T10:32:59 |
ggml-org/llama.cpp | 84712b60439453fb393c2ca753cee682a4ad41f5 | d4d1522b20809a350ffb094db20f40f17d3ab80f | vulkan: fix rms_norm_mul to handle broadcasting dim0 (#14817) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -10248,7 +10248,7 @@ static bool ggml_vk_can_fuse(const struct ggml_cgraph * cgraph, int node_idx, st\n }\n // if rms_norm is the B operand, then we don't handle broadcast\n if (rms_norm == mul->src[1] &&\n- mu... | 2025-07-22T15:35:21 |
rust-lang/rust | 3fbe59f8503fb5eb151bc995ba2c1ebad80dcbb5 | e01ce5d53a929019a8c9655c7dee4c74a911d465 | Print the hex float format upon failure
Now that we have a hex float formatter, make use of it for test output.
This produces values that are easier to read than the bitwise hex
representation.
Example:
thread 'mp_quickspace_fmaf128' panicked at crates/libm-test/tests/multiprecision.rs:17:48:
called `Result:... | [
{
"path": "library/compiler-builtins/libm/crates/libm-test/src/test_traits.rs",
"patch": "@@ -9,6 +9,7 @@\n use std::fmt;\n \n use anyhow::{Context, anyhow, bail, ensure};\n+use libm::support::Hexf;\n \n use crate::precision::CheckAction;\n use crate::{CheckCtx, Float, Int, MaybeOverride, SpecialCase, TestR... | 2025-02-06T00:02:00 |
huggingface/transformers | 26d8d5f211a6b1d4755f9221dba4568b00a80d4d | da7ea9a4e337eb2eed204090fe38198418c01134 | Fix autoawq docker image (#27339)
* Update Dockerfile
* Update docker/transformers-all-latest-gpu/Dockerfile | [
{
"path": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -56,7 +56,7 @@ RUN python3 -m pip install --no-cache-dir auto-gptq --extra-index-url https://hu\n RUN python3 -m pip install --no-cache-dir einops\n \n # Add autoawq for quantization testing\n-RUN python3 -m pip install --no-cache-dir a... | 2023-11-07T10:21:04 |
vuejs/vue | 6f312d636c3d6049dc9e60007f88ea871b8e8173 | a977740816d131d6490ec73e3df2444f51841c42 | fix(v-model): fix input listener with modifier blocking v-model update
fix #6552 | [
{
"path": "src/core/vdom/helpers/update-listeners.js",
"patch": "@@ -5,18 +5,22 @@ import { cached, isUndef } from 'shared/util'\n \n const normalizeEvent = cached((name: string): {\n name: string,\n+ plain: boolean,\n once: boolean,\n capture: boolean,\n- passive: boolean\n+ passive: boolean,\n+ ... | 2017-09-12T23:29:34 |
nodejs/node | 3129b2c035a1fb9b1bf07e5ecddcebce4c5fa4b0 | f05653dc45a68ff56e3a86375c1d952046b9ba3c | process: use internal/errors in internalNextTick
PR-URL: https://github.com/nodejs/node/pull/13982
Refs: https://github.com/nodejs/node/pull/12892
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/process/next_tick.js",
"patch": "@@ -295,7 +295,7 @@ function setupNextTick() {\n // about to exit since the callback would not have a chance to be executed.\n function internalNextTick(triggerAsyncId, callback) {\n if (typeof callback !== 'function')\n- throw new TypeEr... | 2017-06-29T09:52:06 |
ggml-org/llama.cpp | d1aa0cc5d13ec3fa553de5d298f9166679e58479 | c8ade30036139e32108fee53d8b7164dbfda4bee | imatrix: add option to display importance score statistics for a given imatrix file (#12718)
* Add --show-statistics option
* Add --show-statistics logic
* Add tensor name parsing
* Tidy output format
* Fix typo in title
* Improve tensor influence ranking
* Add better statistics
* Change statistics' sort order
... | [
{
"path": "common/arg.cpp",
"patch": "@@ -2655,6 +2655,13 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.i_chunk = value;\n }\n ).set_examples({LLAMA_EXAMPLE_IMATRIX}));\n+ add_opt(common_arg(\n+ {\"--show-statistics\"},\n+ ... | 2025-07-22T12:33:37 |
golang/go | 787e7b048cff392d1cb68c57c99ff71602997475 | 2910c5b4a01a573ebc97744890a07c1a3122c67a | build: force all Windows batch files to CRLF
Batch files should use CRLF endings. LF endings mostly
work but in some situations they cause random errors like
goto commands failing for mysterious reasons. See
golang.org/issue/37791 for more information.
Next CL triggered one of such bug (a label was not being
recogniz... | [
{
"path": ".gitattributes",
"patch": "@@ -8,3 +8,9 @@\n # See golang.org/issue/9281\n \n * -text\n+\n+# The only exception is Windows files that must absolutely be CRLF or\n+# might not work. Batch files are known to have multiple bugs when run\n+# with LF endings. See golang.org/issue/37791 for more inform... | 2020-03-22T08:28:21 |
rust-lang/rust | 70b9ba3d6e1d64e6b00da707e5b1b5127e63b1cf | 335151f8bbadf31c2d8dae7d2a25dbcdab45a3b6 | fix fwd-mode autodiff case | [
{
"path": "compiler/rustc_codegen_llvm/src/builder/autodiff.rs",
"patch": "@@ -164,10 +164,10 @@ fn generate_enzyme_call<'ll>(\n let mut activity_pos = 0;\n let outer_args: Vec<&llvm::Value> = get_params(outer_fn);\n while activity_pos < inputs.len() {\n- let activity = in... | 2025-02-05T23:47:23 |
vuejs/vue | 3f42562de766a90f35ffa9a9efd1234814ad390c | 1a19c418b1e71f39d2095d60de59fcd650719523 | chore: fix comment typo (#6573)
correct "a input" to "an input" | [
{
"path": "dist/vue.js",
"patch": "@@ -83,7 +83,7 @@ function toString (val) {\n }\n \n /**\n- * Convert a input value to a number for persistence.\n+ * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\n function toNumber (val) {",
"addition... | 2017-09-12T13:10:39 |
huggingface/transformers | 9beb2737d758160e845b66742a0c01201e38007f | 1b20e2bb421175270d625a9610ebaa00c445fcb4 | [docs] fixed links with 404 (#27327)
* fixed links with 404
* make style | [
{
"path": "docs/source/en/create_a_model.md",
"patch": "@@ -110,7 +110,7 @@ You can also save your configuration file as a dictionary or even just the diffe\n \n ## Model\n \n-The next step is to create a [model](main_classes/models). The model - also loosely referred to as the architecture - defines what e... | 2023-11-06T19:45:03 |
nodejs/node | 0d95a0b60a87533c54b517d132e16401fe28909b | 473f0eff29c84aeb19ae1fb7898bc99321ac5754 | test: remove undef NDEBUG from at-exit addons test
The at-exit addons test uses asserts like the other addons tests,
but at-exit is the only one that undefines NDEBUG to make sure
that asserts are enabled. This commit removes the undef for
consistency.
PR-URL: https://github.com/nodejs/node/pull/13998
Reviewed-By: Be... | [
{
"path": "test/addons/at-exit/binding.cc",
"patch": "@@ -1,4 +1,3 @@\n-#undef NDEBUG\n #include <assert.h>\n #include <stdlib.h>\n #include <node.h>",
"additions": 0,
"deletions": 1,
"language": "Unknown"
}
] | 2017-06-30T06:26:42 |
ggml-org/llama.cpp | 38d3af1b73302377111e88ddd725257638339286 | 6c9ee3b17e19dcc82ab93d52ae46fdd0226d4777 | opencl: fix `im2col` when `KW!=KH` (#14803) | [
{
"path": "ggml/src/ggml-opencl/kernels/im2col_f16.cl",
"patch": "@@ -31,7 +31,7 @@ kernel void kernel_im2col_f16(\n src1 = (global float*)((global char*)src1 + offset1);\n dst = (global half*)((global char*)dst + offsetd);\n \n- long ksize = OW * (KH > 1 ? KW : 1);\n+ long ksize = OW * KH;\... | 2025-07-21T20:55:10 |
vuejs/vue | b77a298cf3d20691a3b32eb8d7f62d2a67a430ae | f477ecdbbb1a86ffcf4508ab0f7351277a649a7e | chore: fixed typo in changelog section (#6549) | [
{
"path": "README.md",
"patch": "@@ -109,7 +109,7 @@ Please make sure to read the [Contributing Guide](https://github.com/vuejs/vue/b\n \n ## Changelog\n \n-Details changes for each release are documented in the [release notes](https://github.com/vuejs/vue/releases).\n+Detailed changes for each release are ... | 2017-09-08T13:27:19 |
golang/go | 2910c5b4a01a573ebc97744890a07c1a3122c67a | 36b815edd6cd23d5aabdb488c24db2033bbdeea2 | cmd/go: fix function name in comment
Fixes #37991
Change-Id: Ica58223f8564ec5d501d5b90b4258ffb78c42af1
Reviewed-on: https://go-review.googlesource.com/c/go/+/224587
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com> | [
{
"path": "src/cmd/go/internal/str/path.go",
"patch": "@@ -10,7 +10,7 @@ import (\n \t\"strings\"\n )\n \n-// HasPath reports whether the slash-separated path s\n+// HasPathPrefix reports whether the slash-separated path s\n // begins with the elements in prefix.\n func HasPathPrefix(s, prefix string) bool ... | 2020-03-21T23:57:26 |
huggingface/transformers | 1b20e2bb421175270d625a9610ebaa00c445fcb4 | a6e0d5a219c3a05171e695d375b1e35cf2915d71 | Fix `Kosmos2Processor` batch mode (#27323)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/kosmos2/processing_kosmos2.py",
"patch": "@@ -211,7 +211,9 @@ def __call__(\n image_embeds_position_mask.append(mask)\n \n if isinstance(text, list):\n- sorted_length = sorted([(idx, len(x)) for idx, x in enumerate(text_encoding.i... | 2023-11-06T18:05:50 |
nodejs/node | 473f0eff29c84aeb19ae1fb7898bc99321ac5754 | fc463639fa38434a3360a1e3695d7ded029242c3 | errors,url: port url errors to internal/errors
PR-URL: https://github.com/nodejs/node/pull/13963
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/url.js",
"patch": "@@ -26,6 +26,8 @@ const { toASCII } = process.binding('config').hasIntl ?\n \n const { hexTable } = require('internal/querystring');\n \n+const errors = require('internal/errors');\n+\n // WHATWG URL implementation provided by internal/url\n const {\n URL,\n@@ -99,7 +101,... | 2017-06-28T16:12:12 |
ggml-org/llama.cpp | 6c9ee3b17e19dcc82ab93d52ae46fdd0226d4777 | cd465d823c378853f1f6570eebfb77f69c7e1d39 | opencl: add conv2d kernel (#14403)
* add conv2d kernel
* fix trailing whitespace
* whitespace fixe
* handle f16 input and f16 kernel, more opt
* resolve conflicts
* use enqueue_ndrange_kernel | [
{
"path": "ggml/src/ggml-opencl/CMakeLists.txt",
"patch": "@@ -105,6 +105,8 @@ set(GGML_OPENCL_KERNELS\n pad\n repeat\n mul_mat_f16_f32\n+ conv2d\n+ conv2d_f16_f32\n )\n \n foreach (K ${GGML_OPENCL_KERNELS})",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
... | 2025-07-21T17:03:19 |
vuejs/vue | 0f00f8fc2b83b964bb929b729a7c9e3675b52106 | f323719f20d2e2e8f61c60a07080bbfa8b7c0273 | fix(ssr): better handle v-html hydration
fix #6519 | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -547,27 +547,46 @@ export function createPatchFunction (backend) {\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue)\n } else {\n- let childrenMatch = true\n- let childNode = elm.fi... | 2017-09-07T02:24:51 |
huggingface/transformers | a6e0d5a219c3a05171e695d375b1e35cf2915d71 | e9dbd3926317a4effb1d033d8454ff18280d0b7d | Fix VideoMAEforPretrained dtype error (#27296)
* Fix dtype error
* Fix mean and std dtype
* make style | [
{
"path": "src/transformers/models/videomae/modeling_videomae.py",
"patch": "@@ -848,8 +848,9 @@ def forward(\n else:\n # first, unnormalize the frames\n device = pixel_values.device\n- mean = torch.as_tensor(IMAGENET_DEFAULT_MEAN).to(device)[None, ... | 2023-11-06T17:20:06 |
golang/go | 36b815edd6cd23d5aabdb488c24db2033bbdeea2 | d467f3bbc9c76805ae16ab1924c28ec3be487875 | net/http: remove period at end of error message
Change-Id: I4ff5411543c200344babb754fc089e10e29e0fe4
Reviewed-on: https://go-review.googlesource.com/c/go/+/224697
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
Run-TryBot: Emmanuel Odeke <emm.odeke@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org> | [
{
"path": "src/net/http/client.go",
"patch": "@@ -216,7 +216,7 @@ func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, d\n \n \tif req.RequestURI != \"\" {\n \t\treq.closeBody()\n-\t\treturn nil, alwaysFalse, errors.New(\"http: Request.RequestURI can't be set in client requests.\")... | 2020-03-21T11:40:01 |
ggml-org/llama.cpp | cd465d823c378853f1f6570eebfb77f69c7e1d39 | 922042601b8a16877ccb1c2afaa2071f76734f10 | sycl: Fix im2col (#14797) | [
{
"path": "ggml/src/ggml-sycl/im2col.cpp",
"patch": "@@ -26,7 +26,7 @@ static void im2col_kernel(const float * x, T * dst, int64_t batch_offset, int64_\n \n // make each work-item deal with more elements since sycl global range can not exceed max int\n for (int64_t i = global_id; i < pelements; i +=... | 2025-07-21T16:39:29 |
vuejs/vue | 679cd1fef448989bf645313c391e4134ecd9f593 | 08bc7595fd57f8f52db83ae1b6bc9b7a33cdd4f9 | fix: support prop type checking for primitive wrapper objects (#6450)
close #6447 | [
{
"path": "src/core/util/props.js",
"patch": "@@ -145,7 +145,12 @@ function assertType (value: any, type: Function): {\n let valid\n const expectedType = getType(type)\n if (simpleCheckRE.test(expectedType)) {\n- valid = typeof value === expectedType.toLowerCase()\n+ const t = typeof value\n+ ... | 2017-09-05T20:23:53 |
nodejs/node | fc463639fa38434a3360a1e3695d7ded029242c3 | 7022260b550c5bc46bd247109252c886bab40534 | assert: fix assert.fail with zero arguments
PR-URL: https://github.com/nodejs/node/pull/13974
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/assert.md",
"patch": "@@ -256,19 +256,20 @@ If the values are not equal, an `AssertionError` is thrown with a `message`\n property set equal to the value of the `message` parameter. If the `message`\n parameter is undefined, a default error message is assigned.\n \n-## assert.fail(message... | 2017-06-28T23:57:02 |
huggingface/transformers | e9dbd3926317a4effb1d033d8454ff18280d0b7d | 147f774671c72ab24d17547030bb1f2803925d3b | Update sequence_classification.md (#27281)
I'm adding accelerate as one of the libraries to install because otherwise when running the Trainer, the model errorr out with the error.
ImportError: Using the `Trainer` with `PyTorch` requires `accelerate>=0.20.1`: Please run `pip install transformers[torch]` or `pip in... | [
{
"path": "docs/source/en/tasks/sequence_classification.md",
"patch": "@@ -44,7 +44,7 @@ The task illustrated in this tutorial is supported by the following model archit\n Before you begin, make sure you have all the necessary libraries installed:\n \n ```bash\n-pip install transformers datasets evaluate\n+... | 2023-11-06T14:21:48 |
golang/go | d467f3bbc9c76805ae16ab1924c28ec3be487875 | 287d67e3dd3972b1d1006b06e0d57929540a1591 | runtime: ignore error returned by PowerRegisterSuspendResumeNotification
It appears that PowerRegisterSuspendResumeNotification is not supported
when running inside Docker - see issues #35447, #36557 and #37149.
Our current code relies on error number to determine Docker environment.
But we already saw PowerRegisterS... | [
{
"path": "src/runtime/os_windows.go",
"patch": "@@ -294,9 +294,7 @@ func loadOptionalSyscalls() {\n \n func monitorSuspendResume() {\n \tconst (\n-\t\t_DEVICE_NOTIFY_CALLBACK = 2\n-\t\t_ERROR_FILE_NOT_FOUND = 2\n-\t\t_ERROR_INVALID_PARAMETERS = 87\n+\t\t_DEVICE_NOTIFY_CALLBACK = 2\n \t)\n \ttype _DEV... | 2020-02-16T01:01:02 |
vuejs/vue | 38d52182bf8915628314e2aea7d2cc41ec39a0d6 | 3c216755f6eb656c6d864265a8dc7b51b3ae971b | fix(types): allow variadic plugin use (#6363)
fix #6357 | [
{
"path": "types/test/plugin-test.ts",
"patch": "@@ -17,3 +17,4 @@ const installer: PluginFunction<Option> = function(Vue, option) { }\n \n Vue.use(plugin, new Option);\n Vue.use(installer, new Option);\n+Vue.use(installer, new Option, new Option, new Option);",
"additions": 1,
"deletions": 0,
"... | 2017-09-05T20:02:38 |
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.