Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for foo (0.13 sec)

  1. tensorflow/c/c_api_function_test.cc

      DefineFunction(func_name_, &func_);
    
      // Get non existent attribute
      TF_Buffer* attr_buf = TF_NewBuffer();
      TF_FunctionGetAttrValueProto(func_, "foo_attr", attr_buf, s_);
      EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s_));
      EXPECT_EQ(string("Function 'MyFunc' has no attr named 'foo_attr'."),
                string(TF_Message(s_)));
      TF_DeleteBuffer(attr_buf);
    
      // Set attr
      tensorflow::AttrValue attr;
    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. RELEASE.md

    *   Improved support for NumPy style basic slicing including non-1 strides,
        ellipses, newaxis, and negative indices. For example complicated expressions
        like `foo[1, 2:4, tf.newaxis, ..., :-3:-1, :]` are now supported. In
        addition we have preliminary (non-broadcasting) support for sliced
        assignment to variables. In particular one can write
        `var[1:3].assign([1,11,111])`.
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top