#ifndef TENSOR_OPS_MATMUL_H
#define TENSOR_OPS_MATMUL_H

#include <napi.h>

// Forward declaration
class Tensor;

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

#endif
