From 6b8c4a7849310111014e246bfb8934457a21e1df Mon Sep 17 00:00:00 2001 From: jahatef Date: Thu, 6 Jun 2024 19:18:28 +0000 Subject: [PATCH 01/51] fix python version and pytest install --- .github/workflows/pull_request.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a2b1a2fc2..2b0531a98 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: "3.10.14" cache: "pip" cache-dependency-path: "**/requirements*.txt" # Need the right version of clang-format @@ -45,5 +45,7 @@ jobs: - uses: actions/checkout@v2 - name: prepare data run: python prepare_data.py + - name: install pytest + run: pip install pytest - name: Run Tests run: pytest --forked tests From 66933bd08cf5e43ed0c13e457a3c2d354b7e9abc Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Jun 2024 20:20:43 +0000 Subject: [PATCH 02/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index c60d1e15f..db10f3ab9 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 516169c + Default = 6b8c4a7 current git hash of repository From 28d0e0ccfdec19343a1a8862b31a04bfadb836dd Mon Sep 17 00:00:00 2001 From: jahatef Date: Thu, 6 Jun 2024 20:23:56 +0000 Subject: [PATCH 03/51] python3 --- .github/workflows/pull_request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 2b0531a98..05a085442 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -44,8 +44,8 @@ jobs: steps: - uses: actions/checkout@v2 - name: prepare data - run: python prepare_data.py + run: python3 prepare_data.py - name: install pytest - run: pip install pytest + run: pip3 install pytest - name: Run Tests run: pytest --forked tests From 3be4cb80209b9c465ab29a2d425f47b48b2adf6a Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Jun 2024 20:27:39 +0000 Subject: [PATCH 04/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index db10f3ab9..fbc5778e1 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 6b8c4a7 + Default = 3dd7daa current git hash of repository From a6ca818c9987dbe373da483d11b0e4d11da14fd7 Mon Sep 17 00:00:00 2001 From: jahatef Date: Thu, 6 Jun 2024 20:33:52 +0000 Subject: [PATCH 05/51] pip not pip3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 05a085442..469f5bcfc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -46,6 +46,6 @@ jobs: - name: prepare data run: python3 prepare_data.py - name: install pytest - run: pip3 install pytest + run: pip install pytest - name: Run Tests run: pytest --forked tests From 54bc3417d769d20d5901c04b41799c163157242e Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Jun 2024 20:34:32 +0000 Subject: [PATCH 06/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index fbc5778e1..fb1c7449b 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 3dd7daa + Default = a6ca818 current git hash of repository From f62aceecf873f4b766771a2489f60eaf2b8dfb7a Mon Sep 17 00:00:00 2001 From: jahatef Date: Thu, 6 Jun 2024 20:37:29 +0000 Subject: [PATCH 07/51] python3 pip --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 469f5bcfc..2ea02188d 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -46,6 +46,6 @@ jobs: - name: prepare data run: python3 prepare_data.py - name: install pytest - run: pip install pytest + run: python3 pip install pytest - name: Run Tests run: pytest --forked tests From 4aa314fe840697c43ddedf9f7bcc5acd75f43d5a Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Jun 2024 20:38:14 +0000 Subject: [PATCH 08/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index fb1c7449b..77cfa4c2b 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = a6ca818 + Default = 33c236b current git hash of repository From e7a49f8c51b94308295574c28524cf53ee3e1c07 Mon Sep 17 00:00:00 2001 From: jahatef Date: Thu, 6 Jun 2024 20:56:29 +0000 Subject: [PATCH 09/51] python3 -m pip --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 2ea02188d..f30807136 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -46,6 +46,6 @@ jobs: - name: prepare data run: python3 prepare_data.py - name: install pytest - run: python3 pip install pytest + run: python3 -m pip install pytest - name: Run Tests run: pytest --forked tests From b3347873791be3aa4d1481cee623f358148f0e60 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Jun 2024 20:57:39 +0000 Subject: [PATCH 10/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 77cfa4c2b..16daf0c0c 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 33c236b + Default = 42fe483 current git hash of repository From 30b4ac0e1ba13c164406378914f127566a93e539 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Jun 2024 22:24:25 +0000 Subject: [PATCH 11/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 16daf0c0c..603064749 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 42fe483 + Default = b334787 current git hash of repository From 268d5d85dcf811279b0447fdb1a8c84498b712d6 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 7 Jun 2024 01:24:28 +0000 Subject: [PATCH 12/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index f6c3ecde3..5e7de6645 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 7aa0074 + Default = 9ed8e8e current git hash of repository From fca70d4a61f75e2782447100059e0e39b6c8f4b3 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 10 Jun 2024 23:19:31 +0000 Subject: [PATCH 13/51] add docker setup to workflow --- .github/workflows/pull_request.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index f30807136..075c1acaf 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -43,6 +43,10 @@ jobs: runs-on: self-hosted steps: - uses: actions/checkout@v2 + - name: build docker container + run: docker compose run gpt-neox bash + - name: run docker container + run: docker compose up -d - name: prepare data run: python3 prepare_data.py - name: install pytest From 70cfc19e5123674f0459e5559b3660c703a1fdb8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 10 Jun 2024 23:20:30 +0000 Subject: [PATCH 14/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 5e7de6645..e643f2674 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 9ed8e8e + Default = 3843347 current git hash of repository From d4795de8914f85e6174de2e5cbc216dd226585c7 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:07:30 +0000 Subject: [PATCH 15/51] python setup --- .github/workflows/pull_request.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 075c1acaf..82d8a1fcb 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -43,10 +43,13 @@ jobs: runs-on: self-hosted steps: - uses: actions/checkout@v2 + - uses: actions/setup-python@v4 + with: + python-version: "3.10.13" + cache: "pip" + cache-dependency-path: "**/requirements*.txt" - name: build docker container run: docker compose run gpt-neox bash - - name: run docker container - run: docker compose up -d - name: prepare data run: python3 prepare_data.py - name: install pytest From 3d6d0a088d0c44c7869125f361ace618eab127b2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 19:08:34 +0000 Subject: [PATCH 16/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index e643f2674..60788c306 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 3843347 + Default = 9edfc4e current git hash of repository From b7bcc01d25d87724a73ea9911212bf1f760cb7b4 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:19:34 +0000 Subject: [PATCH 17/51] python setup v2 --- .github/workflows/pull_request.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 82d8a1fcb..0f46535ad 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -48,8 +48,6 @@ jobs: python-version: "3.10.13" cache: "pip" cache-dependency-path: "**/requirements*.txt" - - name: build docker container - run: docker compose run gpt-neox bash - name: prepare data run: python3 prepare_data.py - name: install pytest From 2b3e3f0b70e9cfb45eb2df3a83f1ca5c5902afbf Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 19:20:16 +0000 Subject: [PATCH 18/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 60788c306..194bb1353 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 9edfc4e + Default = 4706d2c current git hash of repository From 3688c176db8c40c95b834025c85d1f39c5e4ded7 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:27:44 +0000 Subject: [PATCH 19/51] python setup v3 --- .github/workflows/pull_request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 0f46535ad..43068a5e5 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -46,11 +46,12 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.10.13" - cache: "pip" cache-dependency-path: "**/requirements*.txt" - name: prepare data run: python3 prepare_data.py - name: install pytest run: python3 -m pip install pytest + -name: install requirements + run: python3 -m pip install torch - name: Run Tests run: pytest --forked tests From c943cd3fe8d4531e22ce2076ba9258e057610f80 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:33:12 +0000 Subject: [PATCH 20/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 43068a5e5..bb3b03bed 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -51,7 +51,7 @@ jobs: run: python3 prepare_data.py - name: install pytest run: python3 -m pip install pytest - -name: install requirements + - name: install requirements run: python3 -m pip install torch - name: Run Tests run: pytest --forked tests From 924a8d5154562bf75547f6f2e2f583335e368889 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 19:33:35 +0000 Subject: [PATCH 21/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 194bb1353..3b2740c96 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 4706d2c + Default = c943cd3 current git hash of repository From c41feb1e602c397c45f619b044dd7bd7515ebb0c Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:37:36 +0000 Subject: [PATCH 22/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index bb3b03bed..4f11a9ae6 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -50,7 +50,7 @@ jobs: - name: prepare data run: python3 prepare_data.py - name: install pytest - run: python3 -m pip install pytest + run: python3 -m pip install pytest pytest-forked - name: install requirements run: python3 -m pip install torch - name: Run Tests From cf73ee74ae299a9818429ec2acf566070c736c08 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 19:38:17 +0000 Subject: [PATCH 23/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 3b2740c96..a18290386 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = c943cd3 + Default = 7b40a0d current git hash of repository From 97202fad2358e7ba5c6c0ec66b92cd35aa99aef7 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:41:50 +0000 Subject: [PATCH 24/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 4f11a9ae6..e465f521d 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -50,7 +50,7 @@ jobs: - name: prepare data run: python3 prepare_data.py - name: install pytest - run: python3 -m pip install pytest pytest-forked + run: python3 -m pip install pytest pytest-forked yaml - name: install requirements run: python3 -m pip install torch - name: Run Tests From 093e4a97979a0ba3ab93d2d59fa832ddea8a4ad1 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 19:42:31 +0000 Subject: [PATCH 25/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index a18290386..3a1f000bf 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 7b40a0d + Default = 9115415 current git hash of repository From 79e2f5f8f9ff70c38623a8c6b69bc8007871761a Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:46:07 +0000 Subject: [PATCH 26/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e465f521d..455e3bd13 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -50,7 +50,7 @@ jobs: - name: prepare data run: python3 prepare_data.py - name: install pytest - run: python3 -m pip install pytest pytest-forked yaml + run: python3 -m pip install pytest pytest-forked pyyaml requests - name: install requirements run: python3 -m pip install torch - name: Run Tests From be4375563e86d5ab56c3b6e56776a705a2541de0 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 19:46:48 +0000 Subject: [PATCH 27/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 3a1f000bf..dd02997f2 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 9115415 + Default = 3620765 current git hash of repository From ab729c4d0659a3d06baff352dea832d178d4be7d Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 19:51:42 +0000 Subject: [PATCH 28/51] python setup v3 --- .github/workflows/pull_request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 455e3bd13..31128da8c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -53,5 +53,6 @@ jobs: run: python3 -m pip install pytest pytest-forked pyyaml requests - name: install requirements run: python3 -m pip install torch + run: python3 -m pip install -r requirements*.txt - name: Run Tests run: pytest --forked tests From 5da0b9f7f2c8e6e9b1ed818bf6693cab9a0fa52c Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 20:06:24 +0000 Subject: [PATCH 29/51] python setup v3 --- .github/workflows/pull_request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 31128da8c..5e8fc72f0 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -51,8 +51,9 @@ jobs: run: python3 prepare_data.py - name: install pytest run: python3 -m pip install pytest pytest-forked pyyaml requests - - name: install requirements + - name: install torch run: python3 -m pip install torch + - name: install requirements run: python3 -m pip install -r requirements*.txt - name: Run Tests run: pytest --forked tests From 2d3500a58700bb1f1f3fb799399d9818181bab90 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 20:06:55 +0000 Subject: [PATCH 30/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index dd02997f2..23b407300 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 3620765 + Default = 5da0b9f current git hash of repository From d21106cbc6c731940aec662fea955a9a0166c7f0 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 20:31:20 +0000 Subject: [PATCH 31/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 5e8fc72f0..7e7ef33b4 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -54,6 +54,6 @@ jobs: - name: install torch run: python3 -m pip install torch - name: install requirements - run: python3 -m pip install -r requirements*.txt + run: python3 -m pip install -r requirements.txt - name: Run Tests run: pytest --forked tests From fcb482ad741d21b1b69e2e1fe8caa74ba95d4487 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 20:31:51 +0000 Subject: [PATCH 32/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 23b407300..06a240f1a 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 5da0b9f + Default = 02dbffd current git hash of repository From 43fe84a4b16f225f60626081acfe2326bc53b10d Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 20:38:00 +0000 Subject: [PATCH 33/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 7e7ef33b4..e66c95cd4 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -54,6 +54,6 @@ jobs: - name: install torch run: python3 -m pip install torch - name: install requirements - run: python3 -m pip install -r requirements.txt + run: python3 -m pip install -r requirements/*.txt - name: Run Tests run: pytest --forked tests From 7655e0b4751864b3de1808de86c86359f988f912 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 20:38:32 +0000 Subject: [PATCH 34/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 06a240f1a..17c5f7ba3 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 02dbffd + Default = 7023f43 current git hash of repository From ea319a44003eded5bb9a0aec171a6d1950dc49e1 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 20:43:21 +0000 Subject: [PATCH 35/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e66c95cd4..53593cd93 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -54,6 +54,6 @@ jobs: - name: install torch run: python3 -m pip install torch - name: install requirements - run: python3 -m pip install -r requirements/*.txt + run: pip install -r requirements/*.txt - name: Run Tests run: pytest --forked tests From cfe733120e540cbbc7ae19735f1a01525df96d17 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 20:43:54 +0000 Subject: [PATCH 36/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 17c5f7ba3..b8917a029 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 7023f43 + Default = ed523e4 current git hash of repository From 0c131ee41735dc459b499057bd3bcea4fb6a2a76 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 20:51:48 +0000 Subject: [PATCH 37/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 53593cd93..db60b7356 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -54,6 +54,6 @@ jobs: - name: install torch run: python3 -m pip install torch - name: install requirements - run: pip install -r requirements/*.txt + run: pip install -r requirements/requirements.txt - name: Run Tests run: pytest --forked tests From 4ba311be15ee20e240da83c33db06f12d132b559 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 20:52:31 +0000 Subject: [PATCH 38/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index b8917a029..2d46dd603 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = ed523e4 + Default = 5343837 current git hash of repository From 32bd805ee46fbec49eae9133e60e5293f6ba8a10 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 21:04:35 +0000 Subject: [PATCH 39/51] python setup v3 --- requirements/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index 3ac92598a..0632f5736 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -1,8 +1,8 @@ -deepspeed@git+https://github.com/EleutherAI/DeeperSpeed.git@02e2ebf7dee6aaab3d89094ed470a4609763c742#egg=deepspeed +deepspeed@git+https://github.com/EleutherAI/DeeperSpeed.git=deepspeed ftfy>=6.0.1 -lm_dataformat@git+https://github.com/EleutherAI/lm_dataformat.git@4eec05349977071bf67fc072290b95e31c8dd836 huggingface_hub>=0.11.0 jinja2==3.1.4 +lm_dataformat@git+https://github.com/EleutherAI/lm_dataformat.git@4eec05349977071bf67fc072290b95e31c8dd836 lm_eval>=0.4.0,<=0.4.1 mpi4py>=3.0.3 numpy>=1.22.0 From 8db396555a002cda707c3b381671aec87bf4bc33 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 21:05:39 +0000 Subject: [PATCH 40/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 2d46dd603..3322e294f 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 5343837 + Default = 56391cb current git hash of repository From 9b8830b7c926e3db68b65a5f87e26711291bf5ae Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 21:07:20 +0000 Subject: [PATCH 41/51] python setup v3 --- requirements/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index 0632f5736..0c55f5608 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -1,4 +1,4 @@ -deepspeed@git+https://github.com/EleutherAI/DeeperSpeed.git=deepspeed +deepspeed@git+https://github.com/EleutherAI/DeeperSpeed.git ftfy>=6.0.1 huggingface_hub>=0.11.0 jinja2==3.1.4 From db42f082d9fe05fb7345c66ad652e19cea5ddc31 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 21:07:50 +0000 Subject: [PATCH 42/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 3322e294f..55eab3e6a 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 56391cb + Default = b0fc9ef current git hash of repository From 95f22988075da6ad76126c065259e20a0d64f25f Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 21:11:47 +0000 Subject: [PATCH 43/51] python setup v3 --- requirements/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index 0c55f5608..cd9d4bf3a 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -5,7 +5,7 @@ jinja2==3.1.4 lm_dataformat@git+https://github.com/EleutherAI/lm_dataformat.git@4eec05349977071bf67fc072290b95e31c8dd836 lm_eval>=0.4.0,<=0.4.1 mpi4py>=3.0.3 -numpy>=1.22.0 +numpy pybind11>=2.6.2 regex sentencepiece From 55c179ffa90ef23826aef767d1b35877aa68cf3d Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 21:12:24 +0000 Subject: [PATCH 44/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 55eab3e6a..24c468bbf 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = b0fc9ef + Default = 3163e0e current git hash of repository From 2a1438e353197f2587d5ba565875e8388254825a Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 21:21:43 +0000 Subject: [PATCH 45/51] python setup v3 --- requirements/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index cd9d4bf3a..cac071ab5 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -5,7 +5,7 @@ jinja2==3.1.4 lm_dataformat@git+https://github.com/EleutherAI/lm_dataformat.git@4eec05349977071bf67fc072290b95e31c8dd836 lm_eval>=0.4.0,<=0.4.1 mpi4py>=3.0.3 -numpy +numpy<2.0 pybind11>=2.6.2 regex sentencepiece From 7dd70078726b20da3a650108d3b97dc8fc9cb782 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 21:22:41 +0000 Subject: [PATCH 46/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 24c468bbf..302f9cdf2 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 3163e0e + Default = a965163 current git hash of repository From 69378c4a27e37dd541a1bde1d6c40e5cd677b031 Mon Sep 17 00:00:00 2001 From: jahatef Date: Mon, 17 Jun 2024 21:27:56 +0000 Subject: [PATCH 47/51] python setup v3 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index db60b7356..99f7f988d 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -50,7 +50,7 @@ jobs: - name: prepare data run: python3 prepare_data.py - name: install pytest - run: python3 -m pip install pytest pytest-forked pyyaml requests + run: python3 -m pip install pytest pytest-forked pyyaml requests wandb - name: install torch run: python3 -m pip install torch - name: install requirements From dace3267e7018c169a2eeb08aad08073fa5e42ad Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 21:28:35 +0000 Subject: [PATCH 48/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index 302f9cdf2..107c0d769 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = a965163 + Default = b456e2c current git hash of repository From ad4bca1c1a655880b740c8338cb901eca7eebad5 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jun 2024 22:29:22 +0000 Subject: [PATCH 49/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index c884afd97..ebcfe46d0 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 714b299 + Default = 20cc2aa current git hash of repository From 455446cfb6aaaa01b2d73f750764ddc2fe00e985 Mon Sep 17 00:00:00 2001 From: Jacob Hatef <74274091+jahatef@users.noreply.github.com> Date: Wed, 19 Jun 2024 16:55:48 -0400 Subject: [PATCH 50/51] Add hash back to deep speed version --- requirements/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index cac071ab5..b5a84674b 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -1,4 +1,4 @@ -deepspeed@git+https://github.com/EleutherAI/DeeperSpeed.git +deepspeed@git+https://github.com/EleutherAI/DeeperSpeed.git@02e2ebf7dee6aaab3d89094ed470a4609763c742#egg=deepspeed ftfy>=6.0.1 huggingface_hub>=0.11.0 jinja2==3.1.4 From 2e89a3745a03ce8992ee3daaa19c3ea9dd7d0ed6 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 19 Jun 2024 20:56:01 +0000 Subject: [PATCH 51/51] Update NeoXArgs docs automatically --- configs/neox_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/neox_arguments.md b/configs/neox_arguments.md index ebcfe46d0..1e67685ed 100644 --- a/configs/neox_arguments.md +++ b/configs/neox_arguments.md @@ -111,7 +111,7 @@ Logging Arguments - **git_hash**: str - Default = 20cc2aa + Default = 455446c current git hash of repository