Skip to content

Commit

Permalink
deepspeed v0.12.0 (#34)
Browse files Browse the repository at this point in the history
* updated v0.12.0

* Remove ninja as runtime dependency

Xref #1

* Set DS_BUILD_CUTLASS_OPS=0

Disable buiding with CUTLASS ops, attempt to fix `  ModuleNotFoundError: No module named 'dskernels'`.

* Set DS_BUILD_RAGGED_DEVICE_OPS=0 flag

Disable buiding with ragged device ops, attempt to fix `  ModuleNotFoundError: No module named 'dskernels'`

---------

Co-authored-by: Wei Ji <[email protected]>
  • Loading branch information
regro-cf-autotick-bot and weiji14 authored Nov 4, 2023
1 parent e2b37fd commit e82c3c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,9 @@ fi
export DS_BUILD_SPARSE_ATTN=0
# Disable building with EvoFormerAttention which requires CUTLASS
export DS_BUILD_EVOFORMER_ATTN=0
# Disable building with CUTLASS ops
export DS_BUILD_CUTLASS_OPS=0
# Disable building with ragged device ops
export DS_BUILD_RAGGED_DEVICE_OPS=0

${PYTHON} -m pip install . -vv
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "deepspeed" %}
{% set version = "0.11.2" %}
{% set version = "0.12.0" %}
{% set number = 0 %}

{% set torch_proc_type = "cuda" if cuda_compiler_version != "None" else "cpu" %}
Expand All @@ -15,7 +15,7 @@ package:

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 6d6f716882a3a92ebea37aaeec05a063dc0fe1445d3ab2fc2b603ba87a8a2300
sha256: ee1047928451598ad9529314b5b5ae4a3f13d622eb87104c913a4e990e6a443d

build:
number: {{ number }}
Expand Down

0 comments on commit e82c3c8

Please sign in to comment.