Skip to content
Closed
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: 2 additions & 2 deletions src/infinicore/ops/softmax/softmax_infiniops.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#ifdef ENABLE_INFINIOPS_API
#include "../infiniops_impl.hpp"

#include "base/softmax_infinilm.h"
#include "base/softmax.h"

#include <optional>

Expand All @@ -22,7 +22,7 @@ void calculate(Tensor output, Tensor input, int axis) {

TensorMeta output_meta(output);
TensorMeta input_meta(input);
infini::ops::SoftmaxInfinilm::Call(
infini::ops::Softmax::Call(
handle,
config,
input_meta.tensor(input),
Expand Down
Loading