Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for _noinline (0.16 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      FunctionDef noinline = compilable;
      noinline.mutable_signature()->set_name("NoInlineFn");
      AddAttr("_noinline", static_cast<bool>(true), noinline.mutable_attr());
    
      FunctionDefLibrary flib;
      *flib.add_function() = compilable;
      *flib.add_function() = uncompilable;
      *flib.add_function() = noinline;
      FunctionLibraryDefinition flib_def(OpRegistry::Global(), flib);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      %pop_result = "tf.Reshape"(%slice, %elem_size_const)
      "tf.AssignVariableOp"(%size, %new_size)
    ```
    
    The pass also works across control flow and functional calls.
    ### `-tf-strip-noinline-attribute`
    
    _Strip the tf._noinline attribute from top-level functions._
    
    ### `-tf-strip-tf-attributes`
    
    _Removes TF specific attributes_
    
    Removes attributes that are TF specific (start with "tf.") or that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    		if legacyPreserved {
    			s.deleteFile(dstVolumeDir, legacyDataPath, true, false)
    		}
    		return res, osErrToFileErr(err)
    	}
    	diskHealthCheckOK(ctx, err)
    
    	notInline := srcDataPath != "" && len(fi.Data) == 0 && fi.Size > 0
    	if notInline {
    		if healing {
    			// renameAll only for objects that have xl.meta not saved inline.
    			// this must be done in healing only, otherwise it is expected
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif
    
    #endif  // _MSC_VER
    
    #ifndef GTEST_API_
    # define GTEST_API_
    #endif
    
    #ifdef __GNUC__
    // Ask the compiler to never inline a given function.
    # define GTEST_NO_INLINE_ __attribute__((noinline))
    #else
    # define GTEST_NO_INLINE_
    #endif
    
    // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
    #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
    # define GTEST_HAS_CXXABI_H_ 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif
    
    #endif  // _MSC_VER
    
    #ifndef GTEST_API_
    # define GTEST_API_
    #endif
    
    #ifdef __GNUC__
    // Ask the compiler to never inline a given function.
    # define GTEST_NO_INLINE_ __attribute__((noinline))
    #else
    # define GTEST_NO_INLINE_
    #endif
    
    // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
    #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
    # define GTEST_HAS_CXXABI_H_ 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top