• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 #pragma once
3 
4 #include <torch/csrc/jit/ir/ir.h>
5 
6 namespace torch {
7 namespace jit {
8 
9 // Checks if the parameters, not including the
10 // first param are all constants.
11 bool nonConstantParameters(Node* n);
12 
13 } // namespace jit
14 } // namespace torch
15