#ifndef TENSOR_OPS_CPU_H
#define TENSOR_OPS_CPU_H

#include <napi.h>

// Forward declaration
class Tensor;

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

#endif
