Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CopyXlaOutsideCompilationAttributes (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.cc

    }
    
    void CopyXlaOutsideCompilationAttributesAdaptor(mlir::Operation *src,
                                                    mlir::Operation *dest) {
      CopyXlaOutsideCompilationAttributes(src, dest);
    }
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.h

    void CopyDeviceAndUnderscoredAttributesAdaptor(mlir::Operation *src,
                                                   mlir::Operation *dest);
    
    // Wrappers for CopyXlaOutsideCompilationAttributes
    void CopyXlaOutsideCompilationAttributesAdaptor(mlir::OpResult src,
                                                    mlir::OpResult dest);
    void CopyXlaOutsideCompilationAttributesAdaptor(mlir::Operation *src,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

      CopyAttributes(from, to, [](const NamedAttribute &attr) {
        return attr.getName().strref().front() == '_';
      });
    }
    
    // Copies outside compilation attribute from `from` to `to`.
    inline void CopyXlaOutsideCompilationAttributes(Operation *from,
                                                    Operation *to) {
      CopyAttributes(from, to, [](const NamedAttribute &attr) {
        return attr.getName().strref() == kXlaOutsideCompilationAttr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top