Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kissling (0.14 sec)

  1. tensorflow/c/c_api_function_test.cc

                       "from function 'MyFunc'"),
                string(TF_Message(s_)));
    }
    
    TEST_F(CApiFunctionTest, NodeMissingInput) {
      /*
       *        input---> |  | <----missing input
       *                  v  v
       *        body----> add
       *                   |
       *                   v
       */
      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  2. tensorflow/c/c_api_test.cc

      EXPECT_EQ(-1, TF_OperationOutputListLength(feed, "bogus", s));
      EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s));
    
      ASSERT_FALSE(GetAttrValue(feed, "missing", &attr_value, s));
      EXPECT_EQ(string("Operation 'feed' has no attr named 'missing'."),
                string(TF_Message(s)));
    
      // Make a constant oper with the scalar "3".
      TF_Operation* three = ScalarConst(3, graph, s);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top