Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for s1 (0.11 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -	  (!__string2_1bptr_p (s1) || __s1_len >= 4)			      \
    -	  && (!__string2_1bptr_p (s2) || __s2_len >= 4))		      \
    -      ? memcmp ((const char *) (s1), (const char *) (s2),		      \
    -		(__s1_len < __s2_len ? __s1_len : __s2_len) + 1)	      \
    -      : (__builtin_constant_p (s1) && __string2_1bptr_p (s1)		      \
    -	 && (__s1_len = strlen (s1), __s1_len < 4)			      \
    -	 ? (__builtin_constant_p (s2) && __string2_1bptr_p (s2)		      \
    Others
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  2. tensorflow/c/c_api_function_test.cc

    }
    
    void AssertEqual(TF_Function* f1, TF_Function* f2) {
      string s1, s2;
      tensorflow::FunctionDef fdef1, fdef2;
      ASSERT_TRUE(GetFunctionDef(f1, &fdef1));
      ASSERT_TRUE(GetFunctionDef(f2, &fdef2));
      SerializeToStringDeterministic(fdef1, &s1);
      SerializeToStringDeterministic(fdef2, &s2);
      ASSERT_EQ(s1, s2);
    }
    
    string GetName(TF_Function* func) {
      tensorflow::FunctionDef fdef;
    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)
Back to top