Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions mindtorch/_apis/cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,10 @@ def avg_pool1d(input, kernel_size, stride=None, padding=0, ceil_mode=False, coun
def fmod_scalar(input, other):
return legacy.floor_mod(input, other)

def fmod_tensor(input, other):
return legacy.floor_mod(input, other)


def conv1d(input, weight, bias=None, stride=1, padding=0, dilation=1, groups=1):
pad_mode = 'pad'
pad = padding
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ tiktoken
faiss_cpu
phonemizer
datamodel_code_generator
git+https://github.com/lvyufeng/einops
einops
transformers
peft
diffusers
Expand Down