Jump to content

MarkBench Development and Feature Requests

AdamFromLTT

As an AI engineer, I’d like a tokens per second tracking of each of the CPU/GPU benchmarks. This HEAVILY influences my day to day workflow

Link to comment
Share on other sites

Link to post
Share on other sites

  • 1 month later...

3N+1 CPU Test... I wrote this code for a benchmarking software of my own (maybe I'll make a post on it in the future).

def calculate():
    for x in range(1, 100001) : # Replace 100001 with the amount of times you want the system to calculate 3N+1 (plus one)
        print(f"Calculating 3N+1 for {x}/100000")
        while x != 1:
            if x % 2 != 0: x = x*3+1
            else: x = x/2

I know a little bit of python btw

Edit: idk why it's glitched on the actual forum preview, it looks fine in the edit box. (using firefox btw)

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×