Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for s2 (0.15 sec)

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

    -	    ? __strcmp_cc (s1, s2, __s1_len)				      \
    -	    : __strcmp_cg (s1, s2, __s1_len))				      \
    -	 : (__builtin_constant_p (s2) && __string2_1bptr_p (s2)		      \
    -	    && (__s2_len = strlen (s2), __s2_len < 4)			      \
    -	    ? (__builtin_constant_p (s1) && __string2_1bptr_p (s1)	      \
    -	       ? __strcmp_cc (s1, s2, __s2_len)				      \
    -	       : __strcmp_gc (s1, s2, __s2_len))			      \
    Others
    - Registered: Tue Apr 30 12:39:09 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