Skip to content

Commit

Permalink
Merge pull request hpcaitech#5452 from Courtesy-Xs/fix_include_path
Browse files Browse the repository at this point in the history
fix include path
  • Loading branch information
Courtesy-Xs authored Mar 13, 2024
2 parents b699f54 + c1c45e9 commit 6fd355a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions/csrc/cuda/pybind/layer_norm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <cassert>
#include <vector>

#include "../common/micros.h"
#include "../../common/micros.h"

namespace {

Expand Down
2 changes: 1 addition & 1 deletion extensions/moe/moe_cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def include_dirs(self):
return ret

def sources_files(self):
ret = [self.csrc_abs_path(fname) for fname in ["cuda/moe.cpp", "cuda/moe_kernel.cu"]]
ret = [self.csrc_abs_path(fname) for fname in ["cuda/pybind/moe.cpp", "cuda/moe_kernel.cu"]]
return ret

def cxx_flags(self):
Expand Down

0 comments on commit 6fd355a

Please sign in to comment.