Skip to content

Commit

Permalink
Merge branch 'master' into mrwyattii/pydantic-2-support
Browse files Browse the repository at this point in the history
  • Loading branch information
loadams authored May 28, 2024
2 parents aee5f9d + 4deb40d commit 62ca5f2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// DeepSpeed Team

#include "quantize.h"
#include "fp_quantize.h"

#include <c10/cuda/CUDAStream.h>
#include <torch/extension.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

#include <stdexcept>
#include "context.h"
#include "fp_quantize.h"
#include "memory_access_utils.h"
#include "quantize.h"
#include "reduction_utils.h"

#include <cuda.h>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion deepspeed/runtime/zero/mics.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def wait(self) -> None:
"""
# let the current stream to op
try:
print("HANDLE", self.allgather_handle)
# print("HANDLE", self.allgather_handle)
instrument_w_nvtx(self.allgather_handle.wait)()
except (ValueError, RuntimeError) as e:
log_dist(
Expand Down
2 changes: 2 additions & 0 deletions docs/_sass/minimal-mistakes/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
top: auto;
right: 0;
width: $right-sidebar-width-narrow;
margin-right: -1.5 * $right-sidebar-width-narrow;
padding-left: 1em;
z-index: 10;

Expand All @@ -93,6 +94,7 @@

@include breakpoint($x-large) {
width: $right-sidebar-width;
margin-right: -1.5 * $right-sidebar-width-narrow;
}
}

Expand Down
4 changes: 2 additions & 2 deletions op_builder/fp_quantizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def filter_ccs(self, ccs):

def sources(self):
return [
"csrc/fp_quantizer/quantize.cu",
"csrc/fp_quantizer/quantize.cpp",
"csrc/fp_quantizer/fp_quantize.cu",
"csrc/fp_quantizer/fp_quantize.cpp",
]

def extra_ldflags(self):
Expand Down

0 comments on commit 62ca5f2

Please sign in to comment.