#ifndef TENSOR_OPS_LOG_SOFTMAX_H
#define TENSOR_OPS_LOG_SOFTMAX_H

#include <napi.h>

class Tensor;

namespace TensorOps {
  Napi::Value LogSoftmax(Tensor* self, const Napi::CallbackInfo& info);
}

#endif
