Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetLocationWithoutOpType (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/location_utils.cc

    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    
    namespace tensorflow {
    
    mlir::Location GetLocationWithoutOpType(mlir::Location loc) {
      if (auto fused_loc = mlir::dyn_cast<mlir::FusedLoc>(loc)) {
        auto locations = fused_loc.getLocations();
        if (!locations.empty()) {
          // Skip locations for propagating op_type metadata.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/location_utils.h

    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_UTILS_LOCATION_UTILS_H_
    
    #include "mlir/IR/Location.h"  // from @llvm-project
    
    namespace tensorflow {
    
    mlir::Location GetLocationWithoutOpType(mlir::Location loc);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 1K bytes
    - Viewed (0)
Back to top