#ifndef TENSOR_OPS_REQUIRES_GRAD_H
#define TENSOR_OPS_REQUIRES_GRAD_H

#include <napi.h>

// Forward declaration
class Tensor;

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

#endif
