blob: 45f10c9dee29e95be4daef17e0a8ad2c7d9b103b [file] [log] [blame]
#pragma once
#include "torch/csrc/jit/ir.h"
namespace torch { namespace jit {
struct HashNode {
size_t operator()(const Node* k) const;
};
struct EqualNode {
bool operator()(const Node* lhs, const Node* rhs) const;
};
}}