#ifndef TENSOR_OPS_MSE_LOSS_H
#define TENSOR_OPS_MSE_LOSS_H

#include <napi.h>

class Tensor;

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

#endif
