Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReproducerStream (0.12 sec)

  1. tensorflow/compiler/mlir/lite/debug/debug.cc

        }
      }
    
      // The file being written to.
      std::unique_ptr<tsl::WritableFile> file;
    };
    
    // Reproducer stream that emits a reproducer to the given `llvm::raw_ostream`.
    class ReproducerStream : public mlir::ReproducerStream {
     public:
      ReproducerStream(std::string name, std::unique_ptr<llvm::raw_ostream> os)
          : name_(std::move(name)), os_(std::move(os)) {}
    
      llvm::StringRef description() override { return name_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

          file = nullptr;
        }
      }
    
      // The file being written to.
      std::unique_ptr<WritableFile> file;
    };
    
    struct CrashReproducerStream : public mlir::ReproducerStream {
      CrashReproducerStream(llvm::StringRef name,
                            std::unique_ptr<llvm::raw_ostream> file)
          : name(name), ostream(std::move(file)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top