Skip to content

Not working? Look here: #61

@perara

Description

@perara
#include <iostream>
#include <iomanip>
#include <chrono>
#include <iterator>

class tqdm {
public:
    class iterator {
    public:
        using iterator_category = std::input_iterator_tag;
        using value_type = int;
        using difference_type = int;
        using pointer = int*;
        using reference = int&;

        iterator(tqdm* parent, int current)
            : parent_(parent), current_(current) {}

        int operator*() const { return current_; }
        iterator& operator++() {
            ++current_;
            parent_->update();
            return *this;
        }

        bool operator!=(const iterator& other) const {
            return current_ != other.current_;
        }

    private:
        tqdm* parent_;
        int current_;
    };

    tqdm(int total_iterations, int report_every = 1000)
        : total_iterations_(total_iterations),
          report_every_(report_every),
          start_time_(std::chrono::steady_clock::now()) {}

    iterator begin() {
        return iterator(this, 0);
    }

    iterator end() {
        return iterator(this, total_iterations_);
    }

    void update() {
        ++current_iteration_;
        if (current_iteration_ % report_every_ == 0) {
            display_progress_bar();
        }
    }

private:
    int total_iterations_;
    int report_every_;
    int current_iteration_ = 0;
    std::chrono::steady_clock::time_point start_time_;

    void display_progress_bar() {
        float progress = float(current_iteration_) / float(total_iterations_);
        auto current_time = std::chrono::steady_clock::now();
        auto elapsed_time = std::chrono::duration_cast<std::chrono::milliseconds>(current_time - start_time_).count();
        float iterations_per_second = current_iteration_ / (elapsed_time / 1000.0);

        int bar_width = 50;
        std::cout << "[";
        int position = bar_width * progress;
        for (int i = 0; i < bar_width; ++i) {
            if (i < position) std::cout << "=";
            else if (i == position) std::cout << ">";
            else std::cout << " ";
        }

        std::cout << "] " << int(progress * 100.0) << "%  " << iterations_per_second << " iter/s\r";
        std::cout.flush();
    }
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions