Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for set_constant_value (0.44 sec)

  1. tensorflow/compiler/jit/node_matchers.cc

      return props;
    }
    
    NodeMatcherProperties ConstantValue(
        const ::tensorflow::Input::Initializer& val) {
      TF_CHECK_OK(val.status);
      NodeMatcherProperties props;
      props.set_constant_value(val.tensor);
      return props;
    }
    
    ::testing::Matcher<impl::OutEdge> Const(
        const ::tensorflow::Input::Initializer& val) {
      return Out(NodeWith(ConstantValue(val)));
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
Back to top